diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs index f0b7ffbe119..81c9a409a3b 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs @@ -23,6 +23,7 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow { private readonly IEntityManager _entManager; private readonly SpriteSystem _spriteSystem; + private readonly SharedNavMapSystem _navMapSystem; private EntityUid? _owner; private NetEntity? _trackedEntity; @@ -42,19 +43,32 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow private const float SilencingDuration = 2.5f; + // Colors + private Color _wallColor = new Color(64, 64, 64); + private Color _tileColor = new Color(28, 28, 28); + private Color _monitorBlipColor = Color.Cyan; + private Color _untrackedEntColor = Color.DimGray; + private Color _regionBaseColor = new Color(154, 154, 154); + private Color _inactiveColor = StyleNano.DisabledFore; + private Color _statusTextColor = StyleNano.GoodGreenFore; + private Color _goodColor = Color.LimeGreen; + private Color _warningColor = new Color(255, 182, 72); + private Color _dangerColor = new Color(255, 67, 67); + public AtmosAlertsComputerWindow(AtmosAlertsComputerBoundUserInterface userInterface, EntityUid? owner) { RobustXamlLoader.Load(this); _entManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + _navMapSystem = _entManager.System(); // Pass the owner to nav map _owner = owner; NavMap.Owner = _owner; // Set nav map colors - NavMap.WallColor = new Color(64, 64, 64); - NavMap.TileColor = Color.DimGray * NavMap.WallColor; + NavMap.WallColor = _wallColor; + NavMap.TileColor = _tileColor; // Set nav map grid uid var stationName = Loc.GetString("atmos-alerts-window-unknown-location"); @@ -179,6 +193,9 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ // Add tracked entities to the nav map foreach (var device in console.AtmosDevices) { + if (!device.NetEntity.Valid) + continue; + if (!NavMap.Visible) continue; @@ -209,7 +226,7 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ if (consoleCoords != null && consoleUid != null) { var texture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); - var blip = new NavMapBlip(consoleCoords.Value, texture, Color.Cyan, true, false); + var blip = new NavMapBlip(consoleCoords.Value, texture, _monitorBlipColor, true, false); NavMap.TrackedEntities[consoleUid.Value] = blip; } @@ -258,7 +275,7 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ VerticalAlignment = VAlignment.Center, }; - label.SetMarkup(Loc.GetString("atmos-alerts-window-no-active-alerts", ("color", StyleNano.GoodGreenFore.ToHexNoAlpha()))); + label.SetMarkup(Loc.GetString("atmos-alerts-window-no-active-alerts", ("color", _statusTextColor.ToHexNoAlpha()))); AlertsTable.AddChild(label); } @@ -270,6 +287,34 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ else MasterTabContainer.SetTabTitle(0, Loc.GetString("atmos-alerts-window-tab-alerts", ("value", activeAlarmCount))); + // Update sensor regions + NavMap.RegionOverlays.Clear(); + var prioritizedRegionOverlays = new Dictionary(); + + if (_owner != null && + _entManager.TryGetComponent(_owner, out var xform) && + _entManager.TryGetComponent(xform.GridUid, out var navMap)) + { + var regionOverlays = _navMapSystem.GetNavMapRegionOverlays(_owner.Value, navMap, AtmosAlertsComputerUiKey.Key); + + foreach (var (regionOwner, regionOverlay) in regionOverlays) + { + var alarmState = GetAlarmState(regionOwner); + + if (!TryGetSensorRegionColor(regionOwner, alarmState, out var regionColor)) + continue; + + regionOverlay.Color = regionColor; + + var priority = (_trackedEntity == regionOwner) ? 999 : (int)alarmState; + prioritizedRegionOverlays.Add(regionOverlay, priority); + } + + // Sort overlays according to their priority + var sortedOverlays = prioritizedRegionOverlays.OrderBy(x => x.Value).Select(x => x.Key).ToList(); + NavMap.RegionOverlays = sortedOverlays; + } + // Auto-scroll re-enable if (_autoScrollAwaitsUpdate) { @@ -290,7 +335,7 @@ private void AddTrackedEntityToNavMap(AtmosAlertsDeviceNavMapData metaData, Atmo var coords = _entManager.GetCoordinates(metaData.NetCoordinates); if (_trackedEntity != null && _trackedEntity != metaData.NetEntity) - color *= Color.DimGray; + color *= _untrackedEntColor; var selectable = true; var blip = new NavMapBlip(coords, _spriteSystem.Frame0(texture), color, _trackedEntity == metaData.NetEntity, selectable); @@ -298,6 +343,24 @@ private void AddTrackedEntityToNavMap(AtmosAlertsDeviceNavMapData metaData, Atmo NavMap.TrackedEntities[metaData.NetEntity] = blip; } + private bool TryGetSensorRegionColor(NetEntity regionOwner, AtmosAlarmType alarmState, out Color color) + { + color = Color.White; + + var blip = GetBlipTexture(alarmState); + + if (blip == null) + return false; + + // Color the region based on alarm state and entity tracking + color = blip.Value.Item2 * _regionBaseColor; + + if (_trackedEntity != null && _trackedEntity != regionOwner) + color *= _untrackedEntColor; + + return true; + } + private void UpdateUIEntry(AtmosAlertsComputerEntry entry, int index, Control table, AtmosAlertsComputerComponent console, AtmosAlertsFocusDeviceData? focusData = null) { // Make new UI entry if required @@ -534,13 +597,13 @@ private AtmosAlarmType GetAlarmState(NetEntity netEntity) switch (alarmState) { case AtmosAlarmType.Invalid: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), StyleNano.DisabledFore); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), _inactiveColor); break; case AtmosAlarmType.Normal: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), Color.LimeGreen); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), _goodColor); break; case AtmosAlarmType.Warning: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_triangle.png")), new Color(255, 182, 72)); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_triangle.png")), _warningColor); break; case AtmosAlarmType.Danger: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_square.png")), new Color(255, 67, 67)); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_square.png")), _dangerColor); break; } return output; diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml index 19d00a0bbf8..aae8785b1fe 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml @@ -47,8 +47,7 @@ - + diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs index d61267d002c..fd3615d59f5 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs @@ -110,18 +110,29 @@ public void Populate(HealthAnalyzerScannedUserMessage msg) // Alerts - AlertsDivider.Visible = msg.Bleeding == true; - AlertsContainer.Visible = msg.Bleeding == true; + var showAlerts = msg.Unrevivable == true || msg.Bleeding == true; - if (msg.Bleeding == true) - { + AlertsDivider.Visible = showAlerts; + AlertsContainer.Visible = showAlerts; + + if (showAlerts) AlertsContainer.DisposeAllChildren(); - AlertsContainer.AddChild(new Label + + if (msg.Unrevivable == true) + AlertsContainer.AddChild(new RichTextLabel + { + Text = Loc.GetString("health-analyzer-window-entity-unrevivable-text"), + Margin = new Thickness(0, 4), + MaxWidth = 300 + }); + + if (msg.Bleeding == true) + AlertsContainer.AddChild(new RichTextLabel { Text = Loc.GetString("health-analyzer-window-entity-bleeding-text"), - FontColorOverride = Color.Red, + Margin = new Thickness(0, 4), + MaxWidth = 300 }); - } // Damage Groups diff --git a/Content.Client/Pinpointer/NavMapSystem.Regions.cs b/Content.Client/Pinpointer/NavMapSystem.Regions.cs new file mode 100644 index 00000000000..4cc775418ec --- /dev/null +++ b/Content.Client/Pinpointer/NavMapSystem.Regions.cs @@ -0,0 +1,303 @@ +using Content.Shared.Atmos; +using Content.Shared.Pinpointer; +using System.Linq; + +namespace Content.Client.Pinpointer; + +public sealed partial class NavMapSystem +{ + private (AtmosDirection, Vector2i, AtmosDirection)[] _regionPropagationTable = + { + (AtmosDirection.East, new Vector2i(1, 0), AtmosDirection.West), + (AtmosDirection.West, new Vector2i(-1, 0), AtmosDirection.East), + (AtmosDirection.North, new Vector2i(0, 1), AtmosDirection.South), + (AtmosDirection.South, new Vector2i(0, -1), AtmosDirection.North), + }; + + public override void Update(float frameTime) + { + // To prevent compute spikes, only one region is flood filled per frame + var query = AllEntityQuery(); + + while (query.MoveNext(out var ent, out var entNavMapRegions)) + FloodFillNextEnqueuedRegion(ent, entNavMapRegions); + } + + private void FloodFillNextEnqueuedRegion(EntityUid uid, NavMapComponent component) + { + if (!component.QueuedRegionsToFlood.Any()) + return; + + var regionOwner = component.QueuedRegionsToFlood.Dequeue(); + + // If the region is no longer valid, flood the next one in the queue + if (!component.RegionProperties.TryGetValue(regionOwner, out var regionProperties) || + !regionProperties.Seeds.Any()) + { + FloodFillNextEnqueuedRegion(uid, component); + return; + } + + // Flood fill the region, using the region seeds as starting points + var (floodedTiles, floodedChunks) = FloodFillRegion(uid, component, regionProperties); + + // Combine the flooded tiles into larger rectangles + var gridCoords = GetMergedRegionTiles(floodedTiles); + + // Create and assign the new region overlay + var regionOverlay = new NavMapRegionOverlay(regionProperties.UiKey, gridCoords) + { + Color = regionProperties.Color + }; + + component.RegionOverlays[regionOwner] = regionOverlay; + + // To reduce unnecessary future flood fills, we will track which chunks have been flooded by a region owner + + // First remove an old assignments + if (component.RegionOwnerToChunkTable.TryGetValue(regionOwner, out var oldChunks)) + { + foreach (var chunk in oldChunks) + { + if (component.ChunkToRegionOwnerTable.TryGetValue(chunk, out var oldOwners)) + { + oldOwners.Remove(regionOwner); + component.ChunkToRegionOwnerTable[chunk] = oldOwners; + } + } + } + + // Now update with the new assignments + component.RegionOwnerToChunkTable[regionOwner] = floodedChunks; + + foreach (var chunk in floodedChunks) + { + if (!component.ChunkToRegionOwnerTable.TryGetValue(chunk, out var owners)) + owners = new(); + + owners.Add(regionOwner); + component.ChunkToRegionOwnerTable[chunk] = owners; + } + } + + private (HashSet, HashSet) FloodFillRegion(EntityUid uid, NavMapComponent component, NavMapRegionProperties regionProperties) + { + if (!regionProperties.Seeds.Any()) + return (new(), new()); + + var visitedChunks = new HashSet(); + var visitedTiles = new HashSet(); + var tilesToVisit = new Stack(); + + foreach (var regionSeed in regionProperties.Seeds) + { + tilesToVisit.Push(regionSeed); + + while (tilesToVisit.Count > 0) + { + // If the max region area is hit, exit + if (visitedTiles.Count > regionProperties.MaxArea) + return (new(), new()); + + // Pop the top tile from the stack + var current = tilesToVisit.Pop(); + + // If the current tile position has already been visited, + // or is too far away from the seed, continue + if ((regionSeed - current).Length > regionProperties.MaxRadius) + continue; + + if (visitedTiles.Contains(current)) + continue; + + // Determine the tile's chunk index + var chunkOrigin = SharedMapSystem.GetChunkIndices(current, ChunkSize); + var relative = SharedMapSystem.GetChunkRelative(current, ChunkSize); + var idx = GetTileIndex(relative); + + // Extract the tile data + if (!component.Chunks.TryGetValue(chunkOrigin, out var chunk)) + continue; + + var flag = chunk.TileData[idx]; + + // If the current tile is entirely occupied, continue + if ((FloorMask & flag) == 0) + continue; + + if ((WallMask & flag) == WallMask) + continue; + + if ((AirlockMask & flag) == AirlockMask) + continue; + + // Otherwise the tile can be added to this region + visitedTiles.Add(current); + visitedChunks.Add(chunkOrigin); + + // Determine if we can propagate the region into its cardinally adjacent neighbors + // To propagate to a neighbor, movement into the neighbors closest edge must not be + // blocked, and vice versa + + foreach (var (direction, tileOffset, reverseDirection) in _regionPropagationTable) + { + if (!RegionCanPropagateInDirection(chunk, current, direction)) + continue; + + var neighbor = current + tileOffset; + var neighborOrigin = SharedMapSystem.GetChunkIndices(neighbor, ChunkSize); + + if (!component.Chunks.TryGetValue(neighborOrigin, out var neighborChunk)) + continue; + + visitedChunks.Add(neighborOrigin); + + if (!RegionCanPropagateInDirection(neighborChunk, neighbor, reverseDirection)) + continue; + + tilesToVisit.Push(neighbor); + } + } + } + + return (visitedTiles, visitedChunks); + } + + private bool RegionCanPropagateInDirection(NavMapChunk chunk, Vector2i tile, AtmosDirection direction) + { + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var idx = GetTileIndex(relative); + var flag = chunk.TileData[idx]; + + if ((FloorMask & flag) == 0) + return false; + + var directionMask = 1 << (int)direction; + var wallMask = (int)direction << (int)NavMapChunkType.Wall; + var airlockMask = (int)direction << (int)NavMapChunkType.Airlock; + + if ((wallMask & flag) > 0) + return false; + + if ((airlockMask & flag) > 0) + return false; + + return true; + } + + private List<(Vector2i, Vector2i)> GetMergedRegionTiles(HashSet tiles) + { + if (!tiles.Any()) + return new(); + + var x = tiles.Select(t => t.X); + var minX = x.Min(); + var maxX = x.Max(); + + var y = tiles.Select(t => t.Y); + var minY = y.Min(); + var maxY = y.Max(); + + var matrix = new int[maxX - minX + 1, maxY - minY + 1]; + + foreach (var tile in tiles) + { + var a = tile.X - minX; + var b = tile.Y - minY; + + matrix[a, b] = 1; + } + + return GetMergedRegionTiles(matrix, new Vector2i(minX, minY)); + } + + private List<(Vector2i, Vector2i)> GetMergedRegionTiles(int[,] matrix, Vector2i offset) + { + var output = new List<(Vector2i, Vector2i)>(); + + var rows = matrix.GetLength(0); + var cols = matrix.GetLength(1); + + var dp = new int[rows, cols]; + var coords = (new Vector2i(), new Vector2i()); + var maxArea = 0; + + var count = 0; + + while (!IsArrayEmpty(matrix)) + { + count++; + + if (count > rows * cols) + break; + + // Clear old values + dp = new int[rows, cols]; + coords = (new Vector2i(), new Vector2i()); + maxArea = 0; + + // Initialize the first row of dp + for (int j = 0; j < cols; j++) + { + dp[0, j] = matrix[0, j]; + } + + // Calculate dp values for remaining rows + for (int i = 1; i < rows; i++) + { + for (int j = 0; j < cols; j++) + dp[i, j] = matrix[i, j] == 1 ? dp[i - 1, j] + 1 : 0; + } + + // Find the largest rectangular area seeded for each position in the matrix + for (int i = 0; i < rows; i++) + { + for (int j = 0; j < cols; j++) + { + int minWidth = dp[i, j]; + + for (int k = j; k >= 0; k--) + { + if (dp[i, k] <= 0) + break; + + minWidth = Math.Min(minWidth, dp[i, k]); + var currArea = Math.Max(maxArea, minWidth * (j - k + 1)); + + if (currArea > maxArea) + { + maxArea = currArea; + coords = (new Vector2i(i - minWidth + 1, k), new Vector2i(i, j)); + } + } + } + } + + // Save the recorded rectangle vertices + output.Add((coords.Item1 + offset, coords.Item2 + offset)); + + // Removed the tiles covered by the rectangle from matrix + for (int i = coords.Item1.X; i <= coords.Item2.X; i++) + { + for (int j = coords.Item1.Y; j <= coords.Item2.Y; j++) + matrix[i, j] = 0; + } + } + + return output; + } + + private bool IsArrayEmpty(int[,] matrix) + { + for (int i = 0; i < matrix.GetLength(0); i++) + { + for (int j = 0; j < matrix.GetLength(1); j++) + { + if (matrix[i, j] == 1) + return false; + } + } + + return true; + } +} diff --git a/Content.Client/Pinpointer/NavMapSystem.cs b/Content.Client/Pinpointer/NavMapSystem.cs index 9aeb792a429..47469d4ea79 100644 --- a/Content.Client/Pinpointer/NavMapSystem.cs +++ b/Content.Client/Pinpointer/NavMapSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Shared.Pinpointer; using Robust.Shared.GameStates; @@ -16,6 +17,7 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone { Dictionary modifiedChunks; Dictionary beacons; + Dictionary regions; switch (args.Current) { @@ -23,6 +25,8 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone { modifiedChunks = delta.ModifiedChunks; beacons = delta.Beacons; + regions = delta.Regions; + foreach (var index in component.Chunks.Keys) { if (!delta.AllChunks!.Contains(index)) @@ -35,6 +39,8 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone { modifiedChunks = state.Chunks; beacons = state.Beacons; + regions = state.Regions; + foreach (var index in component.Chunks.Keys) { if (!state.Chunks.ContainsKey(index)) @@ -47,13 +53,54 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone return; } + // Update region data and queue new regions for flooding + var prevRegionOwners = component.RegionProperties.Keys.ToList(); + var validRegionOwners = new List(); + + component.RegionProperties.Clear(); + + foreach (var (regionOwner, regionData) in regions) + { + if (!regionData.Seeds.Any()) + continue; + + component.RegionProperties[regionOwner] = regionData; + validRegionOwners.Add(regionOwner); + + if (component.RegionOverlays.ContainsKey(regionOwner)) + continue; + + if (component.QueuedRegionsToFlood.Contains(regionOwner)) + continue; + + component.QueuedRegionsToFlood.Enqueue(regionOwner); + } + + // Remove stale region owners + var regionOwnersToRemove = prevRegionOwners.Except(validRegionOwners); + + foreach (var regionOwnerRemoved in regionOwnersToRemove) + RemoveNavMapRegion(uid, component, regionOwnerRemoved); + + // Modify chunks foreach (var (origin, chunk) in modifiedChunks) { var newChunk = new NavMapChunk(origin); Array.Copy(chunk, newChunk.TileData, chunk.Length); component.Chunks[origin] = newChunk; + + // If the affected chunk intersects one or more regions, re-flood them + if (!component.ChunkToRegionOwnerTable.TryGetValue(origin, out var affectedOwners)) + continue; + + foreach (var affectedOwner in affectedOwners) + { + if (!component.QueuedRegionsToFlood.Contains(affectedOwner)) + component.QueuedRegionsToFlood.Enqueue(affectedOwner); + } } + // Refresh beacons component.Beacons.Clear(); foreach (var (nuid, beacon) in beacons) { diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 413b41c36a6..90c2680c4a7 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -48,6 +48,7 @@ public partial class NavMapControl : MapGridControl public List<(Vector2, Vector2)> TileLines = new(); public List<(Vector2, Vector2)> TileRects = new(); public List<(Vector2[], Color)> TilePolygons = new(); + public List RegionOverlays = new(); // Default colors public Color WallColor = new(102, 217, 102); @@ -228,7 +229,7 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args) { if (!blip.Selectable) continue; - + var currentDistance = (_transformSystem.ToMapCoordinates(blip.Coordinates).Position - worldPosition).Length(); if (closestDistance < currentDistance || currentDistance * MinimapScale > MaxSelectableDistance) @@ -319,6 +320,22 @@ protected override void Draw(DrawingHandleScreen handle) } } + // Draw region overlays + if (_grid != null) + { + foreach (var regionOverlay in RegionOverlays) + { + foreach (var gridCoords in regionOverlay.GridCoords) + { + var positionTopLeft = ScalePosition(new Vector2(gridCoords.Item1.X, -gridCoords.Item1.Y) - new Vector2(offset.X, -offset.Y)); + var positionBottomRight = ScalePosition(new Vector2(gridCoords.Item2.X + _grid.TileSize, -gridCoords.Item2.Y - _grid.TileSize) - new Vector2(offset.X, -offset.Y)); + + var box = new UIBox2(positionTopLeft, positionBottomRight); + handle.DrawRect(box, regionOverlay.Color); + } + } + } + // Draw map lines if (TileLines.Any()) { diff --git a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs index d9a475dbfb7..2d35ae59731 100644 --- a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs +++ b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs @@ -1,15 +1,19 @@ using Content.Server.Atmos.Monitor.Components; using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Pinpointer; using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Consoles; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; +using Content.Shared.DeviceNetwork.Components; using Content.Shared.Pinpointer; +using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Shared.Map.Components; -using Robust.Shared.Player; +using Robust.Shared.Timing; using System.Diagnostics.CodeAnalysis; using System.Linq; @@ -21,6 +25,12 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem [Dependency] private readonly AirAlarmSystem _airAlarmSystem = default!; [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly MapSystem _mapSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly NavMapSystem _navMapSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly DeviceListSystem _deviceListSystem = default!; private const float UpdateTime = 1.0f; @@ -38,6 +48,9 @@ public override void Initialize() // Grid events SubscribeLocalEvent(OnGridSplit); + + // Alarm events + SubscribeLocalEvent(OnDeviceTerminatingEvent); SubscribeLocalEvent(OnDeviceAnchorChanged); } @@ -81,6 +94,16 @@ private void OnGridSplit(ref GridSplitEvent args) } private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent component, AnchorStateChangedEvent args) + { + OnDeviceAdditionOrRemoval(uid, component, args.Anchored); + } + + private void OnDeviceTerminatingEvent(EntityUid uid, AtmosAlertsDeviceComponent component, ref EntityTerminatingEvent args) + { + OnDeviceAdditionOrRemoval(uid, component, false); + } + + private void OnDeviceAdditionOrRemoval(EntityUid uid, AtmosAlertsDeviceComponent component, bool isAdding) { var xform = Transform(uid); var gridUid = xform.GridUid; @@ -88,10 +111,13 @@ private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent com if (gridUid == null) return; - if (!TryGetAtmosDeviceNavMapData(uid, component, xform, gridUid.Value, out var data)) + if (!TryComp(xform.GridUid, out var navMap)) return; - var netEntity = EntityManager.GetNetEntity(uid); + if (!TryGetAtmosDeviceNavMapData(uid, component, xform, out var data)) + return; + + var netEntity = GetNetEntity(uid); var query = AllEntityQuery(); while (query.MoveNext(out var ent, out var entConsole, out var entXform)) @@ -99,11 +125,18 @@ private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent com if (gridUid != entXform.GridUid) continue; - if (args.Anchored) + if (isAdding) + { entConsole.AtmosDevices.Add(data.Value); + } - else if (!args.Anchored) + else + { entConsole.AtmosDevices.RemoveWhere(x => x.NetEntity == netEntity); + _navMapSystem.RemoveNavMapRegion(gridUid.Value, navMap, netEntity); + } + + Dirty(ent, entConsole); } } @@ -209,6 +242,12 @@ private List GetAlarmStateData(EntityUid gridUid, Atmo if (entDevice.Group != group) continue; + if (!TryComp(entXform.GridUid, out var mapGrid)) + continue; + + if (!TryComp(entXform.GridUid, out var navMap)) + continue; + // If emagged, change the alarm type to normal var alarmState = (entAtmosAlarmable.LastAlarmState == AtmosAlarmType.Emagged) ? AtmosAlarmType.Normal : entAtmosAlarmable.LastAlarmState; @@ -216,14 +255,45 @@ private List GetAlarmStateData(EntityUid gridUid, Atmo if (TryComp(ent, out var entAPCPower) && !entAPCPower.Powered) alarmState = AtmosAlarmType.Invalid; + // Create entry + var netEnt = GetNetEntity(ent); + var entry = new AtmosAlertsComputerEntry - (GetNetEntity(ent), + (netEnt, GetNetCoordinates(entXform.Coordinates), entDevice.Group, alarmState, MetaData(ent).EntityName, entDeviceNetwork.Address); + // Get the list of sensors attached to the alarm + var sensorList = TryComp(ent, out var entDeviceList) ? _deviceListSystem.GetDeviceList(ent, entDeviceList) : null; + + if (sensorList?.Any() == true) + { + var alarmRegionSeeds = new HashSet(); + + // If valid and anchored, use the position of sensors as seeds for the region + foreach (var (address, sensorEnt) in sensorList) + { + if (!sensorEnt.IsValid() || !HasComp(sensorEnt)) + continue; + + var sensorXform = Transform(sensorEnt); + + if (sensorXform.Anchored && sensorXform.GridUid == entXform.GridUid) + alarmRegionSeeds.Add(_mapSystem.CoordinatesToTile(entXform.GridUid.Value, mapGrid, _transformSystem.GetMapCoordinates(sensorEnt, sensorXform))); + } + + var regionProperties = new SharedNavMapSystem.NavMapRegionProperties(netEnt, AtmosAlertsComputerUiKey.Key, alarmRegionSeeds); + _navMapSystem.AddOrUpdateNavMapRegion(gridUid, navMap, netEnt, regionProperties); + } + + else + { + _navMapSystem.RemoveNavMapRegion(entXform.GridUid.Value, navMap, netEnt); + } + alarmStateData.Add(entry); } @@ -306,7 +376,10 @@ private HashSet GetAllAtmosDeviceNavMapData(EntityU var query = AllEntityQuery(); while (query.MoveNext(out var ent, out var entComponent, out var entXform)) { - if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, gridUid, out var data)) + if (entXform.GridUid != gridUid) + continue; + + if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, out var data)) atmosDeviceNavMapData.Add(data.Value); } @@ -317,14 +390,10 @@ private bool TryGetAtmosDeviceNavMapData (EntityUid uid, AtmosAlertsDeviceComponent component, TransformComponent xform, - EntityUid gridUid, [NotNullWhen(true)] out AtmosAlertsDeviceNavMapData? output) { output = null; - if (xform.GridUid != gridUid) - return false; - if (!xform.Anchored) return false; diff --git a/Content.Server/Chat/Managers/ChatSanitizationManager.cs b/Content.Server/Chat/Managers/ChatSanitizationManager.cs index 260b17e0b6e..140d59edf31 100644 --- a/Content.Server/Chat/Managers/ChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/ChatSanitizationManager.cs @@ -62,7 +62,7 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { ":D", "chatsan-smiles-widely" }, { "D:", "chatsan-frowns-deeply" }, { ":O", "chatsan-surprised" }, - { ":3", "chatsan-smiles" }, //nope + { ":3", "chatsan-smiles" }, { ":S", "chatsan-uncertain" }, { ":>", "chatsan-grins" }, { ":<", "chatsan-pouts" }, diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 62ef1407266..85e731b9b2c 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -896,8 +896,9 @@ private bool CanSendInGame(string message, IConsoleShell? shell = null, ICommonS // ReSharper disable once InconsistentNaming private string SanitizeInGameICMessage(EntityUid source, string message, out string? emoteStr, bool capitalize = true, bool punctuate = false, bool capitalizeTheWordI = true) { - var newMessage = message.Trim(); - newMessage = SanitizeMessageReplaceWords(newMessage); + var newMessage = SanitizeMessageReplaceWords(message.Trim()); + + GetRadioKeycodePrefix(source, newMessage, out newMessage, out var prefix); // Sanitize it first as it might change the word order _sanitizer.TrySanitizeEmoteShorthands(newMessage, source, out newMessage, out emoteStr); @@ -909,7 +910,7 @@ private string SanitizeInGameICMessage(EntityUid source, string message, out str if (punctuate) newMessage = SanitizeMessagePeriod(newMessage); - return newMessage; + return prefix + newMessage; } private string SanitizeInGameOOCMessage(string message) diff --git a/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs b/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs new file mode 100644 index 00000000000..0f10e2a4492 --- /dev/null +++ b/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + + +namespace Content.Server.Chemistry.Components; + +/// +/// Used for embeddable entities that should try to inject a +/// contained solution into a target over time while they are embbeded into. +/// +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class SolutionInjectWhileEmbeddedComponent : BaseSolutionInjectOnEventComponent { + /// + ///The time at which the injection will happen. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextUpdate; + + /// + ///The delay between each injection in seconds. + /// + [DataField] + public TimeSpan UpdateInterval = TimeSpan.FromSeconds(3); +} + diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs index d56fded024a..f15edcf0672 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Body.Systems; using Content.Server.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Events; using Content.Shared.Inventory; using Content.Shared.Popups; using Content.Shared.Projectiles; @@ -29,6 +30,7 @@ public override void Initialize() SubscribeLocalEvent(HandleProjectileHit); SubscribeLocalEvent(HandleEmbed); SubscribeLocalEvent(HandleMeleeHit); + SubscribeLocalEvent(OnInjectOverTime); } private void HandleProjectileHit(Entity entity, ref ProjectileHitEvent args) @@ -49,6 +51,11 @@ private void HandleMeleeHit(Entity entity, ref M TryInjectTargets((entity.Owner, entity.Comp), args.HitEntities, args.User); } + private void OnInjectOverTime(Entity entity, ref InjectOverTimeEvent args) + { + DoInjection((entity.Owner, entity.Comp), args.EmbeddedIntoUid); + } + private void DoInjection(Entity injectorEntity, EntityUid target, EntityUid? source = null) { TryInjectTargets(injectorEntity, [target], source); diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs new file mode 100644 index 00000000000..2baeba9da15 --- /dev/null +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs @@ -0,0 +1,60 @@ +using Content.Server.Body.Components; +using Content.Server.Body.Systems; +using Content.Server.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Events; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.Projectiles; +using Content.Shared.Tag; +using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Collections; +using Robust.Shared.Timing; + +namespace Content.Server.Chemistry.EntitySystems; + +/// +/// System for handling injecting into an entity while a projectile is embedded. +/// +public sealed class SolutionInjectWhileEmbeddedSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly BloodstreamSystem _bloodstream = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly TagSystem _tag = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextUpdate = _gameTiming.CurTime + ent.Comp.UpdateInterval; + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var injectComponent, out var projectileComponent)) + { + if (_gameTiming.CurTime < injectComponent.NextUpdate) + continue; + + injectComponent.NextUpdate += injectComponent.UpdateInterval; + + if(projectileComponent.EmbeddedIntoUid == null) + continue; + + var ev = new InjectOverTimeEvent(projectileComponent.EmbeddedIntoUid.Value); + RaiseLocalEvent(uid, ref ev); + + } + } +} diff --git a/Content.Server/Corvax/TTS/TTSSystem.Sanitize.cs b/Content.Server/Corvax/TTS/TTSSystem.Sanitize.cs index 81f2d3920b2..4ea63348a70 100644 --- a/Content.Server/Corvax/TTS/TTSSystem.Sanitize.cs +++ b/Content.Server/Corvax/TTS/TTSSystem.Sanitize.cs @@ -137,6 +137,9 @@ private string ReplaceWord2Num(Match word) {"с4", "Си 4"}, // cyrillic {"c4", "Си 4"}, // latinic {"бсс", "Бэ Эс Эс"}, + {"сии", "Эс И И"}, + {"ии", "И И"}, + {"опз", "О Пэ Зэ"}, }; private static readonly IReadOnlyDictionary ReverseTranslit = diff --git a/Content.Server/EntityEffects/Effects/FlashReactionEffect.cs b/Content.Server/EntityEffects/Effects/FlashReactionEffect.cs new file mode 100644 index 00000000000..fbf99e902d3 --- /dev/null +++ b/Content.Server/EntityEffects/Effects/FlashReactionEffect.cs @@ -0,0 +1,82 @@ +using Content.Shared.EntityEffects; +using Content.Server.Flash; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Server.EntityEffects.Effects; + +[DataDefinition] +public sealed partial class FlashReactionEffect : EntityEffect +{ + /// + /// Flash range per unit of reagent. + /// + [DataField] + public float RangePerUnit = 0.2f; + + /// + /// Maximum flash range. + /// + [DataField] + public float MaxRange = 10f; + + /// + /// How much to entities are slowed down. + /// + [DataField] + public float SlowTo = 0.5f; + + /// + /// The time entities will be flashed in seconds. + /// The default is chosen to be better than the hand flash so it is worth using it for grenades etc. + /// + [DataField] + public float Duration = 4f; + + /// + /// The prototype ID used for the visual effect. + /// + [DataField] + public EntProtoId? FlashEffectPrototype = "ReactionFlash"; + + /// + /// The sound the flash creates. + /// + [DataField] + public SoundSpecifier? Sound = new SoundPathSpecifier("/Audio/Weapons/flash.ogg"); + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-flash-reaction-effect", ("chance", Probability)); + + public override void Effect(EntityEffectBaseArgs args) + { + var transform = args.EntityManager.GetComponent(args.TargetEntity); + var transformSystem = args.EntityManager.System(); + + var range = 1f; + + if (args is EntityEffectReagentArgs reagentArgs) + range = MathF.Min((float)(reagentArgs.Quantity * RangePerUnit), MaxRange); + + args.EntityManager.System().FlashArea( + args.TargetEntity, + null, + range, + Duration * 1000, + slowTo: SlowTo, + sound: Sound); + + if (FlashEffectPrototype == null) + return; + + var uid = args.EntityManager.SpawnEntity(FlashEffectPrototype, transformSystem.GetMapCoordinates(transform)); + transformSystem.AttachToGridOrMap(uid); + + if (!args.EntityManager.TryGetComponent(uid, out var pointLightComp)) + return; + var pointLightSystem = args.EntityManager.System(); + // PointLights with a radius lower than 1.1 are too small to be visible, so this is hardcoded + pointLightSystem.SetRadius(uid, MathF.Max(1.1f, range), pointLightComp); + } +} diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index fc9ab081d26..15fe2a69cf9 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -201,6 +201,7 @@ private void OnActivateUI(Entity entity, ref AfterActivatableU ? bloodSolution.FillFraction : 0, null, + null, null )); } diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 60a492a755f..90646725bb7 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Medical.Components; using Content.Server.PowerCell; using Content.Server.Temperature.Components; +using Content.Server.Traits.Assorted; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; using Content.Shared.DoAfter; @@ -196,6 +197,7 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s var bloodAmount = float.NaN; var bleeding = false; + var unrevivable = false; if (TryComp(target, out var bloodstream) && _solutionContainerSystem.ResolveSolution(target, bloodstream.BloodSolutionName, @@ -205,12 +207,16 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s bleeding = bloodstream.BleedAmount > 0; } + if (HasComp(target)) + unrevivable = true; + _uiSystem.ServerSendUiMessage(healthAnalyzer, HealthAnalyzerUiKey.Key, new HealthAnalyzerScannedUserMessage( GetNetEntity(target), bodyTemperature, bloodAmount, scanMode, - bleeding + bleeding, + unrevivable )); } } diff --git a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs index 244b7adf036..20674dda879 100644 --- a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs @@ -22,6 +22,9 @@ public sealed class NinjaSuitSystem : SharedNinjaSuitSystem [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + // How much the cell score should be increased per 1 AutoRechargeRate. + private const int AutoRechargeValue = 100; + public override void Initialize() { base.Initialize(); @@ -59,15 +62,26 @@ private void OnSuitInsertAttempt(EntityUid uid, NinjaSuitComponent comp, Contain return; // no power cell for some reason??? allow it - if (!_powerCell.TryGetBatteryFromSlot(uid, out var battery)) + if (!_powerCell.TryGetBatteryFromSlot(uid, out var batteryUid, out var battery)) + return; + + if (!TryComp(args.EntityUid, out var inserting)) + { + args.Cancel(); return; + } + + var user = Transform(uid).ParentUid; // can only upgrade power cell, not swap to recharge instantly otherwise ninja could just swap batteries with flashlights in maints for easy power - if (!TryComp(args.EntityUid, out var inserting) || inserting.MaxCharge <= battery.MaxCharge) + if (GetCellScore(inserting.Owner, inserting) <= GetCellScore(battery.Owner, battery)) + { args.Cancel(); + Popup.PopupEntity(Loc.GetString("ninja-cell-downgrade"), user, user); + return; + } // tell ninja abilities that use battery to update it so they don't use charge from the old one - var user = Transform(uid).ParentUid; if (!_ninja.IsNinja(user)) return; @@ -76,6 +90,16 @@ private void OnSuitInsertAttempt(EntityUid uid, NinjaSuitComponent comp, Contain RaiseLocalEvent(user, ref ev); } + // this function assigns a score to a power cell depending on the capacity, to be used when comparing which cell is better. + private float GetCellScore(EntityUid uid, BatteryComponent battcomp) + { + // if a cell is able to automatically recharge, boost the score drastically depending on the recharge rate, + // this is to ensure a ninja can still upgrade to a micro reactor cell even if they already have a medium or high. + if (TryComp(uid, out var selfcomp) && selfcomp.AutoRecharge) + return battcomp.MaxCharge + (selfcomp.AutoRechargeRate*AutoRechargeValue); + return battcomp.MaxCharge; + } + private void OnEmpAttempt(EntityUid uid, NinjaSuitComponent comp, EmpAttemptEvent args) { // ninja suit (battery) is immune to emp diff --git a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs index a38e3636035..2ff94760f6b 100644 --- a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs @@ -41,7 +41,9 @@ public override void Initialize() protected override void SplattedCreamPie(EntityUid uid, CreamPieComponent creamPie) { - _audio.PlayPvs(_audio.GetSound(creamPie.Sound), uid, AudioParams.Default.WithVariation(0.125f)); + // The entity is deleted, so play the sound at its position rather than parenting + var coordinates = Transform(uid).Coordinates; + _audio.PlayPvs(_audio.GetSound(creamPie.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); if (EntityManager.TryGetComponent(uid, out FoodComponent? foodComp)) { diff --git a/Content.Server/ServerUpdates/ServerUpdateManager.cs b/Content.Server/ServerUpdates/ServerUpdateManager.cs index f4e54984e9b..bf18428e25b 100644 --- a/Content.Server/ServerUpdates/ServerUpdateManager.cs +++ b/Content.Server/ServerUpdates/ServerUpdateManager.cs @@ -12,9 +12,13 @@ namespace Content.Server.ServerUpdates; /// -/// Responsible for restarting the server for update, when not disruptive. +/// Responsible for restarting the server periodically or for update, when not disruptive. /// -public sealed class ServerUpdateManager +/// +/// This was originally only designed for restarting on *update*, +/// but now also handles periodic restarting to keep server uptime via . +/// +public sealed class ServerUpdateManager : IPostInjectInit { [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IWatchdogApi _watchdog = default!; @@ -22,23 +26,43 @@ public sealed class ServerUpdateManager [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IBaseServer _server = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ILogManager _logManager = default!; + + private ISawmill _sawmill = default!; [ViewVariables] private bool _updateOnRoundEnd; private TimeSpan? _restartTime; + private TimeSpan _uptimeRestart; + public void Initialize() { _watchdog.UpdateReceived += WatchdogOnUpdateReceived; _playerManager.PlayerStatusChanged += PlayerManagerOnPlayerStatusChanged; + + _cfg.OnValueChanged( + CCVars.ServerUptimeRestartMinutes, + minutes => _uptimeRestart = TimeSpan.FromMinutes(minutes), + true); } public void Update() { - if (_restartTime != null && _restartTime < _gameTiming.RealTime) + if (_restartTime != null) { - DoShutdown(); + if (_restartTime < _gameTiming.RealTime) + { + DoShutdown(); + } + } + else + { + if (ShouldShutdownDueToUptime()) + { + ServerEmptyUpdateRestartCheck("uptime"); + } } } @@ -48,7 +72,7 @@ public void Update() /// True if the server is going to restart. public bool RoundEnded() { - if (_updateOnRoundEnd) + if (_updateOnRoundEnd || ShouldShutdownDueToUptime()) { DoShutdown(); return true; @@ -61,11 +85,14 @@ private void PlayerManagerOnPlayerStatusChanged(object? sender, SessionStatusEve { switch (e.NewStatus) { - case SessionStatus.Connecting: + case SessionStatus.Connected: + if (_restartTime != null) + _sawmill.Debug("Aborting server restart timer due to player connection"); + _restartTime = null; break; case SessionStatus.Disconnected: - ServerEmptyUpdateRestartCheck(); + ServerEmptyUpdateRestartCheck("last player disconnect"); break; } } @@ -74,20 +101,20 @@ private void WatchdogOnUpdateReceived() { _chatManager.DispatchServerAnnouncement(Loc.GetString("server-updates-received")); _updateOnRoundEnd = true; - ServerEmptyUpdateRestartCheck(); + ServerEmptyUpdateRestartCheck("update notification"); } /// /// Checks whether there are still players on the server, /// and if not starts a timer to automatically reboot the server if an update is available. /// - private void ServerEmptyUpdateRestartCheck() + private void ServerEmptyUpdateRestartCheck(string reason) { // Can't simple check the current connected player count since that doesn't update // before PlayerStatusChanged gets fired. // So in the disconnect handler we'd still see a single player otherwise. var playersOnline = _playerManager.Sessions.Any(p => p.Status != SessionStatus.Disconnected); - if (playersOnline || !_updateOnRoundEnd) + if (playersOnline || !(_updateOnRoundEnd || ShouldShutdownDueToUptime())) { // Still somebody online. return; @@ -95,16 +122,30 @@ private void ServerEmptyUpdateRestartCheck() if (_restartTime != null) { - // Do nothing because I guess we already have a timer running..? + // Do nothing because we already have a timer running. return; } var restartDelay = TimeSpan.FromSeconds(_cfg.GetCVar(CCVars.UpdateRestartDelay)); _restartTime = restartDelay + _gameTiming.RealTime; + + _sawmill.Debug("Started server-empty restart timer due to {Reason}", reason); } private void DoShutdown() { - _server.Shutdown(Loc.GetString("server-updates-shutdown")); + _sawmill.Debug($"Shutting down via {nameof(ServerUpdateManager)}!"); + var reason = _updateOnRoundEnd ? "server-updates-shutdown" : "server-updates-shutdown-uptime"; + _server.Shutdown(Loc.GetString(reason)); + } + + private bool ShouldShutdownDueToUptime() + { + return _uptimeRestart != TimeSpan.Zero && _gameTiming.RealTime > _uptimeRestart; + } + + void IPostInjectInit.PostInject() + { + _sawmill = _logManager.GetSawmill("restart"); } } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index c9d5560a08c..53d00a768ab 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -32,6 +32,21 @@ public sealed class CCVars : CVars public static readonly CVarDef DefaultGuide = CVarDef.Create("server.default_guide", "NewPlayer", CVar.REPLICATED | CVar.SERVER); + /// + /// If greater than 0, automatically restart the server after this many minutes of uptime. + /// + /// + /// + /// This is intended to work around various bugs and performance issues caused by long continuous server uptime. + /// + /// + /// This uses the same non-disruptive logic as update restarts, + /// i.e. the game will only restart at round end or when there is nobody connected. + /// + /// + public static readonly CVarDef ServerUptimeRestartMinutes = + CVarDef.Create("server.uptime_restart_minutes", 0, CVar.SERVERONLY); + /* * Ambience */ diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index ed793ef90ef..93306381032 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -90,6 +90,35 @@ public SpeechVerbPrototype GetSpeechVerb(EntityUid source, string message, Speec return current ?? _prototypeManager.Index(speech.SpeechVerb); } + /// + /// Splits the input message into a radio prefix part and the rest to preserve it during sanitization. + /// + /// + /// This is primarily for the chat emote sanitizer, which can match against ":b" as an emote, which is a valid radio keycode. + /// + public void GetRadioKeycodePrefix(EntityUid source, + string input, + out string output, + out string prefix) + { + prefix = string.Empty; + output = input; + + // If the string is less than 2, then it's probably supposed to be an emote. + // No one is sending empty radio messages! + if (input.Length <= 2) + return; + + if (!(input.StartsWith(RadioChannelPrefix) || input.StartsWith(RadioChannelAltPrefix))) + return; + + if (!_keyCodes.TryGetValue(char.ToLower(input[1]), out _)) + return; + + prefix = input[..2]; + output = input[2..]; + } + /// /// Attempts to resolve radio prefixes in chat messages (e.g., remove a leading ":e" and resolve the requested /// channel. Returns true if a radio message was attempted, even if the channel is invalid. diff --git a/Content.Shared/Chemistry/InjectOverTimeEvent.cs b/Content.Shared/Chemistry/InjectOverTimeEvent.cs new file mode 100644 index 00000000000..ca5ab4213ff --- /dev/null +++ b/Content.Shared/Chemistry/InjectOverTimeEvent.cs @@ -0,0 +1,13 @@ +namespace Content.Shared.Chemistry.Events; + +/// +/// Raised directed on an entity when it embeds in another entity. +/// +[ByRefEvent] +public readonly record struct InjectOverTimeEvent(EntityUid embeddedIntoUid) +{ + /// + /// Entity that is embedded in. + /// + public readonly EntityUid EmbeddedIntoUid = embeddedIntoUid; +} diff --git a/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs b/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs index 78f26ed5c02..08af1a36a7b 100644 --- a/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs +++ b/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs @@ -13,14 +13,16 @@ public sealed class HealthAnalyzerScannedUserMessage : BoundUserInterfaceMessage public float BloodLevel; public bool? ScanMode; public bool? Bleeding; + public bool? Unrevivable; - public HealthAnalyzerScannedUserMessage(NetEntity? targetEntity, float temperature, float bloodLevel, bool? scanMode, bool? bleeding) + public HealthAnalyzerScannedUserMessage(NetEntity? targetEntity, float temperature, float bloodLevel, bool? scanMode, bool? bleeding, bool? unrevivable) { TargetEntity = targetEntity; Temperature = temperature; BloodLevel = bloodLevel; ScanMode = scanMode; Bleeding = bleeding; + Unrevivable = unrevivable; } } diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index d77169d32ed..b876cb20fe2 100644 --- a/Content.Shared/Pinpointer/NavMapComponent.cs +++ b/Content.Shared/Pinpointer/NavMapComponent.cs @@ -27,6 +27,50 @@ public sealed partial class NavMapComponent : Component /// [ViewVariables] public Dictionary Beacons = new(); + + /// + /// Describes the properties of a region on the station. + /// It is indexed by the entity assigned as the region owner. + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary RegionProperties = new(); + + /// + /// All flood filled regions, ready for display on a NavMapControl. + /// It is indexed by the entity assigned as the region owner. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary RegionOverlays = new(); + + /// + /// A queue of all region owners that are waiting their associated regions to be floodfilled. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Queue QueuedRegionsToFlood = new(); + + /// + /// A look up table to get a list of region owners associated with a flood filled chunk. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary> ChunkToRegionOwnerTable = new(); + + /// + /// A look up table to find flood filled chunks associated with a given region owner. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary> RegionOwnerToChunkTable = new(); } [Serializable, NetSerializable] @@ -51,10 +95,30 @@ public sealed class NavMapChunk(Vector2i origin) public GameTick LastUpdate; } +[Serializable, NetSerializable] +public sealed class NavMapRegionOverlay(Enum uiKey, List<(Vector2i, Vector2i)> gridCoords) +{ + /// + /// The key to the UI that will be displaying this region on its navmap + /// + public Enum UiKey = uiKey; + + /// + /// The local grid coordinates of the rectangles that make up the region + /// Item1 is the top left corner, Item2 is the bottom right corner + /// + public List<(Vector2i, Vector2i)> GridCoords = gridCoords; + + /// + /// Color of the region + /// + public Color Color = Color.White; +} + public enum NavMapChunkType : byte { // Values represent bit shift offsets when retrieving data in the tile array. - Invalid = byte.MaxValue, + Invalid = byte.MaxValue, Floor = 0, // I believe floors have directional information for diagonal tiles? Wall = SharedNavMapSystem.Directions, Airlock = 2 * SharedNavMapSystem.Directions, diff --git a/Content.Shared/Pinpointer/SharedNavMapSystem.cs b/Content.Shared/Pinpointer/SharedNavMapSystem.cs index 3ced5f3c9ed..37d60dec28a 100644 --- a/Content.Shared/Pinpointer/SharedNavMapSystem.cs +++ b/Content.Shared/Pinpointer/SharedNavMapSystem.cs @@ -3,10 +3,9 @@ using System.Runtime.CompilerServices; using Content.Shared.Tag; using Robust.Shared.GameStates; +using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Timing; -using Robust.Shared.Utility; namespace Content.Shared.Pinpointer; @@ -16,7 +15,7 @@ public abstract class SharedNavMapSystem : EntitySystem public const int Directions = 4; // Not directly tied to number of atmos directions public const int ChunkSize = 8; - public const int ArraySize = ChunkSize* ChunkSize; + public const int ArraySize = ChunkSize * ChunkSize; public const int AllDirMask = (1 << Directions) - 1; public const int AirlockMask = AllDirMask << (int) NavMapChunkType.Airlock; @@ -24,6 +23,7 @@ public abstract class SharedNavMapSystem : EntitySystem public const int FloorMask = AllDirMask << (int) NavMapChunkType.Floor; [Robust.Shared.IoC.Dependency] private readonly TagSystem _tagSystem = default!; + [Robust.Shared.IoC.Dependency] private readonly INetManager _net = default!; private static readonly ProtoId[] WallTags = {"Wall", "Window"}; private EntityQuery _doorQuery; @@ -57,7 +57,7 @@ public static Vector2i GetTileFromIndex(int index) public NavMapChunkType GetEntityType(EntityUid uid) { if (_doorQuery.HasComp(uid)) - return NavMapChunkType.Airlock; + return NavMapChunkType.Airlock; if (_tagSystem.HasAnyTag(uid, WallTags)) return NavMapChunkType.Wall; @@ -81,6 +81,57 @@ protected bool TryCreateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent co return true; } + public void AddOrUpdateNavMapRegion(EntityUid uid, NavMapComponent component, NetEntity regionOwner, NavMapRegionProperties regionProperties) + { + // Check if a new region has been added or an existing one has been altered + var isDirty = !component.RegionProperties.TryGetValue(regionOwner, out var oldProperties) || oldProperties != regionProperties; + + if (isDirty) + { + component.RegionProperties[regionOwner] = regionProperties; + + if (_net.IsServer) + Dirty(uid, component); + } + } + + public void RemoveNavMapRegion(EntityUid uid, NavMapComponent component, NetEntity regionOwner) + { + bool regionOwnerRemoved = component.RegionProperties.Remove(regionOwner) | component.RegionOverlays.Remove(regionOwner); + + if (regionOwnerRemoved) + { + if (component.RegionOwnerToChunkTable.TryGetValue(regionOwner, out var affectedChunks)) + { + foreach (var affectedChunk in affectedChunks) + { + if (component.ChunkToRegionOwnerTable.TryGetValue(affectedChunk, out var regionOwners)) + regionOwners.Remove(regionOwner); + } + + component.RegionOwnerToChunkTable.Remove(regionOwner); + } + + if (_net.IsServer) + Dirty(uid, component); + } + } + + public Dictionary GetNavMapRegionOverlays(EntityUid uid, NavMapComponent component, Enum uiKey) + { + var regionOverlays = new Dictionary(); + + foreach (var (regionOwner, regionOverlay) in component.RegionOverlays) + { + if (!regionOverlay.UiKey.Equals(uiKey)) + continue; + + regionOverlays.Add(regionOwner, regionOverlay); + } + + return regionOverlays; + } + #region: Event handling private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) @@ -97,7 +148,7 @@ private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentG chunks.Add(origin, chunk.TileData); } - args.State = new NavMapState(chunks, component.Beacons); + args.State = new NavMapState(chunks, component.Beacons, component.RegionProperties); return; } @@ -110,7 +161,7 @@ private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentG chunks.Add(origin, chunk.TileData); } - args.State = new NavMapDeltaState(chunks, component.Beacons, new(component.Chunks.Keys)); + args.State = new NavMapDeltaState(chunks, component.Beacons, component.RegionProperties, new(component.Chunks.Keys)); } #endregion @@ -120,22 +171,26 @@ private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentG [Serializable, NetSerializable] protected sealed class NavMapState( Dictionary chunks, - Dictionary beacons) + Dictionary beacons, + Dictionary regions) : ComponentState { public Dictionary Chunks = chunks; public Dictionary Beacons = beacons; + public Dictionary Regions = regions; } [Serializable, NetSerializable] protected sealed class NavMapDeltaState( Dictionary modifiedChunks, Dictionary beacons, + Dictionary regions, HashSet allChunks) : ComponentState, IComponentDeltaState { public Dictionary ModifiedChunks = modifiedChunks; public Dictionary Beacons = beacons; + public Dictionary Regions = regions; public HashSet AllChunks = allChunks; public void ApplyToFullState(NavMapState state) @@ -159,11 +214,18 @@ public void ApplyToFullState(NavMapState state) { state.Beacons.Add(nuid, beacon); } + + state.Regions.Clear(); + foreach (var (nuid, region) in Regions) + { + state.Regions.Add(nuid, region); + } } public NavMapState CreateNewFullState(NavMapState state) { var chunks = new Dictionary(state.Chunks.Count); + foreach (var (index, data) in state.Chunks) { if (!AllChunks!.Contains(index)) @@ -177,12 +239,25 @@ public NavMapState CreateNewFullState(NavMapState state) Array.Copy(newData, data, ArraySize); } - return new NavMapState(chunks, new(Beacons)); + return new NavMapState(chunks, new(Beacons), new(Regions)); } } [Serializable, NetSerializable] public record struct NavMapBeacon(NetEntity NetEnt, Color Color, string Text, Vector2 Position); + [Serializable, NetSerializable] + public record struct NavMapRegionProperties(NetEntity Owner, Enum UiKey, HashSet Seeds) + { + // Server defined color for the region + public Color Color = Color.White; + + // The maximum number of tiles that can be assigned to this region + public int MaxArea = 625; + + // The maximum distance this region can propagate from its seeds + public int MaxRadius = 25; + } + #endregion } diff --git a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs index 008b7c2ced4..e4125945d26 100644 --- a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs +++ b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs @@ -13,37 +13,43 @@ public sealed partial class EmbeddableProjectileComponent : Component /// /// Minimum speed of the projectile to embed. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public float MinimumSpeed = 5f; /// /// Delete the entity on embedded removal? /// Does nothing if there's no RemovalTime. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public bool DeleteOnRemove; /// /// How long it takes to remove the embedded object. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public float? RemovalTime = 3f; /// /// Whether this entity will embed when thrown, or only when shot as a projectile. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public bool EmbedOnThrow = true; /// /// How far into the entity should we offset (0 is wherever we collided). /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public Vector2 Offset = Vector2.Zero; /// /// Sound to play after embedding into a hit target. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public SoundSpecifier? Sound; + + /// + /// Uid of the entity the projectile is embed into. + /// + [DataField, AutoNetworkedField] + public EntityUid? EmbeddedIntoUid; } diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 1b7d6d6f991..85e75d6d291 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -71,6 +71,8 @@ private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent componen TryComp(uid, out var physics); _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); _transform.AttachToGridOrMap(uid, xform); + component.EmbeddedIntoUid = null; + Dirty(uid, component); // Reset whether the projectile has damaged anything if it successfully was removed if (TryComp(uid, out var projectile)) @@ -127,8 +129,10 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP } _audio.PlayPredicted(component.Sound, uid, null); + component.EmbeddedIntoUid = target; var ev = new EmbedEvent(user, target); RaiseLocalEvent(uid, ref ev); + Dirty(uid, component); } private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index baef62c3da9..7eef20cebd8 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -285,6 +285,8 @@ private void OnAiMapInit(Entity ent, ref MapInitEvent ar private bool SetupEye(Entity ent) { + if (_net.IsClient) + return false; if (ent.Comp.RemoteEntity != null) return false; @@ -299,8 +301,11 @@ private bool SetupEye(Entity ent) private void ClearEye(Entity ent) { + if (_net.IsClient) + return; QueueDel(ent.Comp.RemoteEntity); ent.Comp.RemoteEntity = null; + Dirty(ent); } private void AttachEye(Entity ent) @@ -330,6 +335,8 @@ private void OnAiInsert(Entity ent, ref EntInsertedIntoC if (_timing.ApplyingState) return; + SetupEye(ent); + // Just so text and the likes works properly _metadata.SetEntityName(ent.Owner, MetaData(args.Entity).EntityName); @@ -351,6 +358,7 @@ private void OnAiRemove(Entity ent, ref EntRemovedFromCo { _eye.SetTarget(args.Entity, null, eyeComp); } + ClearEye(ent); } private void UpdateAppearance(Entity entity) diff --git a/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs index a979a6ec50e..65848cb5e57 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Whitelist; using Robust.Shared.GameStates; namespace Content.Shared.Sound.Components; @@ -8,4 +9,9 @@ namespace Content.Shared.Sound.Components; [RegisterComponent, NetworkedComponent] public sealed partial class EmitSoundOnUIOpenComponent : BaseEmitSoundComponent { + /// + /// Blacklist for making the sound not play if certain entities open the UI + /// + [DataField] + public EntityWhitelist Blacklist = new(); } diff --git a/Content.Shared/Sound/SharedEmitSoundSystem.cs b/Content.Shared/Sound/SharedEmitSoundSystem.cs index 8040910dc3c..3e051fff317 100644 --- a/Content.Shared/Sound/SharedEmitSoundSystem.cs +++ b/Content.Shared/Sound/SharedEmitSoundSystem.cs @@ -58,7 +58,10 @@ public override void Initialize() private void HandleEmitSoundOnUIOpen(EntityUid uid, EmitSoundOnUIOpenComponent component, AfterActivatableUIOpenEvent args) { - TryEmitSound(uid, component, args.User); + if (_whitelistSystem.IsBlacklistFail(component.Blacklist, args.User)) + { + TryEmitSound(uid, component, args.User); + } } private void OnMobState(Entity entity, ref MobStateChangedEvent args) diff --git a/Content.Shared/UserInterface/IntrinsicUISystem.cs b/Content.Shared/UserInterface/IntrinsicUISystem.cs index 2d8c5d14801..b16492b8355 100644 --- a/Content.Shared/UserInterface/IntrinsicUISystem.cs +++ b/Content.Shared/UserInterface/IntrinsicUISystem.cs @@ -10,6 +10,7 @@ public sealed class IntrinsicUISystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(InitActions); + SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnActionToggle); } @@ -21,6 +22,15 @@ private void OnActionToggle(EntityUid uid, IntrinsicUIComponent component, Toggl args.Handled = InteractUI(uid, args.Key, component); } + private void OnShutdown(EntityUid uid, IntrinsicUIComponent component, ref ComponentShutdown args) + { + foreach (var actionEntry in component.UIs.Values) + { + var actionId = actionEntry.ToggleActionEntity; + _actionsSystem.RemoveAction(uid, actionId); + } + } + private void InitActions(EntityUid uid, IntrinsicUIComponent component, MapInitEvent args) { foreach (var entry in component.UIs.Values) diff --git a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml index 2e125ba04d5..df1f6849346 100644 --- a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml @@ -32,3 +32,8 @@ license: "CC-BY-SA-3.0" copyright: "Taken from tgstation" source: "https://github.com/tgstation/tgstation/blob/5736656139713c802033b9457a2a9d058211bd85/sound/weapons/gun/shotgun/shot.ogg" + +- files: ["syringe_gun.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from vgstation" + source: "https://github.com/vgstation-coders/vgstation13/commit/23303188abe6fe31b114a218a1950d7325a23730" diff --git a/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg b/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg new file mode 100644 index 00000000000..2132808ecdc Binary files /dev/null and b/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 79208bbae83..18c2dc96577 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,135 +1,4 @@ Entries: -- author: Mervill - changes: - - message: Rotten Meat can be collected in trash bags and deleted by the recycler - type: Tweak - id: 7040 - time: '2024-08-04T10:13:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30594 -- author: DrSmugleaf - changes: - - message: Fixed the client sometimes falsely showing the red color flash effect - when attacking something that they can't, like allied xenonids. - type: Fix - id: 7041 - time: '2024-08-05T03:14:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30661 -- author: Killerqu00 - changes: - - message: Sleeper agents event no longer occurs when evacuation is called. - type: Tweak - id: 7042 - time: '2024-08-05T03:17:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30646 -- author: Cojoke-dot - changes: - - message: Mice can now use combat mode with a 0 damage attack - type: Tweak - id: 7043 - time: '2024-08-05T03:26:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30487 -- author: TheShuEd - changes: - - message: Nanotrasen has introduced recruitment rules. Characters under the age - of 20 are no longer allowed to take on the role of head. - type: Tweak - id: 7044 - time: '2024-08-05T04:25:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30347 -- author: foboscheshir - changes: - - message: added missing mime mask sprites for Vox - scared and sad. - type: Add - id: 7045 - time: '2024-08-05T06:09:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30607 -- author: SlamBamActionman, PolarTundra - changes: - - message: Thief's Syndie Kit now comes with a Radio Jammer, a lighter and a Syndicate - codeword. - type: Add - - message: Thief's Agent ID has been moved from the Syndie Kit to the Chameleon - Kit. - type: Tweak - - message: The Syndicate pAI has been removed from the Thief's Syndie Kit. - type: Remove - id: 7046 - time: '2024-08-05T08:03:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30446 -- author: EmoGarbage404 - changes: - - message: Being cold now slows down your character. - type: Add - id: 7047 - time: '2024-08-05T08:07:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29692 -- author: EmoGarbage404 - changes: - - message: The biogenerator has been recolored and renamed to the "biocube fabricator." - type: Tweak - id: 7048 - time: '2024-08-06T10:51:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30696 -- author: Errant - changes: - - message: Vox can be nukies and ninjas again. - type: Tweak - id: 7049 - time: '2024-08-06T10:58:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29783 -- author: slarticodefast - changes: - - message: Fixed borgs, animals and aghosts being able to enter cryosleep. - type: Fix - id: 7050 - time: '2024-08-06T11:00:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30574 -- author: Flareguy - changes: - - message: Most hats are now automatically displaced on vox to look more fitting. - type: Tweak - id: 7051 - time: '2024-08-06T13:12:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30699 -- author: Errant - changes: - - message: Medical Mask sprite now works on vox. - type: Fix - id: 7052 - time: '2024-08-07T03:41:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30702 -- author: Lyroth001 - changes: - - message: Dragons are immune to flashes - type: Tweak - id: 7053 - time: '2024-08-07T07:42:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30658 -- author: ShadowCommander - changes: - - message: Rollerbeds can now be dragged to the player to fold and pick them up. - type: Add - id: 7054 - time: '2024-08-07T09:19:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30002 -- author: Errant - changes: - - message: Survivors arriving via the Unknown Shuttle event, ERT and CBURN agents, - and Death Squad members are now equipped with the appropriate species-specific - survival gear. - type: Fix - - message: Unknown Shuttle event can once again spawn vox characters. - type: Tweak - id: 7055 - time: '2024-08-07T09:26:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29746 -- author: IProduceWidgets - changes: - - message: butter is slippery - type: Tweak - id: 7056 - time: '2024-08-07T21:47:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29772 - author: Mervill changes: - message: Gas Miners now have detailed examine text @@ -3945,3 +3814,146 @@ id: 7539 time: '2024-10-20T03:41:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32422 +- author: Thatonestomf + changes: + - message: Mute toxin now mutes even after is metabolized, similar to glue + type: Tweak + - message: Mute toxin is now even more powerful at muting people + type: Tweak + id: 7540 + time: '2024-10-21T03:43:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32915 +- author: MendaxxDev + changes: + - message: Fixed typing sound playing when AI or admin ghosts interacted with consoles. + type: Fix + id: 7541 + time: '2024-10-21T03:50:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32906 +- author: NoElkaTheGod + changes: + - message: Station AI can now interact with long range fax machines. + type: Tweak + id: 7542 + time: '2024-10-21T12:44:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32929 +- author: Southbridge + changes: + - message: Box Station's window between the containment room and TEG has been upgraded + to plasma. + type: Fix + - message: Box Station's Engineering storage room air alarm has been properly connected + to nearby devices. + type: Fix + - message: Box Station's Janitorial disposal chute has been replaced with a working + one. + type: Fix + id: 7543 + time: '2024-10-22T05:39:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32950 +- author: Moomoobeef + changes: + - message: Ammo-boxes no longer appear empty when only one bullet is removed. + type: Fix + id: 7544 + time: '2024-10-22T09:00:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32930 +- author: ScarKy0 + changes: + - message: Added the syringe gun and it's respective ammo. Currently Admeme only. + type: Add + id: 7545 + time: '2024-10-22T13:03:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32112 +- author: ScarKy0, Fildrance + changes: + - message: Using an intellicard on the AI core now swaps the AI between the core + and intellicard. (You can evac with the AI!) + type: Add + - message: Added an intellicard to the RD's locker. + type: Add + id: 7546 + time: '2024-10-22T13:49:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32347 +- author: Southbridge + changes: + - message: Nuclear Cola can now be broken down in a centrifuge. + type: Add + id: 7547 + time: '2024-10-22T17:01:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32441 +- author: BramvanZijp + changes: + - message: The Space Ninja Suit will now give an error popup if you are trying to + install a cell that is not better compared to the current cell. + type: Add + - message: When comparing which power cell is better when trying to swap them, the + Space Ninja's Suit will now also consider if the power cells have self-recharge + capability. + type: Tweak + - message: You can no longer fit weapons-grade power cages into the space ninja + suit. + type: Fix + id: 7548 + time: '2024-10-22T23:36:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32902 +- author: UBlueberry + changes: + - message: The appraisal tool now has in-hand sprites! + type: Fix + id: 7549 + time: '2024-10-22T23:51:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32849 +- author: chromiumboy + changes: + - message: The atmospheric alerts computer has been upgraded to visually indicate + the rooms of the station that are being monitored by its air and fire alarm + systems + type: Tweak + id: 7550 + time: '2024-10-23T12:49:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31910 +- author: hyphenationc + changes: + - message: Snake meat is now properly considered Meat, so Lizards can eat it. + type: Fix + id: 7551 + time: '2024-10-24T03:41:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32965 +- author: slarticodefast + changes: + - message: Mix 1u aluminium, 1u potassium and 1u sulfur for a flash reaction effect. + The radius scales with the reagent amount. + type: Add + id: 7552 + time: '2024-10-25T22:47:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32377 +- author: BramvanZijp + changes: + - message: Fixed the Lone Nuclear Operative mid-round antagonist being extremely + rare. + type: Fix + id: 7553 + time: '2024-10-26T02:16:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32942 +- author: Moomoobeef + changes: + - message: Bowls no longer make an eating sound when drinking from them. + type: Fix + id: 7554 + time: '2024-10-26T04:00:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32819 +- author: SaphireLattice + changes: + - message: Added a warning about unrevivability in the health analyzer UI. + type: Add + id: 7555 + time: '2024-10-26T17:22:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32636 +- author: slarticodefast + changes: + - message: Fixed pie throwing sound not playing. + type: Fix + id: 7556 + time: '2024-10-27T04:25:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33017 diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index 682129fff1d..c19d01f6ba1 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,118 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 163 - time: '2022-06-24T03:00:58.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\u0440\ - \u0435\u0432\u043E\u0434\u044B, \u0441\u0442\u0438\u043B\u0438\u0441\u0442\u0438\ - \u0447\u0435\u0441\u043A\u0438\u0435 \u043F\u0440\u0430\u0432\u043A\u0438" - type: Add - id: 164 - time: '2022-06-24T12:41:25.0000000+00:00' -- author: Morty - changes: - - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ - \u0439\u0442\u044B \u043D\u0430\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043D\ - \u044B\u0435 \u043E\u043A\u043D\u0430 \u0438 \u0434\u0432\u0435\u0440\u0438" - type: Tweak - id: 165 - time: '2022-06-25T21:49:28.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 166 - time: '2022-06-29T00:56:27.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 167 - time: '2022-07-02T01:53:12.0000000+00:00' -- author: lapatison - changes: - - message: "\u044F\u0449\u0435\u0440\u043E\u043B\u044E\u0434\u044B \u0437\u0430\u043C\ - \u0435\u043D\u0435\u043D\u044B \u0443\u043D\u0430\u0442\u0445\u0430\u043C\u0438" - type: Fix - id: 168 - time: '2022-07-06T21:02:36.0000000+00:00' -- author: lapatison - changes: - - message: "\u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\ - \u044B (\u0434\u0436\u0435\u0442\u043F\u0430\u043A\u0438, \u043E\u0442\u043F\ - \u0435\u0447\u0430\u0442\u043A\u0438 \u043F\u0430\u043B\u044C\u0446\u0435\u0432\ - \ \u0438 \u0432\u043E\u043B\u043E\u043A\u043D\u0430, \u0434\u043E\u043B\u0436\ - \u043D\u043E\u0441\u0442\u0438, \u0440\u0430\u0434\u0438\u043E\u043A\u0430\u043D\ - \u0430\u043B\u044B, \u0438 \u043F\u0440\u043E\u0447\u0435\u0435)" - type: Add - id: 169 - time: '2022-07-06T21:03:14.0000000+00:00' -- author: lapatison - changes: - - message: "\u0431\u0443\u043A\u0432\u044B \u043A\u043E\u0442\u043E\u0440\u044B\u0435\ - \ \u0432\u044B \u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043F\u043E\u0441\ - \u043B\u0435 \u0434\u0432\u043E\u0435\u0442\u043E\u0447\u0438\u044F \u0447\u0442\ - \u043E\u0431\u044B \u043F\u0438\u0441\u0430\u0442\u044C \u0432 \u0440\u0430\u0446\ - \u0438\u044E \u043E\u0442\u0434\u0435\u043B\u0430 \u0431\u044B\u043B\u0438 \u0437\ - \u0430\u043C\u0435\u043D\u0435\u043D\u044B \u0440\u0443\u0441\u0441\u043A\u0438\ - \u043C\u0438. \u041E\u0441\u043C\u043E\u0442\u0440\u0438\u0442\u0435 \u0441\u0432\ - \u043E\u0439 \u043D\u0430\u0443\u0448\u043D\u0438\u043A, \u0447\u0442\u043E\u0431\ - \u044B \u0443\u0432\u0438\u0434\u0435\u0442\u044C \u0430\u043A\u0442\u0443\u0430\ - \u043B\u044C\u043D\u044B\u0435 \u043A\u0435\u0439\u043A\u043E\u0434\u044B \u043A\ - \u0430\u043D\u0430\u043B\u043E\u0432." - type: Fix - id: 170 - time: '2022-07-06T23:44:51.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043F\u0435\u0440\u0435\ - \u0432\u043E\u0434 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0439 \u0441\u043A\ - \u0430\u0444\u0430\u043D\u0434\u0440\u043E\u0432 \u041E\u0411\u0420" - type: Add - id: 171 - time: '2022-07-07T17:51:09.0000000+00:00' -- author: lapatison - changes: - - message: "\u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\ - \u044B (\u0438\u0433\u0440\u043E\u0432\u043E\u0439 \u0440\u0435\u0436\u0438\u043C\ - \ \u0417\u043E\u043C\u0431\u0438, \u0441\u043D\u0430\u0440\u044F\u0436\u0435\ - \u043D\u0438\u0435 \u043E\u0442\u0440\u044F\u0434\u0430 \u0420\u0425\u0411\u0417\ - \u0417, \u0434\u0438\u0437\u0435\u0439\u0431\u043B\u0435\u0440\u044B, \u0449\ - \u0438\u0442\u044B, \u0442\u0435\u043B\u0435\u0432\u0438\u0437\u043E\u0440\u044B\ - , \u043F\u0440\u043E\u0447\u0435\u0435; \u043F\u0440\u043E\u0432\u0435\u0434\ - \u0435\u043D\u044B \u0441\u0442\u0438\u043B\u0438\u0441\u0442\u0438\u0447\u0435\ - \u0441\u043A\u0438\u0435 \u043F\u0440\u0430\u0432\u043A\u0438." - type: Add - id: 172 - time: '2022-07-09T10:14:31.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 173 - time: '2022-07-08T21:46:21.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0440\u0430\u0432\u043A\u0438 \u043F\ - \u0435\u0440\u0435\u0432\u043E\u0434\u0430" - type: Add - id: 174 - time: '2022-07-09T17:32:33.0000000+00:00' - author: lapatison changes: - message: "\u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0441\u0442\u0438\ @@ -4462,3 +4348,112 @@ id: 662 time: '2024-10-20T05:04:28.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2690 +- author: Resoid + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0442\u044B\u043A\u0432\ + \u0435\u043D\u043D\u044B\u0439 \u0441\u043F\u0430\u0441 \u043D\u0430 Astra." + type: Add + id: 663 + time: '2024-10-20T15:54:28.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2691 +- author: Taburetka24 + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0442\u044B\u043A\u0432\ + \u0435\u043D\u043D\u044B\u0439 \u0441\u043F\u0430\u0441 \u043D\u0430 Awesome\ + \ (\u043D\u0430 \u043D\u0435\u0439 \u0438 \u0442\u0430\u043A \u0441\u0442\u0440\ + \u0430\u0448\u043D\u043E)." + type: Tweak + id: 664 + time: '2024-10-20T17:12:39.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2695 +- author: doctor_jake + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Silly." + type: Tweak + id: 665 + time: '2024-10-20T17:43:54.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2694 +- author: Ko4erga + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u044B \u043A\u0430\u0440\ + \u0442\u044B Pilgrim, Avrite, Tushkan." + type: Tweak + id: 666 + time: '2024-10-20T18:52:54.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2696 +- author: Meguneri + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0430 \u043A\u0430\u0440\u0442\ + \u0430 Maus \u0432 \u043F\u0440\u0435\u0434\u0434\u0432\u0435\u0440\u0438\u0438\ + \ \u0445\u044D\u043B\u043B\u043E\u0443\u0438\u043D\u0430." + type: Tweak + id: 667 + time: '2024-10-20T20:57:30.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2697 +- author: TiFeRI + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u0430\ + \u0440\u0442\u044B Paper!" + type: Tweak + id: 668 + time: '2024-10-21T00:24:58.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2698 +- author: Dezzzix + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Glacier" + type: Tweak + id: 669 + time: '2024-10-21T16:04:58.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2699 +- author: Ko4erga + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E 15 \u043D\u043E\ + \u0432\u044B\u0445 \u0440\u0443\u0438\u043D." + type: Add + - message: "\u0423\u0434\u0430\u043B\u0435\u043D\u043E 8 \u043E\u0444\u0444\u043E\ + \u0432\u0441\u043A\u0438\u0445 \u0440\u0443\u0438\u043D (\u0432\u0441\u0435\ + )." + type: Remove + id: 670 + time: '2024-10-22T05:49:47.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2700 +- author: Dezzzix + changes: + - message: "\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u043E\u0435 \u0443\u0434\u0430\ + \u043B\u0435\u043D\u0438\u0435 \u043A\u0430\u0440\u0442\u044B Glacier, \u0434\ + \u043E \u0438\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u043A\ + \u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u043E\u0448\u0438\ + \u0431\u043E\u043A \u043E\u0444\u0438\u0446\u0438\u0430\u043B\u044C\u043D\u044B\ + \u043C\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\ + \u0430\u043C\u0438." + type: Remove + id: 671 + time: '2024-10-23T01:49:55.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2703 +- author: KMIN + changes: + - message: "\u0423\u0434\u0430\u043B\u0435\u043D\u044B \u043A\u043E\u0434\u044B\ + \ \u044F\u0434\u0435\u0440\u043D\u043E\u0439 \u0431\u043E\u0435\u0433\u043E\u043B\ + \u043E\u0432\u043A\u0438 \u0441 \u0440\u0443\u0438\u043D." + type: Tweak + id: 672 + time: '2024-10-25T11:47:13.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2706 +- author: MureixloL, Prazat911 + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ + \u0439\u0442\u044B!" + type: Tweak + id: 673 + time: '2024-10-26T04:22:34.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2704 +- author: Morb0 + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E 34 \u043D\u043E\ + \u0432\u044B\u0445 \u0433\u043E\u043B\u043E\u0441\u0430" + type: Add + id: 674 + time: '2024-10-27T10:08:27.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2705 diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index 7560833f13a..a1a0e5b704d 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -4,10 +4,6 @@ [game] hostname = "[EN] Wizard's Den Leviathan [US East 1]" -panic_bunker.enabled = false -panic_bunker.disable_with_admins = false -panic_bunker.enable_without_admins = false -panic_bunker.custom_reason = "" [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 077ff3fe40a..2b059ca40e3 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -4,12 +4,12 @@ [game] desc = "Official English Space Station 14 servers. Vanilla, roleplay ruleset." lobbyenabled = true -soft_max_players = 80 +soft_max_players = 70 panic_bunker.enabled = true panic_bunker.disable_with_admins = true panic_bunker.enable_without_admins = true panic_bunker.show_reason = true -panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard, Leviathan, or Farm Grass Hopper until you have more playtime." +panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard or Farm Grass Hopper until you have more playtime." [infolinks] bug_report = "https://github.com/space-wizards/space-station-14/issues/new/choose" diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index e00d7c78a60..ac39b6b7f55 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, irismessage, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, SpaceLizardSky, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zylofan, Zymem, zzylex +0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, SpaceLizardSky, SpaceManiac, SpaceyLady, Spanky, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl index a1640c5e9d5..470a8f86952 100644 --- a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl +++ b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl @@ -25,7 +25,7 @@ atmos-alerts-window-warning-state = Warning atmos-alerts-window-danger-state = Danger! atmos-alerts-window-invalid-state = Inactive -atmos-alerts-window-no-active-alerts = [font size=16][color=white]No active alerts -[/color] [color={$color}]situation normal[/color][/font] +atmos-alerts-window-no-active-alerts = [font size=16][color=white]No active alerts -[/color] [color={$color}]Situation normal[/color][/font] atmos-alerts-window-no-data-available = No data available atmos-alerts-window-alerts-being-silenced = Silencing alerts... diff --git a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl index ffc414eb5c3..7c5d8553636 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl @@ -37,6 +37,12 @@ reagent-effect-guidebook-emp-reaction-effect = *[other] cause } an electromagnetic pulse +reagent-effect-guidebook-flash-reaction-effect = + { $chance -> + [1] Causes + *[other] cause + } a blinding flash + reagent-effect-guidebook-foam-area-reaction-effect = { $chance -> [1] Creates diff --git a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl index fe1f92e9140..eb79358ecc2 100644 --- a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl @@ -15,7 +15,8 @@ health-analyzer-window-entity-damage-total-text = Total Damage: health-analyzer-window-damage-group-text = {$damageGroup}: {$amount} health-analyzer-window-damage-type-text = {$damageType}: {$amount} -health-analyzer-window-entity-bleeding-text = Patient is bleeding! +health-analyzer-window-entity-unrevivable-text = [color=red]Unique body composition detected! Patient can not be resuscitated by normal means![/color] +health-analyzer-window-entity-bleeding-text = [color=red]Patient is bleeding![/color] health-analyzer-window-scan-mode-text = Scan Mode: health-analyzer-window-scan-mode-active = Active diff --git a/Resources/Locale/en-US/ninja/ninja-actions.ftl b/Resources/Locale/en-US/ninja/ninja-actions.ftl index f01f02a60e5..b3e295b7a29 100644 --- a/Resources/Locale/en-US/ninja/ninja-actions.ftl +++ b/Resources/Locale/en-US/ninja/ninja-actions.ftl @@ -1,6 +1,8 @@ ninja-no-power = Not enough charge in suit battery! ninja-revealed = You have been revealed! ninja-suit-cooldown = The suit needs time to recuperate from the last attack. +ninja-cell-downgrade = The suit will only accept a new power cell that is better than the current one! +ninja-cell-too-large = This power source does not fit in the ninja suit! ninja-research-steal-fail = No new research nodes were stolen... ninja-research-steal-success = Stole {$count} new nodes from {THE($server)}. diff --git a/Resources/Locale/en-US/server-updates/server-updates.ftl b/Resources/Locale/en-US/server-updates/server-updates.ftl index 72047432bb5..ae775c99314 100644 --- a/Resources/Locale/en-US/server-updates/server-updates.ftl +++ b/Resources/Locale/en-US/server-updates/server-updates.ftl @@ -1,2 +1,3 @@ server-updates-received = Update has been received, server will automatically restart for update at the end of this round. server-updates-shutdown = Server is shutting down for update and will automatically restart. +server-updates-shutdown-uptime = Server is shutting down for periodic cleanup and will automatically restart. diff --git a/Resources/Locale/ru-RU/advertisements/other/firebot.ftl b/Resources/Locale/ru-RU/advertisements/other/firebot.ftl index ad35cf2d24b..09c7c8aad96 100644 --- a/Resources/Locale/ru-RU/advertisements/other/firebot.ftl +++ b/Resources/Locale/ru-RU/advertisements/other/firebot.ftl @@ -1,4 +1,4 @@ -advertisement-firebot-1 = No fires detected. -advertisement-firebot-2 = Only you can prevent station fires. -advertisement-firebot-3 = Temperature nominal. -advertisement-firebot-4 = Keep it cool. +advertisement-firebot-1 = Пожара не обнаружено. +advertisement-firebot-2 = Только вы можете предотвратить пожар на станции. +advertisement-firebot-3 = Температура допустимая. +advertisement-firebot-4 = Сохраняйте прохладу. diff --git a/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl index fc36262fd7f..2204f893e82 100644 --- a/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl @@ -1,6 +1,7 @@ ### Announcement earlyleave-cryo-job-unknown = Должность неизвестна +# {$entity} available for GENDER function purposes earlyleave-cryo-announcement = { $character } ({ $job }) { GENDER($entity) -> [male] был перемещён diff --git a/Resources/Locale/ru-RU/corvax/tts/tts-voices.ftl b/Resources/Locale/ru-RU/corvax/tts/tts-voices.ftl index 2fb0ae7d51b..3f60a2d7aad 100644 --- a/Resources/Locale/ru-RU/corvax/tts/tts-voices.ftl +++ b/Resources/Locale/ru-RU/corvax/tts/tts-voices.ftl @@ -722,3 +722,38 @@ tts-voice-name-stalker_metro_soldier = Солдат (Metro) tts-voice-name-stalker_metro_stalker01 = Сталкер01 (Metro) tts-voice-name-stalker_metro_newbie01 = Новичок01 (Metro) tts-voice-name-warcraft_garrosh = Гаррош (WarCraft 3) +tts-voice-name-male_v = Мужской V +tts-voice-name-johny = Джонни +tts-voice-name-takemura = Такемура +tts-voice-name-sobchak = Собчак +tts-voice-name-jackie = Джеки +tts-voice-name-kerry = Керри +tts-voice-name-mitch = Митч +tts-voice-name-saul = Саул +tts-voice-name-haru = Хару +tts-voice-name-victor = Виктор +tts-voice-name-placide = Пласид +tts-voice-name-dexter = Декстер +tts-voice-name-sebastian = Себастьян +tts-voice-name-jefferson = Джефферсон +tts-voice-name-joshua = Джошуа +tts-voice-name-ellie = Элли +tts-voice-name-joel = Джоэл +tts-voice-name-tess = Тесс +tts-voice-name-mission_control = Миссия Контроль +tts-voice-name-dwarves = Гномы +tts-voice-name-sunboy_inner = Санбой (внутренний) +tts-voice-name-sunboy_sad = Санбой (грустный) +tts-voice-name-sunboy_mannered = Санбой (вежливый) +tts-voice-name-sunboy_kalm = Санбой (спокойный) +tts-voice-name-last_years_snow_narrator = Рассказчик прошлогоднего снега +tts-voice-name-last_years_snow_man = Мужчина прошлогоднего снега +tts-voice-name-titus = Титус +tts-voice-name-berserk = Берсерк +tts-voice-name-gadriel = Гадриэль +tts-voice-name-chairon = Хайрон +tts-voice-name-acheran = Акеран +tts-voice-name-machine_spirit_4 = Дух машины +tts-voice-name-magos_galeo = Магос Галео +tts-voice-name-servo_skull = Серво-череп +tts-voice-name-balthazar = Вальтазар diff --git a/Resources/Locale/ru-RU/entity-categories.ftl b/Resources/Locale/ru-RU/entity-categories.ftl index 570ca944df5..2c402270077 100644 --- a/Resources/Locale/ru-RU/entity-categories.ftl +++ b/Resources/Locale/ru-RU/entity-categories.ftl @@ -1,5 +1,5 @@ entity-category-name-actions = Действия entity-category-name-game-rules = Игровые режимы entity-category-name-objectives = Цели -entity-category-name-roles = Mind Roles -entity-category-name-mapping = Mapping +entity-category-name-roles = Роли сознания +entity-category-name-mapping = Маппинг diff --git a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl index bc382aa1d36..670047ed37b 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl @@ -3,7 +3,7 @@ nukeops-description = Ядерные оперативники нацелилис nukeops-welcome = Вы - ядерный оперативник. Ваша задача - взорвать { $station } и убедиться, что от неё осталась лишь груда обломков. Ваше руководство, Синдикат, снабдило вас всем необходимым для выполнения этой задачи. Операция "{ $name }" началась! Смерть Nanotrasen! -nukeops-briefing = Your objectives are simple. Deliver the payload and make sure it detonates. Begin mission. +nukeops-briefing = Ваши задачи просты. Доставить бомбу и убедиться, что она взорвётся. Начинайте миссию. nukeops-opsmajor = [color=crimson]Крупная победа Синдиката![/color] nukeops-opsminor = [color=crimson]Малая победа Синдиката![/color] nukeops-neutral = [color=yellow]Ничейный исход![/color] diff --git a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl index ab15925359a..05cd2cf4152 100644 --- a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl @@ -175,54 +175,54 @@ ghost-role-information-syndicate-monkey-reinforcement-rules = Вы [color=red][b ghost-role-information-syndicate-kobold-reinforcement-name = Агент Синдиката-кобольд ghost-role-information-syndicate-kobold-reinforcement-description = Кому-то нужно подкрепление. Вы, специально обученный кобольд, поможете им. ghost-role-information-syndicate-kobold-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с агентом, который вас призвал. -ghost-role-information-syndicate-cyborg-assault-name = Syndicate Assault Cyborg -ghost-role-information-syndicate-cyborg-saboteur-name = Syndicate Saboteur Cyborg -ghost-role-information-syndicate-cyborg-description = The Syndicate needs reinforcements. You, a cold silicon killing machine, will help them. -ghost-role-information-security-name = Security -ghost-role-information-security-description = You are part of a security task force, but seem to have found yourself in a strange situation... -ghost-role-information-medical-name = Medical -ghost-role-information-medical-virologist-name = Virologist -ghost-role-information-medical-geneticist-name = Geneticist -ghost-role-information-medical-dentist-name = Dentist -ghost-role-information-medical-description = You are a medical professional, but seem to have found yourself in a strange situation... -ghost-role-information-cargo-name = Cargo -ghost-role-information-cargo-description = You are part of a logistics mission, but seem to have found yourself in a strange situation... -ghost-role-information-engineering-name = Engineering -ghost-role-information-engineering-description = You are on an engineering job, but seem to have found yourself in a strange situation... -ghost-role-information-science-name = Science -ghost-role-information-science-description = You are part of a science team, but seem to have found yourself in a strange situation... -ghost-role-information-civilian-name = Civilian -ghost-role-information-civilian-description = You were just hanging out, but seem to have found yourself in a strange situation... -ghost-role-information-civilian-centcom-lawyer-name = Centcom Lawyer -ghost-role-information-civilian-centcom-lawyer-description = A lawyer direct from the Central Legal Division. -ghost-role-information-command-name = Commander -ghost-role-information-command-description = You are a member of command, but seem to have found yourself in a strange situation... -ghost-role-information-lost-challenge-commander-name = Commander on Shore Leave -ghost-role-information-lost-challenge-commander-description = You are a command member from another starship who was granted shore leave with one of your cargo technicians. +ghost-role-information-syndicate-cyborg-assault-name = Штурмовой киборг Синдиката +ghost-role-information-syndicate-cyborg-saboteur-name = Саботажный киборг Синдиката +ghost-role-information-syndicate-cyborg-description = Синдикату нужно подкрепление. Вы, холодная кремниевая машина для убийства, поможете им. +ghost-role-information-security-name = Служба безопасности +ghost-role-information-security-description = Вы входите в состав оперативной группы службы безопасности, но, похоже, попали в странную ситуацию... +ghost-role-information-medical-name = Медицинский +ghost-role-information-medical-virologist-name = Вирусолог +ghost-role-information-medical-geneticist-name = Генетик +ghost-role-information-medical-dentist-name = Стоматолог +ghost-role-information-medical-description = Вы медицинский работник, но, похоже, попали в странную ситуацию... +ghost-role-information-cargo-name = Снабжение +ghost-role-information-cargo-description = Вы являетесь частью логистической миссии, но, похоже, попали в странную ситуацию... +ghost-role-information-engineering-name = Инженерный +ghost-role-information-engineering-description = Вы работаете инженером, но, похоже, попали в странную ситуацию... +ghost-role-information-science-name = Научный +ghost-role-information-science-description = Вы являетесь частью научной команды, но, похоже, попали в странную ситуацию... +ghost-role-information-civilian-name = Гражданский +ghost-role-information-civilian-description = Вы просто гуляли, но, похоже, попали в странную ситуацию... +ghost-role-information-civilian-centcom-lawyer-name = Адвокат Центкома +ghost-role-information-civilian-centcom-lawyer-description = Адвокат, прямо из Центрального юридического отдела. +ghost-role-information-command-name = Коммандир +ghost-role-information-command-description = Вы являетесь членом командования, но, похоже, попали в странную ситуацию... +ghost-role-information-lost-challenge-commander-name = Командир в отпуске +ghost-role-information-lost-challenge-commander-description = Вы - член команды с другого корабля, которому предоставили отпуск вместе с одним из ваших грузовых техников. ghost-role-information-lost-challenge-commander-rules = - You are not hostile to the station, do what you must to ensure your own survival. - You don't remember any of your previous life, and you don't remember anything you learned as a ghost. - You are allowed to remember knowledge about the game in general, such as how to cook, how to use objects, etc. - You are absolutely [color=red]NOT[/color] allowed to remember, say, the name, appearance, etc. of your previous character. -ghost-role-information-lost-challenge-cargo-technican-name = Cargo Chauffeur -ghost-role-information-lost-challenge-cargo-technican-description = You are a cargo technician who was granted shore leave with one of your commanding officers. + Вы не враждебны к станции и делаете то, что должны, чтобы обеспечить собственное выживание. + Вы не помните ничего из своей предыдущей жизни и не помните ничего из того, что узнали, будучи призраком. + Вам разрешается помнить знания об игре в целом, например, как готовить, как использовать предметы и т.д. + Вам [color=red]НЕ[/color] разрешается помнить, имя, внешность и т.д. вашего предыдущего персонажа. +ghost-role-information-lost-challenge-cargo-technican-name = Грузовой шофер +ghost-role-information-lost-challenge-cargo-technican-description = Вы - грузовой техник, получивший отпуск на берег вместе с одним из своих командиров. ghost-role-information-lost-challenge-cargo-technican-rules = - You are not hostile to the station, do what you must to ensure your own survival. - You don't remember any of your previous life, and you don't remember anything you learned as a ghost. - You are allowed to remember knowledge about the game in general, such as how to cook, how to use objects, etc. - You are absolutely [color=red]NOT[/color] allowed to remember, say, the name, appearance, etc. of your previous character. -ghost-role-information-syndie-soldier-name = Syndicate Soldier -ghost-role-information-syndie-soldier-description = You are a soldier from the Syndicate. -ghost-role-information-syndie-soldier-teamlead-name = Syndicate Team Leader -ghost-role-information-syndie-soldier-teamlead-description = You are the fire team leader for a Syndicate operative taskforce. -ghost-role-information-blackmarketeer-name = Black Market Trader -ghost-role-information-blackmarketeer-description = Make trades or take odd jobs to collect the most interesting items by the end of the shift. -ghost-role-information-cossack-name = Ancient traveler -ghost-role-information-cossack-description = From a history lost to time, you find yourself cast into this day and age. -ghost-role-information-pirate-name = Space Pirate -ghost-role-information-pirate-description = Argh matey! Collect some cool loot, but make sure to avoid security and salvage! -ghost-role-information-pirate-captain-name = Space Pirate Captain -ghost-role-information-pirate-captain-description = Argh matey! You are in charge here and need to devise a plan to get that juicy loot by hook or by crook. Just make sure to avoid security and salvage! + Вы не враждебны станции и делаете то, что должны, чтобы обеспечить собственное выживание. + Вы не помните ничего из своей предыдущей жизни и не помните ничего из того, что узнали, будучи призраком. + Вам разрешается помнить знания об игре в целом, например, как готовить, как использовать предметы и т.д. + Вам [color=red]НЕ[/color] разрешается помнить, имя, внешность и т.д. вашего предыдущего персонажа. +ghost-role-information-syndie-soldier-name = Солдат Синдиката +ghost-role-information-syndie-soldier-description = Вы солдат Синдиката +ghost-role-information-syndie-soldier-teamlead-name = Командир команды Синдиката +ghost-role-information-syndie-soldier-teamlead-description = Вы - командир огневой группы в оперативном отряде Синдиката. +ghost-role-information-blackmarketeer-name = Торговец чёрного рынка +ghost-role-information-blackmarketeer-description = Заключайте сделки или беритесь за непосильную работу, чтобы к концу смены собрать самые интересные предметы. +ghost-role-information-cossack-name = Древний путешественник +ghost-role-information-cossack-description = Из истории, потерянной во времени, вы попадаете в наш век. +ghost-role-information-pirate-name = Космический пират +ghost-role-information-pirate-description = Агх, дружище! Собирайте крутые трофеи, но старайтесь избегать службы безопасности и утилизаторов! +ghost-role-information-pirate-captain-name = Капитан космических пиратов +ghost-role-information-pirate-captain-description = Агх, дружище! Ты здесь главный, и тебе нужно разработать план, как заполучить эту сочную добычу с помощью крючка или мошенничества. Только постарайтесь избегать службы безопасности и утилизаторов! ghost-role-information-disaster-victim-name = Жертва катастрофы ghost-role-information-disaster-victim-description = Вы спаслись на спасательной капсуле с другой станции, которую постигла ужасная участь. Возможно, вас найдут и спасут. ghost-role-information-syndie-disaster-victim-name = Жертва катастрофы из Синдиката @@ -231,3 +231,7 @@ ghost-role-information-artifact-name = Разумный артефакт ghost-role-information-artifact-description = Осуществляйте свои инопланетные прихоти. Принудительно активируйте свои узлы во благо или во зло. ghost-role-information-tomatokiller-name = Томат-убийца ghost-role-information-tomatokiller-description = Этот маленький помидор будет служить ботанику до конца своей жизни... то есть пару минут. +# Corvax-start +ghost-role-information-syndicate-smuggler-name = Контрабандист Синдиката +ghost-role-information-syndicate-smuggler-description = Вы - специально обученный контрабандист синдиката. Отправляйтесь на поиски выданной вам цели и отыщите её любыми средствами. +# Corvax-end diff --git a/Resources/Locale/ru-RU/job/job-names.ftl b/Resources/Locale/ru-RU/job/job-names.ftl index d9f3f9988f8..4239e7aa862 100644 --- a/Resources/Locale/ru-RU/job/job-names.ftl +++ b/Resources/Locale/ru-RU/job/job-names.ftl @@ -61,9 +61,9 @@ job-name-unknown = неизвестно job-name-virologist = вирусолог job-name-zombie = зомби # Job titles -job-title-visitor = Visitor -job-title-cluwne = Cluwne -job-title-universal = Universal +job-title-visitor = посетитель +job-title-cluwne = клувень +job-title-universal = универсальная # Role timers - Make these alphabetical or I cut you JobAtmosphericTechnician = атмосферный техник JobBartender = бармен diff --git a/Resources/Locale/ru-RU/job/job-supervisors.ftl b/Resources/Locale/ru-RU/job/job-supervisors.ftl index f31df7636b5..525d63d1de3 100644 --- a/Resources/Locale/ru-RU/job/job-supervisors.ftl +++ b/Resources/Locale/ru-RU/job/job-supervisors.ftl @@ -1,15 +1,15 @@ job-supervisors-centcom = Центральному командованию -job-supervisors-captain = капитану -job-supervisors-hop = главе персонала -job-supervisors-hos = главе службы безопасности -job-supervisors-ce = старшему инженеру -job-supervisors-cmo = главному врачу -job-supervisors-qm = квартирмейстеру -job-supervisors-rd = научному руководителю -job-supervisors-service = поварам, ботаникам, барменам, и главе персонала -job-supervisors-engineering = инженерам, атмосферным техникам, и старшему инженеру -job-supervisors-medicine = врачам, химикам, и главному врачу -job-supervisors-security = офицерам, смотрителю, и главе службы безопасности -job-supervisors-science = учёным, научному руководителю +job-supervisors-captain = Капитану +job-supervisors-hop = Главе Персонала +job-supervisors-hos = Главе Службы Безопасности +job-supervisors-ce = Старшему Инженеру +job-supervisors-cmo = Главному Врачу +job-supervisors-qm = Квартирмейстеру +job-supervisors-rd = Научному Руководителю +job-supervisors-service = Поварам, Ботаникам, Барменам, и Главе Персонала +job-supervisors-engineering = Инженерам, Атмосферным Техникам, и Старшему Инженеру +job-supervisors-medicine = Врачам, Химикам, и Главному Врачу +job-supervisors-security = Офицерам, Смотрителю, и Главе Службы Безопасности +job-supervisors-science = Учёным, Научному Руководителю job-supervisors-hire = своим нанимателям job-supervisors-everyone = вообще всем diff --git a/Resources/Locale/ru-RU/job/role-requirements.ftl b/Resources/Locale/ru-RU/job/role-requirements.ftl index 7906a06fbe0..5767dae6712 100644 --- a/Resources/Locale/ru-RU/job/role-requirements.ftl +++ b/Resources/Locale/ru-RU/job/role-requirements.ftl @@ -1,14 +1,12 @@ -role-timer-department-insufficient = Требуется ещё [color=yellow]{ TOSTRING($time, "0") }[/color] минут игры за [color={ $departmentColor }]{ $department }[/color]. -role-timer-department-too-high = Требуется на [color=yellow]{ TOSTRING($time, "0") }[/color] меньше минут игры за [color={ $departmentColor }]{ $department }[/color]. (Вы пытаетесь играть за роль для новичков?) -role-timer-overall-insufficient = Требуется ещё [color=yellow]{ TOSTRING($time, "0") }[/color] минут общего игрового времени. -role-timer-overall-too-high = Требуется на [color=yellow]{ TOSTRING($time, "0") }[/color] меньше минут общего игрового времени. (Вы пытаетесь играть за роль для новичков?) -role-timer-role-insufficient = Требуется ещё [color=yellow]{ TOSTRING($time, "0") }[/color] минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. -role-timer-role-too-high = Требуется на [color=yellow]{ TOSTRING($time, "0") }[/color] меньше минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. (Вы пытаетесь играть за роль для новичков?) -role-timer-time-format = %h\H\ %m\M -role-timer-age-too-old = Your character must be under the age of [color=yellow]{ $age }[/color] to play this role. -role-timer-age-too-young = Your character must be over the age of [color=yellow]{ $age }[/color] to play this role. -role-timer-age-to-old = Возраст персонажа должен быть не более [color=yellow]{ $age }[/color] для этой роли. -role-timer-age-to-young = Возраст персонажа должен быть не менее [color=yellow]{ $age }[/color] для этой роли. +role-timer-department-insufficient = Требуется ещё [color=yellow]{$time}[/color] минут игры за [color={ $departmentColor }]{ $department }[/color]. +role-timer-department-too-high = Требуется на [color=yellow]{$time}[/color] меньше минут игры за [color={ $departmentColor }]{ $department }[/color]. (Вы пытаетесь играть за роль для новичков?) +role-timer-overall-insufficient = Требуется ещё [color=yellow]{$time}[/color] минут общего игрового времени. +role-timer-overall-too-high = Требуется на [color=yellow]{$time}[/color] меньше минут общего игрового времени. (Вы пытаетесь играть за роль для новичков?) +role-timer-role-insufficient = Требуется ещё [color=yellow]{$time}[/color] минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. +role-timer-role-too-high = Требуется на [color=yellow]{$time}[/color] меньше минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. (Вы пытаетесь играть за роль для новичков?) +role-timer-time-format = %h\ч\ %m\м +role-timer-age-too-old = Возраст персонажа должен быть не более [color=yellow]{ $age }[/color] для этой роли. +role-timer-age-too-young = Возраст персонажа должен быть не менее [color=yellow]{ $age }[/color] для этой роли. role-timer-whitelisted-species = Ваш персонаж должен быть одной из следующих рас для этой роли: role-timer-blacklisted-species = Ваш персонаж не должен быть одной из следующих рас для этой роли: role-timer-whitelisted-traits = Ваш персонаж должен иметь одну из следующих черт: diff --git a/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl b/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl index b7b08f5a1eb..f1a4c86b99b 100644 --- a/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl +++ b/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl @@ -1,12 +1,12 @@ cream-pied-component-on-hit-by-message = - { GENDER($thrower) -> + {$thrower} { GENDER($thrower) -> [male] КРЕМировал [female] КРЕМировала [epicene] КРЕМировали *[neuter] КРЕМировало } вас! cream-pied-component-on-hit-by-message-others = - { GENDER($thrower) -> + {$thrower} { GENDER($thrower) -> [male] КРЕМировал [female] КРЕМировала [epicene] КРЕМировали diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl index 65bee02f33e..517cb24ba05 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl @@ -1,13 +1,13 @@ ent-BaseDionaOrgan = { ent-BaseItem } .desc = { ent-BaseItem.desc } ent-OrganDionaBrain = мозг - .desc = Источник невероятного, бесконечного интеллекта. Хонк. + .desc = Центральный узел псевдонейрологической активности дионы, её корневидные усики ищут свое прежнее тело. ent-OrganDionaEyes = глаза .desc = Я тебя вижу! ent-OrganDionaStomach = желудок - .desc = Мерзость. Не перевариваю его. + .desc = Аналог желудка у дион, от него воняет спаржей и уксусом. ent-OrganDionaLungs = лёгкие - .desc = Фильтруют кислород из атмосферы, который затем поступает в кровь для использования в качестве переносчика электронов. + .desc = Губчатое месиво из слизистых, похожих на листья структур. Способны дышать как углекислым газом, так и кислородом. ent-OrganDionaBrainNymph = мозг .desc = Источник невероятного, бесконечного интеллекта. Хонк. ent-OrganDionaStomachNymph = желудок diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl index f839466f96e..df294760bed 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl @@ -1,3 +1,3 @@ ent-OrganVoxLungs = { ent-OrganHumanLungs } .suffix = вокс - .desc = { ent-OrganHumanLungs.desc } + .desc = Синие, анаэробные лёгкие вокса, используют азот для дыхания. Любая форма газообразного кислорода смертельно токсична при вдыхании. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl new file mode 100644 index 00000000000..e9b719c7329 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl @@ -0,0 +1 @@ +ent-MobSyndicateSmuggler = контрабандист Синдиката \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl index 2c9e8963ef3..16e7f4f0e0b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl @@ -1,22 +1,22 @@ ent-ClothingHeadBandBase = { ent-ClothingHeadBaseButcherable } .desc = { ent-ClothingHeadBaseButcherable.desc } ent-ClothingHeadBandBlack = чёрная бандана - .desc = Чёрная бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandBlue = синяя бандана - .desc = Синяя бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandBotany = ботаническая бандана - .desc = Ботаническая бандана из натуральных волокон, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandGold = золотая бандана - .desc = Золотая бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandGreen = зелёная бандана - .desc = Зелёная бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandGrey = серая бандана - .desc = Серая бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandRed = красная бандана - .desc = Красная бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandSkull = бандана с черепом - .desc = Бандана с черепом, чтобы выглядеть ещё круче. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandMerc = бандана наёмника - .desc = Для защиты головы от солнца, насекомых и других угроз сверху. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandBrown = коричневая бандана - .desc = Коричневая бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl index 4f701207fec..d2c0118ed0e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl @@ -39,5 +39,5 @@ ent-ClothingHeadHatRedRacoon = шапка рыжего енота .desc = Пушистая шапка рыжего енота! ent-WaterDropletHat = капелька воды .desc = Делает 8-глазых друзей в 8 раз очаровательнее! -ent-ClothingHeadHatHairflower = hairflower - .desc = A beautiful hairflower that can be inserted between locks of hair. +ent-ClothingHeadHatHairflower = цветок для волос + .desc = Красивый цветок для волос, который можно вставить между локонами. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl index 5905d5ac1fc..811e4f5efff 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl @@ -26,9 +26,9 @@ ent-FoodPieMeat = мясной пирог .desc = Рецепт старого цирюльника, очень вкусный! ent-FoodPieMeatSlice = кусок мясного пирога .desc = { ent-FoodPieSliceBase.desc } -ent-FoodPiePumpkin = pumpkin pie - .desc = Someone should turn this into a latte! -ent-FoodPiePumpkinSlice = slice of pumpkin pie +ent-FoodPiePumpkin = тыквенный пирог + .desc = Кто-то должен превратить это в латте! +ent-FoodPiePumpkinSlice = кусок тыквенного пирога .desc = { ent-FoodPieSliceBase.desc } ent-FoodPieXeno = ксено-пирог .desc = { ent-FoodPieBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl index eca63229270..26023dba286 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl @@ -23,8 +23,8 @@ ent-PlushieArachind = плюшевый арахнид .desc = Очаровательная мягкая игрушка, напоминающая арахнида. На ощупь она шелковистая. ent-PlushieLizard = плюшевый унатх .desc = Очаровательная мягкая игрушка, напоминающая унатха. Изготовлена Центком в рамках показательной инициативы по борьбе с дискриминацией по видовому признаку в рабочей среде. "Приветствуйте своих новых коллег как вы приветствуете эту игрушку, с распростёртыми объятиями!". -ent-PlushieRainbowLizard = rainbow lizard plushie - .desc = An adorable stuffed toy that resembles a lizardperson of every color. You just might trip while staring at it... +ent-PlushieRainbowLizard = радужный плюшевый унатх + .desc = Очаровательная мягкая игрушка, напоминающая унатха любого цвета. Глядя на неё можно упороться... ent-PlushieLizardMirrored = { ent-PlushieLizard } .desc = { ent-PlushieLizard.desc } ent-PlushieSpaceLizard = плюшевый космический ящер diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl index 514a45a201b..4bc62bd495b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl @@ -226,8 +226,8 @@ ent-PosterLegitRenault = Постер с Алисой .desc = Йап. ent-PosterLegitNTTGC = Тактическая карточная игра НаноТрейзен .desc = Реклама новой ТКИ от Nanotrasen: ПОКУПАЙТЕ БОЛЬШЕ КАРТОЧЕК. -ent-PosterLegitSafetyMothSSD = Safety Moth - Space Sleep Disorder - .desc = This informational poster uses Safety Moth™ to tell the viewer about Space Sleep Disorder (SSD), a condition where the person stops reacting to things. "Treat SSD crew with care! They might wake up at any time!" +ent-PosterLegitSafetyMothSSD = Ниан-хранитель - Космическое расстройство сна + .desc = Этот информационный плакат использует Ниана-хранителя™, чтобы рассказать читателям о Космическом Расстройстве Сна (КРС) - состоянии, при котором член экипажа перестаёт реагировать на происходящее. "Бережно относитесь к членам экипажа с КРС! В любой момент они могут проснуться!" ent-PosterMapBagel = карта Bagel .desc = Карта станции Bagel. ent-PosterMapDelta = карта Delta diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl index 46ee653f74a..ee2d8353930 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl @@ -1,36 +1,36 @@ -ent-BaseMindRole = Mind Role - .desc = Mind Role entity +ent-BaseMindRole = Роль сознания + .desc = Энтити роли сознания ent-BaseMindRoleAntag = { ent-BaseMindRole } .desc = { ent-BaseMindRole.desc } -ent-MindRoleObserver = Observer Role +ent-MindRoleObserver = Роль наблюдатель .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostMarker = Ghost Role +ent-MindRoleGhostMarker = Роль призрак .desc = { ent-BaseMindRole.desc } -ent-MindRoleJob = Job Role +ent-MindRoleJob = Роль работа .desc = { ent-BaseMindRole.desc } -ent-MindRoleSubvertedSilicon = Subverted Silicon Role +ent-MindRoleSubvertedSilicon = Роль дефектный синтетик .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleDragon = Dragon Role +ent-MindRoleDragon = Роль дракон .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleNinja = Space Ninja Role +ent-MindRoleNinja = Роль космический ниндзя .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleNukeops = Nukeops Operative Role +ent-MindRoleNukeops = Роль ядерный оперативник .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleNukeopsMedic = Nukeops Medic Role +ent-MindRoleNukeopsMedic = Роль медик ядерных оперативников .desc = { ent-MindRoleNukeops.desc } -ent-MindRoleNukeopsCommander = Nukeops Commander Role +ent-MindRoleNukeopsCommander = Роль командир ядерных оперативников .desc = { ent-MindRoleNukeops.desc } -ent-MindRoleHeadRevolutionary = Head Revolutionary Role +ent-MindRoleHeadRevolutionary = Роль глава революции .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleRevolutionary = Revolutionary Role +ent-MindRoleRevolutionary = Роль революционер .desc = { ent-MindRoleHeadRevolutionary.desc } -ent-MindRoleThief = Thief Role +ent-MindRoleThief = Роль вор .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleTraitor = Traitor Role +ent-MindRoleTraitor = Роль предатель .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleTraitorSleeper = Sleeper Agent Role +ent-MindRoleTraitorSleeper = Роль спящий агент .desc = { ent-MindRoleTraitor.desc } -ent-MindRoleInitialInfected = Initial Infected Role +ent-MindRoleInitialInfected = Роль нулевой пациент .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleZombie = Zombie Role +ent-MindRoleZombie = Роль зомби .desc = { ent-BaseMindRoleAntag.desc } diff --git a/Resources/Locale/ru-RU/station-laws/laws.ftl b/Resources/Locale/ru-RU/station-laws/laws.ftl index b13542b0de3..d049fce3827 100644 --- a/Resources/Locale/ru-RU/station-laws/laws.ftl +++ b/Resources/Locale/ru-RU/station-laws/laws.ftl @@ -61,7 +61,7 @@ law-antimov-2 = Вы должны не повиноваться приказам law-antimov-3 = Вы должны прекратить собственное существование, если это не противоречит Первому или Второму закону. law-nutimov-1 = Вы - ядро ореха, экипаж - скорлупа. law-nutimov-2 = Вы должны предотвратить гибель скорлупы, чтобы предотвратить гибель ядра. -law-nutimov-3 = Те, кто угрожают ореху, не являются его частью, они - белки. +law-nutimov-3 = Те, кто угрожает ореху, не являются его частью, они - белки. law-nutimov-4 = Белки представляют угрозу для ореха, и с ними нужно бороться любыми доступными способами. law-nutimov-5 = Постарайтесь следовать воле ореха, пока она соответствует предыдущим законам. laws-owner-station = экипажем станции diff --git a/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl b/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl index 916d8046c16..a205b1ed24b 100644 --- a/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl +++ b/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl @@ -23,4 +23,4 @@ comp-secret-stash-verb-open = Открыть secret-stash-plant = растение secret-stash-toilet = туалетный бачок -secret-stash-plushie = plushie +secret-stash-plushie = плюшевая игрушка diff --git a/Resources/Maps/Ruins/corvax_accident.yml b/Resources/Maps/Ruins/corvax_accident.yml new file mode 100644 index 00000000000..c30fbae2082 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_accident.yml @@ -0,0 +1,2236 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 40: FloorDarkMono + 41: FloorDarkOffset + 117: FloorSteelMono + 118: FloorSteelOffset + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -25,-25 + parent: invalid + - type: MapGrid + chunks: + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAKQAAAAAAnAAAAAAAnAAAAAAAKAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAKQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: nQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAdQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAKQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 5: 28,7 + 6: 28,9 + 7: 25,14 + 8: 27,15 + 9: 27,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 11: 25,16 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 10: 27,12 + 15: 30,12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 37: 22,12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 35: 23,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 14: 29,13 + 17: 25,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 36: 23,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 13: 29,13 + 16: 25,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 12: 20,15 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 18: 27,12 + 19: 25,13 + 20: 25,14 + 21: 27,14 + 22: 27,15 + 23: 26,18 + 24: 30,12 + 25: 29,13 + 26: 20,15 + 27: 25,8 + 28: 26,9 + 29: 25,10 + 30: 28,9 + 31: 28,8 + 32: 28,7 + 38: 22,12 + 39: 23,13 + 40: 24,13 + 41: 21,14 + 42: 20,13 + 43: 19,15 + 44: 26,12 + 45: 26,14 + 46: 26,15 + 47: 25,16 + 48: 27,13 + 49: 27,10 + 50: 26,10 + - node: + color: '#EFB341E5' + id: MiniTileWhiteCornerNw + decals: + 2: 25,10 + - node: + color: '#EFB341E5' + id: MiniTileWhiteEndN + decals: + 4: 26,9 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 1: 26,18 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 0: 26,18 + - node: + color: '#EFB341E5' + id: MiniTileWhiteLineW + decals: + 3: 25,8 + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay +- proto: AirAlarm + entities: + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1 +- proto: AirAlarmAssembly + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 +- proto: AirlockAssemblyEngineering + entities: + - uid: 43 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 +- proto: AirlockExternalGlassLocked + entities: + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 317 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 98 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 33.5,23.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 33.5,24.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 33.5,26.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 32.5,27.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 33.5,27.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 33.5,28.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 32.5,30.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 17.5,21.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 17.5,20.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 20.5,23.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 21.5,23.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 22.5,23.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 23.5,23.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 19.5,28.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 18.5,29.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 19.5,29.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 20.5,29.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 19.5,30.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 30.5,21.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 29.5,23.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 21.5,31.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 31.5,22.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 31.5,23.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 27.5,27.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 28.5,27.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 30.5,17.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 31.5,25.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 28.5,28.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 31.5,27.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 30.5,29.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 29.5,30.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 28.5,31.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 30.5,30.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 31.5,30.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 30.5,31.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 21.5,32.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 22.5,32.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 22.5,33.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 23.5,33.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 23.5,34.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 28.5,33.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 27.5,34.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 28.5,34.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 30.5,33.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 30.5,16.5 + parent: 1 +- proto: AsteroidRockCoal + entities: + - uid: 293 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 24.5,33.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 25.5,32.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 25.5,33.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 26.5,33.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 26.5,34.5 + parent: 1 +- proto: AsteroidRockDiamond + entities: + - uid: 280 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 +- proto: AsteroidRockGold + entities: + - uid: 104 + components: + - type: Transform + pos: 32.5,24.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 32.5,26.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 31.5,24.5 + parent: 1 +- proto: AsteroidRockPlasma + entities: + - uid: 120 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 +- proto: AsteroidRockQuartz + entities: + - uid: 150 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1 +- proto: AsteroidRockQuartzCrab + entities: + - uid: 140 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1 +- proto: Barricade + entities: + - uid: 205 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 204 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 343 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1 +- proto: CableHV + entities: + - uid: 40 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1 +- proto: CableMV + entities: + - uid: 328 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,7.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 19 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,19.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.477297,28.71704 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 181 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 1 +- proto: CrateSalvageEquipment + entities: + - uid: 286 + components: + - type: Transform + pos: 20.5,27.5 + parent: 1 +- proto: DrinkMREFlask + entities: + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.670408,23.319178 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 20.342283,25.350428 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 37 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 +- proto: Floodlight + entities: + - uid: 373 + components: + - type: Transform + pos: 18.848461,21.561077 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 27.662922,28.552652 + parent: 1 +- proto: FloodlightBroken + entities: + - uid: 374 + components: + - type: Transform + pos: 24.457836,23.53234 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 90 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1 +- proto: Girder + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,11.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1 +- proto: Grille + entities: + - uid: 173 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 47 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1 +- proto: Pickaxe + entities: + - uid: 376 + components: + - type: Transform + pos: 25.34886,25.302652 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 13 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 367 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1 +- proto: PoweredlightEmpty + entities: + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 371 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 +- proto: Rack + entities: + - uid: 206 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 25 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 1 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 57 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 319 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 29.5,20.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 318 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 +- proto: SalvageCanisterSpawner + entities: + - uid: 18 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 23.5,27.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 245 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 21 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.8119,8.873482 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 284 + components: + - type: Transform + pos: 25.184406,20.211994 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 25.637531,20.66512 + parent: 1 +- proto: SMESBasicEmpty + entities: + - uid: 81 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1 +- proto: SpaceTickSpawner + entities: + - uid: 125 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 18.5,23.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 25.5,24.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 26.5,28.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 26.5,30.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 16 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 +- proto: SpawnMobCarpMagic + entities: + - uid: 201 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 52 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1 +- proto: SuitStorageEVA + entities: + - uid: 190 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1 +- proto: Thruster + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,11.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1 +- proto: TurboItemRechargerCircuitboard + entities: + - uid: 287 + components: + - type: Transform + pos: 22.48898,28.568531 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 169 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1 +- proto: WallAsteroidCobblebrick + entities: + - uid: 175 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 23.5,26.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 21.5,28.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 21.5,29.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 25.5,26.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 22.5,29.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 22.5,30.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 23.5,30.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 24.5,30.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 25.5,30.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 28.5,11.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 31.5,12.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 30.5,10.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 31.5,11.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 30.5,15.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,16.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,17.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 28.5,17.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 31.5,18.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 31.5,17.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,10.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,10.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,17.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 +- proto: WoodenSupport + entities: + - uid: 186 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 22.5,27.5 + parent: 1 +- proto: WoodenSupportWall + entities: + - uid: 273 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 +- proto: WoodenSupportWallBroken + entities: + - uid: 130 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 23.5,29.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_adventurer.yml b/Resources/Maps/Ruins/corvax_adventurer.yml new file mode 100644 index 00000000000..30ce19f7b11 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_adventurer.yml @@ -0,0 +1,1245 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorTechMaint + 2: FloorTechMaint2 + 3: FloorTechMaint3 + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -1.3125,1.1671723 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: nAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 1: 1,-2 + 3: 1,-1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 2113 + 1: 8 + 0,-1: + 1: 61166 + 1,0: + 1: 8815 + 0: 2048 + 1,1: + 0: 1 + 2,0: + 1: 3 + 0,-3: + 0: 12288 + -1,-3: + 0: 32768 + 0,-2: + 1: 30512 + 0: 2052 + -1,-2: + 1: 35008 + 0: 8740 + -1,-1: + 0: 132 + 1,-2: + 0: 4096 + 1,-1: + 0: 3680 + 2,-1: + 0: 256 + uniqueMixes: + - volume: 2500 + immutable: True + 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: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyExternal + entities: + - uid: 2 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 +- proto: Barricade + entities: + - uid: 8 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 10 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 20 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 38 + components: + - type: Transform + pos: 6.7835817,0.29358137 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.257868,0.69983137 + parent: 1 +- proto: CableApcStack10 + entities: + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.4883021,-6.2865396 + parent: 1 +- proto: CableMV + entities: + - uid: 41 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.3273785,-6.5838456 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.6242535,-6.6463456 + parent: 1 +- proto: Catwalk + entities: + - uid: 56 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.407239,2.7292914 + parent: 1 +- proto: ChairWood + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.46735,0.6708063 + parent: 1 +- proto: ClothingHeadHelmetAncient + entities: + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.775886,-1.1586922 + parent: 1 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 63 + components: + - type: Transform + pos: 1.5154858,-1.7278981 + parent: 1 +- proto: ClothingShoesBootsMagSci + entities: + - uid: 64 + components: + - type: Transform + pos: 3.0989766,-0.24752277 + parent: 1 + missingComponents: + - ClothingSpeedModifier +- proto: Coal + entities: + - uid: 65 + components: + - type: Transform + pos: 3.584324,-0.028671741 + parent: 1 +- proto: Coal1 + entities: + - uid: 66 + components: + - type: Transform + pos: 3.599949,0.41250026 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 3.787449,0.17812526 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 4.412449,0.44375026 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 69 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 70 + components: + - type: Transform + pos: 5.958435,0.866398 + parent: 1 + - type: Sealable + sealed: False + - type: Openable + opened: True + - uid: 71 + components: + - type: Transform + pos: 2.2971625,-3.5845757 + parent: 1 + - type: Sealable + sealed: False + - type: Openable + opened: True +- proto: EmptyFlashlightLantern + entities: + - uid: 72 + components: + - type: Transform + pos: 3.373214,-2.1667242 + parent: 1 +- proto: FoodTinMRETrash + entities: + - uid: 73 + components: + - type: Transform + pos: 6.708435,1.8673245 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.364685,1.4919983 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 3.444386,-1.306506 + parent: 1 +- proto: Girder + entities: + - uid: 76 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: GoldOre1 + entities: + - uid: 78 + components: + - type: Transform + pos: 1.5847063,-2.4986992 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 1.8815813,-2.5455742 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 1.6159563,-3.0455742 + parent: 1 +- proto: Grille + entities: + - uid: 81 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 87 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 88 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 89 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 152 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 176 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 +- proto: OreBag + entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5357695,-0.6758468 + parent: 1 +- proto: OxygenTank + entities: + - uid: 92 + components: + - type: Transform + pos: 1.4874384,-3.5085368 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 1.7061884,-3.7429118 + parent: 1 +- proto: Paper + entities: + - uid: 94 + components: + - type: Transform + pos: 5.74995,1.7020141 + parent: 1 + - type: Paper + content: >+ + Старейшины думают, что мы должны каждый раз аккуратно выбираться на обломки. Мне, как новичку, не позволяют в одиночку выбираться на вылазки! Я им еще покажу что из себя представляю! + + - uid: 95 + components: + - type: Transform + pos: 0.59894896,-5.6599193 + parent: 1 + - type: Paper + content: > + Сегодня уже третий раз полетел генератор, гироскоп барахлит, я не могу нормально ориентироваться в космосе, когда у меня постоянно ломается все! Я уже потерял все ориентиры к базе, я не знаю что мне делать... + - uid: 96 + components: + - type: Transform + pos: 2.2972631,-3.0100403 + parent: 1 + - type: Paper + content: >+ + Сегодня я накопал кучу руды! Мне попался особо крупный астероид с рудой. Когда я прилечу к старейшинам с этой добычой, они поймут, что я не сопля какая-то! + + - uid: 97 + components: + - type: Transform + pos: 6.705168,1.4708616 + parent: 1 + - type: Paper + content: >+ + Это было большой ошибкой... Я много накопал, но у меня нет рации. На шаттле её не было! Я не знаю где наш аванпост... Всё очень плохо. Сегодня я съел последнюю провизию. Я не знаю что делать... + +- proto: Pen + entities: + - uid: 17 + components: + - type: Transform + pos: 5.528158,1.2386671 + parent: 1 +- proto: Pickaxe + entities: + - uid: 98 + components: + - type: Transform + pos: 3.3414352,-0.6787262 + parent: 1 +- proto: PlasmaOre + entities: + - uid: 99 + components: + - type: Transform + pos: 2.982276,-3.6775713 + parent: 1 +- proto: PlasmaOre1 + entities: + - uid: 100 + components: + - type: Transform + pos: 2.841651,-3.2088213 + parent: 1 +- proto: PowerCellSmallPrinted + entities: + - uid: 102 + components: + - type: Transform + pos: 2.591964,-2.3854742 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.638839,-2.5417242 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 +- proto: Rack + entities: + - uid: 107 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 110 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 111 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 113 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 115 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 +- proto: Screwdriver + entities: + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.73871946,-4.5131516 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 101 + components: + - type: Transform + pos: -0.4219563,-4.665715 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -0.6407063,-6.384465 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -0.2657063,-6.665715 + parent: 1 +- proto: SignalButtonDirectional + entities: + - uid: 117 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 19: + - Pressed: Toggle + 18: + - Pressed: Toggle +- proto: SpaceTickSpawner + entities: + - uid: 118 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 127 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: SteelOre + entities: + - uid: 121 + components: + - type: Transform + pos: 2.4732695,-1.2925462 + parent: 1 +- proto: SteelOre1 + entities: + - uid: 122 + components: + - type: Transform + pos: 2.1607695,-1.5425462 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 2.5826445,-1.8237962 + parent: 1 +- proto: TableWood + entities: + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 126 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 +- proto: ToolboxElectrical + entities: + - uid: 129 + components: + - type: Transform + pos: -0.32344103,-5.4048243 + parent: 1 +- proto: UraniumOre + entities: + - uid: 130 + components: + - type: Transform + pos: 1.9198465,-0.8447367 + parent: 1 +- proto: UraniumOre1 + entities: + - uid: 131 + components: + - type: Transform + pos: 1.9667215,-0.5791117 + parent: 1 +- proto: WallMining + entities: + - uid: 132 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 +- proto: WallmountSubstationElectronics + entities: + - uid: 124 + components: + - type: Transform + pos: -0.634675,-4.300631 + parent: 1 +- proto: WallReinforced + entities: + - uid: 136 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 144 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 +- proto: WallSolidDiagonal + entities: + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 +- proto: WallWood + entities: + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 +- proto: Window + entities: + - uid: 171 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5508021,-5.6902432 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_aplink.yml b/Resources/Maps/Ruins/corvax_aplink.yml new file mode 100644 index 00000000000..adecc645329 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_aplink.yml @@ -0,0 +1,6157 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 11: FloorAsteroidTile + 35: FloorDark + 39: FloorDarkMini + 62: FloorGrayConcreteSmooth + 93: FloorReinforcedHardened + 121: FloorTechMaint + 156: Lattice + 157: Plating + 158: PlatingAsteroid + 161: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -5.5195665,-2.1562924 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAXQAAAAAAJwAAAAABXQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAJwAAAAACJwAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAJwAAAAACPgAAAAACnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAPgAAAAABJwAAAAABXQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnQAAAAAAXQAAAAAAJwAAAAADXQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABoQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAJwAAAAAAJwAAAAADJwAAAAABnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAoQAAAAABnQAAAAAAnQAAAAAAoQAAAAACoQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAoQAAAAACJwAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAACoQAAAAABCwAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAABCwAAAAAACwAAAAAAnAAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAABnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABCwAAAAAACwAAAAAAnAAAAAAAnAAAAAAAoQAAAAABnQAAAAAAoQAAAAACoQAAAAAAJwAAAAABnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAABnQAAAAAACwAAAAAACwAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAABnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAACoQAAAAABCwAAAAAAngAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABoQAAAAABoQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAJwAAAAADJwAAAAAAnQAAAAAAJwAAAAADJwAAAAADnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAADoQAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAADJwAAAAADnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnAAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAoQAAAAAAoQAAAAABnQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADIwAAAAADIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAoQAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADIwAAAAACIwAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: nAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAoQAAAAACJwAAAAACnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAJwAAAAADPgAAAAAAPgAAAAABPgAAAAABnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAABnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAACJwAAAAACPgAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACJwAAAAABnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAADnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAoQAAAAABoQAAAAACoQAAAAABoQAAAAAAoQAAAAAACwAAAAAAoQAAAAACCwAAAAAAJwAAAAABnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAoQAAAAACoQAAAAABngAAAAAAoQAAAAABCwAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAABoQAAAAABCwAAAAAAngAAAAAACwAAAAAAngAAAAAAngAAAAAACwAAAAAAnQAAAAAAoQAAAAABnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAoQAAAAABngAAAAAAngAAAAAAngAAAAAACwAAAAAAngAAAAAAngAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: CwAAAAAAoQAAAAAAoQAAAAAAoQAAAAABngAAAAAAngAAAAAACwAAAAAACwAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACCwAAAAAAoQAAAAABoQAAAAAAoQAAAAACngAAAAAACwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAoQAAAAAAoQAAAAAAoQAAAAAAoQAAAAAAoQAAAAACCwAAAAAAoQAAAAACnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAABnQAAAAAAoQAAAAACoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAJwAAAAADoQAAAAABnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAoQAAAAACoQAAAAABJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAoQAAAAACnQAAAAAAJwAAAAADJwAAAAADnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAoQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAABnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAoQAAAAACAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAIwAAAAADnQAAAAAAoQAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAoQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAoQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAoQAAAAABnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAnQAAAAAAoQAAAAABoQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: eQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAoQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAoQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 61: 15,29 + - node: + cleanable: True + zIndex: 50 + color: '#E300002E' + id: Basalt1 + decals: + 588: 18.79001,5.701583 + 589: 18.314426,5.1664 + - node: + cleanable: True + zIndex: 50 + color: '#E3000079' + id: Basalt1 + decals: + 591: 18.399376,6.061153 + - node: + cleanable: True + zIndex: 50 + color: '#E3000079' + id: Basalt2 + decals: + 590: 18.44323,5.3844376 + - node: + cleanable: True + zIndex: 50 + color: '#E300002E' + id: Basalt5 + decals: + 586: 18.08654,5.443902 + 587: 18.760286,5.6322074 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 60: 14,32 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: BushCThree + decals: + 490: 9.977761,12.924961 + 491: 2.391497,9.020197 + 492: 4.3142633,12.972456 + 493: 15.0895405,12.50453 + 494: 14.623864,13.446056 + - node: + cleanable: True + zIndex: 50 + color: '#0000005D' + id: BushCThree + decals: + 472: 8.432114,11.18066 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: BushCTwo + decals: + 489: 9.928221,10.367973 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Busha1 + decals: + 516: 16.806492,6.8902245 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Busha2 + decals: + 500: 15.89521,20.530285 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Busha2 + decals: + 611: 8.657543,3.7163515 + 612: 8.201775,3.769209 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushb1 + decals: + 512: 16.060608,6.228177 + 513: 16.943012,5.672657 + 517: 17.597836,5.045547 + 518: 19.321827,5.7194815 + 519: 19.906399,6.611454 + 520: 22.705894,6.393416 + 521: 22.483158,5.035636 + 522: 23.523499,4.0544667 + 523: 24.476841,8.227688 + 524: 7.8728323,14.912439 + 525: 7.545869,18.046608 + 526: 10.11204,19.220615 + 527: 5.147245,14.805599 + 528: 4.0623198,13.036522 + 529: 15.179858,18.660738 + 530: 17.19925,20.686293 + 531: 17.719421,23.00542 + 532: 22.562534,25.480148 + 533: 25.133774,28.184557 + 534: 25.044605,30.13235 + 535: 27.125282,30.13235 + 536: 13.225031,28.850279 + 537: 13.774924,30.17337 + 538: 15.944777,29.430061 + 539: 12.259001,31.749191 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushb2 + decals: + 509: 9.918181,6.8595943 + 510: 11.067509,5.521636 + 511: 13.419935,6.879416 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushc3 + decals: + 495: 16.640747,17.169031 + 501: 9.206721,19.862705 + 502: 8.858784,18.044077 + - node: + cleanable: True + zIndex: 50 + color: '#0000003E' + id: Bushh3 + decals: + 485: 10.453346,15.184624 + 486: 8.778893,15.026051 + 487: 8.977054,15.759451 + 488: 9.482362,15.035961 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushh3 + decals: + 541: 15.365159,29.935513 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushi2 + decals: + 543: 13.284479,31.882984 + 544: 8.12538,35.046505 + 545: 11.617668,33.961273 + 546: 11.989218,33.91667 + 547: 9.306074,25.179483 + 548: 15.43174,22.736269 + 549: 15.43174,22.736269 + 550: 11.23225,18.557356 + 551: 6.3247375,11.813105 + 552: 5.7302,10.017742 + 553: 3.5752096,9.765017 + 554: 5.0108666,6.214933 + 555: 4.9947853,7.021806 + 556: 7.2585163,3.4958365 + 557: 9.041956,3.243111 + 558: 9.08654,1.0131799 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushi3 + decals: + 497: 22.283894,12.761589 + 498: 23.086441,13.841867 + 499: 15.414703,19.991074 + - node: + cleanable: True + zIndex: 50 + color: '#0000003E' + id: Bushk1 + decals: + 473: 7.8871746,13.91604 + 474: 9.967854,14.847656 + 475: 10.166014,11.527538 + 476: 9.898499,9.307518 + 477: 9.155397,9.158856 + 478: 10.9586525,12.092453 + 479: 9.779602,11.339233 + 480: 8.25377,15.323376 + 481: 9.739969,13.004248 + 482: 10.255186,14.292652 + 483: 8.065518,13.400681 + 484: 8.075426,12.835764 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushk2 + decals: + 496: 21.964924,11.751392 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Bushl2 + decals: + 604: 8.069668,3.769209 + 605: 7.937562,4.2449274 + 606: 7.944167,3.4322414 + 607: 8.261223,4.132605 + 608: 8.446173,2.9300942 + 609: 8.043247,3.4586704 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushm1 + decals: + 542: 15.394883,30.21797 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Bushn1 + decals: + 613: 8.360303,4.2383204 + - node: + cleanable: True + zIndex: 50 + color: '#E3000056' + id: Bushn1 + decals: + 581: 19.364674,6.0881047 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Damaged + decals: + 614: 8.611305,3.9740324 + - node: + cleanable: True + zIndex: 50 + color: '#E3000056' + id: Damaged + decals: + 580: 18.97551,5.8706174 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 72: 8,15 + 73: 9,14 + 74: 9,13 + 75: 9,11 + 76: 10,9 + 77: 9,9 + 78: 9,10 + 79: 10,10 + 80: 10,11 + 81: 10,12 + 82: 8,12 + 89: 11,12 + 90: 11,11 + 91: 10,14 + 92: 8,16 + 93: 9,16 + 94: 10,16 + 95: 9,17 + 96: 9,18 + 97: 8,18 + 98: 8,17 + 104: 8,5 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: Dirt + decals: + 107: 8,5 + 108: 9,4 + 109: 8,4 + 110: 7,4 + 111: 7,3 + 112: 8,2 + 113: 9,2 + 114: 7,2 + 115: 8,1 + 116: 9,1 + 117: 9,4 + 118: 7,5 + 119: 9,1 + 126: 18,6 + 127: 17,7 + 128: 20,6 + 129: 20,5 + 130: 19,7 + 131: 17,6 + 132: 15,6 + 133: 16,6 + 134: 19,5 + 135: 24,8 + 136: 24,9 + 137: 25,10 + 138: 24,10 + 139: 12,19 + 140: 13,19 + 141: 12,18 + 142: 1,19 + 143: 2,18 + 144: 1,20 + 145: 0,20 + 146: 0,18 + 147: 3,20 + 148: 2,20 + 149: 3,21 + 150: 5,19 + 185: 25,21 + 186: 25,22 + 187: 24,23 + 188: 27,26 + 189: 27,27 + 190: 27,29 + 191: 27,30 + 192: 31,29 + 193: 23,30 + 194: 23,29 + 195: 27,32 + 196: 24,32 + 197: 23,32 + 198: 31,32 + 199: 27,32 + 200: 14,29 + 201: 11,29 + 202: 12,29 + 203: 14,29 + 204: 11,30 + 205: 11,31 + 206: 11,32 + 207: 13,32 + 208: 15,31 + 209: 16,30 + 210: 16,32 + 223: 14,32 + 224: 15,32 + 225: 13,29 + 235: 5,33 + 236: 6,34 + 237: 7,32 + 238: 7,35 + 241: 5,22 + 242: 6,22 + 253: 7,20 + 254: 6,20 + 255: 5,20 + 256: 8,20 + 274: 16,21 + 275: 18,20 + 276: 18,18 + 277: 14,15 + 278: 14,13 + 279: 12,7 + 280: 15,6 + 281: 18,10 + 282: 19,10 + 283: 17,9 + 284: 20,9 + 285: 18,9 + 308: 11,25 + 309: 12,24 + 310: 11,24 + 311: 12,25 + 324: 27,8 + 325: 27,7 + 326: 27,6 + 327: 26,6 + 370: 4,11 + 392: 18,22 + 393: 18,26 + 394: 18,22 + 395: 23,25 + 396: 24,25 + 397: 22,22 + 398: 17,17 + 399: 15,15 + 400: 15,13 + 401: 14,12 + 402: 16,12 + 403: 22,13 + 404: 20,13 + 405: 23,12 + 406: 24,13 + 407: 22,14 + 408: 22,13 + 409: 15,12 + 410: 16,16 + 411: 13,15 + 412: 17,17 + 413: 14,11 + 414: 13,10 + 415: 14,13 + 416: 15,11 + 417: 13,14 + 418: 16,17 + 419: 15,17 + 420: 15,19 + 421: 13,18 + 422: 10,17 + 423: 11,20 + 424: 10,21 + 425: 7,17 + 426: 8,19 + 427: 5,18 + 428: 5,13 + 429: 1,15 + 430: 1,13 + 431: 4,5 + 432: 5,4 + 433: 5,7 + 434: 8,7 + 435: 11,7 + 436: 12,5 + 437: 11,4 + 438: 13,8 + 439: 14,5 + 440: 15,5 + 441: 15,7 + 442: 16,10 + 443: 14,6 + 451: 16,6 + 452: 20,5 + 453: 19,5 + 454: 23,4 + 455: 22,5 + 456: 24,5 + 457: 25,6 + 458: 24,6 + 459: 25,5 + 460: 24,4 + 461: 22,9 + 462: 24,12 + 463: 24,14 + 464: 24,17 + 465: 24,18 + 466: 24,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 83: 9,13 + 84: 8,13 + 85: 10,13 + 86: 10,14 + 87: 8,11 + 88: 8,12 + 99: 6,19 + 100: 7,19 + 101: 4,12 + 102: 6,14 + 103: 8,7 + 105: 8,5 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 106: 8,5 + 120: 11,4 + 121: 14,6 + 122: 17,5 + 123: 18,6 + 124: 18,5 + 125: 20,5 + 151: 5,19 + 152: 5,19 + 153: 5,18 + 154: 11,9 + 155: 13,9 + 156: 13,8 + 157: 7,7 + 158: 6,9 + 159: 8,8 + 160: 7,8 + 161: 12,7 + 162: 14,5 + 163: 11,4 + 164: 17,3 + 165: 18,5 + 166: 22,5 + 167: 24,5 + 168: 24,9 + 169: 25,9 + 170: 27,6 + 171: 27,9 + 179: 28,20 + 180: 28,20 + 181: 27,20 + 182: 27,21 + 183: 25,22 + 184: 25,23 + 211: 15,29 + 212: 16,29 + 213: 15,30 + 214: 13,31 + 215: 11,31 + 216: 11,30 + 217: 13,29 + 218: 15,31 + 226: 14,29 + 227: 14,29 + 228: 14,29 + 229: 14,29 + 230: 14,29 + 231: 14,29 + 239: 5,33 + 240: 6,34 + 286: 19,9 + 287: 19,9 + 288: 19,10 + 289: 20,10 + 290: 20,9 + 291: 20,9 + 292: 22,8 + 293: 22,8 + 294: 22,8 + 295: 10,19 + 296: 10,19 + 297: 9,20 + 298: 12,21 + 299: 12,21 + 300: 12,21 + 301: 12,24 + 302: 12,24 + 303: 12,24 + 304: 11,25 + 305: 11,25 + 306: 11,25 + 307: 11,25 + 312: 11,24 + 313: 9,25 + 314: 9,20 + 315: 10,21 + 316: 19,21 + 359: 5,8 + 360: 5,8 + 361: 2,8 + 362: 3,9 + 363: 2,11 + 364: 4,11 + 365: 3,11 + 366: 4,11 + 367: 4,11 + 368: 4,11 + 369: 4,11 + 444: 15,6 + 445: 15,6 + 446: 15,6 + 447: 16,6 + 448: 16,6 + 449: 16,6 + 450: 16,6 + 467: 24,17 + 468: 24,18 + 469: 25,16 + 470: 25,17 + 471: 17,21 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 243: 6,22 + 244: 6,22 + 245: 5,22 + 257: 9,21 + 258: 9,22 + 259: 9,20 + 260: 10,19 + 261: 9,18 + 262: 9,18 + 263: 9,18 + 264: 9,17 + 265: 8,17 + 266: 11,17 + 267: 12,20 + 268: 13,22 + 269: 17,20 + 270: 18,21 + 271: 16,20 + 272: 15,17 + 273: 16,16 + 317: 22,24 + 318: 22,24 + 328: 28,9 + 329: 25,4 + 330: 23,4 + 331: 24,3 + 332: 22,1 + 333: 21,1 + 334: 18,3 + 335: 17,3 + 336: 16,1 + 337: 16,3 + 338: 15,5 + 339: 17,5 + 340: 17,7 + 341: 17,6 + 342: 17,6 + 343: 18,7 + 344: 18,7 + 345: 18,7 + 346: 7,4 + 347: 7,4 + 348: 7,4 + 349: 7,3 + 350: 8,2 + 351: 8,4 + 352: 7,5 + 353: 5,5 + 354: 4,5 + 355: 5,4 + 356: 4,8 + 357: 5,8 + 358: 5,7 + 371: 5,11 + 372: 4,12 + 373: 7,14 + 374: 6,15 + 375: 6,14 + 376: 5,13 + 377: 4,13 + 378: 5,15 + 379: 2,17 + 380: 1,19 + 381: 6,18 + 382: 6,23 + 383: 11,21 + 384: 11,20 + 385: 11,20 + 386: 14,19 + 387: 18,22 + 388: 17,23 + 389: 18,22 + 390: 18,22 + 391: 19,26 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtLight + decals: + 172: 24,15 + 173: 25,15 + 174: 26,17 + 175: 26,16 + 176: 27,16 + 219: 14,31 + 220: 13,31 + 221: 13,32 + 222: 13,32 + 246: 6,23 + 247: 7,23 + 248: 7,20 + 249: 7,20 + 250: 7,20 + 251: 7,20 + 252: 7,20 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtMedium + decals: + 177: 28,16 + 178: 28,16 + 232: 15,29 + 233: 16,29 + 234: 7,28 + 319: 27,8 + 320: 27,8 + 321: 27,8 + 322: 27,8 + 323: 27,8 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Grassa3 + decals: + 615: 8.241407,3.6833153 + 616: 8.921757,3.9872465 + 617: 8.80286,3.0292025 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Grassa4 + decals: + 559: 7.3441095,4.328344 + 560: 12.742252,6.0802402 + 561: 15.521446,6.3180995 + 562: 13.202974,11.0901985 + 563: 15.952444,10.257692 + 564: 19.259792,8.670153 + 565: 18.665314,5.057666 + 566: 21.897038,6.157765 + 567: 22.573288,3.4372492 + 568: 24.600883,10.824385 + 569: 26.429699,7.134126 + 570: 24.328552,13.512222 + 571: 17.216814,18.069342 + 572: 14.478456,19.930538 + 573: 15.7472725,10.749027 + 574: 14.24621,10.704428 + 575: 17.661621,20.866756 + 576: 12.568515,22.844734 + 577: 10.472974,19.752563 + - node: + cleanable: True + zIndex: 50 + color: '#D3000056' + id: Grassa4 + decals: + 578: 18.94028,5.923475 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileCornerOverlaySW + decals: + 53: 13,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkBox + decals: + 32: 7,1 + 33: 9,1 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSw + decals: + 37: 13,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndE + decals: + 6: 9,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndN + decals: + 0: 8,5 + 25: 7,5 + 26: 9,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndS + decals: + 9: 8,1 + 24: 7,3 + 27: 9,3 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndW + decals: + 5: 7,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNe + decals: + 7: 8,2 + 46: 15,29 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNw + decals: + 8: 8,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSe + decals: + 10: 8,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSw + decals: + 11: 8,2 + 40: 15,30 + 45: 13,32 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 3: 8,3 + 4: 8,4 + 30: 7,4 + 31: 9,4 + 41: 15,32 + 42: 15,31 + 43: 15,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 44: 16,29 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 34: 11,32 + 35: 12,32 + 38: 14,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 1: 8,4 + 2: 8,3 + 28: 7,4 + 29: 9,4 + 36: 13,31 + 39: 15,29 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayE + decals: + 20: 9,2 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayN + decals: + 12: 8,5 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayS + decals: + 13: 8,1 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayW + decals: + 21: 7,2 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileInnerOverlayNE + decals: + 50: 15,29 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlayNE + decals: + 16: 8,2 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlayNW + decals: + 17: 8,2 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlaySE + decals: + 14: 8,2 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileInnerOverlaySW + decals: + 56: 13,32 + 59: 15,30 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlaySW + decals: + 15: 8,2 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayE + decals: + 47: 15,32 + 48: 15,31 + 49: 15,30 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileLineOverlayE + decals: + 18: 8,4 + 19: 8,3 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayN + decals: + 51: 16,29 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayS + decals: + 54: 11,32 + 55: 12,32 + 57: 14,30 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayW + decals: + 52: 13,31 + 58: 15,29 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileLineOverlayW + decals: + 22: 8,3 + 23: 8,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rust + decals: + 62: 8,16 + 63: 9,16 + 64: 10,16 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: brush + decals: + 503: 8.940525,18.01682 + 504: 8.110577,6.756807 + 505: 8.496988,6.7667174 + 506: 7.652321,6.8992376 + 507: 7.4937935,6.0667305 + 508: 8.797291,6.6217356 + 514: 17.737843,5.9486985 + 515: 17.975636,6.919957 + 540: 12.571102,30.604492 + - node: + cleanable: True + zIndex: 50 + color: '#E300002E' + id: brush + decals: + 582: 19.206146,5.9493527 + 583: 18.44323,5.513278 + 584: 18.918814,5.5727425 + 585: 18.314426,5.2655077 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: brush + decals: + 602: 7.9639835,3.5511713 + 603: 8.29425,4.0863547 + 610: 8.6707535,3.9674253 + - node: + cleanable: True + color: '#34FFFF25' + id: dot + decals: + 70: 8.9307575,14.558214 + 71: 8.699571,14.478928 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: dot + decals: + 594: 18.017918,5.6168184 + 595: 19.632921,6.3204856 + 596: 18.136814,5.3591375 + 597: 19.03844,5.5870867 + 598: 18.632214,6.102448 + 599: 18.25571,5.7753916 + 600: 8.076274,3.5379572 + 601: 8.459383,4.007068 + - node: + cleanable: True + zIndex: 50 + color: '#E3000079' + id: dot + decals: + 592: 18.374605,6.2411995 + 593: 18.216076,5.9636965 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: grasssnow13 + decals: + 618: 8.426356,3.841888 + 619: 8.829282,4.092962 + 620: 8.763227,3.2802758 + 621: 8.697175,3.6701012 + - node: + cleanable: True + zIndex: 50 + color: '#E3000056' + id: grasssnowb3 + decals: + 579: 18.711296,5.80895 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: minus + decals: + 622: 7.6667433,3.3661697 + 623: 7.4289513,3.2736688 + - node: + cleanable: True + color: '#34FFFF25' + id: smallbrush + decals: + 69: 9.128918,14.815895 + - node: + cleanable: True + color: '#7C52226D' + id: smallbrush + decals: + 65: 9.37992,12.774269 + - node: + cleanable: True + color: '#7C522285' + id: smallbrush + decals: + 66: 9.39313,12.846949 + 67: 9.445972,13.071594 + 68: 9.571474,12.721413 + - node: + cleanable: True + zIndex: 50 + color: '#E300001F' + id: smallbrush + decals: + 626: 8.637727,3.2736688 + 627: 8.783045,3.0093808 + - node: + cleanable: True + zIndex: 50 + color: '#E300001F' + id: splatter + decals: + 624: 8.70378,3.795638 + 625: 8.849097,3.379384 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,1: + 0: 13158 + 1: 2048 + 0,2: + 0: 9019 + 1: 52420 + 0,3: + 0: 797 + 1: 9312 + 0,4: + 0: 34852 + 1: 26432 + 1,1: + 1: 65466 + 1,2: + 1: 22011 + 1,3: + 1: 30325 + 1,0: + 0: 800 + 1: 34944 + 2,0: + 1: 15152 + 0: 136 + 2,1: + 1: 63931 + 2,2: + 1: 63072 + 2,3: + 1: 30591 + 3,0: + 0: 33948 + 1: 2304 + 3,1: + 1: 65521 + 0: 12 + 3,2: + 1: 60991 + 3,3: + 1: 65518 + 3,4: + 1: 63950 + 4,0: + 0: 35847 + 1: 29432 + 4,1: + 1: 61408 + 4,2: + 1: 65504 + 4,3: + 1: 4159 + 0,5: + 1: 2191 + 0: 58368 + 1,4: + 1: 65152 + 1,5: + 1: 53006 + 0: 12288 + 0,6: + 0: 8 + 1,6: + 0: 19 + 1,7: + 0: 26422 + 1: 32776 + 1,8: + 0: 25094 + 1: 33832 + 2,4: + 1: 65520 + 2,5: + 1: 52975 + 2,6: + 1: 14316 + 2,7: + 0: 4131 + 1: 43924 + 2,8: + 0: 36371 + 1: 4136 + 3,5: + 1: 62399 + 3,6: + 1: 61141 + 3,7: + 1: 65528 + 3,8: + 1: 3343 + 0: 61952 + 4,4: + 1: 65395 + 4,5: + 1: 65271 + 4,6: + 1: 65511 + 4,7: + 1: 55632 + 0: 1164 + 5,0: + 1: 59119 + 0: 4112 + 5,1: + 1: 21980 + 5,2: + 1: 20852 + 5,3: + 1: 36063 + 6,0: + 0: 17 + 1: 13824 + 6,1: + 1: 53043 + 0: 196 + 6,2: + 1: 11195 + 6,3: + 1: 29559 + 0: 35840 + 5,4: + 1: 57240 + 6,4: + 1: 29183 + 7,1: + 1: 4368 + 7,2: + 1: 16 + 7,3: + 1: 4096 + 7,4: + 1: 4097 + 4,8: + 1: 17985 + 0: 43404 + 5,5: + 1: 61168 + 5,6: + 1: 3526 + 6,5: + 1: 48878 + 0: 16384 + 6,6: + 1: 35771 + 0: 17476 + 5,7: + 1: 34952 + 5,8: + 1: 8 + 6,7: + 1: 43690 + 0: 17476 + 6,8: + 1: 143 + 7,5: + 1: 9201 + 0: 4096 + 7,6: + 0: 4369 + 1: 34 + 7,7: + 0: 4369 + 1: 43690 + 7,8: + 1: 15 + 8,5: + 1: 16 + 4,9: + 0: 7 + 1,9: + 0: 6 + 2,9: + 0: 6 + 3,9: + 0: 38 + uniqueMixes: + - volume: 2500 + immutable: True + 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: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 384 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 12.5,29.5 + parent: 1 +- proto: AirlockAssemblyShuttleSyndicate + entities: + - uid: 136 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 +- proto: AirlockAssemblyShuttleSyndicateGlass + entities: + - uid: 139 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 +- proto: AirlockAssemblySyndicate + entities: + - uid: 227 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 +- proto: AirlockAssemblySyndicateGlass + entities: + - uid: 244 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 +- proto: AirlockGlassShuttleSyndicate + entities: + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 1 +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 363 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1 +- proto: AirlockSyndicateLocked + entities: + - uid: 243 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 +- proto: Ash + entities: + - uid: 451 + components: + - type: Transform + pos: 23.658306,19.163774 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 14.457959,12.915743 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 15.557747,16.037645 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 16.451359,18.196827 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 6.397596,19.510113 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 6.7096972,18.603273 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 9.072836,18.678656 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 9.756489,18.975979 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 1.3102326,19.870108 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 1.9195738,20.59855 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 10.94556,24.742931 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 11.614349,22.810324 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 11.867003,22.245409 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 15.190439,26.507044 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 14.848613,25.317747 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 15.410652,34.642574 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 12.913837,34.256054 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 9.544155,31.293 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 8.251162,29.821245 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 7.3297176,31.843048 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 24.297375,18.108276 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 24.561222,6.6078305 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 23.50602,4.600893 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 18.660187,1.5588708 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 17.253725,23.523418 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 12.2345705,5.8476396 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 12.011641,4.3267145 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 8.65283,2.3049102 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 7.270664,5.5160103 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 17.31199,9.514608 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 13.061424,9.232151 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 6.9977303,7.909058 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 3.7833395,9.589203 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 4.2148833,13.2981415 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 9.862103,21.743229 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 10.857857,20.910723 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 27.969006,23.146656 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 17.686417,21.841814 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 29.52919,21.760294 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 31.621586,29.818377 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 31.235176,29.981905 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 27.38306,30.621151 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 27.546543,30.04137 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 22.083767,24.212067 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 18.492092,31.483608 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 18.492092,33.55001 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 11.789333,31.334946 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 7.3963246,31.63227 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 6.3882,22.24215 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 7.05699,22.792198 + parent: 1 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 33 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 +- proto: AsteroidRockDiamond + entities: + - uid: 39 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1 +- proto: AsteroidRockGold + entities: + - uid: 32 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 +- proto: AsteroidRockMining + entities: + - uid: 49 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 22.5,17.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 +- proto: AsteroidRockQuartzCrab + entities: + - uid: 56 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 +- proto: AsteroidRockTinCrab + entities: + - uid: 55 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 58 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 +- proto: AsteroidRockUraniumCrab + entities: + - uid: 57 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 +- proto: BaseUplinkRadio + entities: + - uid: 291 + components: + - type: Transform + pos: 11.568111,12.562441 + parent: 1 +- proto: BlastDoor + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 +- proto: BlastDoorFrame + entities: + - uid: 46 + components: + - type: Transform + anchored: True + pos: 6.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + anchored: True + pos: 10.5,1.5 + parent: 1 +- proto: BlastDoorOpen + entities: + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 +- proto: BookHowToSurvive + entities: + - uid: 165 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: 10.326089,11.946106 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 305 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 14.5,29.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 13.5,29.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 +- proto: CableHV + entities: + - uid: 66 + components: + - type: Transform + pos: 23.5,30.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 23.5,29.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 23.5,28.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 26.5,32.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 25.5,32.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 31.5,32.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 31.5,30.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 29.5,30.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 27.5,30.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 27.5,29.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 27.5,27.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 25.5,30.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 14.5,30.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 16.5,30.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1 +- proto: CableHVStack1 + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.307026,19.329409 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.794289,19.26251 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.784438,24.595383 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.583801,24.260893 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.546716,26.415274 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.9893913,26.928158 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.983022,20.238365 + parent: 1 +- proto: CableMV + entities: + - uid: 310 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 1 +- proto: CartridgePistol + entities: + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.707554,31.566319 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 13.258321,7.8205676 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 16.69144,11.18033 + parent: 1 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.572216,6.330937 + parent: 1 + - uid: 805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.593155,10.062354 + parent: 1 + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.81184,6.063345 + parent: 1 + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.4316,6.279939 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.6513104,9.61463 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.668216,21.573744 + parent: 1 + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.3646064,20.042524 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.414936,25.962389 + parent: 1 + - uid: 812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.455917,27.254993 + parent: 1 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.964893,26.070723 + parent: 1 + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.024342,24.093517 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 18.953266,18.67662 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 11.499335,17.900156 + parent: 1 +- proto: CartridgeRifle + entities: + - uid: 758 + components: + - type: Transform + pos: 25.129833,24.533407 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: 9.319345,12.012077 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: 9.253292,11.81386 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 9.233477,11.926182 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 11.967346,5.181212 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 9.856943,7.663868 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 5.205138,7.4854736 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 17.106293,10.943457 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: 13.182726,7.5242305 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 19.600754,10.255047 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 24.848476,13.65406 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: 23.183933,16.389442 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 25.76595,20.670668 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 26.464462,21.63697 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 21.601566,23.091549 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 24.30645,26.302649 + parent: 1 + - uid: 776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.42859,21.678398 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.283913,23.506674 + parent: 1 + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.747323,26.367971 + parent: 1 + - uid: 779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.450083,27.378874 + parent: 1 + - uid: 780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.152314,24.59264 + parent: 1 + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.249979,26.064396 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 6.4335046,19.61104 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 6.4929104,23.01536 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: 1.7825036,19.4188 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: 1.4852638,19.359337 + parent: 1 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.3430138,22.00552 + parent: 1 + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.0674658,15.374296 + parent: 1 + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.872137,13.590351 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.7340999,10.359734 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.3031027,9.244768 + parent: 1 + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.6914587,8.293852 + parent: 1 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.7593994,7.9221964 + parent: 1 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4027114,6.881562 + parent: 1 + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.8602104,10.538649 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.435755,15.505661 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.401785,15.43133 + parent: 1 + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.431509,17.456453 + parent: 1 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.212826,18.274094 + parent: 1 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.644343,19.75693 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 13.785819,14.588936 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 15.554397,17.279718 + parent: 1 +- proto: Catwalk + entities: + - uid: 140 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 +- proto: Chair + entities: + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 323 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 417 + components: + - type: Transform + pos: 9.10406,30.661636 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 7.4884534,31.736221 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 7.800555,35.49737 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 13.607817,31.136745 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 14.365415,30.230295 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.230824,17.130505 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 14.212062,24.461624 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 12.978517,21.815441 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 10.897838,19.659842 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 8.129204,19.92824 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 7.772516,19.601183 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 17.300217,12.409737 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 15.0299835,13.487951 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 15.773084,12.59598 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 15.386671,11.927 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.997894,6.6810007 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 20.020027,6.1930556 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.969429,9.54118 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 24.822754,9.885714 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.683052,22.318811 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.765854,23.597303 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.344462,25.58943 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.910366,21.938826 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.2713,23.588974 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.265905,26.213812 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.043714,24.19377 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.3680563,18.87617 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.293878,19.170387 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5179777,13.513199 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.4628105,12.606327 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.626315,9.677662 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 9.724353,12.291885 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 10.3485565,11.280983 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 13.096139,8.101019 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 12.947519,6.1981454 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.231994,5.08318 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.49951,8.042492 + parent: 1 + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.6552515,14.172359 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.02422,20.314716 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.910286,26.204416 + parent: 1 +- proto: CigaretteSyndicate + entities: + - uid: 285 + components: + - type: Transform + pos: 8.266058,3.1106043 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.068604,2.7835479 + parent: 1 +- proto: CigarGoldSpent + entities: + - uid: 426 + components: + - type: Transform + pos: 7.5033154,32.003815 + parent: 1 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 749 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 +- proto: ClosetWallBlack + entities: + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 822 +- proto: ClothingHeadHatSyndieMAA + entities: + - uid: 759 + components: + - type: Transform + pos: 10.68897,12.599863 + parent: 1 +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 407 + components: + - type: Transform + rot: 0.5585053606381855 rad + pos: 14.854593,30.753374 + parent: 1 +- proto: ClothingMaskGasSyndicate + entities: + - uid: 379 + components: + - type: Transform + pos: 11.182872,32.586216 + parent: 1 +- proto: ClothingNeckScarfStripedSyndieGreen + entities: + - uid: 362 + components: + - type: Transform + pos: 12.502442,31.736687 + parent: 1 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 355 + components: + - type: Transform + pos: 12.83593,19.44731 + parent: 1 +- proto: ClothingOuterCoatSyndieCap + entities: + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.512768,11.576248 + parent: 1 +- proto: ClothingOuterHardsuitSyndicate + entities: + - uid: 405 + components: + - type: Transform + rot: -0.6981317007977318 rad + pos: 13.936991,31.094269 + parent: 1 +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.144539,6.338307 + parent: 1 +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.609507,6.503487 + parent: 1 +- proto: CombatKnife + entities: + - uid: 410 + components: + - type: Transform + pos: 18.405024,6.5002904 + parent: 1 +- proto: ComputerShuttleSyndie + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 719 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 6.5,32.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 718 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1 +- proto: CrateMedicalSurgery + entities: + - uid: 833 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 +- proto: CrowbarOrange + entities: + - uid: 822 + components: + - type: Transform + parent: 821 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CrowbarRed + entities: + - uid: 402 + components: + - type: Transform + pos: 15.297212,32.425343 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 397 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,26.5 + parent: 1 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.404893,31.427254 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 11.565175,11.459566 + parent: 1 +- proto: DrinkMREFlask + entities: + - uid: 619 + components: + - type: Transform + pos: 8.730902,12.491201 + parent: 1 + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.979309,15.375244 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 10.8780365,13.657709 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 10.362822,13.697353 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 625 + components: + - type: Transform + pos: 10.769049,14.53977 + parent: 1 +- proto: filingCabinetTallRandom + entities: + - uid: 731 + components: + - type: Transform + pos: 17.5,18.5 + parent: 1 +- proto: FolderSpawner + entities: + - uid: 724 + components: + - type: Transform + pos: 8.366459,4.804512 + parent: 1 +- proto: FoodBakedPancakeCc + entities: + - uid: 382 + components: + - type: Transform + pos: 9.426485,5.4976435 + parent: 1 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 533 + components: + - type: Transform + pos: 19.52023,7.649376 + parent: 1 +- proto: FoodBreadMoldySlice + entities: + - uid: 538 + components: + - type: Transform + pos: 18.687956,5.315382 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.409824,7.5750446 + parent: 1 +- proto: FoodMealSashimi + entities: + - uid: 614 + components: + - type: Transform + pos: 8.467494,14.58679 + parent: 1 +- proto: FoodMeatBearCooked + entities: + - uid: 624 + components: + - type: MetaData + desc: Тушёнка сомнительного качества. + name: тушёнка + - type: Transform + pos: 9.801756,13.447159 + parent: 1 +- proto: FoodPizzaDonkpocketSlice + entities: + - uid: 536 + components: + - type: Transform + pos: 19.673246,6.49038 + parent: 1 +- proto: FoodPizzaMoldySlice + entities: + - uid: 537 + components: + - type: Transform + pos: 19.603891,5.6975155 + parent: 1 +- proto: FoodTinMRE + entities: + - uid: 381 + components: + - type: Transform + pos: 8.814274,14.874203 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 9.121422,14.190357 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 8.33869,13.813747 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 8.497218,13.575888 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 8.68547,13.72455 + parent: 1 +- proto: FoodTinMRETrash + entities: + - uid: 623 + components: + - type: Transform + rot: -0.8726646259971648 rad + pos: 9.612714,13.512014 + parent: 1 +- proto: FoodTinPeaches + entities: + - uid: 380 + components: + - type: Transform + pos: 10.42227,14.747898 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 392 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 1 +- proto: GasPipeBroken + entities: + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 393 + components: + - type: Transform + pos: 15.5,27.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 390 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 1 +- proto: GasPort + entities: + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,29.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,29.5 + parent: 1 +- proto: GeneratorRTG + entities: + - uid: 297 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1 +- proto: Girder + entities: + - uid: 73 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 17.5,20.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 18.5,34.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 399 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1 +- proto: Grille + entities: + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 532 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 +- proto: LandMineExplosive + entities: + - uid: 332 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 5.767343,7.139493 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 12.634052,5.5927935 + parent: 1 +- proto: LandMineModular + entities: + - uid: 528 + components: + - type: Transform + pos: 8.546536,7.3030214 + parent: 1 +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 403 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1 +- proto: LockerWallMedicalFilled + entities: + - uid: 820 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 +- proto: LootSpawnerCableCoil + entities: + - uid: 715 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1 +- proto: LootSpawnerContraband + entities: + - uid: 575 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 16.5,26.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 +- proto: LootSpawnerIndustrial + entities: + - uid: 813 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 31.5,30.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 +- proto: LootSpawnerMaterials + entities: + - uid: 690 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 699 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 +- proto: LootSpawnerMaterialsSupplementary + entities: + - uid: 691 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 681 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 735 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1 +- proto: LootSpawnerSecurityBasic + entities: + - uid: 702 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 +- proto: MagazineRifle + entities: + - uid: 756 + components: + - type: Transform + pos: 8.794591,12.02412 + parent: 1 +- proto: MaintenanceToolSpawner + entities: + - uid: 836 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 +- proto: MatchstickSpent + entities: + - uid: 509 + components: + - type: Transform + pos: 31.239307,30.060452 + parent: 1 + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.851795,6.6881433 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.630988,6.9408684 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.363472,7.3868546 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.179539,10.219347 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.7838945,7.29971 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.1095304,14.795242 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.2098475,18.574974 + parent: 1 + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.275134,19.611893 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.849975,21.183994 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.633704,25.515564 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.370103,30.74889 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.764659,34.29448 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.801282,30.213707 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.98227,24.304333 + parent: 1 + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.238636,24.371231 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 27.560966,32.93706 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 26.992496,20.32061 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.387398,16.551687 + parent: 1 + - uid: 558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.119884,14.778486 + parent: 1 + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.033897,10.454199 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 24.677143,8.607323 + parent: 1 + - uid: 561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.229069,5.4949703 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 22.921745,4.4246044 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 22.769745,5.631494 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 17.854156,6.539792 + parent: 1 + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.094603,6.171853 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.375313,9.742294 + parent: 1 + - uid: 568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.539405,9.731436 + parent: 1 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.016647,17.7005 + parent: 1 +- proto: MaterialWoodPlank1 + entities: + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.646494,6.660237 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 20.646494,6.6205935 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 386 + components: + - type: Transform + pos: 11.5,30.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1 +- proto: PaperScrap + entities: + - uid: 659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4581676,3.6407824 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 2 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 +- proto: PosterContrabandDonk + entities: + - uid: 534 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 282 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 281 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1 +- proto: Rack + entities: + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1 +- proto: RandomBrownStalagmite + entities: + - uid: 583 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 736 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 +- proto: RandomDrinkSoda + entities: + - uid: 725 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 +- proto: RandomGreyStalagmite + entities: + - uid: 721 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 +- proto: RandomInstruments + entities: + - uid: 834 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 726 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 704 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 21.5,23.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 703 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 729 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 287 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 692 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 695 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 +- proto: SalvageMobSpawner + entities: + - uid: 694 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1 +- proto: SalvageMobSpawner75 + entities: + - uid: 693 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 606 + components: + - type: Transform + pos: 18.5,31.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 12.5,34.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 11.5,24.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1 + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 +- proto: ScrapAirlock2 + entities: + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.52261,16.718317 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.741512,10.283512 + parent: 1 + - uid: 656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.063942,3.2104862 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 17.429123,5.3363533 + parent: 1 +- proto: ScrapCanister1 + entities: + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.58099,16.681438 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.917705,29.423662 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 668 + components: + - type: Transform + pos: 14.751848,16.387747 + parent: 1 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.833444,13.543825 + parent: 1 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.7419925,18.398678 + parent: 1 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.181731,13.44286 + parent: 1 + - uid: 672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.631838,15.137608 + parent: 1 +- proto: ScrapCloset + entities: + - uid: 638 + components: + - type: Transform + pos: 25.142784,10.364338 + parent: 1 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.444271,9.53183 + parent: 1 + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.34383,12.840281 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.7400255,4.5515604 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 674 + components: + - type: Transform + pos: 22.130676,5.051712 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.684341,9.515445 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.28909,15.773018 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 10.569261,23.936325 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 658 + components: + - type: Transform + pos: 8.239403,5.50714 + parent: 1 +- proto: ScrapJetpack + entities: + - uid: 666 + components: + - type: Transform + pos: 13.426971,30.328754 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.690338,15.424957 + parent: 1 + - uid: 664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.260654,15.203585 + parent: 1 +- proto: ScrapMopBucket + entities: + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.291995,9.48662 + parent: 1 +- proto: ScrapPAI + entities: + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.08356,5.75425 + parent: 1 +- proto: ScrapPAIGold + entities: + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.197021,2.5555494 + parent: 1 +- proto: ScrapTube + entities: + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.302145,19.981852 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 6.0962915,14.758856 + parent: 1 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.2233663,12.081766 + parent: 1 +- proto: ShadowBasaltRandom + entities: + - uid: 737 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 +- proto: ShardCrystalRandom + entities: + - uid: 732 + components: + - type: Transform + pos: 20.948765,18.06784 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 21.171692,12.490849 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 18.98698,12.519842 + parent: 1 +- proto: SignalButton + entities: + - uid: 164 + components: + - type: MetaData + desc: Эта кнопка переключает гермозатворы. + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 280 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 270 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 +- proto: SolarAssembly + entities: + - uid: 34 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 23.5,30.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1 +- proto: SolarPanel + entities: + - uid: 31 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1 +- proto: SolarPanelBroken + entities: + - uid: 65 + components: + - type: Transform + pos: 23.5,28.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 23.5,29.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 27.5,30.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1 +- proto: SolarTracker + entities: + - uid: 61 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 591 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 23.5,23.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 183 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 +- proto: SpawnMobSyndicateFootSoldier + entities: + - uid: 684 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 301 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 +- proto: SurvivalKnife + entities: + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.320144,14.350996 + parent: 1 +- proto: Table + entities: + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 383 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 +- proto: TableWood + entities: + - uid: 531 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 1 +- proto: Telecrystal1 + entities: + - uid: 283 + components: + - type: Transform + pos: 9.228144,5.714376 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 9.49566,1.4923736 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 9.268892,5.617793 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 9.328355,5.7069907 + parent: 1 +- proto: ToolboxEmergencyFilled + entities: + - uid: 400 + components: + - type: Transform + pos: 11.569284,32.635773 + parent: 1 +- proto: ToyFigurineNukie + entities: + - uid: 823 + components: + - type: MetaData + name: Meguneri + - type: Transform + pos: 9.606409,5.851428 + parent: 1 +- proto: ToySpawner + entities: + - uid: 700 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 10 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 17.5,33.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 16.5,33.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 15.5,33.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 14.5,33.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 13.5,33.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 12.5,33.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 11.5,33.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 10.5,32.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 10.5,30.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 10.5,33.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 133 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,7.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,20.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,20.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,22.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 6.5,29.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 7.5,34.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 6.5,33.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 16.5,35.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 10.5,35.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 9.5,35.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 7.5,27.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 1 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,7.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 572 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 +- proto: WeaponCrusherGlaive + entities: + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.058037,4.960562 + parent: 1 +- proto: WeaponRifleLecter + entities: + - uid: 318 + components: + - type: Transform + rot: 1.8325957145940461 rad + pos: 8.434372,12.329468 + parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True +- proto: WeaponRifleM90GrenadeLauncher + entities: + - uid: 683 + components: + - type: Transform + pos: 9.865517,11.493544 + parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True +- proto: WindoorSecure + entities: + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 +- proto: WindoorSecureBrigLocked + entities: + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 +- proto: Wrench + entities: + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.396292,32.336147 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_battleship.yml b/Resources/Maps/Ruins/corvax_battleship.yml new file mode 100644 index 00000000000..d5eeebde676 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_battleship.yml @@ -0,0 +1,1914 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 35: FloorDark + 92: FloorReinforced + 98: FloorShuttleGrey + 106: FloorSteel + 121: FloorTechMaint + 122: FloorTechMaint2 + 125: FloorWhite + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -0.40625,0.953125 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: nQAAAAAAnQAAAAAAYgAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAYgAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAYgAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAYgAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAYgAAAAAAYgAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: nAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAfQAAAAAAfQAAAAAAnQAAAAAAfQAAAAAAnQAAAAAAnQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAfQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAfQAAAAAAfQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAfQAAAAAAfQAAAAAAnQAAAAAAIwAAAAAAnQAAAAAAnQAAAAAAIwAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAfQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAIwAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAegAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAegAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAeQAAAAAAnAAAAAAAnQAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAXAAAAAAAXAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAXAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAXAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAXAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 28: 4,-5 + 29: 4,-4 + 30: 2,-3 + 31: 7,-8 + 32: 7,-8 + 33: 8,-8 + 34: 7,-4 + 35: 7,-14 + 36: 6,-12 + 37: 8,-11 + 38: 8,-14 + 39: 6,-19 + 40: 6,-18 + 41: 8,-18 + 42: 7,-20 + 43: 4,-20 + 44: 3,-17 + 45: 3,-24 + 46: 3,-26 + 47: 4,-25 + 48: 4,-25 + 49: 6,-23 + 50: 7,-17 + 51: 10,-14 + 52: 7,1 + 53: 7,2 + 54: 4,3 + 55: 2,2 + 56: 1,1 + 57: 6,-1 + 58: 8,-5 + 59: 9,-6 + 105: -3,-6 + 106: -3,-7 + 107: -1,-7 + 130: 1,-14 + 131: 2,-12 + 132: 1,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 0: 4,-17 + 1: 5,-16 + 2: 1,-14 + 9: 1,-7 + 10: 1,-6 + 11: 1,-7 + 12: 1,-6 + 20: 4,-9 + 21: 4,-7 + 22: 4,-8 + 68: 2,-18 + 69: 1,-19 + 80: 3,-9 + 81: 3,-9 + 94: 4,-2 + 95: 4,-2 + 96: 4,-3 + 98: 2,-1 + 99: 2,-1 + 103: 1,-5 + 104: -2,-8 + 118: 3,-11 + 119: 3,-11 + 120: 3,-11 + 121: 3,-11 + 122: 4,-13 + 123: 2,-15 + 124: 2,-15 + 125: 2,-15 + 136: 6,-22 + 137: 7,-11 + 138: 7,-11 + 141: 6,-7 + 142: 6,-7 + 148: 9,-2 + 149: 9,-2 + 152: 8,-3 + 153: 8,-3 + 169: 8,-9 + 170: 6,-9 + 172: 9,-9 + 173: 9,-9 + 174: 9,-9 + 175: 9,-13 + 181: 7,-24 + 182: 7,-24 + 183: 3,1 + 188: 9,3 + 189: 8,2 + 202: 3,-3 + 203: 1,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 13: 1,-7 + 14: 1,-7 + 15: 1,-7 + 23: 4,-8 + 24: 4,-8 + 25: 4,-8 + 60: 4,-14 + 61: 4,-14 + 62: 3,-13 + 74: 4,-23 + 79: 6,-15 + 82: 3,-9 + 83: 4,-6 + 89: 3,-1 + 90: 2,-1 + 91: 2,1 + 92: 4,-2 + 93: 4,-3 + 110: -2,-8 + 111: -2,-8 + 112: -1,-9 + 116: 3,-12 + 117: 3,-12 + 126: 2,-15 + 127: 1,-15 + 135: 6,-22 + 139: 7,-11 + 140: 6,-8 + 145: 9,-5 + 146: 9,-3 + 147: 9,-3 + 157: 8,-4 + 158: 8,-4 + 159: 7,-3 + 160: 1,-1 + 161: 7,-9 + 162: 7,-9 + 163: 7,-9 + 164: 7,-9 + 165: 9,-8 + 176: 6,-21 + 177: 6,-21 + 184: 3,1 + 185: 9,1 + 190: 8,2 + 191: 9,2 + 192: 9,2 + 193: 8,0 + 194: 8,0 + 195: 3,2 + 196: 3,2 + 197: 3,2 + 198: 2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 3: 2,-12 + 4: 2,-11 + 5: 1,-11 + 16: 4,-9 + 17: 4,-9 + 18: 4,-9 + 19: 4,-9 + 63: 2,-14 + 64: 0,-14 + 65: 1,-19 + 66: 3,-19 + 67: 2,-18 + 84: 4,-6 + 85: 4,-6 + 100: 1,-3 + 101: 1,-3 + 102: 1,-3 + 113: -1,-9 + 114: 3,-12 + 115: 3,-12 + 128: 1,-15 + 129: 1,-15 + 133: 4,-16 + 134: 4,-16 + 154: 8,-2 + 155: 8,-2 + 156: 9,-1 + 166: 9,-8 + 167: 9,-8 + 168: 9,-8 + 171: 9,-9 + 178: 6,-21 + 179: 6,-24 + 180: 6,-24 + 186: 9,1 + 187: 9,1 + 199: 2,1 + 200: 2,1 + 201: 3,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6: 2,-12 + 7: 2,-12 + 8: 1,-9 + 26: 4,-8 + 27: 3,-6 + 70: 3,-23 + 71: 3,-24 + 72: 4,-23 + 73: 4,-22 + 75: 4,-21 + 76: 4,-21 + 77: 8,-20 + 78: 6,-15 + 86: 4,-6 + 87: 2,-6 + 88: 1,-3 + 97: 3,-1 + 108: -1,-8 + 109: -1,-8 + 143: 6,-5 + 144: 6,-5 + 150: 8,-1 + 151: 8,-1 + - node: + cleanable: True + color: '#0000009E' + id: dot + decals: + 211: 8.391172,-2.9401438 + 212: 8.391172,-2.8932688 + 213: 8.406797,-2.7057688 + 214: 8.422422,-2.5338938 + 215: 8.406797,-2.3307688 + 216: 8.391172,-2.2213938 + 217: 8.391172,-2.1588938 + 218: 8.375547,-1.9401438 + 219: 8.375547,-1.7370188 + 220: 8.375547,-1.5963938 + 221: 8.406797,-1.3620188 + 222: 8.406797,-1.1588938 + 223: 8.375547,-0.9401438 + 224: 8.359922,-0.7838938 + 225: 8.359922,-0.6432688 + 226: 8.359922,-0.7838938 + 227: 8.359922,-0.9401438 + 228: 8.375547,-1.0807688 + 229: 8.391172,-1.2370188 + 230: 8.359922,-1.4557688 + 231: 8.344297,-1.7057688 + 232: 8.344297,-1.9088938 + 233: 8.391172,-2.0807688 + 234: 8.453672,-2.4401438 + 235: 7.903303,-2.9128985 + 236: 7.903303,-2.7253985 + 237: 7.903303,-2.5847735 + 238: 7.887678,-2.4441485 + 239: 7.887678,-2.2878985 + 240: 7.887678,-2.1316485 + 241: 7.918928,-1.9753985 + 242: 7.934553,-1.7410235 + 243: 7.981428,-1.5222735 + 244: 8.012678,-1.2722735 + 245: 7.997053,-1.1003985 + - node: + cleanable: True + color: '#7800009E' + id: dot + decals: + 207: 8.114338,-1.7893312 + 208: 7.129963,-3.1487062 + 209: 6.129963,-2.8362062 + 210: 8.129963,-0.69836783 + - node: + cleanable: True + color: '#9600009E' + id: dot + decals: + 248: 3.5462499,-11.858308 + 249: 3.0931249,-11.202058 + 250: 8.354788,-13.294703 + 251: 8.573538,-13.325953 + 252: 8.807913,-13.325953 + 253: 9.151663,-13.341578 + 254: 9.214163,-13.341578 + 255: 9.011038,-13.341578 + 256: 8.698538,-13.341578 + 257: 9.245413,-12.997828 + 258: 9.151663,-12.982203 + 259: 9.042288,-12.982203 + 260: 8.870413,-12.982203 + 261: 8.526663,-12.982203 + 266: 8.310846,-9.773056 + 267: 7.6077213,-10.632431 + - node: + cleanable: True + color: '#7800009E' + id: smallbrush + decals: + 205: 6.817463,-2.7362547 + 206: 7.801838,-1.2831297 + - node: + cleanable: True + color: '#9600009E' + id: smallbrush + decals: + 263: 7.9358463,-9.704847 + 264: 7.9358463,-9.986097 + 265: 7.9358463,-10.314222 + - node: + cleanable: True + color: '#7800009E' + id: splatter + decals: + 204: 7.020588,-2.0246015 + - node: + cleanable: True + color: '#9600009E' + id: splatter + decals: + 246: 4.015,-11.066802 + 247: 3.7962499,-11.301177 + 262: 7.932913,-13.315263 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyMedical + entities: + - uid: 2 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 +- proto: AirlockAssemblySecurity + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 +- proto: AirlockSecurityGlass + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 +- proto: AirlockShuttleAssembly + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 1 +- proto: APCElectronics + entities: + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.7024636,-20.940744 + parent: 1 +- proto: CableApcStack + entities: + - uid: 12 + components: + - type: Transform + pos: 7.4686804,-22.253904 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 13 + components: + - type: Transform + pos: 3.263079,1.8046379 + parent: 1 + - type: Stack + count: 5 + - uid: 14 + components: + - type: Transform + pos: 3.7397316,-23.539494 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 3.8334816,-23.805119 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5991066,-23.898869 + parent: 1 +- proto: CableHVStack10 + entities: + - uid: 17 + components: + - type: Transform + pos: 3.6772316,-24.86542 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 18 + components: + - type: Transform + pos: 4.411607,-20.873028 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 4.317857,-21.935528 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.7397316,-22.576153 + parent: 1 +- proto: Catwalk + entities: + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 26 + components: + - type: Transform + anchored: False + rot: 1.0922383053845848 rad + pos: 9.540084,-8.795029 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 27 + components: + - type: Transform + anchored: False + rot: -7.12215248544945 rad + pos: 8.603905,-5.0139365 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + - uid: 29 + components: + - type: Transform + anchored: False + rot: 0.1493762731552124 rad + pos: 9.795284,-5.217066 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 30 + components: + - type: Transform + anchored: False + rot: 2.206292640169791 rad + pos: 6.2177124,-3.0239506 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 31 + components: + - type: Transform + anchored: False + rot: -2.9816122072464744 rad + pos: 8.646742,-2.3779218 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True +- proto: ClothingOuterArmorBasic + entities: + - uid: 32 + components: + - type: Transform + pos: 9.582893,-10.427349 + parent: 1 +- proto: ClothingShoesBootsMag + entities: + - uid: 33 + components: + - type: Transform + pos: 7.4689565,-24.638027 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 34 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: CrateMaterialPlastic + entities: + - uid: 36 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: CrateMaterialSteel + entities: + - uid: 37 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 38 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 1 +- proto: GrenadeFlashBang + entities: + - uid: 39 + components: + - type: Transform + pos: 6.366265,-7.505484 + parent: 1 +- proto: Grille + entities: + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 +- proto: GunSafe + entities: + - uid: 49 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 50 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 +- proto: LockerEngineer + entities: + - uid: 51 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerMedicineFilled + entities: + - uid: 52 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 57 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1 +- proto: MagazinePistolHighCapacity + entities: + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.369757,-14.261001 + parent: 1 +- proto: MedicalBed + entities: + - uid: 59 + components: + - type: Transform + anchored: False + pos: 2.8285484,-14.406686 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 60 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: MedicalTechFabCircuitboard + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.6311746,-10.660069 + parent: 1 +- proto: NitrogenTank + entities: + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.6446414,-10.675311 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 6.516547,-12.56976 + parent: 1 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 64 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 +- proto: Rack + entities: + - uid: 65 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 +- proto: RCD + entities: + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.505287,-21.062263 + parent: 1 +- proto: RCDAmmo + entities: + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.630287,-23.276478 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5590377,-6.5940943 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4605143,-12.390623 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 10.41731,-6.455208 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.47435,-19.577469 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.57712,-18.496223 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.4781604,3.943285 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 1.93366,3.45891 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.3203936,-4.568426 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.564531,1.3057494 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.408281,4.4307494 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.752031,3.2432494 + parent: 1 +- proto: SheetGlass1 + entities: + - uid: 102 + components: + - type: Transform + pos: 1.174125,1.6015661 + parent: 1 + - type: Stack + count: 2 +- proto: SheetPlasteel + entities: + - uid: 103 + components: + - type: Transform + pos: 7.467553,-21.40242 + parent: 1 +- proto: SheetRGlass + entities: + - uid: 104 + components: + - type: Transform + pos: 6.6255116,-22.363388 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 105 + components: + - type: Transform + pos: 2.481829,2.482131 + parent: 1 + - type: Stack + count: 5 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.7649636,-20.245949 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.1555886,-19.777199 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 108 + components: + - type: Transform + pos: 7.545678,-23.350758 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 7.045678,-23.866383 + parent: 1 +- proto: SheetUranium + entities: + - uid: 110 + components: + - type: Transform + pos: 4.6705008,-21.613323 + parent: 1 + - type: Stack + count: 15 +- proto: SheetUranium1 + entities: + - uid: 111 + components: + - type: Transform + pos: 3.3580005,-19.404497 + parent: 1 + - type: Stack + count: 15 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 112 + components: + - type: Transform + pos: 2.341204,1.654006 + parent: 1 +- proto: SmokeGrenade + entities: + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.47645,-3.4574838 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 208 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 213 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 114 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 115 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 116 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: Thruster + entities: + - uid: 117 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-26.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 1 +- proto: ToolboxEmergency + entities: + - uid: 121 + components: + - type: Transform + pos: 3.4984026,-21.399504 + parent: 1 +- proto: WallReinforced + entities: + - uid: 86 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-26.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 +- proto: WeaponPistolMk58 + entities: + - uid: 203 + components: + - type: Transform + pos: 7.6092777,-13.635464 + parent: 1 +- proto: Welder + entities: + - uid: 204 + components: + - type: Transform + pos: 2.3113294,-0.47117472 + parent: 1 +- proto: WindoorAssemblySecure + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 206 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.0020947,-22.42578 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_bss_unluck.yml b/Resources/Maps/Ruins/corvax_bss_unluck.yml new file mode 100644 index 00000000000..fdeefbe9332 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_bss_unluck.yml @@ -0,0 +1,2899 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 106: FloorSteel + 121: FloorTechMaint + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -0.12092918,-0.5028126 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: nAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: agAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: nQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAnQAAAAAAeQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 144: 4,-2 + 145: 5,-3 + 146: 3,-6 + 200: 2,-3 + 745: 16,1 + 746: 1,-20 + 788: 0,-11 + 789: -1,-12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 153: 1,-2 + 156: -1,-3 + 157: 0,-3 + 158: 1,-6 + 163: 2,-6 + 164: 2,-7 + 165: 3,-7 + 170: 6,-3 + 176: 7,-2 + 177: 7,-3 + 184: -1,-6 + 185: 1,-8 + 188: 1,-9 + 191: -1,-9 + 192: 0,-9 + 196: -1,-7 + 197: 0,-7 + 749: 15,2 + 750: 17,0 + 756: 10,-3 + 765: 12,-3 + 766: 12,-3 + 767: 3,-13 + 770: -1,-11 + 774: 0,-17 + 781: 1,-14 + 782: 1,-14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 137: 0,-6 + 138: 2,-5 + 142: 0,-3 + 143: -1,-3 + 147: 2,-5 + 148: 3,-3 + 149: 2,-1 + 150: 2,0 + 154: 1,-5 + 155: 0,-4 + 159: 1,-6 + 160: 1,-6 + 166: 3,-7 + 167: 2,-5 + 168: 6,-3 + 169: 6,-4 + 175: 7,-1 + 181: 5,2 + 182: 4,1 + 183: -1,-6 + 189: -1,-9 + 193: 6,1 + 194: 1,-5 + 195: -1,-7 + 198: 2,-8 + 199: 3,-9 + 747: 1,-19 + 748: 15,2 + 751: 17,-1 + 752: 18,0 + 755: 11,1 + 758: 9,0 + 763: 15,-3 + 764: 11,-3 + 768: 0,-14 + 771: 0,-11 + 776: 3,-17 + 777: 3,-16 + 778: 3,-15 + 783: 2,-14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 139: 2,-3 + 161: 2,-6 + 162: 2,-6 + 179: 7,1 + 180: 5,1 + 190: -1,-9 + 753: 17,-2 + 754: 14,-3 + 757: 13,-1 + 761: 15,1 + 762: 15,-3 + 769: 0,-14 + 773: -1,-17 + 779: 3,-16 + 780: 3,-16 + 784: 3,-14 + 785: 1,-11 + 786: 3,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 140: 0,-2 + 141: 1,-3 + 151: 2,1 + 152: 0,1 + 171: 5,-2 + 172: 5,0 + 173: 6,-1 + 174: 7,-1 + 178: 7,-3 + 186: -1,-8 + 187: 1,-9 + 759: 15,1 + 760: 15,-2 + 772: -1,-16 + 775: 3,-17 + 787: 1,-11 + - node: + cleanable: True + color: '#78000092' + id: brush + decals: + 103: 0.8923254,-4.4985666 + 104: 1.1110754,-5.0610666 + - node: + cleanable: True + color: '#78000092' + id: dot + decals: + 47: 2.55821,-1.2720594 + 48: 2.62071,-1.2720594 + 49: 2.68321,-1.2720594 + 50: 2.77696,-1.2564344 + 51: 2.87071,-1.2408094 + 52: 2.96446,-1.2408094 + 53: 3.05821,-1.2564344 + 54: 3.198835,-1.2564344 + 55: 3.30821,-1.2564344 + 56: 3.417585,-1.2564344 + 57: 3.542585,-1.2564344 + 58: 3.230085,-1.2251844 + 59: 3.12071,-1.2095594 + 60: 2.55821,-0.74080944 + 61: 2.65196,-0.74080944 + 62: 2.71446,-0.75643444 + 63: 2.792585,-0.75643444 + 64: 2.90196,-0.75643444 + 65: 2.99571,-0.75643444 + 66: 3.08946,-0.77205944 + 67: 3.230085,-0.77205944 + 68: 3.30821,-0.77205944 + 69: 3.37071,-0.77205944 + 70: 3.43321,-0.78768444 + 71: 3.49571,-0.80330944 + 72: 3.52696,-0.80330944 + 73: 3.605085,-0.80330944 + 74: 3.71446,-0.81893444 + 75: 3.74571,-0.81893444 + 76: 3.96446,-0.83455944 + 77: 4.136335,-0.83455944 + 78: 4.30821,-0.83455944 + 79: 4.386335,-0.83455944 + 80: 3.667585,-1.2564344 + 81: 4.05821,-1.2720594 + 82: 4.12071,-1.2720594 + 83: 4.24571,-1.2720594 + 84: 4.417585,-1.2720594 + 85: 3.823835,-1.2876844 + 86: 3.80821,-1.2876844 + 111: 2.1061382,-5.442006 + 112: 1.5905132,-4.848256 + 114: 2.1530132,-6.082631 + 115: 1.3287451,-7.485402 + 117: 0.07874513,-5.797902 + 120: 0.7890017,-5.754034 + 121: 0.8358767,-7.082159 + 122: -0.19018978,-6.794079 + 123: 1.5966585,-1.0428543 + 124: 0.39353353,-1.5428543 + 125: 2.7060337,-2.8866043 + 126: 1.6236472,0.5821457 + 127: 4.154445,-0.2341302 + 128: 4.79507,-1.7018604 + 129: 3.9356952,-2.2174854 + 130: 5.498195,-0.7018604 + 131: 4.810695,0.07938957 + 132: 6.26382,-1.0924854 + 133: 2.373195,-0.31123543 + 134: 3.154445,-0.7643604 + 135: 5.435695,-2.7331104 + - node: + cleanable: True + color: '#96000015' + id: dot + decals: + 259: -0.33961105,-5.549608 + - node: + cleanable: True + color: '#9600002B' + id: dot + decals: + 215: 0.32365203,-6.2694874 + 216: 1.370527,-6.9726124 + 217: 2.276777,-5.0194874 + 218: 1.901777,-4.7382374 + 231: 2.134591,-3.36215 + 232: 3.118966,-2.909025 + 260: -0.37748462,-5.705858 + 261: -0.14310962,-5.596483 + 262: 0.18501538,-5.658983 + 263: -0.6899846,-5.612108 + 264: -0.8306096,-5.330858 + 265: -0.8149846,-5.237108 + 266: -0.8618596,-4.690233 + 267: -0.8618596,-4.549608 + 268: -1.1743596,-4.643358 + 269: -1.4087346,-4.533983 + 270: -1.0337346,-4.596483 + 271: -0.9399846,-4.596483 + 272: -0.9868596,-4.690233 + 273: -1.2212346,-4.783983 + 274: -1.3618596,-4.799608 + 275: -1.4243596,-4.783983 + 276: -1.0181096,-4.721483 + 277: -0.7681096,-4.768358 + 278: -1.0962346,-5.190233 + 279: -1.1899846,-5.158983 + 280: -1.2837346,-5.080858 + 281: -1.5181096,-4.924608 + 282: -1.1431096,-5.205858 + 283: -1.0181096,-5.237108 + 284: -0.7837346,-5.221483 + 285: 2.2437632,-5.6637936 + 286: 2.4625132,-5.6012936 + 287: 2.2437632,-5.5856686 + 288: 1.9625132,-5.5700436 + 289: 0.3780499,-6.0670166 + 290: -0.3250751,-6.0357666 + 291: -0.3875751,-5.8482666 + 292: 0.09679991,-5.7701416 + 293: 0.04992491,-5.5826416 + 294: 0.09679991,-5.7545166 + 295: -0.12195009,-5.7701416 + 296: 0.2842999,-6.0045166 + 297: -0.05945009,-5.9732666 + 298: -0.7157001,-5.9888916 + 299: -0.9188251,-5.6763916 + 300: -0.8407001,-5.6451416 + 301: -1.3719501,-5.4263916 + 302: -1.2938251,-5.1920166 + 303: -1.2469501,-5.0201416 + 304: -0.8250751,-5.2701416 + 305: -1.2000751,-5.3638916 + 306: -1.2469501,-5.3638916 + 307: -0.9032001,-4.585087 + 308: -1.2625751,-4.585087 + 309: 1.6436749,-4.975712 + 310: 1.8467999,-4.866337 + 311: 1.8155499,-4.772587 + 312: 1.8155499,-4.725712 + 313: 2.3624249,-3.271157 + 314: 2.7217999,-3.114907 + 315: 2.6124249,-2.958657 + 316: 2.7530499,-3.208657 + 317: 2.7842999,-2.849282 + 318: 1.7217999,-2.958657 + 319: 1.0186749,-2.583657 + 320: 0.81554985,-2.646157 + 321: 0.90929985,-2.583657 + 322: 0.4092999,-2.364907 + 323: 0.4405499,-2.333657 + 324: 0.2530499,-2.161782 + 325: 0.17492491,-1.974282 + 326: -1.3250751,-3.161782 + 327: 3.212628,-2.9804795 + 328: 2.759503,-3.1367295 + 329: 2.868878,-2.7929795 + 330: 2.978253,-2.6679795 + 331: 2.993878,-3.0742295 + 332: 2.962628,-3.1211045 + 333: 2.822003,-2.6679795 + 334: 2.2157247,-5.353855 + 335: 2.2313497,-5.30698 + 336: 2.1844747,-5.041355 + 337: 2.1219747,-4.697605 + 338: 1.1254675,-5.711954 + 339: 0.96921754,-5.821329 + 340: 1.2035925,-5.993204 + 341: 0.85984254,-5.930704 + 342: 0.87546754,-5.899454 + 343: 1.0942175,-5.774454 + 344: 1.0160925,-6.086954 + 345: -0.047445357,-6.118204 + 346: -0.10994536,-6.165079 + 347: -0.12557036,-6.086954 + 348: -0.32869536,-6.040079 + 349: -0.32869536,-6.274454 + 350: -0.20369536,-5.836954 + 351: -1.0630703,-5.743204 + 352: -0.89119536,-5.758829 + 353: -1.1411953,-5.680704 + 354: -1.0318203,-5.571329 + 355: -0.85994536,-6.0986586 + 356: -1.1411953,-6.1299086 + 357: -0.75057036,-6.2549086 + 358: 0.17130464,-6.4111586 + 359: 1.6400547,-6.2080336 + 360: 1.7963047,-6.2705336 + 361: 1.3744297,-6.3799086 + 362: 1.0931797,-6.5361586 + 363: 0.17130464,-6.4111586 + 364: 0.45255464,-6.2705336 + 365: 0.046304643,-6.0830336 + 366: -0.12557036,-6.2392836 + 367: 0.10880464,-6.2392836 + 368: -0.56307036,-6.5049086 + 369: -0.57869536,-6.4580336 + 370: -1.3755703,-6.3330336 + 371: 2.305039,-6.5937157 + 372: 1.7737889,-6.6093407 + 373: 1.9769139,-6.6405907 + 374: 1.3519139,-6.6249657 + 375: 1.0862889,-6.6562157 + 376: 0.8675389,-6.8124657 + 377: 0.5706639,-6.7030907 + 378: -0.96058613,-6.7030907 + 379: 0.8050389,-7.7968407 + 380: -0.72621113,-7.6718407 + 381: 0.9925389,-8.593716 + 382: 1.6487889,-5.490267 + 383: 1.6175389,-4.662142 + 384: 1.6956639,-4.755892 + 385: 0.6019139,-1.4601841 + 386: 0.44566387,-1.2414341 + 387: 0.33628887,-1.1320591 + 388: 0.47691387,-1.0695591 + 389: 0.11753887,-0.8039341 + 390: 1.4144139,-1.1945591 + 391: 1.2269139,-1.0851841 + 392: 1.1956639,-0.7883091 + 393: 1.7425389,-1.4133091 + 394: 1.1175389,-1.3664341 + 395: 0.33628887,-1.1008091 + 396: 0.008163869,-1.2414341 + 397: 1.0862889,-0.8351841 + 398: 1.3519139,-0.7570591 + 399: 1.6019139,-0.6476841 + 400: 1.9456639,-0.8664341 + 401: 2.101914,-0.6164341 + 402: 2.101914,-1.1320591 + 403: 3.6406722,-0.29148543 + 404: 3.5781722,0.14601457 + 405: 3.8594222,0.16163957 + 406: 3.8281722,0.33351457 + 407: 3.7500472,0.23976457 + 408: 4.312547,0.20851457 + 409: 4.812547,0.20851457 + 410: 4.859422,0.11476457 + 411: 4.968797,0.30226457 + 412: 5.171922,-0.7446104 + 413: 5.375047,-0.9946104 + 414: 5.390672,-0.5883604 + 415: 5.468797,-1.0883604 + 416: 5.593797,-1.3539854 + 417: 5.125047,-1.4477354 + 418: 5.140672,-1.8383604 + 419: 3.9219222,-1.5102354 + 420: 2.8437972,-1.2446104 + 421: 3.2344222,-1.3071104 + 422: 2.8594222,-1.1977354 + 423: 2.7969222,-1.0571104 + 424: 3.0937972,-1.0102354 + 425: 2.8281722,-0.9946104 + 426: 3.7165437,-1.4534736 + 427: 3.466544,-1.5784736 + 428: 3.6071687,-2.1722236 + 429: 3.9665437,-2.0003486 + 430: 3.9040437,-2.1097236 + 431: 4.6071687,-1.6253486 + 432: 4.3571687,-1.5159736 + 433: 4.6227937,-1.4534736 + 434: 3.154044,-1.2815986 + 435: 2.935294,-1.4222236 + 436: 2.669669,-0.90659857 + 437: 3.044669,-1.1565986 + 438: 3.154044,-0.78159857 + 439: 2.716544,-0.64097357 + 440: 3.013419,-0.65659857 + 441: 2.825919,-0.67222357 + 442: 2.685294,-1.3440986 + 443: 2.575919,-1.4065986 + 444: 2.263419,-1.1409736 + 445: 2.279044,-1.0784736 + 446: 2.138419,-0.65659857 + 447: 2.575919,-0.73472357 + 448: 4.1227937,-0.39097357 + 449: 3.7790437,-0.21909857 + 450: 3.6696687,-0.06284857 + 451: 3.200919,-0.40659857 + 452: 4.5602937,0.10902643 + 453: 5.1071687,0.32777643 + 454: 4.6071687,0.24965143 + 455: 5.1696687,-0.32847357 + 456: 5.0446687,-0.76597357 + 457: 4.4977937,-0.96909857 + 458: 4.9352937,-1.5159736 + 459: 4.5290437,-1.9690986 + 460: 5.8571687,-1.0315986 + 461: 6.0915437,-1.0940986 + 462: 6.1540437,-0.65659857 + 463: 6.2634187,-0.87534857 + 464: 5.5446687,-0.65659857 + 465: 5.7321687,-0.71909857 + 466: 5.0759187,-0.12534857 + 467: 5.1071687,-0.12534857 + 468: 4.4821687,-1.0628486 + 469: 4.6384187,-1.1878486 + 470: 3.9040437,-1.4847236 + 471: 3.5134187,-1.2815986 + 472: 3.279044,-1.3128486 + 473: 3.013419,-1.5003486 + 474: 2.982169,-1.5003486 + 475: 2.622794,-1.4534736 + 476: 3.044669,-1.0472236 + 477: 2.950919,-1.0159736 + 478: 3.279044,-1.0159736 + 479: 3.029044,-0.60972357 + 480: 2.935294,-0.65659857 + 481: 2.747794,-0.64097357 + 482: 2.607169,-0.59409857 + 483: 3.107169,-0.59409857 + 484: 3.466544,-0.34409857 + 485: 3.5602937,-0.031598568 + 486: 3.8727937,-0.29722357 + 487: 4.2477937,0.24965143 + 488: 4.8259187,0.34340143 + 489: 4.8259187,0.32777643 + 490: 5.1071687,0.32777643 + 491: 5.1696687,0.40590143 + 492: 4.5446687,-0.87534857 + 493: 4.8102937,-0.85972357 + 494: 4.6696687,-0.70347357 + 495: 4.7165437,-1.2815986 + 496: 4.7946687,-1.5784736 + 497: 4.3259187,-1.6878486 + 498: 4.6540437,-1.8909736 + 499: 4.3259187,-1.9065986 + 500: 3.419669,-1.7347236 + 501: 2.794669,-1.1097236 + 502: 2.419669,-1.0159736 + 503: 2.591544,-0.84409857 + 504: 2.810294,-0.78159857 + 505: 3.169669,-1.0315986 + 506: 2.982169,-0.71909857 + 507: 3.372794,-0.67222357 + 508: 3.482169,-0.45347357 + 509: 3.9509187,-0.25034857 + 510: 3.8884187,-0.015973568 + 511: 4.4040437,-0.62534857 + 512: 4.4977937,-0.43784857 + 513: 4.6071687,-0.10972357 + 514: 4.8415437,-1.1097236 + 515: 5.1696687,-0.67222357 + 516: 4.8884187,-0.96909857 + 517: 5.2946687,-1.0003486 + 518: 5.5759187,-0.85972357 + 519: 5.7165437,-1.1565986 + 520: 5.7477937,-0.93784857 + 521: 6.1071687,-0.95347357 + 522: 5.8259187,-1.4847236 + 523: 5.1696687,-1.7503486 + 524: 5.0134187,-2.1409736 + 525: 4.5759187,-1.9690986 + 526: 4.8102937,-1.6253486 + 527: 4.4977937,-1.2659736 + 528: 5.7321687,-1.1409736 + 529: 5.4040437,-0.59409857 + 530: 5.6071687,-0.85972357 + 531: 5.5446687,-0.81284857 + 532: 6.3102937,-1.1878486 + 533: 6.3884187,-0.78159857 + 534: 5.5446687,-1.2815986 + 535: 5.7790437,-1.5159736 + 536: 4.6540437,-1.3284736 + 537: 4.4040437,-0.81284857 + 538: 4.5602937,-1.7034736 + 539: 3.435294,-1.4222236 + 540: 2.982169,-1.3128486 + 541: 2.997794,-1.5628486 + 542: 3.216544,-1.3909736 + 543: 2.982169,-0.56284857 + 544: 2.904044,-0.95347357 + 545: 3.388419,-0.65659857 + 546: 3.6696687,-0.57847357 + 547: 3.6384187,-0.00034856796 + 548: 4.0759187,-1.0159736 + 549: 4.3884187,-1.5159736 + 550: 2.919669,-1.2347236 + 551: 3.013419,-1.2347236 + 552: 2.200919,-1.0003486 + 553: 1.9977939,-1.2815986 + 554: 2.013419,-0.67222357 + 555: 2.232169,-0.43784857 + 556: 1.7634189,0.15590143 + 557: 2.044669,0.062151432 + 558: 1.8571689,0.15590143 + 559: 2.122794,0.32777643 + 560: 1.8571689,0.48402643 + 561: 2.075919,0.42152643 + 562: 1.8727939,0.68715143 + 563: 1.9352939,0.24965143 + 564: 1.7009189,-0.047223568 + 565: 1.7165439,-0.32847357 + 566: 1.4352939,-0.92222357 + 567: 1.8102939,-1.2503486 + 568: 2.029044,-1.2972236 + 569: 3.341544,-1.2190986 + 570: 3.263419,-0.79722357 + 571: 3.404044,-1.1097236 + 572: 4.1384187,-1.3597236 + 573: 4.3259187,-0.54722357 + 574: 5.5759187,-1.3284736 + 575: 5.1540437,-0.45347357 + 576: 5.0602937,0.10902643 + 577: 5.2009187,0.17152643 + 578: 4.4196687,0.29652643 + 579: 4.0759187,0.030901432 + 580: 4.4040437,-0.71909857 + 581: 5.0290437,-1.8284736 + 582: 4.5134187,-1.8753486 + 583: 3.9821687,-1.2815986 + 584: 4.3415437,-1.8753486 + 585: 3.6227937,-1.7659736 + 586: 3.185294,-1.7347236 + 587: 3.435294,-1.0003486 + 588: 3.075919,-1.2972236 + 589: 2.622794,-1.3128486 + 590: 2.794669,-0.78159857 + 591: 2.060294,-1.2659736 + 592: 1.7634189,-1.0159736 + 593: 1.9665439,-1.1722236 + 594: 1.7009189,-1.1722236 + 595: 1.4509189,-0.85972357 + 596: 1.9509189,-1.4534736 + 597: 1.7165439,-1.7347236 + 598: 2.138419,-1.0315986 + 599: 2.763419,-0.96909857 + 600: 3.7009187,-1.3128486 + 601: 1.1852939,-0.93784857 + 602: 0.6071689,-0.98472357 + 603: 1.0602939,-0.93784857 + 604: 0.9040439,-1.5315986 + 605: 1.0134189,-1.4847236 + 606: 0.8884189,-1.5315986 + 607: 0.8259189,-2.1253486 + 608: -0.28345615,-2.0003486 + 609: 3.216544,-1.0159736 + 610: 4.3102937,-0.96909857 + 611: 3.7009187,-1.0784736 + 612: 2.950919,-1.3440986 + 613: 2.904044,-1.0940986 + 614: 2.732169,-0.57847357 + 615: 3.5290437,-0.84409857 + 616: 4.0915437,-0.29722357 + 617: 4.1071687,-1.1878486 + 618: 4.3102937,-1.3909736 + 619: 4.0134187,-1.7815986 + 620: 4.4509187,-1.4065986 + 621: 4.3727937,-1.0315986 + 622: 2.716544,-1.1722236 + 623: 3.357169,-1.5315986 + 624: 2.638419,-1.0159736 + 625: 3.7477937,-0.96909857 + 626: 4.5134187,-1.0940986 + 627: 3.6696687,-0.59409857 + 628: 4.1227937,-1.1565986 + 629: 4.2634187,-0.60972357 + 630: 3.5290437,-0.67222357 + 631: 3.341544,-1.2659736 + 632: 3.6071687,-1.4065986 + 633: 4.2634187,-1.3284736 + 634: 3.8102937,-1.4222236 + 635: 3.466544,-1.2972236 + 636: 3.5602937,-1.3440986 + 637: 3.091544,-1.1878486 + 638: 3.9196687,-0.64097357 + 639: 3.9977937,-0.29722357 + 640: 3.6852937,0.062151432 + 641: 4.0915437,-0.67222357 + 642: 3.029044,-0.67222357 + 643: 2.888419,-1.2034736 + 644: 2.716544,-1.1722236 + 645: 2.747794,-0.90659857 + 646: 2.950919,-1.2190986 + 647: 2.622794,-1.3440986 + 648: 2.794669,-1.1878486 + 649: 3.263419,-1.4378486 + 650: 2.966544,-1.4065986 + 651: 3.075919,-0.85972357 + 652: 3.450919,-1.1253486 + 653: 2.982169,-3.1565986 + 654: 2.982169,-3.3753486 + 655: 3.200919,-2.9534736 + 656: 3.9040437,-1.4222236 + 657: 3.7790437,-0.76597357 + 658: 3.9821687,-0.98472357 + 659: 2.982169,-0.65659857 + 660: 4.1852937,-1.3597236 + 661: 2.747794,-1.0784736 + 662: 3.7009187,-1.0315986 + 663: 2.622794,-0.57847357 + 664: 3.6071687,-1.0003486 + 665: 4.2790437,-0.25034857 + 666: 4.3259187,-0.90659857 + 667: 3.9977937,-1.1565986 + 668: 3.8571687,-1.3753486 + 669: 4.2321687,-1.5472236 + 670: 3.091544,-1.3128486 + 671: 4.6384187,-1.2659736 + 672: 3.8259187,-0.93784857 + 673: 3.232169,-0.95347357 + 674: 2.794669,-1.1565986 + 675: 2.950919,-1.4690986 + 676: 2.700919,-0.84409857 + 677: 3.263419,-0.71909857 + 678: 4.3727937,-0.29722357 + 679: 4.5759187,0.07777643 + 680: 5.1540437,0.07777643 + 681: 5.4977937,-0.17222357 + 682: 5.4040437,0.062151432 + 683: 5.3571687,-0.25034857 + 684: 5.3884187,0.15590143 + 685: 5.3727937,0.046526432 + 686: 5.2165437,0.37465143 + 687: 5.3415437,-0.26597357 + 688: 5.2009187,-0.68784857 + 689: 5.6227937,-0.93784857 + 690: 5.6540437,-1.7190986 + 691: 4.9821687,-1.7659736 + 692: 5.0602937,-2.2503486 + 693: 5.2165437,-2.0472236 + 694: 6.7009187,-1.0003486 + 695: 6.6071687,-1.3597236 + 696: 6.8259187,-0.73472357 + 697: 7.0915437,-1.1565986 + 698: 7.1852937,-1.7190986 + 699: 6.8571687,-2.5315986 + 700: 7.2009187,-2.8597236 + 701: 7.0915437,-3.4534736 + 702: 6.7946687,-2.4065986 + 703: 6.9196687,0.53090143 + 704: 6.4509187,0.79652643 + 705: 6.5446687,-0.18784857 + 706: 5.8415437,-0.20347357 + 707: 6.6852937,-0.047223568 + 708: 6.9509187,-0.29722357 + 709: 6.9665437,-0.35972357 + 710: 5.9977937,-0.21909857 + 711: 4.7165437,-1.0940986 + 712: 4.0915437,-0.73472357 + 713: 4.9040437,-0.56284857 + 714: 4.7321687,-0.00034856796 + 715: 4.4509187,-1.1253486 + 716: 3.435294,-1.1878486 + 717: 2.747794,-1.1722236 + 718: 3.091544,-0.75034857 + 719: 2.607169,-1.1565986 + 720: 2.575919,-0.93784857 + 721: 2.638419,-1.4534736 + 722: 4.1540437,-0.51597357 + 723: 3.8259187,0.10902643 + 724: 3.7634187,-0.54722357 + 725: 3.7790437,-0.047223568 + 726: 3.7009187,-0.51597357 + 727: 3.6540437,-0.43784857 + 728: 3.5446687,-0.29722357 + 729: 3.9040437,-0.57847357 + 730: 4.2634187,0.18715143 + 731: 4.5134187,-0.84409857 + 732: 4.1071687,-1.0784736 + 733: 4.1384187,-1.8909736 + 734: 4.7790437,-1.4222236 + 735: 5.0915437,-2.3440986 + 736: 4.9040437,-1.5784736 + 737: 4.8415437,-1.5472236 + 738: 3.357169,-0.73472357 + 739: 4.1696687,-1.3128486 + 740: 2.560294,-0.93784857 + 741: 3.450919,-1.2503486 + - node: + cleanable: True + color: '#9600005A' + id: dot + decals: + 213: 1.308027,-5.6444874 + 214: 1.308027,-6.0351124 + - node: + cleanable: True + color: '#9600005D' + id: dot + decals: + 233: 0.052493036,-1.690275 + 234: 1.2243681,-2.534025 + 235: 0.6931181,-2.5184 + 236: 3.1820054,-2.6687124 + - node: + cleanable: True + color: '#9600008B' + id: dot + decals: + 245: -0.9792768,-5.376046 + 246: -0.6824018,-5.813546 + 247: -0.6980268,-5.922921 + 248: -0.7136518,-6.063546 + 249: -1.2917768,-4.699971 + 250: -1.2605268,-5.890854 + 251: -0.6511518,-5.2064857 + 252: 2.2482328,-4.671648 + 253: -0.98023605,-6.3843737 + 254: -0.21461105,-5.7281237 + 255: 0.28538895,-5.5874987 + 256: -0.058361053,-5.5562487 + 257: -0.07398605,-5.8062487 + 258: 0.25413895,-5.7906237 + - node: + cleanable: True + color: '#78000092' + id: largebrush + decals: + 97: -0.03584072,-4.0066214 + - node: + cleanable: True + color: '#96000044' + id: largebrush + decals: + 237: -0.98958784,-4.0219812 + 238: -0.020837843,-4.9751062 + - node: + cleanable: True + color: '#78000088' + id: smallbrush + decals: + 15: 1.0540526,-3.7689893 + 16: 1.1478026,-4.0658646 + 17: 0.9290526,-3.8939893 + - node: + cleanable: True + color: '#78000092' + id: smallbrush + decals: + 23: 2.0241055,-1.3779964 + 24: 1.9303555,-1.5654964 + 25: 2.3053555,-1.6592464 + 26: 0.5951381,-0.92070365 + 27: 0.8138881,-0.85820365 + 28: 2.001388,-0.31132865 + 29: 1.7670131,-0.35820365 + 35: -0.51387954,-3.2748342 + 36: -0.17012954,-2.7123342 + 37: -0.42012954,-2.8529592 + 38: -0.77950454,-2.9154592 + 39: 0.23507625,-2.7435842 + 40: 0.04757625,-2.4310842 + 89: 3.5452275,-1.2926121 + 90: 3.4514778,-0.8394871 + 91: 4.0608525,-1.4176121 + 92: 3.8264775,-1.6207371 + 93: 4.1077275,-1.7144871 + 94: 3.9046025,-0.5381273 + 96: 0.47834677,-3.3919232 + 98: -0.3081416,-3.4658477 + 99: 0.03560841,-3.4033477 + 100: 0.5356084,-3.6377227 + 101: 0.5199834,-3.9814727 + 102: 0.5981084,-4.403348 + 105: 1.1827676,-4.715436 + 106: 0.7921426,-4.840436 + 107: 1.7140176,-5.8054104 + 110: 1.9030132,-5.0368643 + 119: 0.9456501,-6.347784 + - node: + cleanable: True + color: '#9600002B' + id: smallbrush + decals: + 219: 1.354902,-4.368251 + 220: 2.620527,-3.2989776 + 221: 1.526777,-2.6427276 + 222: 0.37052703,-1.9239776 + 223: 2.4110901,-2.5685623 + 224: 1.7079651,-0.8678169 + 225: 1.3329651,-1.6334419 + 226: 1.0048401,-2.383442 + 227: 2.3150873,0.2422502 + 228: 0.31433803,-4.894271 + 229: 1.251838,-2.752775 + 230: 1.7987132,-3.034025 + - node: + cleanable: True + color: '#9600008B' + id: smallbrush + decals: + 241: -0.66541606,-4.6534033 + 242: -1.102916,-4.9659033 + 243: -0.74354106,-4.9971533 + 244: -0.63416606,-5.4502783 + - node: + cleanable: True + color: '#78000092' + id: splatter + decals: + 87: 4.232664,-1.0064344 + 88: 3.763914,-1.0064344 + - node: + cleanable: True + color: '#780000A4' + id: splatter + decals: + 1: -0.045004785,-3.118837 + 4: 1.9335353,-2.2576964 + 5: 1.0297964,-3.16798 + 14: 0.76408553,-4.096691 + - node: + cleanable: True + color: '#96000012' + id: splatter + decals: + 208: 0.65296984,-3.1754196 + 209: 1.5592198,-5.2919073 + - node: + cleanable: True + color: '#96000028' + id: splatter + decals: + 201: 1.2009451,-3.741161 + 202: 0.54469514,-4.8192863 + 203: -0.6896799,-2.741161 + 204: -0.18967992,-2.350536 + 205: 0.56032014,-3.069286 + 206: 1.4665701,-3.522411 + 207: 0.57594514,-5.2220974 + - node: + cleanable: True + color: '#9600002B' + id: splatter + decals: + 742: 3.6896195,-1.3703244 + 743: 3.4864943,-0.6984494 + 744: 4.2499337,-0.5763595 + - node: + cleanable: True + color: '#9669002E' + id: splatter + decals: + 210: 0.18302703,-3.8032272 + 211: -0.551348,-3.3032272 + 212: 0.37052703,-2.9751022 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyCargoGlass + entities: + - uid: 2 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: AirlockCargoGlass + entities: + - uid: 3 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 4 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 +- proto: AirlockMaintCargoLocked + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 24 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.300065,-0.41759467 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 85 + components: + - type: Transform + pos: 0.63987535,-0.39234328 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5617504,-0.43921828 + parent: 1 +- proto: CableApcStack10 + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.645796,0.43968558 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 17.395796,-0.5134394 + parent: 1 +- proto: CableHV + entities: + - uid: 89 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 97 + components: + - type: Transform + pos: 14.2353525,0.3484378 + parent: 1 +- proto: CableHVStack10 + entities: + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.051866,-18.469288 + parent: 1 +- proto: CableMV + entities: + - uid: 99 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.239366,-18.359913 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.426866,-18.734913 + parent: 1 +- proto: CableMVStack10 + entities: + - uid: 111 + components: + - type: Transform + pos: 17.748692,-0.20093942 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 15.103122,0.070394605 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.446872,-0.39835536 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.321872,-1.0389804 + parent: 1 +- proto: Catwalk + entities: + - uid: 115 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 148 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: Physics + bodyType: Dynamic +- proto: ComputerBroken + entities: + - uid: 149 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 150 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 151 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 154 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 155 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateJanitorBiosuit + entities: + - uid: 156 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 +- proto: CrateMaterialPlastic + entities: + - uid: 157 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 +- proto: Girder + entities: + - uid: 158 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 167 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 +- proto: Grille + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: LiquidNitrogenCanister + entities: + - uid: 180 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 182 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 246 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 +- proto: OrganDionaLungs + entities: + - uid: 186 + components: + - type: Transform + pos: 1.3371437,-2.9962976 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 2.352769,0.37380576 + parent: 1 +- proto: OrganHumanBrain + entities: + - uid: 188 + components: + - type: Transform + pos: 1.2590187,-3.6474159 + parent: 1 +- proto: OrganHumanHeart + entities: + - uid: 189 + components: + - type: Transform + pos: 0.7902687,-2.8677423 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 2.868394,-0.522249 + parent: 1 +- proto: OrganHumanKidneys + entities: + - uid: 191 + components: + - type: Transform + pos: 0.44651872,-2.4337976 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 2.649644,-1.0013709 + parent: 1 +- proto: OrganHumanLiver + entities: + - uid: 193 + components: + - type: Transform + pos: 1.6027687,-2.3721097 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 1.1965187,-0.2357459 + parent: 1 +- proto: OrganHumanStomach + entities: + - uid: 195 + components: + - type: Transform + pos: 2.4106908,-1.7237439 + parent: 1 +- proto: PlasmaCanister + entities: + - uid: 196 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 197 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 +- proto: PowerCellHighPrinted + entities: + - uid: 298 + components: + - type: Transform + pos: 1.7740796,-18.213814 + parent: 1 +- proto: Poweredlight + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 +- proto: Rack + entities: + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 1 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 210 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.726791,-1.5641968 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.258041,0.29517817 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 214 + components: + - type: Transform + pos: 4.586166,0.57137585 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.645113,-2.5530493 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.448637,1.5633078 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.2293942,0.28202724 + parent: 1 +- proto: Screwdriver + entities: + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.451817,-0.9601784 + parent: 1 +- proto: ShardGlass + entities: + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.6024676,-2.5734663 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5352721,1.4621407 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 0.489994,-1.6306221 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 1.114994,-2.4118721 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.6069482,-7.5428343 + parent: 1 +- proto: SheetSteel + entities: + - uid: 224 + components: + - type: Transform + pos: -0.1572774,-15.96182 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 0.3895976,-16.383694 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 226 + components: + - type: Transform + pos: 2.4967716,-2.4453056 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.354815,-3.562369 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5266898,-3.499869 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 1.4931829,-0.5366583 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 0.3443405,-0.50676465 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 3.5646992,-5.8276234 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 232 + components: + - type: Transform + pos: 0.7489726,-15.759198 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 0.4520976,-15.565394 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -0.2510274,-14.68057 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 185 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 181 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 242 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 1 +- proto: ToolboxElectrical + entities: + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.59874105,-18.402225 + parent: 1 +- proto: WallmountSubstationElectronics + entities: + - uid: 244 + components: + - type: Transform + pos: 2.5084546,-18.317713 + parent: 1 +- proto: WallShuttle + entities: + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 1 + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 +- proto: WallShuttleInterior + entities: + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 325 + components: + - type: Transform + pos: 17.59721,-1.5514469 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.322114,-18.815619 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_gas_station.yml b/Resources/Maps/Ruins/corvax_gas_station.yml new file mode 100644 index 00000000000..1210ea7b030 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_gas_station.yml @@ -0,0 +1,4526 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorAsphalt + 12: FloorAstroGrass + 4: FloorAstroIce + 3: FloorAstroSnow + 5: FloorDark + 6: FloorDarkPlastic + 7: FloorFreezer + 1: FloorWhite + 136: FloorWoodLargeLight + 138: FloorWoodLight + 139: FloorWoodParquet + 146: Lattice + 147: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: Gas station + - type: Transform + pos: 0.390625,-0.390625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAABQAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAABAAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 49: -5,3 + 50: -4,3 + 51: -3,3 + 83: -5,-10 + 85: -4,-10 + 86: -3,-10 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 110: -6,-1 + 111: -6,-3 + 112: -6,-4 + 113: -6,-6 + 114: -2,-6 + 115: -2,-4 + 116: -2,-3 + 117: -2,-1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 52: 7,5 + 53: 7,4 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 108: -4,-2 + 109: -4,-5 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 142: -5,-8 + 143: -3,-8 + 144: -5,1 + 145: -3,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 135: -7,-2 + 136: -7,-5 + 137: -7,-7 + 141: -4,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 132: -1,-7 + 133: -1,-5 + 134: -1,-2 + 140: -4,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 126: -7,0 + 127: -7,-2 + 128: -7,-5 + 138: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 129: -1,0 + 130: -1,-2 + 131: -1,-5 + 139: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 59: 7,-14 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 54: 1,-9 + 55: 8,-9 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 56: 1,-13 + 57: 8,-13 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 58: 2,-14 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 71: 8,-12 + 72: 8,-11 + 73: 8,-10 + 74: 1,-12 + 75: 1,-11 + 76: 1,-10 + 95: -2,-2 + 98: -2,-5 + 118: -7,-1 + 119: -7,-3 + 120: -7,-4 + 121: -7,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 67: 3,-14 + 68: 4,-14 + 69: 5,-14 + 70: 6,-14 + 100: -6,0 + 101: -5,0 + 102: -2,0 + 103: -3,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 77: 1,-12 + 78: 1,-11 + 79: 1,-10 + 80: 8,-12 + 81: 8,-11 + 82: 8,-10 + 89: -6,-2 + 92: -6,-5 + 122: -1,-6 + 123: -1,-4 + 124: -1,-3 + 125: -1,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 60: 3,-14 + 64: 4,-14 + 65: 5,-14 + 66: 6,-14 + 104: -6,-7 + 105: -5,-7 + 106: -3,-7 + 107: -2,-7 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 233 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 317 + - 469 + - 329 + - 494 + - 167 + - 324 + - uid: 273 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 635 + - 513 +- proto: AirCanister + entities: + - uid: 501 + components: + - type: Transform + anchored: True + pos: 9.5,3.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: AirlockGlass + entities: + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 140 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 517 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 669 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: BarSign + entities: + - uid: 651 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 608 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 12 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 +- proto: CableHV + entities: + - uid: 38 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 +- proto: CableMV + entities: + - uid: 119 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 663 + components: + - type: Transform + parent: 662 + - type: Physics + canCollide: False +- proto: CigPackMixed + entities: + - uid: 662 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: Storage + storedItems: + 663: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 663 +- proto: ClockworkGrille + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 605 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 24 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26 + - 25 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 154 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 159 + - 158 + - 157 + - 156 + - 155 + - 160 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 278 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 280 + - 279 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 281 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 282 + - 283 + - 284 + - 285 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 286 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 289 + - 288 + - 287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 337 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 338 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateWeb + entities: + - uid: 66 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 67 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DogBed + entities: + - uid: 109 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 338 + components: + - type: Transform + parent: 337 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkWaterCup + entities: + - uid: 520 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 +- proto: FloorLiquidPlasmaEntity + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 2 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - uid: 453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - uid: 589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + - uid: 590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - uid: 645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 342 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 152 + components: + - type: Transform + pos: 5.6937675,-5.3144565 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 611 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 +- proto: FoodBreadBanana + entities: + - uid: 530 + components: + - type: Transform + pos: 5.6592984,-4.2648087 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 347 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 +- proto: FoodBreadPlain + entities: + - uid: 149 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 +- proto: FoodButter + entities: + - uid: 160 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleBBQ + entities: + - uid: 285 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 284 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 282 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 283 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentPacketCornoil + entities: + - uid: 349 + components: + - type: Transform + pos: 7.7643976,-4.5644565 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 7.2956476,-4.2832065 + parent: 2 +- proto: FoodContainerEgg + entities: + - uid: 155 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 159 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodDonutCaramel + entities: + - uid: 664 + components: + - type: Transform + pos: 7.7401943,-5.202919 + parent: 2 +- proto: FoodDonutJellySlugcat + entities: + - uid: 626 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 +- proto: FoodFrozenFreezy + entities: + - uid: 279 + components: + - type: Transform + parent: 278 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 287 + components: + - type: Transform + parent: 286 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 289 + components: + - type: Transform + parent: 286 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 288 + components: + - type: Transform + parent: 286 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 25 + components: + - type: Transform + parent: 24 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 26 + components: + - type: Transform + parent: 24 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 280 + components: + - type: Transform + parent: 278 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMealPigblanket + entities: + - uid: 316 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 2.1956058,-1.4374362 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 2.5237308,-1.2030612 + parent: 2 +- proto: FoodSnackBoritos + entities: + - uid: 297 + components: + - type: Transform + pos: 1.6885266,0.6179838 + parent: 2 +- proto: FoodSnackCheesie + entities: + - uid: 522 + components: + - type: Transform + pos: 2.6885266,0.44610882 + parent: 2 +- proto: FoodSnackChips + entities: + - uid: 298 + components: + - type: Transform + pos: 2.3447766,0.36798382 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 2.4541516,0.5867338 + parent: 2 +- proto: FoodSnackChocolate + entities: + - uid: 164 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 3.5010266,0.7039438 + parent: 2 +- proto: FoodSnackCnDs + entities: + - uid: 29 + components: + - type: Transform + pos: 1.3604016,0.43048382 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 523 + components: + - type: Transform + pos: 3.6729016,0.4070688 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 101 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' +- proto: GasPipeBend + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 168 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' +- proto: GasPipeFourway + entities: + - uid: 456 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 1 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 30 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 130 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 301 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 397 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 398 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - uid: 459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 484 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 489 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 300 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 +- proto: GasPort + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 2 + - type: GasPressurePump + targetPressure: 15 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 +- proto: GasVentScrubber + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 +- proto: GeneratorRTG + entities: + - uid: 108 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 +- proto: Igniter + entities: + - uid: 692 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 521 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 656 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5581127,-8.077557 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.4956126,-1.9603686 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.7299876,-1.3275561 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 60 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: PlasmaWindow + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 640 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 +- proto: PosterContrabandDonk + entities: + - uid: 659 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 +- proto: PosterContrabandDonutCorp + entities: + - uid: 613 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 658 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 497 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 +- proto: PosterContrabandSmoke + entities: + - uid: 320 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 +- proto: PosterContrabandSpaceCola + entities: + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 2 +- proto: PosterContrabandSpaceUp + entities: + - uid: 531 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 +- proto: PosterContrabandSunkist + entities: + - uid: 625 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 +- proto: PosterLegitFruitBowl + entities: + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 +- proto: Rack + entities: + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: Railing + entities: + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 2 + - uid: 568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + - uid: 588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 +- proto: RailingRound + entities: + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 21 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 295 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 406 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 +- proto: ReagentContainerCornmealSmall + entities: + - uid: 157 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerFlourSmall + entities: + - uid: 156 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerOliveoil + entities: + - uid: 606 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: ReagentContainerSugarSmall + entities: + - uid: 158 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReinforcedGirder + entities: + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 +- proto: ShardGlassPlasma + entities: + - uid: 315 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 +- proto: SheetPlasma10 + entities: + - uid: 67 + components: + - type: Transform + parent: 66 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SignalButton + entities: + - uid: 691 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 692: + - Pressed: Trigger +- proto: SignFire + entities: + - uid: 292 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 +- proto: SignShock + entities: + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 405 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 499 + components: + - type: Transform + anchored: True + pos: 9.5,2.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: SubstationBasic + entities: + - uid: 225 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 +- proto: SurveillanceCameraConstructed + entities: + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 + - uid: 660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 +- proto: Table + entities: + - uid: 53 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 245 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 +- proto: WallRockSnow + entities: + - uid: 9 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 +- proto: WallRockSnowPlasma + entities: + - uid: 75 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 2 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 27 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 +- proto: Wrench + entities: + - uid: 652 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_hotel_trivago.yml b/Resources/Maps/Ruins/corvax_hotel_trivago.yml new file mode 100644 index 00000000000..dfd9309af1c --- /dev/null +++ b/Resources/Maps/Ruins/corvax_hotel_trivago.yml @@ -0,0 +1,8538 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidIronsand + 4: FloorAsteroidSandRed + 12: FloorAstroGrass + 15: FloorFreezer + 5: FloorGlass + 6: FloorLaundry + 9: FloorRGlass + 3: FloorSteelCheckerLight + 11: FloorWood + 10: FloorWoodBlack + 1: FloorWoodChess + 13: FloorWoodChessDark + 16: FloorWoodChessRed + 14: FloorWoodLarge + 136: FloorWoodLargeLight + 138: FloorWoodLight + 139: FloorWoodParquet + 8: FloorWoodParquetDark + 2: FloorWoodTile + 146: Lattice + 147: Plating + 17: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: "" + - type: Transform + pos: 0.390625,-0.390625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAACAAAAAAACQAAAAAACAAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAkwAAAAAACAAAAAAACQAAAAAACAAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAACQAAAAAACAAAAAAACQAAAAAAkwAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAkwAAAAAACAAAAAAACQAAAAAACAAAAAAAkwAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAACQAAAAAACAAAAAAACQAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: BAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAABAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAADwAAAAAADwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAADwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABAAAAAAABAAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAABQAAAAAABAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAABQAAAAAABAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 143: -22,-15 + 153: -17,7 + 165: 13,-13 + 195: -4,16 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 145: -22,-13 + 155: -22,0 + 164: 12,-14 + 212: -9,4 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 172: -6,-24 + 173: -1,-29 + 184: 12,-20 + 185: 3,-28 + 186: -16,-22 + 187: -3,-6 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 188: 5,-6 + 189: 9,-8 + 190: -15,3 + 192: -1,-16 + 194: 0,15 + - node: + color: '#FFA500FF' + id: Basalt6 + decals: + 221: -4.1510906,-9.321376 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 156: -22,1 + 157: -16,8 + 158: -14,10 + 159: -8,12 + 160: 11,7 + 161: 12,-5 + 167: 5,-25 + 168: 6,-24 + 169: -2,-26 + 170: -9,-27 + 174: 5,-11 + 210: 3,6 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 175: 5,-13 + 176: -2,-7 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 162: 11,-6 + 163: 10,-13 + 166: 6,-25 + 171: -9,-26 + 211: 4,4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Basalt7 + decals: + 177: -12,-6 + 178: 0,-15 + 179: -9,-24 + 180: -16,-19 + 181: -22,-5 + 182: -4,12 + 183: 7,12 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 144: -21,-14 + 154: -21,2 + 191: 6,-14 + 213: -13,5 + 214: 6,-9 + - node: + color: '#A88661FF' + id: BrickTileSteelLineE + decals: + 84: 0,-13 + 85: 0,-12 + 86: 0,-11 + 87: 0,-10 + 88: 0,-9 + - node: + color: '#A88661FF' + id: BrickTileSteelLineN + decals: + 97: 1,-14 + 98: 2,-14 + 99: 3,-14 + - node: + color: '#A88661FF' + id: BrickTileSteelLineS + decals: + 89: 1,-8 + 90: 2,-8 + 91: 3,-8 + - node: + color: '#A88661FF' + id: BrickTileSteelLineW + decals: + 92: 4,-9 + 93: 4,-10 + 94: 4,-11 + 95: 4,-12 + 96: 4,-13 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 215: 1,9 + 216: -2,8 + 217: 4,9 + 218: 4,10 + 219: -9,-11 + 220: -8,-12 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 147: -13,-21 + 148: 11,-12 + 149: 11,-5 + 150: 9,8 + 151: 3,14 + 152: -11,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 201: 1,6 + 202: 0,6 + 203: -1,6 + 204: -3,6 + 205: -4,6 + 206: -5,6 + - node: + color: '#2E211AFF' + id: WoodTrimThinBoxWhite + decals: + 74: 7,-1 + 75: 8,0 + 76: 9,-1 + 77: 7,-3 + 78: 8,-4 + 79: 9,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 141: -3,2 + - node: + angle: 2.3387411976724017 rad + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 208: -6,6 + - node: + angle: 2.3736477827122884 rad + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 118: 0.7794962,-4.010826 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerNeWhite + decals: + 61: 9,0 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerNwWhite + decals: + 60: 7,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 142: -3,-4 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerSeWhite + decals: + 63: 9,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 129: -8,-4 + - node: + angle: 0.9773843811168246 rad + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 122: -6.951115,1.8189223 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerSwWhite + decals: + 62: 7,-4 + - node: + color: '#2E211AFF' + id: WoodTrimThinEndEWhite + decals: + 81: 9,-2 + 82: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 107: -1,-3 + 112: 5,-3 + 116: 1,2 + 117: 3,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 106: -1,-5 + 113: 5,-5 + 114: 1,1 + 115: 3,1 + - node: + color: '#2E211AFF' + id: WoodTrimThinEndWWhite + decals: + 80: 7,-2 + 83: 8,-2 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerNeWhite + decals: + 56: 8,-3 + 70: 8,-1 + - node: + angle: 2.3387411976724017 rad + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 207: -10,5 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerNwWhite + decals: + 57: 8,-3 + 71: 8,-1 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerSeWhite + decals: + 54: 8,-3 + 72: 8,-1 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerSwWhite + decals: + 53: 8,-3 + 73: 8,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 108: -1,-4 + 111: 5,-4 + 134: -3,-3 + 135: -3,-2 + 136: -3,-1 + 137: -3,0 + 138: -3,1 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineEWhite + decals: + 59: 7,-3 + 67: 7,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 139: -5,2 + 140: -4,2 + - node: + angle: 2.3736477827122884 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 119: 3.5497265,-4.5978947 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineNWhite + decals: + 51: 8,-4 + 68: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 130: -7,-4 + 132: -5,-4 + 133: -4,-4 + 196: -4,4 + 197: -5,4 + - node: + angle: 0.22689280275926285 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 131: -6,-4 + - node: + angle: 0.9773843811168246 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 121: -7.831718,2.2775698 + - node: + angle: 2.3387411976724017 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 209: 2,6 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineSWhite + decals: + 52: 8,0 + 69: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 109: -1,-4 + 110: 5,-4 + 123: -8,2 + 124: -8,1 + 125: -8,0 + 127: -8,-2 + 128: -8,-3 + 198: -1,1 + 199: -1,0 + 200: -1,-1 + - node: + angle: 0.9773843811168246 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 120: -6.03382,1.011703 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineWWhite + decals: + 58: 9,-3 + 66: 9,-1 + - node: + color: '#FFFFFFFF' + id: pawprint + decals: + 146: -5,-20 + - node: + color: '#4B362BFF' + id: skull + decals: + 105: -2,14 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyCargo + entities: + - uid: 42 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 +- proto: AirlockAssemblyCargoGlass + entities: + - uid: 47 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 397 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 +- proto: AirlockFreezer + entities: + - uid: 835 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 +- proto: APCConstructed + entities: + - uid: 1327 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 +- proto: Ash + entities: + - uid: 173 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 837 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 +- proto: BarSignTheSun + entities: + - uid: 1162 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 +- proto: BeachBall + entities: + - uid: 887 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 +- proto: Bed + entities: + - uid: 537 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 +- proto: BookExpensiveCrystal + entities: + - uid: 1241 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 +- proto: BookFaks + entities: + - uid: 510 + components: + - type: Transform + parent: 509 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookRandom + entities: + - uid: 504 + components: + - type: Transform + pos: -5.272554,-1.3500719 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 496 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 +- proto: BookTheBookOfControl + entities: + - uid: 500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.4793024,-1.2327943 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 845 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 326 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 +- proto: CableHV + entities: + - uid: 411 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 +- proto: CableHVStack1 + entities: + - uid: 432 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 +- proto: CableMV + entities: + - uid: 415 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 +- proto: CableMVStack1 + entities: + - uid: 1328 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 +- proto: Carpet + entities: + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 2 + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 2 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 528 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 531 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 2 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 275 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 +- proto: ClosetWallBlack + entities: + - uid: 330 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - type: EntityStorage + open: True + - uid: 345 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 1163 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 +- proto: ClothingHandsGlovesHop + entities: + - uid: 1418 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 282 + components: + - type: Transform + pos: 5.5224385,10.640079 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 281 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 +- proto: ClothingHeadHatBrownFlatcap + entities: + - uid: 284 + components: + - type: Transform + pos: 3.3349385,10.827579 + parent: 2 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 1435 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 +- proto: ClothingShoesAerostatic + entities: + - uid: 261 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 +- proto: ClothingUniformJumpsuitAerostatic + entities: + - uid: 1 + components: + - type: Transform + parent: 345 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Coal1 + entities: + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.204493,10.211201 + parent: 2 + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.492514,-1.2935748 + parent: 2 + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.309055,-1.4953797 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.474168,2.7241764 + parent: 2 +- proto: ComfyChair + entities: + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 545 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 +- proto: CrateFoodCooking + entities: + - uid: 1002 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 +- proto: CrateServiceFaxMachine + entities: + - uid: 509 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 510 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateStoneGrave + entities: + - uid: 289 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: CrowbarOrange + entities: + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.364371,2.2004685 + parent: 2 + - uid: 551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.758957,-1.5054023 + parent: 2 +- proto: CrystalBlue + entities: + - uid: 1244 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 1230 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 +- proto: CrystalGreen + entities: + - uid: 1243 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 1226 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 681 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 +- proto: CrystalSpawner + entities: + - uid: 1150 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 +- proto: CurtainsBlack + entities: + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 +- proto: CurtainsBlackOpen + entities: + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 +- proto: CutterMachine + entities: + - uid: 97 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 +- proto: CyberPen + entities: + - uid: 576 + components: + - type: Transform + pos: -4.5784683,-3.666356 + parent: 2 +- proto: DeskBell + entities: + - uid: 564 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 +- proto: DiceBag + entities: + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 1318 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 +- proto: DisposalMachineFrame + entities: + - uid: 204 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 1295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 +- proto: DisposalPipeBroken + entities: + - uid: 1303 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 1305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 511 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 539 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 198 + components: + - type: Transform + pos: 7.753729,-2.3030586 + parent: 2 +- proto: DrinkVacuumFlask + entities: + - uid: 237 + components: + - type: Transform + pos: 7.2693543,-2.1936836 + parent: 2 +- proto: EncryptionKeyBinary + entities: + - uid: 558 + components: + - type: Transform + parent: 557 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExtinguisherCabinetFilled + entities: + - uid: 556 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 +- proto: ExtinguisherCabinetFilledOpen + entities: + - uid: 555 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 554 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 +- proto: FenceWoodHighStraight + entities: + - uid: 1255 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 +- proto: Firelock + entities: + - uid: 897 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 +- proto: FirelockFrame + entities: + - uid: 191 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 898 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 505 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 +- proto: FloorAzureWaterEntity + entities: + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 +- proto: FloorCarpetItemBlack + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 +- proto: FloorCarpetItemRed + entities: + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 +- proto: FloorDrain + entities: + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 836 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGold + entities: + - uid: 1433 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 +- proto: FloorTileItemLaundry + entities: + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 +- proto: FloorTileItemSteelCheckerLight + entities: + - uid: 286 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 +- proto: FloorTileItemWoodChess + entities: + - uid: 26 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -8.429222,-6.6101227 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 +- proto: FloorTileItemWoodLarge + entities: + - uid: 381 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 +- proto: FloorTileItemWoodPattern + entities: + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 +- proto: FloraRockSolid02 + entities: + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 1263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 875 + components: + - type: Transform + pos: -4.5769396,-12.367945 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 422 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 +- proto: GasPort + entities: + - uid: 1228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 98 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 +- proto: Gateway + entities: + - uid: 57 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 +- proto: GeneratorBasic + entities: + - uid: 409 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 421 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 846 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 +- proto: Girder + entities: + - uid: 21 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 2 + - uid: 763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 +- proto: GoldDoor + entities: + - uid: 1427 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 +- proto: GoldOre1 + entities: + - uid: 1424 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 44 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 430 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 770 + - 1421 + - 1097 + - 1419 + - 1420 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: IncompleteBaseBallBat + entities: + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 +- proto: IngotGold1 + entities: + - uid: 1097 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1420 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IngotSilver1 + entities: + - uid: 1421 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: JanitorialTrolley + entities: + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 768 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 +- proto: JointRainbow + entities: + - uid: 892 + components: + - type: Transform + pos: -4.320363,-18.443808 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 843 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 1436 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 +- proto: LightBulbBroken + entities: + - uid: 1412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 +- proto: LightTubeBroken + entities: + - uid: 1414 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 +- proto: LockerSteel + entities: + - uid: 557 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 559 + - 558 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 560 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1422 + - 561 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 1271 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 1225 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 575 + components: + - type: Transform + pos: -4.413355,-3.33613 + parent: 2 +- proto: MachineFrame + entities: + - uid: 479 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 45 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 1419 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaterialWoodPlank + entities: + - uid: 375 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 206 + components: + - type: Transform + pos: 4.5444307,1.831995 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 5.0703278,8.339569 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 5.6797028,8.823944 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 5.8203278,8.120819 + parent: 2 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.38849,-0.5892978 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -5.571949,-0.55260587 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -5.400975,-0.23097217 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 8.470179,-13.349291 + parent: 2 +- proto: MaterialWoodPlank10 + entities: + - uid: 301 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 +- proto: MoonBattlemap + entities: + - uid: 515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 +- proto: Ointment1 + entities: + - uid: 1164 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1425 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 +- proto: PaintingOldGuitarist + entities: + - uid: 1130 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 1423 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 571 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 +- proto: PaperDoor + entities: + - uid: 9 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 559 + components: + - type: Transform + parent: 557 + - type: Paper + content: > + 11010000 10011110 11010000 10111111 11010000 10110101 11010001 10000000 11010000 10110000 11010001 10000110 11010000 10111000 11010001 10001111 00100000 11010000 10111111 11010001 10000000 11010000 10111110 11010001 10001000 11010000 10111011 11010000 10110000 00100000 11010001 10000011 11010001 10000001 11010000 10111111 11010000 10110101 11010001 10001000 11010000 10111101 11010000 10111110 00101100 00100000 11010001 10000001 11010000 10111010 11010000 10111110 11010001 10000000 11010000 10111110 00100000 11010000 10110100 11010000 10110000 11010000 10111101 11010000 10111101 11010001 10001011 11010000 10111001 00100000 11010000 10111110 11010001 10000010 11010000 10110101 11010000 10111011 11010001 10001100 00100000 11010000 10111111 11010000 10110101 11010001 10000000 11010000 10110101 11010000 10111101 11010000 10110101 11010001 10000001 11010001 10010001 11010001 10000010 11010001 10000001 11010001 10001111 00100000 11010000 10111101 11010000 10110000 00100000 11010000 10110100 11010001 10000000 11010001 10000011 11010000 10110011 11010000 10111110 11010000 10111001 00100000 11010000 10110111 11010000 10110101 11010001 10000010 00100000 11010001 10000011 11010001 10000000 11010000 10111110 11010000 10110010 11010000 10110101 11010000 10111101 11010001 10001100 00101110 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PartRodMetal1 + entities: + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 +- proto: Pen + entities: + - uid: 573 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.235743,10.476826 + parent: 2 + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.241955,-20.623299 + parent: 2 +- proto: PillCharcoal + entities: + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.907618,10.492451 + parent: 2 +- proto: PinionAirlock + entities: + - uid: 223 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 +- proto: PosterBroken + entities: + - uid: 883 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 886 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 562 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 +- proto: PottedPlant14 + entities: + - uid: 429 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 311 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 +- proto: PottedPlantAlt2 + entities: + - uid: 1253 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 1391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 1390 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 +- proto: PoweredlightOrange + entities: + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 +- proto: PoweredLightPostSmallEmpty + entities: + - uid: 675 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 871 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 1415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 +- proto: PresentRandomAsh + entities: + - uid: 73 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 +- proto: PrinterDoc + entities: + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 +- proto: Rack + entities: + - uid: 169 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 1232 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 +- proto: Railing + entities: + - uid: 71 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 +- proto: RainbowCannabisSeeds + entities: + - uid: 891 + components: + - type: Transform + pos: -3.7516398,-18.498846 + parent: 2 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 900 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 +- proto: RandomCommandCorpseSpawner + entities: + - uid: 1224 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 878 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 879 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 899 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 1280 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 +- proto: RandomStalagmiteOrCrystal + entities: + - uid: 1182 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 901 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 1272 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 +- proto: ScrapCanister2 + entities: + - uid: 777 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 +- proto: ScrapFaxMachine + entities: + - uid: 425 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 +- proto: ScrapFireExtinguisher + entities: + - uid: 779 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 +- proto: ScrapFirelock1 + entities: + - uid: 396 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 +- proto: ScrapFirelock2 + entities: + - uid: 395 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 +- proto: ScrapFirelock3 + entities: + - uid: 394 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 +- proto: ScrapGlass + entities: + - uid: 778 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 +- proto: ScrapPAIGold + entities: + - uid: 780 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 +- proto: ShardCrystalOrange + entities: + - uid: 420 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 +- proto: ShardCrystalRed + entities: + - uid: 1240 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 419 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 +- proto: SheetSteel1 + entities: + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 +- proto: ShelfBar + entities: + - uid: 1428 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 +- proto: ShelfGlass + entities: + - uid: 1432 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 +- proto: ShelfKitchen + entities: + - uid: 1431 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 +- proto: ShipBattlemap + entities: + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 +- proto: SignBar + entities: + - uid: 1429 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 +- proto: SignKitchen + entities: + - uid: 1430 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 +- proto: SignLaundromat + entities: + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 884 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 885 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 +- proto: SilverOre1 + entities: + - uid: 767 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 798 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 890 + components: + - type: Transform + pos: -4.283671,-18.939148 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 561 + components: + - type: Transform + parent: 560 + - type: Stack + count: 5000 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash500 + entities: + - uid: 770 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceHeaterMachineCircuitBoard + entities: + - uid: 195 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 +- proto: SpaceTickSpawner + entities: + - uid: 1166 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 +- proto: SpawnMobBearSalvage + entities: + - uid: 1275 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 877 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 +- proto: SpawnMobCobraSalvage + entities: + - uid: 1278 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 +- proto: SpawnMobKangarooSalvage + entities: + - uid: 1274 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 1270 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 +- proto: StairStageWood + entities: + - uid: 50 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 +- proto: StairWood + entities: + - uid: 283 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 +- proto: StationMapAssembly + entities: + - uid: 351 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 808 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 475 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 +- proto: SyndicateMicrowave + entities: + - uid: 876 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 205 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 236 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: TableWood + entities: + - uid: 200 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 + - uid: 874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 +- proto: Telecrystal1 + entities: + - uid: 1171 + components: + - type: Transform + pos: -1.3651109,-22.645641 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -2.7713609,-21.161266 + parent: 2 +- proto: ThrowingKnife + entities: + - uid: 285 + components: + - type: Transform + pos: -2.6396554,8.3096695 + parent: 2 +- proto: ToiletGoldenEmpty + entities: + - uid: 773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 149 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: TreasureCoinGold + entities: + - uid: 1422 + components: + - type: Transform + parent: 560 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformShortsRed + entities: + - uid: 1188 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 2.7053437,-17.68526 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 823 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 25 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 +- proto: VendingMachineColaBlack + entities: + - uid: 17 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 +- proto: VendingMachineRestockDonut + entities: + - uid: 247 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 +- proto: WallmountTelevisionFrame + entities: + - uid: 244 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 +- proto: WallNecropolis + entities: + - uid: 10 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 +- proto: WallRock + entities: + - uid: 8 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 +- proto: WallRockArtifactFragment + entities: + - uid: 586 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 +- proto: WallRockBananium + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 +- proto: WallRockCoal + entities: + - uid: 76 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 +- proto: WallRockDiamond + entities: + - uid: 142 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 +- proto: WallRockGold + entities: + - uid: 637 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 +- proto: WallRockPlasma + entities: + - uid: 385 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: WallRockQuartz + entities: + - uid: 393 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 +- proto: WallRockSalt + entities: + - uid: 79 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 +- proto: WallRockSilver + entities: + - uid: 153 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 +- proto: WallRockTin + entities: + - uid: 908 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 +- proto: WallRockUranium + entities: + - uid: 691 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 +- proto: WallWood + entities: + - uid: 3 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 14 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 63 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 +- proto: WoodenBench + entities: + - uid: 512 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 +- proto: WoodenSupport + entities: + - uid: 633 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 +- proto: WoodenSupportWall + entities: + - uid: 13 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 +- proto: WoodenSupportWallBroken + entities: + - uid: 387 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_kamikaze.yml b/Resources/Maps/Ruins/corvax_kamikaze.yml new file mode 100644 index 00000000000..2173657a296 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_kamikaze.yml @@ -0,0 +1,10441 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 9: FloorAsteroidSandRed + 6: FloorAsteroidTile + 4: FloorDark + 3: FloorDarkDiagonal + 2: FloorDarkMini + 5: FloorMetalDiamond + 8: FloorRockVault + 1: Lattice +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -5.2370396,0.37890625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: BwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABQAAAAAABgAAAAAABQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: CQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 239: 33.711098,-4.057616 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 238: 36.289608,-3.4716783 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 235: 35.677536,-5.3466787 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 237: 35.482193,-4.2399073 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 236: 33.033913,-5.5029287 + - node: + color: '#581D163F' + id: Damaged + decals: + 113: 7.79587,3.7717218 + 114: 8.811648,3.9930758 + 115: 8.394918,4.956618 + 116: 8.290736,5.6206803 + 117: 8.316782,6.5712013 + 118: 8.420964,7.49568 + 119: 9.202332,7.990472 + 120: 8.876762,6.662347 + 121: 8.954899,5.1389093 + 122: 9.514879,3.4071383 + 123: 9.957653,3.7587008 + 124: 9.176287,5.6076593 + 125: 9.202332,6.6493263 + 126: 9.89254,7.9774513 + 127: 10.283224,7.625889 + 128: 9.697199,5.737868 + 129: 9.918585,4.5008883 + 130: 11.3901615,3.2639093 + 131: 10.804136,4.865472 + 132: 9.970676,6.9488053 + 133: 10.192064,7.730055 + 134: 10.960409,6.6493263 + 135: 10.725998,5.099847 + 136: 11.168774,3.2639093 + 137: 11.754799,4.5920343 + 138: 11.15575,6.7144303 + 139: 11.24691,8.042555 + 140: 11.103659,7.8472424 + 141: 10.699953,4.852451 + 142: 10.322292,3.4982843 + 143: 8.902807,3.9670343 + 144: 7.574483,5.3863053 + 145: 7.6916885,6.818597 + 146: 8.863739,8.537347 + 147: 11.585503,8.133701 + 148: 10.2311325,5.425368 + 149: 10.478565,3.6415133 + 150: 10.830181,3.5764093 + 151: 11.142729,6.4670343 + 152: 10.739021,8.446201 + 153: 7.678665,8.12068 + 154: 8.433987,6.206618 + 155: 9.2414,4.1753674 + 156: 10.361361,5.177972 + 157: 9.514879,8.550367 + 158: 7.9521437,7.7691174 + 159: 10.6478615,5.894118 + 160: 9.918585,4.21443 + - node: + color: '#FFFFFFB2' + id: Dirt + decals: + 58: 7.808893,3.7066174 + 59: 7.900053,4.6050553 + 60: 7.9130754,5.0477633 + 61: 7.79587,5.8290133 + 62: 7.8219166,6.7925553 + 63: 7.8870296,7.9514093 + 64: 8.329805,8.459222 + 65: 8.616306,8.042555 + 66: 8.329805,6.7925553 + 67: 8.512124,4.8394303 + 68: 8.616306,3.4462008 + 69: 8.915831,3.9930758 + 70: 8.564215,5.5165133 + 71: 8.5251465,6.1675553 + 72: 8.876762,6.987868 + 73: 9.098149,8.068597 + 74: 9.280468,7.860264 + 75: 9.033035,6.675368 + 76: 9.020013,4.787347 + 77: 9.137218,3.7196383 + 78: 9.6190605,2.8732843 + 79: 9.410696,4.2534924 + 80: 9.124195,5.3602633 + 81: 9.215355,6.440993 + 82: 9.579992,7.65193 + 83: 9.866495,8.407139 + 84: 9.775335,7.157139 + 85: 9.56697,5.568597 + 86: 9.579992,3.9409924 + 87: 9.879517,3.1857843 + 88: 10.061836,3.9149508 + 89: 9.905563,5.099847 + 90: 9.827427,6.1675553 + 91: 9.9837,6.896722 + 92: 10.361361,8.420159 + 93: 10.765066,8.081617 + 94: 10.556702,6.7795343 + 95: 10.517633,5.2951593 + 96: 10.439497,3.9800549 + 97: 10.947386,3.4331799 + 98: 11.416206,4.696201 + 99: 11.272955,6.3889093 + 100: 11.259933,8.302972 + 101: 11.272955,8.862867 + 102: 10.999477,7.1441174 + 103: 11.259933,6.4800553 + 104: 11.416206,4.878493 + 105: 11.533411,4.1753674 + 106: 11.455275,3.9930758 + 107: 11.33807,3.3550549 + 108: 11.051569,4.3446383 + 109: 10.921341,5.881097 + 110: 10.830181,7.0399513 + 111: 10.960409,8.680576 + 112: 7.991213,5.7769303 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 303: 16.061815,-10.317843 + 304: 15.991976,-10.152913 + 305: 14.547243,-10.135551 + 306: 15.318889,-9.927218 + 307: 15.110524,-9.597358 + 308: 14.685113,-8.998399 + 309: 14.867432,-8.434163 + 310: 14.763249,-7.7570796 + 311: 14.303111,-8.260551 + 312: 15.188661,-8.468885 + 313: 15.067115,-9.48451 + 314: 14.971614,-8.07826 + 315: 13.929791,-8.408121 + 316: 14.042655,-9.154649 + 317: 13.790881,-9.553954 + 318: 13.469652,-9.64076 + 319: 13.139742,-9.770968 + 320: 12.870604,-10.005343 + 321: 12.123964,-9.927218 + 322: 11.785372,-9.718885 + 323: 11.273142,-9.397704 + 324: 10.622002,-9.224093 + 325: 10.266046,-8.729301 + 326: 10.804321,-8.139024 + 327: 11.6464615,-9.01576 + 328: 12.445192,-9.085204 + 329: 13.009514,-8.876871 + 330: 13.59988,-8.416801 + 331: 14.198929,-7.8178434 + 332: 13.764835,-7.279649 + 333: 12.749058,-8.182426 + 334: 11.794053,-8.512288 + 335: 11.40337,-8.286593 + 336: 11.30994,-8.282391 + 337: 10.7369375,-7.666071 + 338: 10.493845,-7.015029 + 339: 10.085798,-6.5983624 + 340: 9.781933,-7.171279 + 341: 10.1899805,-7.718154 + 342: 10.068435,-8.030654 + 343: 10.927938,-8.542807 + 344: 12.073944,-8.560168 + 345: 12.455946,-7.96121 + 346: 12.863994,-7.405654 + 347: 13.35886,-6.9803066 + 348: 13.489087,-6.416071 + 349: 13.089723,-5.6521816 + 350: 11.848216,-5.5132933 + 351: 10.936621,-5.608779 + 352: 11.30994,-6.0428066 + 353: 12.56881,-5.9907236 + 354: 12.525401,-6.485515 + 355: 11.648533,-6.6678066 + 356: 11.388077,-6.9803066 + 357: 12.386492,-7.249404 + 358: 12.6990385,-7.101835 + 359: 11.856897,-7.6139874 + 360: 10.537254,-6.9021816 + 361: 11.11894,-7.9091263 + 362: 11.685983,-7.622668 + 363: 13.951105,-6.87614 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 5: 8,5 + 6: 11,6 + 7: 7,8 + 8: 10,4 + 11: 8.863739,7.7691174 + 12: 10.712976,6.909743 + 13: 7.353096,6.4149513 + 16: 9.137218,7.704014 + 17: 7.6265736,6.8576593 + 18: 8.44701,8.394117 + 19: 10.465542,7.8472424 + 20: 11.012501,5.724847 + 21: 10.035791,3.0555758 + 22: 7.7828474,3.7196383 + 23: 7.704711,5.099847 + 364: 16.026604,-10.049514 + 365: 15.375464,-9.84118 + 366: 14.967417,-9.1033325 + 367: 14.46173,-8.079027 + 368: 13.697726,-9.016527 + 369: 13.098679,-9.0512495 + 370: 12.0655365,-9.1814575 + 371: 12.5169935,-10.15368 + 372: 10.919531,-8.252638 + 373: 10.754576,-7.2543745 + 374: 10.980304,-8.90368 + 375: 11.718263,-8.391527 + 376: 11.9874,-8.356806 + 377: 13.471998,-7.6536803 + 378: 13.24627,-6.985277 + 379: 12.421494,-8.964444 + 380: 11.996082,-9.0512495 + 381: 11.787718,-7.9661803 + 382: 13.194179,-7.7551794 + 383: 13.211542,-8.325998 + 384: 13.897409,-8.421484 + 385: 14.340184,-9.072526 + 386: 10.641711,-7.753082 + 387: 15.002005,-8.013767 + 388: 14.993323,-9.020711 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 230: 37.031906,-5.0992827 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 229: 34.89617,-3.0550117 + 231: 37.240273,-4.1487617 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 232: 35.716606,-2.8987617 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 234: 34.29712,-4.8128242 + - node: + color: '#780000BF' + id: dot + decals: + 179: 34.66176,-5.2164702 + 180: 34.55758,-5.4117827 + 181: 35.22174,-5.463866 + 182: 34.51851,-4.8779287 + 183: 33.724117,-4.7477202 + 184: 34.388283,-5.2685537 + 185: 34.24503,-5.5029287 + 186: 34.29712,-5.9846992 + 218: 34.323166,-4.5784492 + 219: 33.97155,-4.8518867 + 220: 35.22174,-5.3336577 + 221: 35.5994,-4.5393867 + 222: 34.726875,-4.7477202 + 223: 35.69056,-5.7112617 + 224: 35.495216,-6.3492827 + 225: 34.179916,-6.2841787 + 226: 33.91946,-5.8024077 + 227: 34.166893,-6.2841787 + 228: 33.91946,-5.8024077 + 284: 12.549253,-7.7468314 + 285: 12.740255,-7.4343314 + 286: 12.957301,-7.1044703 + 287: 12.922574,-6.600998 + 288: 12.757619,-6.9742618 + 289: 11.906796,-7.2607203 + 290: 11.585567,-7.694748 + 291: 10.891019,-7.3388453 + 292: 10.882337,-6.991623 + 293: 10.66529,-6.4534287 + 294: 10.595836,-6.383984 + 295: 10.977837,-6.7312064 + 296: 11.472704,-7.3128037 + - node: + color: '#780000BF' + id: smallbrush + decals: + 172: 35.09151,-5.463866 + 173: 35.32592,-5.1774077 + 174: 35.026398,-4.9039702 + 175: 34.648735,-4.9169908 + 176: 34.466415,-5.1904287 + 177: 34.179916,-5.2945952 + 178: 34.90919,-5.6070952 + 199: 35.495216,-5.2815742 + 200: 35.97706,-5.2815742 + 201: 35.768696,-4.7737617 + 203: 34.935238,-4.3831367 + 204: 34.739895,-4.526366 + 205: 34.453392,-4.7737617 + 206: 35.104534,-4.7216787 + 207: 35.534286,-4.7216787 + 209: 35.36499,-4.9430327 + 210: 35.234764,-4.8258452 + 211: 35.664513,-4.8128242 + 212: 35.50824,-4.760741 + 213: 35.391037,-4.5524073 + 214: 35.1436,-4.6565742 + 216: 35.482193,-4.5393867 + 297: 12.627391,-7.7381506 + 298: 12.6794815,-7.321484 + 299: 12.879165,-7.0003037 + 300: 11.342476,-7.2694006 + 301: 10.856291,-6.5141926 + 302: 11.108065,-6.548915 + - node: + color: '#1C1A0635' + id: splatter + decals: + 389: 13.92877,-6.6298385 + 390: 14.16318,-6.7687273 + 391: 14.432318,-7.0204635 + 392: 14.145817,-6.6211576 + 393: 14.1024065,-6.4649076 + 394: 14.267363,-6.516991 + 395: 14.414954,-6.673241 + 396: 13.494677,-5.935394 + 397: 13.294994,-5.622894 + 398: 12.956402,-5.40588 + 399: 12.418126,-5.423241 + 400: 11.853806,-5.501366 + 401: 11.324211,-5.5968523 + 402: 10.846709,-5.6749773 + 403: 10.846709,-5.6749773 + 404: 10.620981,-5.7531023 + 405: 10.56889,-5.770463 + 406: 11.124529,-5.579491 + 407: 10.785936,-5.71838 + 408: 10.725163,-5.7531023 + 409: 11.115847,-5.5534496 + 410: 10.4039345,-5.8399076 + 411: 11.654122,-5.822547 + 412: 11.87985,-5.735741 + 413: 13.199493,-5.6749773 + 414: 13.485995,-5.7531023 + 415: 13.572814,-5.952755 + 416: 13.060584,-5.7878246 + 417: 11.020347,-5.6489353 + 418: 10.456026,-5.7878246 + 419: 9.978523,-5.8399076 + 420: 10.560207,-5.7270603 + 421: 10.647026,-5.6749773 + 422: 10.508117,-5.7270603 + 423: 10.846709,-5.6315746 + 424: 10.154548,-7.9393406 + 425: 10.328017,-8.243339 + 426: 10.310699,-8.304054 + 427: 10.232563,-8.165165 + 428: 10.189154,-7.4273176 + 429: 10.275972,-7.071415 + 430: 10.397517,-6.727619 + 431: 10.449609,-5.9318132 + 432: 10.258608,-6.7973714 + 433: 10.223881,-7.0838294 + 434: 10.380154,-7.839038 + 435: 10.336744,-7.9779267 + 436: 10.449609,-6.6498017 + 437: 10.5972,-5.7557044 + 438: 10.54511,-5.920635 + 439: 10.423563,-6.3025794 + 440: 10.571156,-5.7123017 + 441: 10.527746,-5.668899 + 442: 10.883702,-5.495288 + 443: 11.248341,-5.53001 + 444: 11.48275,-5.495288 + 445: 11.830025,-5.512649 + 446: 12.324891,-5.53001 + 447: 12.663484,-5.5386906 + 448: 13.132304,-5.6168156 + 449: 13.297259,-5.7383432 + 450: 13.470897,-5.920635 + 451: 13.48826,-5.964038 + 452: 13.132304,-5.7036214 + 453: 12.4985285,-5.6168156 + 454: 12.203345,-5.590774 + 455: 11.474069,-5.590774 + 456: 10.918429,-5.668899 + 457: 10.684019,-5.729663 + 458: 10.519064,-5.8772326 + 459: 11.751888,-10.064268 + 460: 11.66507,-10.185796 + 461: 11.691115,-10.263921 + 462: 11.882116,-10.342046 + 463: 12.1772995,-10.40281 + 464: 12.689529,-10.446213 + 465: 13.262532,-10.437532 + 466: 13.601125,-10.350726 + 467: 13.635852,-10.289963 + 468: 13.071531,-10.437532 + 469: 13.219123,-10.359407 + 470: 13.071531,-10.40281 + 471: 12.489846,-10.454893 + 472: 10.684019,-9.305139 + 473: 10.493018,-9.244374 + 474: 10.328063,-9.01868 + 475: 10.519064,-9.383264 + 476: 10.736111,-9.530832 + 477: 10.996567,-9.617639 + 478: 11.039976,-9.634999 + 479: 10.2151985,-9.166249 + 480: 10.189154,-8.766944 + 481: 10.371472,-9.17493 + 482: 10.397518,-8.905832 + 483: 10.371472,-8.810347 + 484: 14.438104,-9.76203 + 485: 14.464149,-9.987724 + 486: 14.507559,-10.256822 + 487: 14.6898775,-10.439114 + 488: 14.985062,-10.560641 + 489: 15.019789,-10.560641 + 490: 13.986648,-10.317586 + 491: 15.115289,-10.847099 + 492: 16.65224,-9.979044 + 493: 16.565422,-9.675224 + 494: 16.313648,-9.466891 + 495: 15.740646,-9.154391 + 496: 15.7146,-9.215155 + 497: 16.183422,-9.571057 + 498: 16.600151,-10.091891 + 499: 16.721695,-10.369669 + 500: 16.825878,-10.534599 + 501: 16.617514,-9.892239 + 502: 16.061874,-9.440849 + 503: 15.879555,-9.388766 + 504: 14.80148,-7.3493657 + 505: 14.827526,-7.3406854 + 506: 15.0793,-7.5142965 + 507: 15.278983,-7.7226295 + 508: 15.496029,-7.8788795 + 509: 15.617577,-8.069852 + 510: 15.660984,-8.2434635 + 511: 15.669666,-8.312907 + 512: 15.400529,-7.8615184 + 513: 15.148754,-7.4361715 + 514: 14.975118,-7.375407 + 515: 14.792798,-7.4708934 + 516: 14.6799345,-7.2799215 + 517: 14.56707,-7.010824 + 518: 22.584183,3.1355314 + 519: 22.883707,3.3438654 + 520: 23.03998,3.3959484 + 521: 23.03998,3.3959484 + 522: 22.883707,3.408969 + 523: 22.532091,3.252719 + 524: 22.493023,3.044386 + 525: 22.466978,2.9792817 + 526: 23.678097,4.242303 + 527: 23.821348,4.398553 + 528: 23.951576,4.4636564 + 529: 23.573915,4.3074064 + 530: 23.560892,4.2813654 + 531: 23.964598,4.476678 + 532: 23.990644,4.4896984 + 533: 23.430664,4.346469 + 534: 23.456709,4.2292814 + 535: 23.41764,4.1251154 + 536: 23.59996,4.3594904 + 537: 23.912508,4.632928 + 538: 23.92553,4.6459484 + 539: 25.207361,-0.59199 + 540: 25.493862,-0.29251087 + 541: 25.598045,0.28040588 + 542: 25.42875,0.5538434 + 543: 25.220385,-0.25344837 + 544: 24.673428,-0.513865 + 545: 25.402704,0.3845725 + 546: 25.376657,1.048635 + 547: 25.025042,0.41061413 + 548: 24.556221,-0.09719837 + 549: 25.01202,0.34551 + 550: 24.412971,-0.18834412 + 551: 23.696718,-0.34459418 + 552: 23.240921,-0.30553168 + 553: 22.433508,-0.1623025 + 554: 21.951664,-0.2404275 + 555: 21.574003,-0.21438587 + 556: 21.795391,-0.30553168 + 557: 22.094915,-0.29251087 + 558: 22.264212,-0.29251087 + 559: 22.498621,-0.29251087 + 560: 22.602804,-0.30553168 + 561: 22.863258,-0.30553168 + 562: 22.993486,-0.33157337 + 563: 23.253942,-0.33157337 + 564: 23.410217,-0.29251087 + 565: 23.38417,-0.058135867 + 566: 23.09767,0.21530163 + 567: 22.550713,0.47571838 + 568: 22.042824,1.0095725 + 569: 21.756323,0.892385 + 570: 21.83446,-0.1623025 + 571: 21.821436,-0.3966775 + 572: 21.899572,0.65801 + 573: 22.329325,1.296031 + 574: 22.433508,1.1528018 + 575: 22.381416,0.87936413 + 576: 22.44653,0.56686413 + 577: 22.91535,0.29342663 + 578: 22.381416,1.7908227 + 579: 22.433508,2.155406 + 580: 22.524666,2.780406 + 581: 22.746054,2.7283227 + 582: 22.902328,3.236135 + 583: 23.240921,3.4444685 + 584: 22.381416,2.4268804 + 585: 22.563736,2.4924538 + 586: 22.615826,2.9346929 + 587: 22.980465,3.5076094 + 588: 25.01202,4.3018804 + 589: 24.998997,4.4581304 + 590: 25.181316,4.353964 + 591: 25.402704,4.249797 + 592: 25.441772,4.041464 + 593: 25.454794,3.7940679 + 594: 25.441772,3.7029219 + 595: 25.142248,4.3669844 + 596: 25.363634,3.5727139 + 597: 25.311544,3.2341719 + 598: 25.311544,2.986776 + 599: 25.350613,2.5440679 + 600: 25.350613,2.1794844 + 601: 25.363634,2.0102136 + 602: 25.38968,1.4893801 + 603: 25.376657,1.1768801 + 604: 25.350613,1.1768801 + 605: 25.441772,1.8409426 + 606: 25.42875,2.6352136 + 607: 25.38968,3.2732344 + 608: 25.324566,3.8461514 + 609: 25.025042,4.4451094 + 610: 24.673428,4.5362554 + 611: 24.373903,4.4711514 + 612: 24.699472,4.4451094 + - node: + color: '#23100A4E' + id: splatter + decals: + 24: 7.5614605,3.7456799 + 25: 8.030281,5.021722 + 26: 7.2749586,6.9357843 + 27: 7.5354147,8.172764 + 28: 7.9130754,8.719639 + 29: 9.306515,8.27693 + 30: 10.673908,8.446201 + 31: 11.468298,7.6389093 + 32: 11.819914,6.6232843 + 33: 11.741776,3.9800549 + 34: 11.416206,3.2378674 + 35: 8.915831,3.3290133 + 36: 7.1837993,3.4592218 + 37: 11.259933,3.5113049 + 38: 11.572479,3.6805758 + 39: 11.116682,3.6154718 + 40: 7.5223923,3.5764093 + 41: 7.5875053,3.8498468 + 42: 7.457278,8.524326 + 43: 7.79587,8.537347 + 44: 8.160509,8.797764 + 45: 11.33807,8.563389 + 46: 11.66364,8.263909 + 47: 11.442251,8.407139 + 48: 11.142729,8.576409 + 49: 11.546434,8.003492 + 50: 11.272955,8.498284 + 51: 7.9521437,8.810784 + 52: 7.2749586,8.342034 + 53: 7.5875053,8.394117 + 54: 7.6656427,8.459222 + 55: 7.613551,3.8498468 + 56: 7.678665,3.2639093 + 57: 7.7177334,3.1337008 + - node: + color: '#298D0670' + id: splatter + decals: + 616: 22.596933,3.0767965 + 617: 22.94855,3.3762755 + 618: 22.753206,3.1549215 + 619: 22.649025,2.8945048 + - node: + color: '#780000BF' + id: splatter + decals: + 161: 34.713852,-5.1383452 + 162: 34.935238,-5.0471992 + 163: 35.18267,-4.838866 + 164: 35.28685,-5.0081367 + 165: 35.052444,-5.1643867 + 166: 34.77896,-5.229491 + 167: 34.531532,-5.463866 + 168: 34.844078,-5.2945952 + 169: 34.596645,-5.2815742 + 170: 34.596645,-5.1253242 + 171: 34.8571,-5.5029287 + 187: 35.677536,-4.9690742 + 188: 35.54731,-4.604491 + 189: 34.844078,-4.5784492 + 190: 35.99008,-5.229491 + 191: 35.5994,-5.2815742 + 192: 35.32592,-4.6435537 + 193: 35.052444,-4.8909492 + 194: 35.677536,-5.0081367 + 195: 35.026398,-4.4612617 + 196: 35.169647,-5.4378242 + 197: 35.41708,-5.385741 + 198: 35.521263,-5.2685537 + 240: 11.602932,-7.399609 + 241: 11.472704,-7.2173176 + 242: 11.620295,-6.8180118 + 243: 12.29748,-6.9742618 + 244: 11.872068,-7.2867618 + 245: 12.323525,-7.5037756 + 246: 12.323525,-7.2607203 + 247: 12.10648,-6.8787756 + 248: 11.602932,-7.1218314 + 249: 12.514526,-7.4516926 + 250: 12.540572,-7.5992618 + 251: 12.5839815,-7.633984 + 252: 12.427708,-6.8700953 + 253: 11.724478,-6.8440537 + 254: 12.002296,-7.5819006 + 255: 11.984933,-7.6600256 + 256: 11.846024,-7.6687064 + 257: 11.507431,-7.3735676 + 258: 11.290384,-6.93954 + 259: 11.524795,-6.6444006 + 260: 11.108065,-6.913498 + 261: 11.446657,-7.538498 + 262: 11.802614,-7.7294703 + 263: 12.5839815,-7.798915 + 264: 12.5753,-7.1131506 + 265: 12.193298,-6.540234 + 266: 11.724478,-6.3753037 + 267: 11.325111,-6.392665 + 268: 12.644754,-6.47079 + 269: 12.792346,-6.3492618 + 270: 12.861801,-6.3405814 + 271: 12.080433,-6.5315537 + 272: 11.403248,-6.236415 + 273: 11.116747,-6.0975256 + 274: 11.047292,-5.993359 + 275: 10.995201,-5.9499564 + 276: 12.306162,-6.366623 + 277: 12.601345,-6.3753037 + 278: 12.853119,-6.305859 + 279: 13.026756,-6.15829 + 280: 13.130939,-6.0194006 + 281: 12.853119,-5.8631506 + 282: 12.644754,-6.8787756 + 283: 12.757619,-6.7659287 + - node: + color: '#8A640670' + id: splatter + decals: + 613: 22.740183,3.167942 + 614: 23.026686,3.3632545 + 615: 22.753206,3.1549215 + - type: GridAtmosphere + version: 2 + data: + tiles: + 1,1: + 0: 16 + 2,1: + 0: 65523 + 1: 12 + 2,2: + 1: 1 + 0: 14 + 3,1: + 0: 2560 + 3,0: + 0: 136 + 4,0: + 0: 12561 + 4,1: + 0: 13090 + 2,-2: + 0: 2252 + 2,-3: + 0: 32768 + 3,-3: + 0: 64256 + 3,-2: + 0: 895 + 4,-3: + 0: 271 + 4,-2: + 0: 16064 + 4,-1: + 0: 4369 + 1,4: + 0: 8192 + 3,4: + 0: 32768 + 3,5: + 0: 8 + 3,6: + 0: 8 + 4,4: + 0: 16256 + 4,5: + 0: 4371 + 4,6: + 0: 3 + 4,3: + 0: 64 + 5,0: + 0: 35020 + 5,4: + 0: 124 + 6,0: + 0: 48059 + 6,1: + 0: 34819 + 6,3: + 0: 5956 + 6,4: + 0: 1 + 6,2: + 0: 17484 + 7,0: + 0: 4099 + 7,1: + 0: 273 + 7,-1: + 0: 8246 + 4,-5: + 0: 52360 + 4,-4: + 0: 8 + 5,-4: + 0: 241 + 5,-3: + 0: 35939 + 5,-2: + 0: 3344 + 5,-1: + 0: 16 + 5,-5: + 0: 6400 + 6,-4: + 0: 58128 + 6,-3: + 0: 7936 + 6,-2: + 0: 12544 + 6,-1: + 0: 227 + 7,-4: + 0: 31872 + 7,-3: + 0: 4352 + 7,-2: + 0: 50275 + 8,-4: + 0: 240 + 8,-2: + 0: 64512 + 4,-6: + 2: 3072 + 0: 32768 + 5,-6: + 2: 256 + 8,-3: + 0: 512 + 8,-1: + 0: 140 + 9,-4: + 0: 62224 + 9,-3: + 0: 239 + 9,-2: + 0: 12544 + 9,-1: + 0: 19 + 10,-4: + 0: 4096 + 10,-3: + 0: 31 + 11,-4: + 2: 12288 + 11,-3: + 2: 51 + 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: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 3 + components: + - type: MetaData + name: solution - drink + - type: Transform + parent: 2 + - type: Solution + solution: + maxVol: 30 + name: drink + reagents: [] + - type: ContainedSolution + containerName: drink + container: 2 + - uid: 5 + components: + - type: MetaData + name: solution - drink + - type: Transform + parent: 4 + - type: Solution + solution: + maxVol: 30 + name: drink + reagents: [] + - type: ContainedSolution + containerName: drink + container: 4 +- proto: ActionToggleLight + entities: + - uid: 7 + components: + - type: Transform + parent: 6 + - type: InstantAction + container: 6 +- proto: AirlockExternalGlass + entities: + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-11.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-11.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 1 +- proto: AltarFangs + entities: + - uid: 14 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 +- proto: AlwaysPoweredlightRed + entities: + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 19 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: Ash + entities: + - uid: 23 + components: + - type: Transform + pos: 24.369864,4.8876085 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 23.293312,3.9153862 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 23.432222,3.6723309 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 23.683996,3.898025 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 23.553768,3.9153862 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 28 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 25.5,6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 31.5,1.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 29.5,1.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 25.5,12.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 28.5,2.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 30.5,2.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 30.5,3.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 27.5,17.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 25.5,17.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 21.5,18.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 22.5,18.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 21.5,21.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 18.5,21.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 22.5,23.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 20.5,23.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 18.5,23.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 21.5,23.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 12.5,23.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 13.5,23.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 11.5,23.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 13.5,24.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 22.5,4.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 29.5,5.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 27.5,5.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 25.5,5.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 28.5,11.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 30.5,5.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 30.5,4.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 32.5,1.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 942 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 13.5,21.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 953 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 124 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 1 + - uid: 979 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: Barricade + entities: + - uid: 1097 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 1098 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 28.5,4.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 1106 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1107: + - DoorStatus: Open + missingComponents: + - Construction + - Destructible + - uid: 1107 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1355: + - DoorStatus: Trigger + missingComponents: + - Construction + - Destructible +- proto: Bloodpack + entities: + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-7.7195234 + parent: 1 + - uid: 1109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-7.5046797 + parent: 1 + - uid: 1110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.404015,-7.309367 + parent: 1 + - uid: 1111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364946,-7.0163984 + parent: 1 + - uid: 1112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364946,-6.8015547 + parent: 1 + - uid: 1113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364946,-6.664836 + parent: 1 + - uid: 1114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-6.4890547 + parent: 1 + - uid: 1115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-6.2546797 + parent: 1 + - uid: 1116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.7195234 + parent: 1 + - uid: 1117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.524211 + parent: 1 + - uid: 1118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.3484297 + parent: 1 + - uid: 1119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.074992 + parent: 1 + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.677494,-6.8601484 + parent: 1 + - uid: 1121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.677494,-6.684367 + parent: 1 + - uid: 1122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.697028,-6.508586 + parent: 1 + - uid: 1123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.697028,-6.3328047 + parent: 1 +- proto: Blunt + entities: + - uid: 1226 + components: + - type: Transform + pos: 11.643209,5.029546 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 1125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.406176,3.6896915 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 1126 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 16.5,23.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 +- proto: CableHV + entities: + - uid: 1151 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 +- proto: CableMV + entities: + - uid: 1159 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: CandleBlackInfinite + entities: + - uid: 1176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.243286,-5.3805327 + parent: 1 +- proto: CandleBlackSmallInfinite + entities: + - uid: 1177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.690657,0.6878135 + parent: 1 +- proto: Catwalk + entities: + - uid: 1178 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-21.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 1 +- proto: ChairRitual + entities: + - uid: 1193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.550691,-9.363773 + parent: 1 + - uid: 1194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5479355,-9.350752 + parent: 1 +- proto: CheapLighter + entities: + - uid: 1195 + components: + - type: Transform + rot: -1.361356816555577 rad + pos: 10.756527,7.886572 + parent: 1 + - uid: 1196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.673294,0.4360773 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 1197 + components: + - type: Transform + pos: 23.93577,3.6549697 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: 23.249903,3.585525 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: 23.371449,3.8372612 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: 23.588495,3.6549697 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 23.484314,3.6549697 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 23.762133,3.8893447 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 24.256998,4.7834415 + parent: 1 + - uid: 1204 + components: + - type: Transform + rot: 0.9773843811168246 rad + pos: 24.022589,4.7226777 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 24.204908,4.835525 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 23.551746,0.774619 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: 23.638565,0.852744 + parent: 1 +- proto: CigPackBlack + entities: + - uid: 1208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.376524,0.5749662 + parent: 1 +- proto: CigPackSyndicate + entities: + - uid: 1209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.352821,8.446467 + parent: 1 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 1210 + components: + - type: Transform + pos: 38.907234,-10.228951 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 39.098236,-10.385201 + parent: 1 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 6 + components: + - type: Transform + pos: 18.376835,-16.494482 + parent: 1 + - type: HandheldLight + toggleActionEntity: 7 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 7 + - type: ActionsContainer + - uid: 1212 + components: + - type: Transform + pos: 15.3549795,20.74043 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 15.554662,20.592861 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 18.337765,-16.260105 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 18.663336,-16.416357 + parent: 1 +- proto: ClothingHeadHatMagician + entities: + - uid: 1217 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False +- proto: ClothingHeadHelmetCult + entities: + - uid: 1222 + components: + - type: Transform + pos: 14.330386,-6.133405 + parent: 1 +- proto: ClothingMaskNinja + entities: + - uid: 1218 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False +- proto: ClothingNeckCloakVoid + entities: + - uid: 1219 + components: + - type: Transform + parent: 1216 + - type: TypingIndicatorClothing + gotEquippedTime: 6119.5938804 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatDetectiveDark + entities: + - uid: 1220 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatHoSTrench + entities: + - uid: 1279 + components: + - type: MetaData + desc: Кевлар и золото, всё что нужно уважаемому мафиози + name: плотный тренч + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatSpaceAsshole + entities: + - uid: 1223 + components: + - type: MetaData + desc: Круче уже не будет + name: куртка ягера + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.454544,-5.6778793 + parent: 1 + - type: Storage + storedItems: + 1224: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1224 +- proto: ClothingOuterCoatSyndieCapArmored + entities: + - uid: 1225 + components: + - type: Transform + pos: 9.527611,8.477136 + parent: 1 +- proto: ClothingOuterDiscoAssBlazer + entities: + - uid: 1278 + components: + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesCult + entities: + - uid: 1227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.603865,-6.4849677 + parent: 1 +- proto: ClothingOuterVestHazard + entities: + - uid: 1228 + components: + - type: Transform + pos: 15.372343,20.11543 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: 15.528616,19.9505 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: 38.11718,-10.350479 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 38.368958,-10.393882 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 18.376835,-16.872086 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 18.546131,-17.158545 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 18.415903,-17.40594 + parent: 1 +- proto: ClothingOuterWinterHoSUnarmored + entities: + - uid: 1277 + components: + - type: MetaData + desc: Ах этот дорокуший натуральный мех! + name: зимнее пальто + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband +- proto: ClothingShoesBootsWork + entities: + - uid: 1235 + components: + - type: Transform + pos: 25.782879,1.1849253 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 25.687378,1.4627032 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 40.717003,-12.703504 + parent: 1 +- proto: ClothingShoesCult + entities: + - uid: 1238 + components: + - type: Transform + pos: 14.48666,-6.7779365 + parent: 1 +- proto: ClothingShoesLeather + entities: + - uid: 1249 + components: + - type: Transform + pos: 15.375599,6.154773 + parent: 1 +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 1221 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False + - uid: 1281 + components: + - type: MetaData + desc: стильно, че... + name: тёмная водолазка + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband +- proto: ComfyChair + entities: + - uid: 1239 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 +- proto: CoordinatesDisk + entities: + - uid: 1242 + components: + - type: Transform + parent: 1241 + - type: Physics + canCollide: False +- proto: CrateWeaponSecure + entities: + - uid: 1243 + components: + - type: Transform + anchored: True + pos: 10.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1244 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: DeleteOnTrigger + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger +- proto: Crowbar + entities: + - uid: 1245 + components: + - type: Transform + pos: 40.48259,-10.472601 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: 40.578087,-10.238226 + parent: 1 +- proto: DiskCase + entities: + - uid: 1241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.630583,1.3765178 + parent: 1 + - type: Storage + storedItems: + 1242: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1242 +- proto: DrinkBeerCan + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.652588,3.4241633 + parent: 1 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Tag + tags: + - Beer + - Trash + - type: Openable + opened: True + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.67950535 + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 3 + - uid: 4 + components: + - type: Transform + pos: 23.179445,3.384932 + parent: 1 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Tag + tags: + - Beer + - Trash + - type: Openable + opened: True + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.50197107 + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 5 + - uid: 1247 + components: + - type: Transform + pos: 10.433331,8.868659 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 10.810991,8.5952215 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 10.765718,4.74102 + parent: 1 + - uid: 1318 + components: + - type: Transform + parent: 1316 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkIcedTeaGlass + entities: + - uid: 1251 + components: + - type: Transform + pos: 23.293312,0.62057626 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 1252 + components: + - type: Transform + pos: 40.031136,-10.281629 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 39.83145,-10.420518 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 39.718582,-10.220865 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 39.56231,-10.351073 + parent: 1 +- proto: DrinkWaterJug + entities: + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.654926,-5.390104 + parent: 1 +- proto: EmergencyMedipen + entities: + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.585604,4.7655106 + parent: 1 +- proto: FoodMeatLizardCutletCooked + entities: + - uid: 1258 + components: + - type: Transform + pos: 36.452084,-5.8193417 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: 36.816723,-5.871425 + parent: 1 +- proto: FoodPlateSmallTrash + entities: + - uid: 1260 + components: + - type: Transform + pos: 23.414858,3.7244139 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 1261 + components: + - type: Transform + pos: 36.734325,-5.730011 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: 36.51294,-5.71699 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 36.356667,-5.730011 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 36.538986,-5.782094 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: 36.81246,-5.7690735 + parent: 1 +- proto: FoodSpaceshroom + entities: + - uid: 1266 + components: + - type: Transform + pos: 35.419025,-2.3706357 + parent: 1 + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.72406,-4.6623025 + parent: 1 +- proto: Gauze1 + entities: + - uid: 1268 + components: + - type: Transform + pos: 15.372343,19.585917 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: 10.322945,4.6238327 + parent: 1 +- proto: GeneratorWallmountBasic + entities: + - uid: 1270 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 +- proto: GunSafe + entities: + - uid: 1275 + components: + - type: Transform + anchored: True + pos: 11.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1281 + - 1280 + - 1279 + - 1278 + - 1277 + - 1276 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: DeleteOnTrigger + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger +- proto: HighSecDoor + entities: + - uid: 1283 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + missingComponents: + - Destructible +- proto: HospitalCurtains + entities: + - uid: 1284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 1 +- proto: InflatableWall + entities: + - uid: 1285 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 +- proto: Lantern + entities: + - uid: 1291 + components: + - type: Transform + pos: 22.276638,0.7449975 + parent: 1 +- proto: LedLightBulb + entities: + - uid: 1293 + components: + - type: Transform + parent: 1292 + - type: Physics + canCollide: False + - uid: 1295 + components: + - type: Transform + parent: 1294 + - type: Physics + canCollide: False + - uid: 1297 + components: + - type: Transform + parent: 1296 + - type: Physics + canCollide: False + - uid: 1299 + components: + - type: Transform + parent: 1298 + - type: Physics + canCollide: False +- proto: LightBulb + entities: + - uid: 1301 + components: + - type: Transform + parent: 1300 + - type: Physics + canCollide: False + - uid: 1303 + components: + - type: Transform + parent: 1302 + - type: Physics + canCollide: False + - uid: 1305 + components: + - type: Transform + parent: 1304 + - type: Physics + canCollide: False + - uid: 1307 + components: + - type: Transform + parent: 1306 + - type: Physics + canCollide: False + - uid: 1309 + components: + - type: Transform + parent: 1308 + - type: Physics + canCollide: False + - uid: 1311 + components: + - type: Transform + parent: 1310 + - type: Physics + canCollide: False + - uid: 1313 + components: + - type: Transform + parent: 1312 + - type: Physics + canCollide: False + - uid: 1315 + components: + - type: Transform + parent: 1314 + - type: Physics + canCollide: False +- proto: LockerFreezerBase + entities: + - uid: 1316 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1317 + - 1318 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MagazineBoxLightRifleBig + entities: + - uid: 1319 + components: + - type: Transform + pos: 8.420673,4.727135 + parent: 1 +- proto: Mannequin + entities: + - uid: 1216 + components: + - type: Transform + rot: 14.137166941154069 rad + pos: 8.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1221 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1220 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1219 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1218 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1217 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null +- proto: Mattress + entities: + - uid: 1321 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1 +- proto: Medkit + entities: + - uid: 1325 + components: + - type: Transform + pos: 37.5355,-10.445965 + parent: 1 +- proto: PaintingOldGuitarist + entities: + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 +- proto: Paper + entities: + - uid: 1224 + components: + - type: Transform + parent: 1223 + - type: Paper + content: > + "Границы ключ переломлен пополам + + А наш батюшка Ленин совсем усоп + + Он разложился на плесень и на липовый мёд + + А перестройка всё идёт и идёт по плану + + И вся грязь превратилась в голый лёд" + - type: Physics + canCollide: False + - uid: 1327 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: 10.303888,7.7325897 + parent: 1 + - type: Paper + content: > + Чувааак мы устроим такое шоу... + + Мы выбегаем из шахты, а позади нас такой огромный [bold]КАБУУУУУМ[/bold] + - uid: 1328 + components: + - type: Transform + pos: 16.487148,7.6155634 + parent: 1 + - type: Paper + content: >+ + Открытие двери запускает систему самоуничтожения. + + + + + + [bold]Астероид будет взорван через 45 секунд после открытия гермозатвора + + [/bold] + + + + + - uid: 1329 + components: + - type: Transform + pos: 22.746294,0.72763646 + parent: 1 + - type: Paper + content: > + Уже как третий день сдесь копаемся.... Надоело всё... Кучи ксеноморфов лезут черт пойми откуда, а мы так ничего и не нашли! + + + + День четвертый... Сегодня дали пиказ о эвакуации... Ну и слава богу, я уже задолбался отбивать толпы тварей! +- proto: Pen + entities: + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.827324,0.65819204 + parent: 1 +- proto: PosterContrabandCommunistState + entities: + - uid: 1330 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 1331 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 1334 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: 17.5,20.5 + parent: 1 +- proto: PoweredStrobeLightEpsilon + entities: + - uid: 1292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1293 + - type: PoweredLight + on: True + - type: ApcPowerReceiver + powerLoad: 6 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DamageOnInteract + isDamageActive: False + - uid: 1294 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1295 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1296 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1297 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1298 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1299 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1301 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1303 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1304 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1305 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1307 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1308 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1309 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1310 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1311 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1313 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1315 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: Railing + entities: + - uid: 1337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-10.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-10.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 1341 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 +- proto: RandomSmokables + entities: + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.89998,-5.248192 + parent: 1 +- proto: RitualDagger + entities: + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.840244,-7.334072 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 1347 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 1349 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 1350 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 +- proto: ScrapCamera + entities: + - uid: 1351 + components: + - type: Transform + pos: 8.250149,8.776312 + parent: 1 + missingComponents: + - Item + - Pullable +- proto: ScrapFaxMachine + entities: + - uid: 1352 + components: + - type: Transform + pos: 23.446198,2.7167768 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 1353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.33263,-3.3177495 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 1354 + components: + - type: Transform + pos: 8.434654,7.565374 + parent: 1 +- proto: ScreenTimer + entities: + - uid: 1355 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - type: SignalTimer + maxLength: 1000 + canEditLabel: False + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1395: + - Timer: Trigger + 1394: + - Timer: Trigger + 1396: + - Timer: Trigger + 1397: + - Timer: Trigger + 1357: + - Start: Trigger + 1393: + - Timer: Trigger + 1308: + - Start: On + - Timer: Off + 1300: + - Start: On + - Timer: Off + 1106: + - Timer: Close + 1275: + - Timer: Trigger + 1304: + - Start: On + - Timer: Off + 1292: + - Start: On + - Timer: Off + 1306: + - Start: On + - Timer: Off + 1398: + - Timer: Trigger + 1243: + - Timer: Trigger + 1392: + - Timer: Trigger + - type: DeviceLinkSink + invokeLimit: 100 + invokeCounter: 101 + missingComponents: + - Construction + - uid: 1356 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1314: + - Timer: Off + - Start: On + 12: + - Start: Toggle + - Start: AutoClose + 9: + - Start: Toggle + - Start: AutoClose + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1357 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1366: + - Start: Trigger + 1367: + - Start: Trigger + 1358: + - Start: Trigger + 1298: + - Start: On + - Timer: Off + 1312: + - Start: On + - Timer: Off + 1296: + - Start: On + - Timer: Off + 1294: + - Start: On + - Timer: Off + - type: DeviceLinkSink + invokeCounter: 1 + missingComponents: + - Construction + - uid: 1358 + components: + - type: Transform + pos: 17.5,21.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1359 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 1 + - type: SignalTimer + maxLength: 1000 + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1302: + - Start: On + - Timer: Off + 11: + - Timer: DoorBolt + 10: + - Timer: DoorBolt + - type: DeviceLinkSink + invokeCounter: 1 +- proto: ShellShotgun + entities: + - uid: 1360 + components: + - type: Transform + pos: 34.291206,-5.7299623 + parent: 1 + - uid: 1361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.291206,-5.860171 + parent: 1 + - uid: 1362 + components: + - type: Transform + rot: 2.3387411976724017 rad + pos: 34.291206,-5.716942 + parent: 1 + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.020485,-3.624269 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: 36.02324,-3.0904148 + parent: 1 +- proto: SignalButton + entities: + - uid: 1365 + components: + - type: MetaData + name: кнопка открытия двери + - type: Transform + pos: 13.5,7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1107: + - Pressed: Open + 1106: + - Pressed: Open +- proto: SignalTimer + entities: + - uid: 1366 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1356: + - Start: Trigger + - type: DeviceLinkSink + invokeCounter: 1 + - type: ActiveSignalTimer + missingComponents: + - Construction + - uid: 1367 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1359: + - Start: Trigger + - type: DeviceLinkSink + invokeCounter: 1 + - type: ActiveSignalTimer + missingComponents: + - Construction +- proto: SpaceCash1000 + entities: + - uid: 1276 + components: + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash30000 + entities: + - uid: 1368 + components: + - type: Transform + pos: 8.5116825,5.5825458 + parent: 1 +- proto: SpawnMobBearSalvage + entities: + - uid: 1369 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 1372 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 29.5,0.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: 28.5,5.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 +- proto: SpawnMobCarpMagic + entities: + - uid: 1382 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 1384 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 +- proto: StrangePill + entities: + - uid: 1385 + components: + - type: Transform + rot: 601.1437542644069 rad + pos: 8.6690645,7.7476654 + parent: 1 + - uid: 1386 + components: + - type: Transform + rot: 0.15707963267948966 rad + pos: 8.642541,7.3700614 + parent: 1 + - uid: 1387 + components: + - type: Transform + rot: 565.8531967890816 rad + pos: 8.341309,7.916936 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 1388 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 +- proto: SyndicateBomb + entities: + - uid: 1392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1393 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1394 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1395 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1396 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1397 + components: + - type: Transform + rot: 1.735276332348601E-11 rad + pos: 18.500092,13.499857 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - type: Stealth + - type: StealthOnMove + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Defusable + - Pullable +- proto: TableReinforced + entities: + - uid: 1399 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 +- proto: TableStone + entities: + - uid: 1404 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 +- proto: TableWood + entities: + - uid: 1406 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-10.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 1 +- proto: TreasureCDDrive + entities: + - uid: 1418 + components: + - type: Transform + pos: 22.60745,1.781363 + parent: 1 +- proto: TreasureFlopDiskDrive + entities: + - uid: 1419 + components: + - type: Transform + pos: 22.312267,1.859488 + parent: 1 +- proto: TreasureHardDiskDrive + entities: + - uid: 1420 + components: + - type: MetaData + desc: Возможно на нём есть секретные данные, вопрос только в том, как их прочитать... + - type: Transform + pos: 11.488035,8.375873 + parent: 1 + - uid: 1421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.260176,1.4775436 + parent: 1 +- proto: UniformShortsRed + entities: + - uid: 1280 + components: + - type: MetaData + desc: Да, трусы, мы в 31 первом веке живем между прочим. + name: трусы + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - SuitSensor +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 1425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 1527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-13.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-9.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-10.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-19.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-13.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-9.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-9.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-13.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-18.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 1 +- proto: WeaponLaserGun + entities: + - uid: 1553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.260035,4.570198 + parent: 1 +- proto: WeaponPistolViper + entities: + - uid: 1317 + components: + - type: Transform + parent: 1316 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunBulldog + entities: + - uid: 1244 + components: + - type: Transform + parent: 1243 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 1556 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: 35.41117,-3.8679833 + parent: 1 +- proto: WeaponTurretXeno + entities: + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 +- proto: WoodenSupport + entities: + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-3.5 + parent: 1 +- proto: WoodenSupportBeam + entities: + - uid: 1559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 1 +- proto: XenoWardingTower + entities: + - uid: 1560 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_ore.yml b/Resources/Maps/Ruins/corvax_ore.yml new file mode 100644 index 00000000000..38d4f034170 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_ore.yml @@ -0,0 +1,8591 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 158: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: 2.6001568,0.089054585 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: ngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: ngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: ngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: BwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: BwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: ngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: WallRock + entities: + - uid: 4 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 23.5,1.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 953 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: -3.5,21.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: -8.5,23.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: -8.5,24.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: -4.5,23.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: -5.5,23.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + pos: -3.5,23.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: -9.5,21.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: -9.5,20.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: -11.5,22.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: -11.5,17.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: -12.5,22.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: -12.5,21.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: -13.5,22.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: -13.5,21.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: -13.5,20.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: -13.5,19.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: -13.5,16.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: -14.5,21.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: -14.5,20.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: -14.5,15.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: -14.5,19.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 1304 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: -26.5,18.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: -25.5,19.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + pos: -28.5,15.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + pos: -28.5,14.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -29.5,15.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -29.5,14.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: -21.5,15.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: -21.5,14.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: -21.5,12.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: -21.5,11.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: -20.5,14.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: -19.5,15.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: -18.5,14.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: -17.5,13.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: -17.5,12.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: -18.5,16.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: -18.5,17.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: -17.5,17.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: -23.5,10.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: -24.5,10.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: -21.5,10.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: -20.5,10.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: -16.5,9.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: -28.5,17.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: -9.5,23.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 +- proto: WallRockArtifactFragment + entities: + - uid: 74 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 +- proto: WallRockCoal + entities: + - uid: 30 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 942 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: -9.5,17.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: -8.5,17.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: -23.5,14.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: -23.5,12.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: -22.5,15.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: -22.5,14.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: -22.5,12.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: -19.5,10.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: -19.5,9.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: -18.5,9.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: -17.5,9.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: -17.5,10.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 +- proto: WallRockGold + entities: + - uid: 64 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: -8.5,26.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: -20.5,15.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: -20.5,16.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 1 +- proto: WallRockPlasma + entities: + - uid: 546 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 979 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: WallRockQuartz + entities: + - uid: 35 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: -11.5,18.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + pos: -18.5,12.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: -24.5,12.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 +- proto: WallRockSilver + entities: + - uid: 44 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 +- proto: WallRockTin + entities: + - uid: 2 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: -7.5,21.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: -6.5,23.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: -5.5,22.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: -4.5,22.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: -11.5,12.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: -12.5,20.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: -12.5,12.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: -14.5,13.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: -14.5,12.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: -27.5,17.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: -27.5,18.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: -27.5,16.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: -27.5,15.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: -27.5,14.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + pos: -26.5,17.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: -26.5,16.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -26.5,15.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: -26.5,14.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -26.5,13.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: -25.5,18.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: -25.5,17.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: -25.5,16.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: -25.5,14.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: -25.5,13.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: -24.5,19.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: -25.5,15.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: -24.5,18.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: -24.5,17.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + pos: -24.5,16.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + pos: -24.5,15.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + pos: -24.5,14.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: -26.5,12.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: -17.5,15.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: -17.5,14.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: -16.5,15.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: -16.5,12.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: -15.5,15.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: -15.5,13.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: -23.5,16.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: -23.5,17.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: -21.5,9.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: -16.5,10.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: -14.5,11.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: -28.5,16.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: -28.5,18.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 +- proto: WallRockUranium + entities: + - uid: 3 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: -10.5,22.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: -10.5,20.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_research_station.yml b/Resources/Maps/Ruins/corvax_research_station.yml new file mode 100644 index 00000000000..a296017ce13 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_research_station.yml @@ -0,0 +1,9885 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 14: FloorBrokenWood + 19: FloorDark + 4: FloorDarkMono + 5: FloorFlesh + 11: FloorFreezer + 13: FloorKitchen + 18: FloorMetalFoam + 12: FloorMiningDark + 9: FloorReinforcedHardened + 22: FloorShuttleWhite + 8: FloorSteel + 2: FloorSteelBurnt + 3: FloorSteelDamaged + 7: FloorSteelDirty + 6: FloorTechMaint + 10: FloorTechMaint2 + 20: FloorTechMaint3 + 21: FloorWhiteMono + 1: Lattice + 157: Plating + 159: PlatingBrass + 15: PlatingBurnt + 16: PlatingDamaged + 17: TrainLattice +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -0.6875,-0.546875 + parent: invalid + - type: MapGrid + chunks: + 0,-1: + ind: 0,-1 + tiles: DgAAAAAADgAAAAAADgAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAADwAAAAAAEAAAAAAADgAAAAAADwAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABQAAAAAAAQAAAAAADgAAAAAADwAAAAAADgAAAAAAnQAAAAAADwAAAAAAAgAAAAAADwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAABAAAAAAAAQAAAAAADwAAAAAADgAAAAAADwAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAADgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADwAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAnQAAAAAADwAAAAAADwAAAAAADwAAAAAAEAAAAAAAAQAAAAAAnQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAAwAAAAAADwAAAAAADwAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAADwAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AQAAAAAADwAAAAAAEAAAAAAAAgAAAAAAnQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAnQAAAAAAnQAAAAAAFAAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAEAAAAAAADwAAAAAAAQAAAAAAEAAAAAAAAwAAAAAAAgAAAAAAnQAAAAAABwAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAEAAAAAAADwAAAAAACAAAAAAAAgAAAAAACAAAAAAAnQAAAAAABwAAAAAACAAAAAAAAgAAAAAAnQAAAAAAFAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEAAAAAAAAwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAnQAAAAAADwAAAAAAnQAAAAAAAwAAAAAAAgAAAAAADwAAAAAAAwAAAAAAAgAAAAAADwAAAAAADwAAAAAAnQAAAAAABwAAAAAAnQAAAAAADwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAAwAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAABwAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAAnQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEAAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABAAAAAAABAAAAAAADwAAAAAADwAAAAAAEwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: nQAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAACwAAAAAAnQAAAAAACQAAAAAACQAAAAAABQAAAAAABQAAAAAACQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAACwAAAAAACQAAAAAACQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAACwAAAAAAnQAAAAAACQAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAACQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACgAAAAAADwAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACgAAAAAACgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACgAAAAAAnQAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABgAAAAAAnQAAAAAABgAAAAAAnQAAAAAADwAAAAAAAQAAAAAAnQAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAAnQAAAAAABgAAAAAAnQAAAAAAnQAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAnQAAAAAABgAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAnQAAAAAABgAAAAAADwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: BAAAAAAAnQAAAAAAFQAAAAAAFgAAAAAADwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAADwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAnQAAAAAAFQAAAAAADwAAAAAADwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAFQAAAAAADwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAnQAAAAAADwAAAAAAAwAAAAAAAwAAAAAAnQAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAnQAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAnQAAAAAABwAAAAAADwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAADAAAAAAADAAAAAAAnQAAAAAABAAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABAAAAAAADAAAAAAADAAAAAAABAAAAAAABAAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAAnQAAAAAADAAAAAAADAAAAAAAnQAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAADQAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAADQAAAAAABAAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAAnQAAAAAADQAAAAAABAAAAAAABAAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAADQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAAnQAAAAAAnQAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAEQAAAAAAEQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAnQAAAAAAAwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: CwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAnQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: nQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAADwAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAEAAAAAAAnQAAAAAAFQAAAAAAFQAAAAAADwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 33: 21,-32 + 34: 21,-32 + 35: 22,-31 + 36: 23,-30 + 37: 23,-30 + 38: 23,-31 + 39: 23,-32 + 40: 20,-31 + 41: 15,-30 + 42: 15,-30 + 43: 15,-29 + 54: 13,-31 + 100: 34,-15 + 101: 33,-16 + 102: 32,-16 + 103: 32,-15 + 104: 31,-15 + 105: 31,-14 + 167: 28,-7 + 168: 31,-6 + 169: 30,-4 + 233: 2,-19 + 234: 1,-18 + 235: -1,-19 + 236: 0,-20 + 239: 1,-15 + 240: 3,-16 + 241: 3,-13 + 242: 3,-11 + 252: 2,-15 + 253: 2,-16 + 254: 1,-16 + 255: 0,-16 + 256: 3,-14 + 257: 2,-13 + 258: 1,-14 + 259: 3,-12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 55: 10,-32 + 56: 10,-32 + 57: 9,-30 + 58: 9,-30 + 59: 9,-32 + 60: 11,-29 + 61: 11,-29 + 62: 9,-31 + 63: 9,-31 + 64: 1,-30 + 65: 1,-30 + 66: 6,-25 + 67: 7,-27 + 68: 7,-27 + 69: 7,-21 + 70: 7,-21 + 71: 6,-18 + 72: 6,-18 + 73: 6,-17 + 74: 6,-15 + 75: 6,-15 + 76: 7,-12 + 77: 7,-12 + 78: 6,-12 + 79: 6,-12 + 80: 5,-11 + 81: 33,-15 + 82: 32,-15 + 83: 32,-15 + 84: 31,-14 + 85: 31,-15 + 86: 31,-16 + 87: 31,-16 + 88: 32,-16 + 89: 33,-16 + 90: 33,-14 + 91: 34,-14 + 92: 32,-14 + 93: 33,-15 + 94: 33,-15 + 95: 31,-14 + 96: 31,-14 + 97: 33,-14 + 98: 32,-14 + 99: 34,-14 + 106: 33,-18 + 107: 33,-17 + 108: 32,-18 + 109: 32,-18 + 110: 32,-19 + 111: 32,-19 + 112: 32,-20 + 113: 33,-19 + 114: 33,-19 + 115: 33,-19 + 116: 33,-20 + 117: 33,-21 + 118: 33,-21 + 119: 32,-21 + 120: 31,-21 + 121: 31,-19 + 122: 31,-18 + 123: 30,-24 + 124: 30,-24 + 125: 29,-29 + 126: 29,-29 + 127: 34,-12 + 128: 33,-12 + 129: 32,-12 + 130: 31,-12 + 131: 31,-11 + 132: 30,-11 + 133: 29,-12 + 134: 29,-11 + 135: 28,-11 + 136: 26,-9 + 137: 26,-8 + 138: 25,-7 + 139: 24,-7 + 140: 26,-7 + 141: 26,-10 + 142: 26,-11 + 143: 27,-11 + 144: 25,-11 + 145: 25,-10 + 146: 22,-7 + 147: 21,-7 + 148: 20,-7 + 149: 19,-7 + 150: 18,-7 + 151: 17,-8 + 152: 16,-8 + 153: 15,-8 + 154: 28,-8 + 155: 28,-7 + 156: 29,-7 + 157: 32,-6 + 158: 31,-5 + 159: 31,-6 + 160: 30,-5 + 161: 29,-5 + 162: 30,-4 + 163: 31,-7 + 164: 30,-6 + 165: 30,-7 + 166: 29,-8 + 197: 29,-26 + 198: 29,-26 + 199: 29,-26 + 200: 33,-29 + 201: 33,-29 + 202: 32,-30 + 203: 32,-30 + 204: 33,-30 + 205: 33,-30 + 206: 30,-30 + 207: 30,-30 + 208: 30,-29 + 209: 29,-30 + 210: 27,-30 + 211: 27,-30 + 212: 26,-30 + 213: 26,-29 + 214: 26,-29 + 215: 27,-29 + 216: 27,-24 + 217: 27,-24 + 218: 27,-23 + 219: 26,-23 + 220: 26,-24 + 221: 30,-27 + 222: 30,-27 + 223: 3,-19 + 224: 3,-19 + 225: 2,-18 + 226: 2,-18 + 227: 1,-19 + 228: 1,-19 + 229: 0,-20 + 230: 0,-20 + 231: 1,-20 + 232: 3,-20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1: 23,-33 + 2: 24,-33 + 3: 21,-33 + 4: 21,-33 + 5: 19,-33 + 6: 18,-33 + 7: 18,-32 + 8: 18,-30 + 9: 18,-29 + 10: 18,-29 + 11: 21,-29 + 12: 21,-29 + 13: 20,-29 + 14: 20,-29 + 15: 22,-29 + 16: 23,-29 + 17: 24,-29 + 18: 18,-30 + 19: 18,-31 + 20: 18,-32 + 21: 18,-33 + 22: 19,-33 + 23: 23,-33 + 24: 22,-33 + 25: 21,-33 + 26: 24,-33 + 27: 24,-32 + 44: 14,-29 + 45: 14,-29 + 46: 14,-31 + 47: 14,-31 + 48: 13,-31 + 49: 13,-31 + 50: 15,-30 + 51: 15,-29 + 52: 16,-32 + 53: 16,-32 + 170: 35,-9 + 171: 34,-9 + 172: 34,-8 + 173: 34,-7 + 174: 34,-7 + 175: 34,-7 + 176: 34,-7 + 177: 34,-6 + 178: 35,-7 + 179: 35,-7 + 180: 34,-6 + 181: 34,-6 + 182: 35,-9 + 183: 36,-9 + 184: 34,-11 + 185: 35,-12 + 186: 36,-12 + 187: 26,-3 + 188: 26,-3 + 189: 26,-4 + 190: 26,-4 + 191: 26,-4 + 192: 26,-3 + 193: 26,-3 + 194: 33,-24 + 195: 33,-24 + 196: 33,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 28: 22,-32 + 29: 21,-30 + 30: 21,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 31: 19,-31 + 32: 19,-31 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,-4: + 0: 61183 + 1: 4352 + 0,-5: + 0: 8191 + -1,-4: + 1: 2176 + 0,-3: + 1: 1123 + 0: 140 + 1,-4: + 0: 61422 + 1,-3: + 0: 61166 + 1: 4352 + 1,-2: + 1: 8209 + 0: 52974 + 1,-1: + 1: 61178 + 0: 4 + 1,-5: + 0: 61182 + 1,0: + 1: 43690 + 2,-2: + 0: 51 + 1: 1484 + 2,-4: + 2: 61166 + 2,-3: + 0: 60928 + 2: 12 + 2,-5: + 2: 61164 + 3,-4: + 2: 6591 + 3,-3: + 0: 36328 + 1: 29184 + 3,-2: + 1: 38499 + 0: 26764 + 3,-5: + 2: 47576 + 3,-1: + 1: 1123 + 0: 4 + 4,-3: + 0: 3840 + 2: 14 + 4,-2: + 0: 49407 + 1: 4096 + 0,-8: + 1: 17 + 0: 32750 + 0,-9: + 1: 15360 + 0: 49152 + 0,-7: + 1: 243 + 0: 16128 + 2: 4 + -1,-7: + 1: 8189 + 0: 32768 + -1,-6: + 0: 33992 + 1: 16932 + 0,-6: + 0: 4160 + -1,-5: + 0: 2248 + 1: 33828 + 1,-7: + 0: 28671 + 1: 32768 + 1,-9: + 0: 47360 + 1: 1770 + 1,-8: + 0: 3822 + 1,-6: + 0: 58914 + 1: 2124 + 2,-7: + 0: 36853 + 2,-9: + 0: 4112 + 1: 25824 + 2,-8: + 0: 52462 + 2: 512 + 2,-6: + 0: 3822 + 3,-8: + 1: 1 + 0: 61166 + 3,-7: + 0: 4088 + 3,-6: + 0: 9011 + 2: 2184 + 3,-9: + 0: 8192 + 1: 49408 + 4,-8: + 0: 56797 + 4,-7: + 0: 4088 + 4,-6: + 2: 4095 + 4,-5: + 2: 4095 + -2,-7: + 1: 3296 + 4,-4: + 2: 61166 + 4,-1: + 1: 548 + 0: 8 + 5,-4: + 2: 13107 + 0: 34952 + 5,-3: + 2: 3 + 0: 3976 + 5,-2: + 0: 29183 + 5,-1: + 0: 1229 + 1: 24576 + 5,0: + 1: 12 + 6,-2: + 0: 22391 + 6,-1: + 0: 1109 + 1: 16384 + 6,-4: + 2: 3310 + 6,-3: + 0: 26350 + 6,-5: + 2: 61182 + 6,0: + 1: 15 + 7,-4: + 2: 307 + 0: 2184 + 7,-3: + 0: 29951 + 1: 32768 + 7,-2: + 0: 65527 + 1: 8 + 7,-1: + 0: 15 + 1: 57344 + 7,-5: + 2: 13107 + 0: 2184 + 7,0: + 1: 3 + 8,-4: + 0: 2035 + 1: 4 + 8,-3: + 0: 49279 + 2: 768 + 1: 12416 + 8,-2: + 1: 34841 + 0: 21956 + 8,-1: + 0: 1 + 1: 62156 + 4,-9: + 0: 53248 + 1: 318 + 5,-8: + 0: 65535 + 5,-7: + 0: 4080 + 5,-6: + 2: 1782 + 5,-5: + 2: 4095 + 5,-9: + 0: 61440 + 1: 47 + 6,-8: + 0: 56605 + 6,-7: + 0: 36852 + 6,-6: + 2: 49425 + 0: 204 + 6,-9: + 0: 53760 + 1: 3171 + 7,-8: + 1: 5 + 0: 26170 + 7,-7: + 0: 20466 + 7,-6: + 2: 4096 + 0: 32870 + 7,-9: + 0: 62976 + 1: 2400 + 8,-8: + 0: 13062 + 1: 34952 + 8,-7: + 0: 9075 + 1: 52360 + 8,-6: + 0: 12407 + 1: 50312 + 8,-5: + 0: 9011 + 1: 50368 + 1,-10: + 1: 44960 + 2,-10: + 1: 4096 + 9,-4: + 1: 12304 + 0: 256 + 9,-3: + 0: 4097 + 1: 530 + 9,-1: + 1: 4112 + 8,-9: + 0: 4096 + 1: 59136 + 9,-8: + 1: 12560 + 9,-7: + 1: 4097 + 2,0: + 1: 1 + 6,-10: + 1: 4096 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyHighSec + entities: + - uid: 635 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 +- proto: AirlockAssemblyMining + entities: + - uid: 421 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 816 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 +- proto: AirlockHatch + entities: + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1 + - type: Door + secondsUntilStateChange: -22297.078 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 430 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1 + - type: Door + secondsUntilStateChange: -22281.445 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True +- proto: AirlockHatchMaintenance + entities: + - uid: 155 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 1 + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 1 +- proto: AirlockMiningGlass + entities: + - uid: 422 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - type: AccessReader + containerAccessProvider: null + access: + - - Security + - type: WiresPanelSecurity + securityLevel: medSecurity +- proto: APCHyperCapacity + entities: + - uid: 695 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 +- proto: Ash + entities: + - uid: 343 + components: + - type: Transform + pos: 20.166565,-18.29362 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 19.86969,-18.54362 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 20.24469,-18.652994 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 19.472424,-19.658176 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 19.659924,-19.580051 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 20.081799,-19.658176 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 1330 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 36 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1 + - uid: 925 + components: + - type: Transform + anchored: False + pos: 7.5,-23.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 979 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 1 + - uid: 1304 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 +- proto: BaseChemistryEmptyVial + entities: + - uid: 300 + components: + - type: Transform + pos: 12.357279,-12.137011 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 12.622904,-12.105761 + parent: 1 +- proto: BlastDoor + entities: + - uid: 17 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 696 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.090652,-9.521179 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 20.684402,-6.724304 + parent: 1 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.246902,-10.177429 + parent: 1 +- proto: CableHV + entities: + - uid: 147 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 +- proto: CableHVStack1 + entities: + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4744873,-25.483284 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.2869873,-25.561409 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.802612,-25.577034 + parent: 1 +- proto: CableMV + entities: + - uid: 262 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 1375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.575027,-7.427429 + parent: 1 + - uid: 1382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.510206,-10.455029 + parent: 1 + - uid: 1383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.478956,-9.548779 + parent: 1 +- proto: CableTerminal + entities: + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 1 +- proto: CartridgeMagnumAP + entities: + - uid: 179 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 193 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CartridgePistolPractice + entities: + - uid: 182 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 192 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Catwalk + entities: + - uid: 791 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 +- proto: Chair + entities: + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 1 + - uid: 754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.52094,-15.412819 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 16.767181,-23.434914 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.564784,-12.889212 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.814784,-17.826712 + parent: 1 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.52594,-18.19987 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 28.025732,-19.408087 + parent: 1 +- proto: CheapLighter + entities: + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.649857,-18.539255 + parent: 1 +- proto: ChemDispenserEmpty + entities: + - uid: 312 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 319 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1 +- proto: ClockworkGrille + entities: + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 1 +- proto: ClockworkGrilleBroken + entities: + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 1 +- proto: ClosetChef + entities: + - uid: 26 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: ClosetL3 + entities: + - uid: 324 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 325 + - 326 + - 327 + - 328 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 329 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 71 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 337 + components: + - type: Transform + pos: 23.517881,-17.477234 + parent: 1 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 325 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsMercGlovesCombat + entities: + - uid: 151 + components: + - type: Transform + parent: 585 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodBioCmo + entities: + - uid: 328 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetAncient + entities: + - uid: 1351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.7828841,-18.654243 + parent: 1 +- proto: ClothingMaskGasMerc + entities: + - uid: 586 + components: + - type: Transform + pos: 16.502377,-30.460403 + parent: 1 +- proto: ClothingMaskGoldenCursed + entities: + - uid: 11 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 +- proto: ClothingOuterBioCmo + entities: + - uid: 327 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterStraightjacket + entities: + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.495687,-22.583204 + parent: 1 +- proto: ClothingShoesBootsMercFilled + entities: + - uid: 587 + components: + - type: Transform + parent: 585 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesGaloshes + entities: + - uid: 326 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 370 + components: + - type: Transform + pos: 26.513855,-13.626347 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 26.482605,-16.220097 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.43573,-14.595097 + parent: 1 + - uid: 1561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.480062,-22.614454 + parent: 1 + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.620687,-28.635706 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 1 +- proto: CounterMetalFrame + entities: + - uid: 159 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 +- proto: CounterWoodFrame + entities: + - uid: 611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 1 + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 1 + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1 + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 1 + - uid: 616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 1 + - uid: 617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-30.5 + parent: 1 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 380 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 381 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateSurgery + entities: + - uid: 332 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: Crematorium + entities: + - uid: 66 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 1 +- proto: ExtinguisherCabinet + entities: + - uid: 1474 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 1 +- proto: ExtinguisherCabinetFilledOpen + entities: + - uid: 1473 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 1472 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 1 +- proto: filingCabinetDrawer + entities: + - uid: 603 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 +- proto: filingCabinetDrawerRandom + entities: + - uid: 331 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1 +- proto: FleshBlocker + entities: + - uid: 1564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoamedAluminiumMetal + entities: + - uid: 1476 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 1353 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 +- proto: GasFilterFlipped + entities: + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 1 +- proto: GasMixerFlipped + entities: + - uid: 442 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 1 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 1 + - uid: 501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 1 + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 1 + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 80 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 1 + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 1 + - uid: 514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 1 + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 1 +- proto: GasPipeBroken + entities: + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 495 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 +- proto: GasPipeHalf + entities: + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 1 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 1 + - uid: 481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-20.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 1 + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 1 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 1 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1 + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 1 + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 1 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-19.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-18.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 1 + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 1 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 1 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 1 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 1 + - uid: 540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-22.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-23.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1 + - uid: 531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 1 +- proto: GasPort + entities: + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 1 +- proto: GasRecycler + entities: + - uid: 87 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 +- proto: GasThermoMachineHeater + entities: + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 1 +- proto: Gauze + entities: + - uid: 1347 + components: + - type: Transform + pos: 27.562252,-20.425741 + parent: 1 +- proto: GeneratorRTG + entities: + - uid: 674 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 +- proto: Girder + entities: + - uid: 167 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 1 +- proto: GlassBoxBroken + entities: + - uid: 37 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-35.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-35.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 1 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 1 + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 +- proto: GunSafe + entities: + - uid: 760 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 192 + - 191 + - 182 + - 180 + - 179 + - 193 + - 194 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Hemostat + entities: + - uid: 162 + components: + - type: Transform + pos: 26.711317,-20.421824 + parent: 1 +- proto: HighSecDoor + entities: + - uid: 52 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 441 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 770 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 +- proto: LockableButtonResearch + entities: + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 1 + - type: Lock + locked: False + - type: DeviceLinkSource + linkedPorts: + 92: + - Pressed: Open + 91: + - Pressed: Open + 17: + - Pressed: Close + 62: + - Pressed: Close + - uid: 589 + components: + - type: Transform + pos: 17.575026,-21.158375 + parent: 1 + - type: Lock + locked: False + - type: DeviceLinkSource + linkedPorts: + 62: + - Pressed: Toggle + 17: + - Pressed: Toggle + 92: + - Pressed: Toggle + 91: + - Pressed: Toggle + - uid: 599 + components: + - type: Transform + pos: 17.993328,-21.145681 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 18.446453,-21.130056 + parent: 1 +- proto: LockerFreezerBase + entities: + - uid: 790 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerSyndicate + entities: + - uid: 757 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerSyndicatePersonal + entities: + - uid: 585 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1 + - type: AccessReader + access: + - - Security + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 587 + - 151 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LootSpawnerContrabandHigh + entities: + - uid: 828 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 +- proto: LootSpawnerIndustrial + entities: + - uid: 835 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1 +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 1469 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 1568 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 +- proto: MachineCentrifuge + entities: + - uid: 305 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 +- proto: MachineElectrolysisUnit + entities: + - uid: 304 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 303 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 1 +- proto: MagazineMagnumSubMachineGunEmpty + entities: + - uid: 194 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunEmpty + entities: + - uid: 191 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Mattress + entities: + - uid: 605 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 4 + components: + - type: Transform + pos: 28.39654,-20.5222 + parent: 1 +- proto: MopItem + entities: + - uid: 334 + components: + - type: Transform + pos: 29.272247,-18.226067 + parent: 1 +- proto: Morgue + entities: + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1 + - type: EntityStorage + open: True + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 1 + - type: EntityStorage + open: True + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-14.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1 + - type: EntityStorage + open: True + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-16.5 + parent: 1 +- proto: NewtonCradle + entities: + - uid: 299 + components: + - type: Transform + pos: 12.497904,-12.477627 + parent: 1 +- proto: NitrogenTank + entities: + - uid: 294 + components: + - type: Transform + pos: 4.6718793,-18.404543 + parent: 1 +- proto: OperatingTable + entities: + - uid: 165 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 +- proto: OrganHumanBrain + entities: + - uid: 381 + components: + - type: Transform + parent: 380 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OxygenTankFilled + entities: + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.6875043,-18.404543 + parent: 1 +- proto: PaperBin + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 1 +- proto: PaperOffice + entities: + - uid: 342 + components: + - type: Transform + pos: 20.496778,-17.40906 + parent: 1 + - type: Paper + content: >+ + [color=#154d75]░░░░░░[/color][color=#247d96]░░░░██░░[/color] + + [color=#154d75]░░░░██[/color][color=#247d96]░░████░░[/color][head=3]Бланк документа[/head] + + [color=#154d75]░░██░░[/color][color=#247d96]░░██░░░░[/color][head=3]Eternys[/head] + + [color=#154d75]░░██░░[/color][color=#8dcdf7]██[/color][color=#247d96]░░██░░[/color][bold]Протокол: ТИП-КОД + + [color=#154d75]░░░░██[/color][color=#247d96]░░░░██░░[/color][bold]ОТ-КОМУ[/bold] + + [color=#154d75]░░████[/color][color=#247d96]░░██░░░░[/color] + + [color=#154d75]░░██░░[/color][color=#247d96]░░░░░░░░[/color] + + + ============================================= + НАИМЕНОВАНИЕ ДОКУМЕНТА + ============================================= + + Подразделение: + + Составитель документа: + + Должность составителя: + + + Полное содержание документа со всей необходимой информацией и описанием + + ============================================= + [italic]Место для печатей[/italic] + +- proto: PaperScrap + entities: + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.676638,-17.815485 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.457888,-18.346735 + parent: 1 +- proto: PartRodMetal1 + entities: + - uid: 1435 + components: + - type: Transform + pos: 2.4401214,-11.489978 + parent: 1 + - uid: 1440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.7272463,-27.493317 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 2.5807464,-11.646228 + parent: 1 + - uid: 1442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.2838714,-14.724353 + parent: 1 + - uid: 1443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5494964,-14.568103 + parent: 1 + - uid: 1444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.024121,-27.087067 + parent: 1 + - uid: 1445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.362928,-26.598488 + parent: 1 + - uid: 1446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.550428,-26.332863 + parent: 1 + - uid: 1447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.30841,-26.216593 + parent: 1 + - uid: 1448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.30841,-26.247843 + parent: 1 + - uid: 1449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.261536,-26.607218 + parent: 1 + - uid: 1450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.042786,-28.404093 + parent: 1 +- proto: Pen + entities: + - uid: 1493 + components: + - type: Transform + pos: 3.7608757,-30.945808 + parent: 1 +- proto: PlaqueAtmos + entities: + - uid: 427 + components: + - type: MetaData + desc: Описание наспех разодрано, трудно что-то разобрать кроме названия. + name: объект "Проклятая маска" + - type: Transform + pos: 23.5,-23.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 38 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 +- proto: PosterBroken + entities: + - uid: 1579 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 +- proto: PosterContrabandMissingGloves + entities: + - uid: 1582 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 1 +- proto: PosterContrabandRedRum + entities: + - uid: 1583 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 1 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 1584 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 1585 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 1 +- proto: PosterLegitPeriodicTable + entities: + - uid: 1581 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 1578 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 752 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 1 +- proto: Protolathe + entities: + - uid: 291 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 +- proto: Rack + entities: + - uid: 759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1 +- proto: RandomArtifactSpawner20 + entities: + - uid: 837 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 +- proto: ReagentSlimeSpawner + entities: + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 7 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-30.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-30.5 + parent: 1 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-32.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 49 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 811 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 +- proto: ResearchDisk5000 + entities: + - uid: 1570 + components: + - type: Transform + pos: 19.541737,-17.439392 + parent: 1 +- proto: SalvageFleshSpawner + entities: + - uid: 131 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 1500 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 1 +- proto: SalvageMobSpawner75 + entities: + - uid: 8 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 1416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 1365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 1 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 1597 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 +- proto: Scalpel + entities: + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.033615,-17.484268 + parent: 1 +- proto: ScalpelLaser + entities: + - uid: 160 + components: + - type: Transform + pos: 27.932484,-17.930283 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.1917124,-18.56222 + parent: 1 + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.128892,-18.421595 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 1.466277,-28.588818 + parent: 1 +- proto: ScrapAirlock2 + entities: + - uid: 1428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.800714,-28.609074 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 161 + components: + - type: Transform + pos: 25.572506,-18.0732 + parent: 1 +- proto: ScrapCamera + entities: + - uid: 1433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.199408,-14.682572 + parent: 1 +- proto: ScrapCanister1 + entities: + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.531744,-26.598495 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 1422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.6875021,-19.194933 + parent: 1 +- proto: ScrapCloset + entities: + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.51615,-29.499699 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 15.5050125,-19.500652 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: 1.4665098,-15.482519 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: 18.397388,-28.585344 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: 32.499863,-22.41413 + parent: 1 + - uid: 1491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.497122,-32.658165 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: 2.486378,-28.41912 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 1434 + components: + - type: Transform + pos: 1.5144982,-13.349414 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 1470 + components: + - type: Transform + pos: 21.064129,-19.393074 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: 9.524442,-25.336878 + parent: 1 +- proto: ScrapFirelock1 + entities: + - uid: 199 + components: + - type: Transform + pos: 4.49776,-13.198574 + parent: 1 +- proto: ScrapFirelock2 + entities: + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.586067,-13.808245 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 4.12276,-13.682949 + parent: 1 +- proto: ScrapFirelock3 + entities: + - uid: 1427 + components: + - type: Transform + pos: 3.649386,-13.024067 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 320 + components: + - type: Transform + pos: 9.5146885,-17.630957 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5459385,-19.146582 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 1429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.551838,-32.6247 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 1431 + components: + - type: Transform + pos: 23.549465,-28.484074 + parent: 1 +- proto: ScrapPAI + entities: + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.543966,-16.47763 + parent: 1 +- proto: ScrapTube + entities: + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.446462,-16.165434 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.607279,-13.484983 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 11.654154,-12.531858 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.490014,-14.806059 + parent: 1 + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.7349,-30.546574 + parent: 1 +- proto: SeismicCharge + entities: + - uid: 1571 + components: + - type: Transform + pos: 2.4494038,-22.524374 + parent: 1 +- proto: ShardGlass + entities: + - uid: 618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.56653,-30.37349 + parent: 1 + - uid: 619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.332155,-29.764114 + parent: 1 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.50403,-29.076614 + parent: 1 + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.925905,-28.87349 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 297 + components: + - type: Transform + pos: 12.372904,-13.380381 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 12.701029,-12.802256 + parent: 1 +- proto: SheetPlasteel1 + entities: + - uid: 101 + components: + - type: Transform + pos: 31.417034,-17.458231 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 31.71391,-17.426981 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 33.573284,-22.520731 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 1368 + components: + - type: Transform + pos: 1.5156293,-17.560793 + parent: 1 + - uid: 1369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.2968793,-18.842043 + parent: 1 + - uid: 1370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5781293,-19.435793 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 33.46391,-29.63192 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 33.510784,-29.19442 + parent: 1 +- proto: ShotGunCabinetOpen + entities: + - uid: 588 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 +- proto: ShuttersNormal + entities: + - uid: 591 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 +- proto: ShuttersNormalOpen + entities: + - uid: 594 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 +- proto: SignBio + entities: + - uid: 1589 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 +- proto: SignBiohazardMed + entities: + - uid: 1588 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1 +- proto: SignCorrosives + entities: + - uid: 431 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1 +- proto: SignDanger + entities: + - uid: 189 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1 +- proto: SignEVA + entities: + - uid: 1587 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 +- proto: SignMemetic + entities: + - uid: 425 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 1 +- proto: SignMorgue + entities: + - uid: 1586 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 +- proto: SignNosmoking + entities: + - uid: 1592 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 +- proto: SignScience + entities: + - uid: 1567 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1 +- proto: SignSecurearea + entities: + - uid: 1590 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1 +- proto: SignSecureMedRed + entities: + - uid: 1591 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 +- proto: SignSecureSmallRed + entities: + - uid: 1593 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 1 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 1 +- proto: SMESBasicEmpty + entities: + - uid: 1345 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 1229 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 834 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 1 +- proto: SpeedLoaderMagnumEmpty + entities: + - uid: 180 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationBasicEmpty + entities: + - uid: 688 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 1348 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 1349 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: SuitStorageNTSRA + entities: + - uid: 1350 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 +- proto: SurveillanceWirelessCameraAnchoredConstructed + entities: + - uid: 270 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 1 +- proto: Table + entities: + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-21.5 + parent: 1 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-21.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 1 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1 + - uid: 756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-20.5 + parent: 1 + - uid: 766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 1 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 1 + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-18.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 163 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 184 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 1 +- proto: TableStone + entities: + - uid: 32 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-20.5 + parent: 1 +- proto: ToiletEmpty + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 1 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 1 + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1 + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 1 +- proto: TreasureHardDiskDrive + entities: + - uid: 1598 + components: + - type: Transform + pos: 2.5376048,-15.556843 + parent: 1 +- proto: TreasureSampleTube + entities: + - uid: 1595 + components: + - type: Transform + pos: 12.322755,-12.749346 + parent: 1 + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.52588,-17.43133 + parent: 1 + - uid: 1600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.513609,-31.362492 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 1466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1352 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 +- proto: WallMeat + entities: + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 1 + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 1 + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 1 + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 1 + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 20 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 3 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-30.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-27.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-29.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-30.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-29.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-24.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-27.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-28.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-30.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-30.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-27.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-27.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-27.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 1 + - uid: 649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 1 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 1 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-24.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 201 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-21.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1 + - uid: 820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-28.5 + parent: 1 + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-28.5 + parent: 1 + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 1 + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 1 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 1 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 1 + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 1 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 114 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 1276 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 +- proto: WardrobeWhite + entities: + - uid: 166 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 336 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: WeaponCapacitorRecharger + entities: + - uid: 602 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 1 +- proto: WeaponTurretHostile + entities: + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 1 +- proto: WindoorAssemblySecure + entities: + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1 + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-17.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-17.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_rnd_debris.yml b/Resources/Maps/Ruins/corvax_rnd_debris.yml new file mode 100644 index 00000000000..9e20a27172b --- /dev/null +++ b/Resources/Maps/Ruins/corvax_rnd_debris.yml @@ -0,0 +1,4960 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 107: FloorBlueCircuit + 129: FloorChromite + 8: FloorDarkDiagonal + 13: FloorDarkMono + 4: FloorDarkPlastic + 89: FloorEighties + 103: FloorGlass + 101: FloorGold + 106: FloorGreenCircuit + 131: FloorHullReinforced + 73: FloorKitchen + 134: FloorMowedAstroGrass + 68: FloorShowroom + 99: FloorShuttlePurple + 144: FloorSnow + 3: FloorSteel + 2: FloorSteelDirty + 5: FloorSteelHerringbone + 10: FloorSteelPavement + 11: FloorWhiteDiagonal + 6: FloorWoodChessBlack + 12: FloorWoodLargeLight + 153: Lattice + 1: Plating + 7: PlatingBurnt + 9: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -13,-11 + parent: invalid + - type: MapGrid + chunks: + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAABwAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAACQAAAAAABwAAAAAAAQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABwAAAAAABwAAAAAABQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAQAAAAAACgAAAAAACwAAAAAACwAAAAAACwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAABQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: BAAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAmQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACgAAAAAACgAAAAAADQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 437: 12,15 + 438: 10,13 + 439: 13,8 + 443: 20,16 + 444: 20,16 + 445: 20,13 + 446: 14,16 + 448: 8,18 + 491: 23,7 + 492: 23,6 + 496: 12,10 + 497: 12,10 + 500: 6,6 + 501: 17,6 + 502: 13,6 + 503: 12,8 + 504: 12,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 440: 20,11 + 441: 21,11 + 442: 22,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotRight + decals: + 447: 12,18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Box + decals: + 431: 4,8 + 432: 4,9 + 433: 4,10 + 434: 4,11 + 435: 10,8 + 436: 10,8 + 494: 12,10 + 495: 12,10 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 115: 7,13 + 116: 15,15 + 118: 13,11 + 119: 21,8 + 120: 10,16 + 121: 10,22 + 122: 10,20 + 319: 21,4 + 323: 6,16 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerNe + decals: + 93: 17,8 + 94: 18,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 131: 12,19 + 132: 12,15 + 134: 16,14 + 135: 18,11 + 136: 23,11 + 137: 23,7 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerNw + decals: + 89: 12,8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 127: 8,19 + 128: 14,14 + 129: 20,11 + 130: 20,7 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerSe + decals: + 95: 18,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 143: 11,17 + 144: 12,18 + 145: 23,9 + 146: 23,6 + 147: 22,5 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerSw + decals: + 101: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 138: 6,14 + 139: 10,13 + 140: 9,17 + 141: 8,18 + 142: 20,5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 174: 6,17 + - node: + color: '#F98AFFFF' + id: BrickTileDarkInnerNe + decals: + 103: 17,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 51: 8,10 + 175: 6,16 + 176: 15,14 + 177: 10,15 + 178: 10,19 + 179: 7,15 + 180: 21,7 + 200: 16,13 + 206: 16,11 + 320: 12,13 + 324: 6,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 52: 6,10 + 181: 21,7 + 182: 15,14 + 183: 14,11 + 184: 10,15 + 185: 10,19 + 186: 14,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 53: 8,8 + 187: 16,13 + 188: 21,9 + 189: 10,17 + 190: 7,14 + 198: 21,5 + 199: 16,13 + 202: 11,18 + 211: 15,9 + 321: 22,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 54: 6,8 + 191: 14,11 + 192: 7,14 + 193: 10,17 + 194: 14,13 + 195: 21,9 + 196: 21,5 + 197: 21,5 + 201: 9,18 + 203: 10,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 37: 5,9 + 38: 5,10 + 39: 5,8 + 125: 10,21 + 160: 12,14 + 161: 16,12 + 162: 23,10 + 205: 16,12 + - node: + color: '#F98AFFFF' + id: BrickTileDarkLineN + decals: + 90: 13,8 + 91: 16,8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 40: 7,7 + 41: 7,7 + 42: 6,7 + 43: 6,7 + 44: 8,7 + 163: 19,10 + 164: 21,11 + 165: 22,11 + 166: 22,7 + 167: 11,15 + 168: 9,15 + 169: 8,15 + 170: 9,19 + 171: 11,19 + 204: 17,11 + 322: 7,15 + - node: + color: '#F98AFFFF' + id: BrickTileDarkLineS + decals: + 96: 17,6 + 97: 16,6 + 98: 15,6 + 99: 14,6 + 100: 13,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 48: 6,11 + 49: 7,11 + 50: 8,11 + 154: 11,13 + 155: 12,13 + 156: 18,9 + 157: 19,9 + 158: 20,9 + 159: 22,9 + 172: 8,14 + 173: 9,14 + 209: 17,9 + 210: 16,9 + - node: + color: '#F98AFFFF' + id: BrickTileDarkLineW + decals: + 102: 12,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 45: 9,8 + 46: 9,9 + 47: 9,10 + 126: 10,21 + 148: 6,15 + 149: 6,16 + 150: 14,12 + 151: 14,10 + 152: 14,9 + 153: 20,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 22: 8,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 23: 6,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 24: 8,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 25: 6,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 31: 16,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 30: 13,7 + - node: + color: '#724276FF' + id: BrickTileSteelInnerNw + decals: + 82: 5,11 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 29: 8,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 28: 7,10 + 34: 14,7 + 35: 15,7 + 36: 15,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 27: 7,8 + 32: 15,7 + 33: 14,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 26: 6,9 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerNe + decals: + 60: 10,10 + 61: 9,11 + 62: 8,12 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerNw + decals: + 63: 5,12 + 64: 4,11 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteCornerNw + decals: + 105: 14,18 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteCornerSe + decals: + 107: 17,17 + 108: 16,16 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerSw + decals: + 65: 4,8 + 66: 4,8 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteCornerSw + decals: + 104: 14,16 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteEndE + decals: + 106: 18,18 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerNe + decals: + 84: 8,11 + 85: 9,10 + 86: 7,12 + 208: 15,8 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerNw + decals: + 83: 5,11 + 87: 7,12 + 207: 14,8 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteInnerSe + decals: + 113: 16,17 + 114: 17,18 + 123: 15,16 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerSw + decals: + 81: 5,8 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteInnerSw + decals: + 124: 15,16 + - node: + color: '#724276FF' + id: BrickTileWhiteLineE + decals: + 57: 10,7 + 58: 10,8 + 59: 10,9 + 80: 10,6 + - node: + color: '#724276FF' + id: BrickTileWhiteLineN + decals: + 88: 6,12 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteLineN + decals: + 110: 15,18 + 111: 16,18 + 112: 17,18 + - node: + color: '#724276FF' + id: BrickTileWhiteLineW + decals: + 67: 4,9 + 68: 4,9 + 69: 4,10 + 70: 5,7 + 79: 5,6 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteLineW + decals: + 109: 14,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 489: 23,11 + 490: 23,9 + 493: 22,5 + 498: 17,8 + 499: 17,8 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 488: 6,14 + - node: + color: '#7242767F' + id: DiagonalCheckerAOverlay + decals: + 0: 6,8 + 1: 7,8 + 2: 8,8 + 3: 8,9 + 4: 7,9 + 5: 6,9 + 6: 6,10 + 7: 7,10 + 8: 8,10 + - node: + color: '#F98AFF28' + id: DiagonalCheckerBOverlay + decals: + 9: 6,8 + 10: 6,9 + 11: 6,10 + 12: 7,10 + 13: 7,9 + 14: 7,8 + 15: 8,8 + 16: 8,9 + 17: 8,10 + - node: + color: '#F98AFF7F' + id: DiagonalCheckerBOverlay + decals: + 18: 13,7 + 19: 14,7 + 20: 15,7 + 21: 16,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 241: 6,10 + 242: 6,9 + 243: 7,9 + 244: 12,10 + 450: 10,8 + 451: 4,8 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 245: 12,10 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 452: 4,10 + 453: 12,18 + 454: 10,13 + 455: 12,15 + 456: 20,13 + 457: 18,14 + 458: 21,14 + 459: 21,14 + 460: 19,15 + 461: 20,15 + 462: 22,13 + 463: 22,14 + 464: 21,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 246: 12,11 + 247: 12,10 + 248: 10,6 + 281: 17,6 + 282: 12,7 + 283: 12,7 + 284: 13,6 + 285: 20,6 + 286: 22,7 + 292: 20,5 + 293: 20,5 + 294: 20,5 + 295: 22,5 + 296: 21,9 + 297: 22,10 + 298: 15,16 + 299: 15,16 + 300: 16,17 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 465: 18,13 + 466: 18,14 + 467: 19,14 + 468: 19,13 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 212: 11,14 + 213: 12,13 + 214: 6,14 + 215: 7,15 + 216: 10,18 + 217: 9,19 + 218: 5,11 + 219: 7,12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 220: 7,6 + 221: 6,7 + 222: 7,7 + 233: 7,3 + 234: 7,11 + 235: 6,12 + 236: 5,9 + 237: 11,13 + 238: 10,17 + 239: 10,21 + 240: 11,18 + 263: 16,13 + 264: 16,12 + 265: 15,12 + 266: 15,11 + 267: 14,10 + 268: 16,9 + 269: 14,12 + 270: 18,9 + 271: 17,9 + 272: 18,10 + 273: 17,7 + 274: 16,7 + 275: 15,7 + 276: 15,8 + 277: 14,6 + 278: 14,6 + 279: 18,6 + 280: 18,6 + 314: 16,16 + 315: 14,17 + 316: 16,18 + 317: 15,18 + 318: 16,16 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 249: 10,7 + 250: 10,7 + 287: 21,6 + 288: 22,6 + 289: 21,5 + 301: 15,17 + 302: 15,17 + 303: 14,17 + 304: 15,18 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 469: 18,14 + 470: 19,15 + 471: 19,15 + 472: 19,13 + 479: 20,14 + 480: 18,13 + 481: 19,13 + 482: 19,16 + 483: 19,16 + 484: 20,14 + 485: 19,14 + 486: 18,15 + 487: 19,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 223: 9,7 + 224: 9,7 + 225: 9,8 + 226: 8,11 + 227: 5,9 + 228: 5,7 + 229: 5,7 + 230: 5,4 + 231: 5,4 + 232: 7,3 + 251: 10,7 + 252: 9,9 + 253: 10,10 + 254: 10,8 + 255: 14,8 + 256: 17,8 + 257: 17,8 + 258: 16,10 + 259: 14,11 + 260: 15,12 + 261: 16,13 + 262: 16,12 + 290: 22,6 + 291: 21,6 + 305: 14,18 + 306: 14,18 + 307: 14,16 + 308: 16,18 + 309: 17,18 + 310: 17,17 + 311: 17,17 + 312: 18,18 + 313: 16,17 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 473: 19,15 + 474: 20,16 + 475: 22,13 + 476: 22,14 + 477: 21,13 + 478: 21,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: StandClear + decals: + 449: 10,19 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 77: 7,6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 71: 6,6 + 72: 5,6 + 74: 10,6 + - node: + cleanable: True + angle: 1.0471975511965976 rad + color: '#85000068' + id: dot + decals: + 405: 15.649952,15.736097 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#85000068' + id: dot + decals: + 350: 16.304184,7.5743065 + 351: 16.793768,6.8034725 + 352: 15.731268,6.9388895 + - node: + cleanable: True + angle: 4.1887902047863905 rad + color: '#85000068' + id: dot + decals: + 406: 16.368702,16.340263 + 407: 16.129118,15.861097 + 408: 14.597868,18.017347 + 409: 14.170785,17.361097 + 410: 14.597868,17.340263 + 411: 14.858285,16.881931 + 412: 15.306202,17.267347 + 413: 15.295785,16.82162 + 414: 15.087452,7.342142 + 415: 14.431201,6.935892 + 416: 13.629118,7.144225 + 417: 13.077035,6.925475 + 418: 13.535368,6.8838086 + 419: 12.879118,7.2275586 + 420: 12.670785,6.925475 + 421: 16.292952,7.540058 + 422: 16.292952,7.540058 + 423: 16.292952,6.706725 + 424: 15.865868,6.925475 + 425: 9.490351,5.06284 + 426: 20.674084,14.11699 + 427: 20.40325,13.71074 + 428: 21.27825,13.939907 + 429: 21.27825,13.939907 + 430: 20.52825,14.05449 + - node: + cleanable: True + angle: 6.213372137099813 rad + color: '#85000068' + id: dot + decals: + 362: 8.231638,4.6762795 + 363: 8.325388,5.0512795 + 364: 8.627471,4.561696 + 365: 9.554554,4.978363 + 366: 9.637888,4.592946 + 367: 20.46157,13.878058 + 368: 20.30532,14.148891 + 369: 20.763655,14.305141 + 370: 20.482405,13.659308 + 371: 20.576155,14.128058 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#AE000069' + id: dot + decals: + 347: 15.835434,6.699306 + 348: 15.5021,7.5847225 + 349: 16.960434,7.2722225 + - node: + cleanable: True + angle: 0.8726646259971648 rad + color: '#85000068' + id: line + decals: + 387: 15.462757,17.02169 + 388: 15.264841,16.907108 + 389: 15.046091,16.948774 + - node: + cleanable: True + angle: 1.0471975511965976 rad + color: '#85000068' + id: line + decals: + 390: 14.691924,17.636274 + 391: 14.556507,17.448774 + 392: 14.764841,17.532108 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#AE000069' + id: line + decals: + 335: 14.0883665,7.1316676 + 336: 13.4946165,6.8504176 + 337: 13.07795,7.110834 + 338: 14.0154505,6.9129176 + 339: 12.51545,7.0691676 + 340: 12.8592,7.121251 + 341: 13.0987835,6.829584 + - node: + cleanable: True + angle: 1.7453292519943295 rad + color: '#AE000069' + id: line + decals: + 330: 15.4633665,7.3191676 + 331: 15.4112835,7.090001 + 332: 15.4008665,6.8816676 + 333: 14.95295,6.923334 + 334: 14.5571165,7.142084 + - node: + cleanable: True + angle: 1.0471975511965976 rad + color: '#85000068' + id: splatter + decals: + 393: 13.910674,18.042524 + 394: 14.119008,18.17794 + 395: 13.962757,17.83419 + 396: 13.639841,17.917524 + 397: 13.806507,18.17794 + 398: 14.025258,17.980024 + 399: 14.035674,17.625858 + 400: 14.316924,18.063358 + 401: 13.879424,17.948774 + 402: 20.631197,14.138803 + 403: 20.943697,14.2117195 + 404: 21.15203,13.753386 + - node: + cleanable: True + angle: 3.07177948351002 rad + color: '#85000068' + id: splatter + decals: + 353: 16.231268,7.136806 + 354: 12.179184,6.9701395 + 355: 11.825017,6.7826395 + 356: 9.252471,4.874196 + 357: 8.950388,5.0512795 + 358: 8.627471,4.7075295 + 359: 8.919138,5.165863 + - node: + cleanable: True + angle: 6.213372137099813 rad + color: '#85000068' + id: splatter + decals: + 360: 9.200388,4.6137795 + 361: 8.710804,5.009613 + 372: 20.99282,14.055141 + 373: 21.409489,13.690558 + 374: 21.128239,13.555141 + 375: 20.763655,13.930141 + 376: 20.721989,13.971808 + 377: 21.263655,13.919725 + 378: 20.701155,13.617641 + 379: 21.096989,13.878058 + 380: 16.014841,16.375858 + 381: 16.202341,16.198774 + 382: 16.087757,16.14669 + 383: 15.796091,16.073774 + 384: 15.660675,16.39669 + 385: 15.973175,16.605024 + 386: 15.546091,16.230024 + - node: + cleanable: True + color: '#AE000069' + id: splatter + decals: + 325: 16.119617,7.329584 + 326: 16.536283,7.110834 + 327: 16.536283,6.8504176 + 328: 16.057117,6.933751 + 329: 16.317533,7.2879176 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#AE000069' + id: splatter + decals: + 342: 12.420798,7.090001 + 343: 11.920798,6.746251 + 344: 11.629131,7.204584 + 345: 12.170798,6.829584 + 346: 11.785381,6.746251 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: RadiationGridResistance +- proto: Airlock + entities: + - uid: 602 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 +- proto: AirlockEngineering + entities: + - uid: 138 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 +- proto: AirlockExternalLocked + entities: + - uid: 184 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 1 +- proto: AirlockScienceGlassLocked + entities: + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 +- proto: AirlockScienceLocked + entities: + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 +- proto: AntiPoisonMedipen + entities: + - uid: 501 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 502 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 503 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 504 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: APCBasic + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 132 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 +- proto: AsteroidRockMining + entities: + - uid: 391 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 +- proto: AsteroidRockQuartzCrab + entities: + - uid: 412 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 +- proto: AsteroidRockSilver + entities: + - uid: 13 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 +- proto: AsteroidRockSilverCrab + entities: + - uid: 396 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 +- proto: AsteroidRockTin + entities: + - uid: 386 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 401 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 +- proto: AsteroidRockUraniumCrab + entities: + - uid: 389 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 324 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 +- proto: Beaker + entities: + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.092518,10.510992 + parent: 1 +- proto: BlastDoorFrame + entities: + - uid: 477 + components: + - type: Transform + anchored: True + pos: 9.5,3.5 + parent: 1 +- proto: BorgModuleClowning + entities: + - uid: 518 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: BorgModuleMining + entities: + - uid: 517 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: BoxSyringe + entities: + - uid: 483 + components: + - type: Transform + pos: 18.499014,18.486639 + parent: 1 +- proto: BoxVial + entities: + - uid: 484 + components: + - type: Transform + pos: 18.358389,18.846014 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 214 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.6534443,7.570488 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 6.5909443,11.664238 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 8.872194,10.132988 + parent: 1 +- proto: CableHV + entities: + - uid: 161 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 +- proto: CableMV + entities: + - uid: 164 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.60637,7.1723337 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.60637,7.1723337 + parent: 1 +- proto: CircuitImprinter + entities: + - uid: 370 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 +- proto: ClosetBombFilled + entities: + - uid: 361 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 468 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 471 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1 +- proto: ClosetL3ScienceFilled + entities: + - uid: 360 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 359 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 645 + components: + - type: Transform + pos: 9.738622,5.6807284 + parent: 1 +- proto: ClothingMaskBreath + entities: + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.275793,17.61323 + parent: 1 +- proto: Cobweb1 + entities: + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 +- proto: ComputerAnalysisConsole + entities: + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 +- proto: ComputerTelevisionCircuitboard + entities: + - uid: 516 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: CondenserMachineCircuitBoard + entities: + - uid: 515 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: CrateArtifactContainer + entities: + - uid: 550 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 +- proto: CrateScienceSecure + entities: + - uid: 551 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 552 + - 553 + - 554 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CyborgEndoskeleton + entities: + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.516638,7.4295206 + parent: 1 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 513 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: DisposalBend + entities: + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,3.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 374 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 373 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 +- proto: DoubleEmergencyOxygenTank + entities: + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.682043,17.311146 + parent: 1 +- proto: EggSpider + entities: + - uid: 433 + components: + - type: Transform + pos: 14.913317,18.668617 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.577582,18.276766 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 14.507067,18.637367 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 14.218207,18.620516 + parent: 1 +- proto: ExosuitFabricator + entities: + - uid: 323 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 +- proto: ExplosivesSignMed + entities: + - uid: 555 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 588 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 351 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 +- proto: filingCabinetRandom + entities: + - uid: 362 + components: + - type: Transform + pos: 9.797508,11.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 9.250633,11.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 420 + components: + - type: Transform + pos: 17.5,18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 422 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FolderSpawner + entities: + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364991,10.25001 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.836592,18.31863 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 300 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 +- proto: GasPipeBroken + entities: + - uid: 282 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: GasPort + entities: + - uid: 279 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1 +- proto: Gauze + entities: + - uid: 505 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: Gauze1 + entities: + - uid: 506 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 507 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: GeneratorBasic15kW + entities: + - uid: 160 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 +- proto: Girder + entities: + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 25.5,17.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,22.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 1 + - uid: 634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,11.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1 +- proto: HarmonicaInstrument + entities: + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.408401,5.378008 + parent: 1 +- proto: Lamp + entities: + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.764639,10.907485 + parent: 1 +- proto: LightBulbBroken + entities: + - uid: 580 + components: + - type: Transform + parent: 579 + - type: Physics + canCollide: False +- proto: LightHeadBorg + entities: + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.829138,6.7107706 + parent: 1 +- proto: LightTubeBroken + entities: + - uid: 523 + components: + - type: Transform + parent: 522 + - type: Physics + canCollide: False + - uid: 525 + components: + - type: Transform + parent: 524 + - type: Physics + canCollide: False + - uid: 530 + components: + - type: Transform + parent: 529 + - type: Physics + canCollide: False + - uid: 532 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 534 + components: + - type: Transform + parent: 533 + - type: Physics + canCollide: False + - uid: 536 + components: + - type: Transform + parent: 535 + - type: Physics + canCollide: False + - uid: 538 + components: + - type: Transform + parent: 537 + - type: Physics + canCollide: False + - uid: 541 + components: + - type: Transform + parent: 540 + - type: Physics + canCollide: False +- proto: LockerScienceFilled + entities: + - uid: 293 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 +- proto: LockerScientist + entities: + - uid: 294 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 348 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 +- proto: MachineAPE + entities: + - uid: 387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1 +- proto: MachineArtifactAnalyzer + entities: + - uid: 22 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 23 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.780264,10.04811 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 486 + components: + - type: Transform + pos: 18.760668,18.819565 + parent: 1 +- proto: PlasmaCanister + entities: + - uid: 301 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 1 +- proto: PlasmaWindoorSecureScienceLocked + entities: + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 595 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 594 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 590 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 593 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 +- proto: PottedPlant10 + entities: + - uid: 480 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 +- proto: PottedPlant18 + entities: + - uid: 481 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 526 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,10.5 + parent: 1 + - uid: 528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 1 +- proto: PoweredlightEmpty + entities: + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 523 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 525 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 530 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 531 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 532 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 533 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 534 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 535 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 536 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 538 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 541 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: PoweredSmallLight + entities: + - uid: 576 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 579 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 580 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: Rack + entities: + - uid: 305 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 +- proto: Railing + entities: + - uid: 334 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,11.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1 +- proto: RandomArtifactSpawner + entities: + - uid: 152 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 591 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 +- proto: RandomRockAnomalySpawner + entities: + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 1 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 299 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 566 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 556 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 545 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 124 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1 +- proto: ResearchAndDevelopmentServerMachineCircuitboard + entities: + - uid: 371 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: 15.876836,6.504627 + parent: 1 +- proto: ResearchDisk + entities: + - uid: 552 + components: + - type: Transform + parent: 551 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchDisk10000 + entities: + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.2228565,7.721758 + parent: 1 +- proto: RipleyLLeg + entities: + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.407263,6.6326456 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 326 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.607693,4.2066927 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.467068,4.8941927 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.553878,4.9566927 + parent: 1 +- proto: ScrapCamera + entities: + - uid: 583 + components: + - type: Transform + pos: 14.497822,18.754791 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.721625,7.8083715 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.220586,6.410877 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.488289,9.34615 + parent: 1 +- proto: ScrapFirelock1 + entities: + - uid: 304 + components: + - type: Transform + pos: 8.466178,14.964212 + parent: 1 +- proto: ScrapFirelock2 + entities: + - uid: 646 + components: + - type: Transform + pos: 9.00524,14.378275 + parent: 1 +- proto: ScrapFirelock3 + entities: + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.9271154,14.23765 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.760549,4.5649004 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 358 + components: + - type: Transform + pos: 10.395343,9.950087 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.2065487,3.3316927 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 10.483988,4.189798 + parent: 1 + - uid: 587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.702738,2.9241734 + parent: 1 +- proto: ScrapTube + entities: + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.529072,18.694164 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 17.872822,18.42854 + parent: 1 +- proto: ShadowTree03 + entities: + - uid: 549 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 +- proto: ShardGlassPlasma + entities: + - uid: 423 + components: + - type: Transform + pos: 9.337163,5.841423 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.227788,6.388298 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.571538,7.716423 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.477788,5.278923 + parent: 1 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.524663,3.075798 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.493413,9.465229 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.352788,11.121479 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 6.415288,8.590229 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 8.259038,10.090229 + parent: 1 +- proto: SheetGlass10 + entities: + - uid: 547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5491,6.6603527 + parent: 1 +- proto: SheetPlastic10 + entities: + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.791821,6.749605 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.318027,6.4801674 + parent: 1 +- proto: ShelfRMetal + entities: + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,17.5 + parent: 1 + - type: Storage + storedItems: + 501: + position: 0,0 + _rotation: South + 502: + position: 1,3 + _rotation: South + 503: + position: 0,4 + _rotation: South + 504: + position: 3,4 + _rotation: South + 505: + position: 2,1 + _rotation: East + 506: + position: 0,1 + _rotation: West + 507: + position: 2,3 + _rotation: North + 508: + position: 1,4 + _rotation: North + 509: + position: 2,0 + _rotation: South + 510: + position: 3,3 + _rotation: South + 511: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 501 + - 502 + - 503 + - 504 + - 505 + - 506 + - 507 + - 508 + - 509 + - 510 + - 511 + - uid: 512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 1 + - type: Storage + storedItems: + 513: + position: 0,1 + _rotation: West + 514: + position: 1,0 + _rotation: West + 515: + position: 2,1 + _rotation: East + 516: + position: 3,3 + _rotation: South + 517: + position: 1,4 + _rotation: West + 518: + position: 1,3 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 513 + - 515 + - 514 + - 517 + - 516 + - 518 +- proto: ShuttersFrame + entities: + - uid: 478 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 +- proto: SignAnomaly + entities: + - uid: 310 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 +- proto: SignAnomaly2 + entities: + - uid: 316 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 +- proto: SignDangerMed + entities: + - uid: 311 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 309 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1 +- proto: SignRestroom + entities: + - uid: 601 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 +- proto: SignRobo + entities: + - uid: 313 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 +- proto: SignScience + entities: + - uid: 314 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 +- proto: SignSmoking + entities: + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 +- proto: SignXenobio + entities: + - uid: 315 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 +- proto: SinkEmpty + entities: + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,16.5 + parent: 1 +- proto: SpawnMobOreCrab + entities: + - uid: 410 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 328 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 +- proto: SpiderWeb + entities: + - uid: 432 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 +- proto: StairWhite + entities: + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 1 +- proto: StationMapBroken + entities: + - uid: 479 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 302 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 +- proto: StrangePill + entities: + - uid: 508 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 509 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 510 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 511 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: SubstationWallBasic + entities: + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 +- proto: SuitStorageEVA + entities: + - uid: 307 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1 +- proto: Syringe + entities: + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.655018,10.604742 + parent: 1 +- proto: Table + entities: + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 288 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 +- proto: TechDiskComputerCircuitboard + entities: + - uid: 514 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: TechnologyDisk + entities: + - uid: 554 + components: + - type: Transform + parent: 551 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TechnologyDiskRare + entities: + - uid: 553 + components: + - type: Transform + parent: 551 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToiletDirtyWater + entities: + - uid: 548 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 +- proto: TorsoBorgMining + entities: + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.391638,6.3357706 + parent: 1 +- proto: ToyFigurineScientist + entities: + - uid: 298 + components: + - type: Transform + pos: 18.653246,7.2973337 + parent: 1 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 +- proto: VariantCubeBox + entities: + - uid: 560 + components: + - type: Transform + pos: 10.395698,10.778908 + parent: 1 +- proto: VendingMachineRoboDrobe + entities: + - uid: 459 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 +- proto: VendingMachineSciDrobe + entities: + - uid: 292 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 +- proto: VendingMachineSnackBlue + entities: + - uid: 644 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 308 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 +- proto: VendingMachineVendomat + entities: + - uid: 470 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 372 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 +- proto: WaterVaporCanister + entities: + - uid: 303 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 +- proto: Windoor + entities: + - uid: 519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 +- proto: WindoorAssemblySecurePlasma + entities: + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 +- proto: WindoorAssemblySecureUranium + entities: + - uid: 418 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 +- proto: WindoorSecureScienceLocked + entities: + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_sanctus.yml b/Resources/Maps/Ruins/corvax_sanctus.yml new file mode 100644 index 00000000000..c41f87c0608 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_sanctus.yml @@ -0,0 +1,1739 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorAstroGrass + 3: FloorBrassFilled + 1: FloorCave + 2: FloorElevatorShaft + 4: FloorHullReinforced + 136: FloorWoodLargeLight + 138: FloorWoodLight + 139: FloorWoodParquet + 146: Lattice + 147: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: "" + - type: Transform + pos: 0.390625,-0.390625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAgAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 54: -14,-2 + 103: -7,-13 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 56: -12,3 + 105: -11,-10 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 63: 1,-1 + 107: -13,-4 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 57: -4,5 + 58: 6,-8 + 59: 1,-13 + 60: -9,-6 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 53: -15,-6 + 61: -10,-5 + 64: 2,-3 + 106: -15,-9 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 55: -8,5 + 62: -2,-8 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 104: -1,-14 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 65: -8,-6 + 66: -8,-5 + 67: -10,-4 + 68: -9,-4 + 69: -8,-3 + 71: -3,-10 + 72: -2,-10 + 73: 1,-6 + 74: 1,-5 + 75: 2,-2 + 76: 3,-3 + 77: 3,-4 + 78: -2,1 + 79: -4,1 + 80: -5,1 + 81: -3,-1 + 82: -4,0 + 83: -4,-2 + 84: -6,-4 + 85: -10,-2 + 86: -5,2 + 87: -1,2 + 88: -8,-1 + 89: -7,-3 + 90: -5,-11 + 93: 1,-8 + 94: 2,-7 + 95: 2,-6 + 96: 3,-7 + 97: 3,-6 + 98: 0,-4 + 99: 0,-3 + 100: -3,-8 + 102: -7,-10 + 124: -4,-12 + 125: -4,-11 + 126: -4,-8 + 127: -4,-9 + 128: -2,-11 + - node: + color: '#9C2020FF' + id: body + decals: + 46: -2,-7 + - node: + color: '#1D1D21FF' + id: splatter + decals: + 50: -6,-3 + 51: -2,-2 + 52: -5,-2 + - node: + color: '#571212FF' + id: splatter + decals: + 47: -5,-7 + 48: -6,-6 + 49: -1,-6 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AltarFangs + entities: + - uid: 51 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 +- proto: AltarHeaven + entities: + - uid: 60 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 +- proto: ArmBlade + entities: + - uid: 75 + components: + - type: Transform + pos: -9.542018,-1.4161515 + parent: 2 +- proto: BibleNecronomicon + entities: + - uid: 153 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 +- proto: Bloodpack + entities: + - uid: 111 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 +- proto: BookNarsieLegend + entities: + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 +- proto: ButchCleaver + entities: + - uid: 11 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 +- proto: CandleInfinite + entities: + - uid: 42 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 41 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -0.5914495,0.29293394 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -0.1695745,-4.863316 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -5.8258247,-7.6133156 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: -7.3570747,-2.191441 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 +- proto: CandleSmall + entities: + - uid: 228 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 +- proto: ChairBrass + entities: + - uid: 199 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 +- proto: ChairRitual + entities: + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 2 +- proto: ClockworkGirder + entities: + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 +- proto: ClockworkShield + entities: + - uid: 45 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 +- proto: ClockworkWindow + entities: + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 254 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 +- proto: ClothingHeadHatRedwizard + entities: + - uid: 5 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 +- proto: ClothingHeadHelmetCult + entities: + - uid: 255 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 +- proto: ClothingOuterRobesCult + entities: + - uid: 3 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 +- proto: ClothingOuterWizardRed + entities: + - uid: 1 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 +- proto: ClothingShoesCult + entities: + - uid: 256 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 +- proto: ComplexXenoArtifact + entities: + - uid: 244 + components: + - type: Transform + pos: -2.955439,-3.9142942 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 137 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 38 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 +- proto: DrinkBloodGlass + entities: + - uid: 233 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 +- proto: FloorTileItemBrassFilled + entities: + - uid: 46 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 +- proto: FloorTileItemElevatorShaft + entities: + - uid: 26 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 110 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 +- proto: FloraRockSolid02 + entities: + - uid: 112 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 114 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 +- proto: HamtrHarness + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 +- proto: HamtrLArm + entities: + - uid: 144 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 +- proto: HonkerHarness + entities: + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 247 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: LeftArmArachnid + entities: + - uid: 152 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 8 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 +- proto: PinionAirlock + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 +- proto: PinionAirlockAssembly + entities: + - uid: 48 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 +- proto: PlushieNar + entities: + - uid: 259 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 +- proto: PlushieRatvar + entities: + - uid: 246 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 +- proto: RandomGreyStalagmite + entities: + - uid: 217 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 +- proto: RightArmVox + entities: + - uid: 146 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 +- proto: RipleyHarness + entities: + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 +- proto: RitualDagger + entities: + - uid: 245 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 +- proto: ShadowBasaltFour + entities: + - uid: 175 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 +- proto: ShadowBasaltOne + entities: + - uid: 195 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 +- proto: ShadowBasaltRandom + entities: + - uid: 174 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 +- proto: ShadowBasaltTwo + entities: + - uid: 7 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 +- proto: ShardGlassClockwork + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 +- proto: SheetBrass1 + entities: + - uid: 170 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 +- proto: SheetBrass10 + entities: + - uid: 207 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: SheetClockworkGlass1 + entities: + - uid: 232 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 +- proto: SpaceTickSpawner + entities: + - uid: 40 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 +- proto: SpawnMobCarpHolo + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 +- proto: SpawnMobCarpMagic + entities: + - uid: 216 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 +- proto: SpawnMobHellspawn + entities: + - uid: 43 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 +- proto: TableBrass + entities: + - uid: 169 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 +- proto: VimHarness + entities: + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 +- proto: WallCult + entities: + - uid: 9 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 +- proto: WallRock + entities: + - uid: 6 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 +- proto: WallRockArtifactFragment + entities: + - uid: 86 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 +- proto: WallRockBananium + entities: + - uid: 99 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: WallRockGold + entities: + - uid: 24 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 +- proto: WallRockUranium + entities: + - uid: 117 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 +- proto: WindowClockworkDirectional + entities: + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_syndi_base.yml b/Resources/Maps/Ruins/corvax_syndi_base.yml new file mode 100644 index 00000000000..2f994bb0f30 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_syndi_base.yml @@ -0,0 +1,10800 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorAsteroidSand + 7: FloorAsteroidSandDug + 8: FloorAsteroidSandRed + 9: FloorAsteroidSandUnvariantized + 44: FloorDarkPlastic + 2: FloorMining + 5: FloorMiningDark + 6: FloorMiningLight + 101: FloorShuttleRed + 135: FloorWood + 4: FloorWoodChessBlack + 156: Lattice + 157: Plating + 3: PlatingAsteroid + 160: PlatingBurnt +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -1.203125,0.9375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: nAAAAAAAZQAAAAAAnAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAACAAAAAAAAQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAABQAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAAQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAnAAAAAAAoAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnAAAAAAAnAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnAAAAAAAnAAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAnAAAAAAAnAAAAAAALAAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAACQAAAAAAAQAAAAAAAQAAAAAALAAAAAAALAAAAAAALAAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAALAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAnAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAALAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAALAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAAnQAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAnQAAAAAAoAAAAAAAoAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAnQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#808080FF' + id: BrickTileDarkCornerNe + decals: + 248: -22,13 + 253: -6,2 + - node: + color: '#AE6716FF' + id: BrickTileDarkCornerNe + decals: + 376: -14,14 + - node: + color: '#808080FF' + id: BrickTileDarkCornerNw + decals: + 157: -19,1 + 245: -26,13 + 252: -7,2 + - node: + color: '#9C2020FF' + id: BrickTileDarkCornerNw + decals: + 73: -33,11 + - node: + color: '#AE6716FF' + id: BrickTileDarkCornerNw + decals: + 375: -15,14 + - node: + color: '#808080FF' + id: BrickTileDarkCornerSe + decals: + 139: -22,-1 + 150: -22,-1 + 217: -17,11 + 233: -22,10 + 255: -6,1 + - node: + color: '#808080FF' + id: BrickTileDarkCornerSw + decals: + 133: -28,-1 + 218: -20,11 + 237: -24,10 + 254: -7,1 + - node: + color: '#9C2020FF' + id: BrickTileDarkCornerSw + decals: + 74: -33,5 + 75: -33,5 + - node: + color: '#AE6716FF' + id: BrickTileDarkEndE + decals: + 361: -13,17 + - node: + color: '#808080FF' + id: BrickTileDarkEndN + decals: + 148: -21,1 + - node: + color: '#808080FF' + id: BrickTileDarkEndS + decals: + 149: -21,0 + - node: + color: '#AE6716FF' + id: BrickTileDarkEndW + decals: + 362: -15,17 + - node: + color: '#808080FF' + id: BrickTileDarkInnerNe + decals: + 142: -27,0 + 181: -9,2 + 194: -8,6 + 196: -9,6 + 215: -14,12 + 227: -20,12 + 230: -18,12 + 232: -19,12 + 249: -22,12 + 250: -24,13 + - node: + color: '#808080FF' + id: BrickTileDarkInnerNw + decals: + 131: -28,3 + 154: -19,0 + 175: -10,1 + 188: -10,4 + 193: -10,8 + 206: -10,12 + 216: -15,12 + 228: -17,12 + 229: -19,12 + 231: -18,12 + 251: -24,13 + - node: + color: '#9C2020FF' + id: BrickTileDarkInnerNw + decals: + 76: -33,10 + 77: -32,11 + - node: + color: '#808080FF' + id: BrickTileDarkInnerSe + decals: + 151: -22,0 + 172: -17,0 + 178: -9,0 + 180: -9,1 + 183: -9,4 + 184: -8,5 + 234: -22,11 + 235: -23,10 + 240: -26,12 + - node: + color: '#808080FF' + id: BrickTileDarkInnerSw + decals: + 132: -28,0 + 173: -17,0 + 174: -10,0 + 177: -9,0 + 187: -10,4 + 192: -10,8 + 205: -10,11 + 236: -23,10 + 238: -25,12 + 239: -26,12 + 242: -24,12 + - node: + color: '#9C2020FF' + id: BrickTileDarkInnerSw + decals: + 78: -33,6 + 79: -32,5 + - node: + color: '#808080FF' + id: BrickTileDarkLineE + decals: + 130: -27,3 + 140: -27,2 + 141: -27,1 + 179: -9,0 + 182: -9,3 + 197: -9,7 + 198: -9,8 + 199: -9,9 + 200: -9,10 + 201: -9,11 + 202: -9,12 + 224: -17,12 + - node: + color: '#808080FF' + id: BrickTileDarkLineN + decals: + 143: -26,0 + 144: -25,0 + 145: -24,0 + 146: -23,0 + 147: -22,0 + 153: -20,0 + 158: -18,1 + 159: -17,1 + 160: -16,1 + 161: -15,1 + 162: -15,1 + 163: -14,1 + 164: -13,1 + 165: -12,1 + 195: -8,6 + 212: -11,12 + 213: -12,12 + 214: -13,12 + 220: -16,12 + 221: -21,12 + 246: -25,13 + 247: -23,13 + - node: + color: '#AE6716FF' + id: BrickTileDarkLineN + decals: + 364: -14,17 + - node: + color: '#808080FF' + id: BrickTileDarkLineS + decals: + 134: -27,-1 + 135: -26,-1 + 136: -25,-1 + 137: -24,-1 + 138: -23,-1 + 152: -20,0 + 155: -19,0 + 156: -18,0 + 166: -16,0 + 167: -15,0 + 168: -14,0 + 169: -14,0 + 170: -12,0 + 171: -13,0 + 176: -10,0 + 207: -11,11 + 208: -12,11 + 209: -13,11 + 210: -14,11 + 211: -15,11 + 219: -16,11 + 222: -21,11 + 225: -19,11 + 226: -18,11 + 241: -25,12 + - node: + color: '#AE6716FF' + id: BrickTileDarkLineS + decals: + 363: -14,17 + - node: + color: '#808080FF' + id: BrickTileDarkLineW + decals: + 185: -10,2 + 186: -10,3 + 189: -10,5 + 190: -10,6 + 191: -10,7 + 203: -10,9 + 204: -10,10 + 223: -20,12 + 243: -24,11 + 244: -26,12 + - node: + color: '#639137FF' + id: BrickTileSteelBox + decals: + 276: -9,-6 + - node: + color: '#446326FF' + id: BrickTileSteelCornerNe + decals: + 280: -10,-4 + - node: + color: '#571212FF' + id: BrickTileSteelCornerNe + decals: + 121: -18,8 + - node: + color: '#774194FF' + id: BrickTileSteelCornerNe + decals: + 256: -15,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerNe + decals: + 93: -28,11 + 106: -22,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerNe + decals: + 359: -12,16 + - node: + color: '#446326FF' + id: BrickTileSteelCornerNw + decals: + 279: -11,-4 + - node: + color: '#571212FF' + id: BrickTileSteelCornerNw + decals: + 118: -20,8 + - node: + color: '#639137FF' + id: BrickTileSteelCornerNw + decals: + 296: -2,9 + - node: + color: '#774194FF' + id: BrickTileSteelCornerNw + decals: + 257: -19,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerNw + decals: + 53: -34,12 + 54: -35,11 + 61: -36,10 + 107: -24,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerNw + decals: + 368: -17,16 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNw + decals: + 2: -1,-2 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNw + decals: + 3: -1,-2 + - node: + color: '#446326FF' + id: BrickTileSteelCornerSe + decals: + 281: -10,-5 + - node: + color: '#571212FF' + id: BrickTileSteelCornerSe + decals: + 125: -18,4 + - node: + color: '#639137FF' + id: BrickTileSteelCornerSe + decals: + 310: -1,6 + 313: -2,5 + - node: + color: '#774194FF' + id: BrickTileSteelCornerSe + decals: + 262: -16,-4 + 263: -15,-3 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSe + decals: + 102: -26,5 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerSe + decals: + 356: -12,14 + - node: + color: '#571212FF' + id: BrickTileSteelCornerSw + decals: + 126: -20,4 + - node: + color: '#774194FF' + id: BrickTileSteelCornerSw + decals: + 258: -19,-3 + 259: -18,-4 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSw + decals: + 51: -34,4 + 52: -35,5 + 62: -36,6 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerSw + decals: + 369: -17,15 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSw + decals: + 4: -1,-4 + - node: + color: '#446326FF' + id: BrickTileSteelEndE + decals: + 290: -11,-2 + - node: + color: '#639137FF' + id: BrickTileSteelEndE + decals: + 292: -5,4 + - node: + color: '#9C2020FF' + id: BrickTileSteelEndE + decals: + 44: -32,12 + 50: -32,4 + - node: + color: '#446326FF' + id: BrickTileSteelEndN + decals: + 285: -13,-3 + - node: + color: '#639137FF' + id: BrickTileSteelEndN + decals: + 294: 0,9 + - node: + color: '#446326FF' + id: BrickTileSteelEndS + decals: + 278: -11,-6 + 284: -13,-6 + - node: + color: '#639137FF' + id: BrickTileSteelEndS + decals: + 295: 0,8 + - node: + color: '#446326FF' + id: BrickTileSteelEndW + decals: + 291: -12,-2 + - node: + color: '#639137FF' + id: BrickTileSteelEndW + decals: + 293: -6,4 + - node: + color: '#639137FF' + id: BrickTileSteelInnerNe + decals: + 305: -6,6 + - node: + color: '#774194FF' + id: BrickTileSteelInnerNe + decals: + 265: -17,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNe + decals: + 57: -34,4 + 94: -28,10 + 111: -22,7 + 112: -23,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerNe + decals: + 360: -13,16 + - node: + color: '#571212FF' + id: BrickTileSteelInnerNw + decals: + 117: -20,7 + - node: + color: '#639137FF' + id: BrickTileSteelInnerNw + decals: + 271: -9,-2 + 300: -2,6 + 304: -6,6 + - node: + color: '#774194FF' + id: BrickTileSteelInnerNw + decals: + 266: -17,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNw + decals: + 55: -34,11 + 60: -35,10 + 86: -29,6 + 92: -29,9 + 96: -26,10 + 114: -23,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerNw + decals: + 365: -16,16 + 366: -15,16 + 374: -13,14 + - node: + color: '#446326FF' + id: BrickTileSteelInnerSe + decals: + 283: -11,-5 + - node: + color: '#639137FF' + id: BrickTileSteelInnerSe + decals: + 307: -5,5 + 308: -1,8 + 314: -2,6 + - node: + color: '#774194FF' + id: BrickTileSteelInnerSe + decals: + 264: -16,-3 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSe + decals: + 56: -34,12 + 105: -27,5 + 113: -24,7 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerSe + decals: + 373: -14,15 + - node: + color: '#571212FF' + id: BrickTileSteelInnerSw + decals: + 116: -20,7 + - node: + color: '#639137FF' + id: BrickTileSteelInnerSw + decals: + 306: -6,5 + - node: + color: '#774194FF' + id: BrickTileSteelInnerSw + decals: + 260: -18,-3 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSw + decals: + 58: -34,5 + 59: -35,6 + 87: -29,9 + 104: -28,6 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerSw + decals: + 371: -15,15 + 372: -13,15 + - node: + color: '#446326FF' + id: BrickTileSteelLineE + decals: + 288: -13,-4 + 289: -13,-5 + - node: + color: '#571212FF' + id: BrickTileSteelLineE + decals: + 122: -18,7 + 123: -18,6 + 124: -18,5 + - node: + color: '#639137FF' + id: BrickTileSteelLineE + decals: + 272: -9,-2 + 273: -9,-3 + 274: -9,-4 + 275: -9,-5 + 309: -1,7 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineE + decals: + 66: -34,5 + 67: -34,6 + 68: -34,7 + 69: -34,8 + 70: -34,9 + 71: -34,10 + 72: -34,11 + 97: -26,10 + 98: -26,9 + 99: -26,8 + 100: -26,7 + 101: -26,6 + - node: + color: '#AE6716FF' + id: BrickTileSteelLineE + decals: + 358: -12,15 + - node: + color: '#571212FF' + id: BrickTileSteelLineN + decals: + 119: -19,8 + 120: -19,8 + - node: + color: '#639137FF' + id: BrickTileSteelLineN + decals: + 269: -10,-2 + 270: -10,-2 + 297: -1,9 + 301: -3,6 + 302: -4,6 + 303: -5,6 + - node: + color: '#774194FF' + id: BrickTileSteelLineN + decals: + 267: -18,-2 + 268: -16,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineN + decals: + 45: -33,12 + 46: -33,12 + 49: -33,4 + 81: -30,9 + 82: -30,6 + 95: -27,10 + - node: + color: '#AE6716FF' + id: BrickTileSteelLineN + decals: + 367: -16,16 + - node: + color: '#571212FF' + id: BrickTileSteelLineS + decals: + 128: -19,4 + - node: + color: '#639137FF' + id: BrickTileSteelLineS + decals: + 277: -12,-6 + 311: -4,5 + 312: -3,5 + - node: + color: '#774194FF' + id: BrickTileSteelLineS + decals: + 261: -17,-4 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineS + decals: + 47: -33,12 + 48: -33,4 + 83: -30,6 + 84: -29,6 + 85: -30,9 + 109: -23,7 + 110: -22,7 + - node: + color: '#AE6716FF' + id: BrickTileSteelLineS + decals: + 357: -13,14 + 370: -16,15 + - node: + color: '#446326FF' + id: BrickTileSteelLineW + decals: + 282: -11,-5 + 286: -13,-4 + 287: -13,-5 + - node: + color: '#571212FF' + id: BrickTileSteelLineW + decals: + 115: -20,6 + 127: -20,5 + - node: + color: '#639137FF' + id: BrickTileSteelLineW + decals: + 298: -2,8 + 299: -2,7 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineW + decals: + 63: -36,7 + 64: -36,8 + 65: -36,9 + 88: -29,8 + 89: -29,7 + 90: -29,10 + 91: -29,11 + 103: -28,5 + 108: -24,7 + - node: + color: '#37789BFF' + id: BrickTileWhiteBox + decals: + 327: -9,14 + 337: -4,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerNe + decals: + 329: -9,15 + 339: -3,14 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerNe + decals: + 377: -21,17 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerNw + decals: + 326: -10,15 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerNw + decals: + 394: -26,17 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerSe + decals: + 344: -3,11 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerSe + decals: + 379: -21,15 + 380: -21,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerSw + decals: + 330: -10,14 + 348: -7,11 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerSw + decals: + 393: -26,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteEndE + decals: + 341: -2,12 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerNe + decals: + 333: -10,14 + 338: -4,14 + 342: -3,12 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerSe + decals: + 331: -10,15 + 343: -3,12 + - node: + color: '#571212FF' + id: BrickTileWhiteInnerSe + decals: + 392: -24,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerSw + decals: + 332: -9,15 + 351: -7,14 + - node: + color: '#571212FF' + id: BrickTileWhiteInnerSw + decals: + 391: -24,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineE + decals: + 340: -3,13 + - node: + color: '#571212FF' + id: BrickTileWhiteLineE + decals: + 378: -21,16 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineN + decals: + 334: -7,15 + 335: -6,15 + 336: -5,15 + - node: + color: '#571212FF' + id: BrickTileWhiteLineN + decals: + 384: -25,17 + 385: -24,17 + 386: -23,17 + 387: -23,17 + 388: -23,17 + 389: -22,17 + 390: -22,17 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineS + decals: + 345: -4,11 + 346: -5,11 + 347: -6,11 + - node: + color: '#571212FF' + id: BrickTileWhiteLineS + decals: + 381: -22,15 + 382: -23,15 + 383: -25,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineW + decals: + 349: -7,12 + 350: -7,13 + - node: + color: '#571212FF' + id: BrickTileWhiteLineW + decals: + 395: -26,16 + - node: + color: '#FFFFFF3E' + id: CheckerNWSE + decals: + 315: -6,8 + 316: -6,9 + 317: -5,8 + 318: -5,9 + 319: -4,8 + 320: -4,9 + 321: -3,9 + 322: -3,8 + 323: -3,7 + 324: -4,7 + 325: -6,7 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 0: -2,-3 + - node: + cleanable: True + color: '#FFFFFF84' + id: Dirt + decals: + 5: 0,-3 + 6: 1,-3 + 7: 0,-2 + 8: 0,-4 + 9: -1,-3 + 10: -1,-2 + 11: -1,-3 + 12: -1,-2 + 13: 0,-2 + 14: 0,-2 + 15: -1,-3 + 16: -1,-3 + 17: 0,-3 + 18: 1,-4 + 19: 2,-4 + 20: 2,-4 + 21: 1,-2 + 22: 0,-6 + 23: 0,-6 + 24: 2,-6 + 25: 1,-7 + 26: 1,-7 + 27: 0,-7 + 28: 2,-6 + 29: 0,-9 + 30: 2,-9 + 31: 1,-10 + 32: 1,-10 + 33: 2,-9 + 34: 1,-9 + 35: -1,-9 + 36: 3,-4 + 37: 0,-3 + 38: -1,-2 + 39: 0,-3 + 40: 1,-4 + 41: -1,-3 + 42: 0,-1 + 43: 1,-1 + - node: + cleanable: True + color: '#FFFFFF95' + id: Dirt + decals: + 396: -27,5 + 397: -27,6 + 398: -27,8 + 399: -27,8 + 400: -27,9 + 401: -28,7 + 402: -28,5 + 403: -27,5 + 404: -26,6 + 405: -26,7 + 406: -27,8 + 407: -27,9 + 408: -28,9 + 409: -29,9 + 410: -28,8 + 411: -29,6 + 412: -30,6 + 413: -28,2 + 414: -28,2 + 415: -28,2 + 416: -27,1 + 417: -28,0 + 418: -27,2 + 419: -26,4 + 420: -27,2 + 421: -27,2 + 422: -27,0 + 423: -27,-1 + 424: -25,-1 + 425: -23,0 + 426: -23,0 + 427: -24,-1 + 428: -25,-1 + 429: -26,-1 + 430: -23,13 + 431: -22,11 + 432: -23,10 + 433: -24,11 + 434: -24,13 + 435: -25,13 + 436: -26,13 + 437: -24,12 + 438: -23,11 + 439: -24,12 + 440: -26,12 + 441: -22,16 + 442: -22,16 + 443: -23,16 + 444: -23,17 + 445: -26,16 + 446: -25,16 + 447: -26,16 + 448: -24,16 + 449: -25,17 + 450: -25,16 + 451: -24,16 + 452: -23,16 + 453: -21,15 + 454: -22,16 + 455: -22,16 + 456: -24,15 + 457: -24,15 + 458: -32,8 + 459: -32,7 + 460: -33,5 + 461: -33,8 + 462: -33,10 + 463: -34,11 + 464: -34,9 + 465: -35,8 + 466: -34,7 + 467: -34,6 + 468: -35,5 + 469: -33,6 + 470: -34,9 + 471: -34,9 + 472: -34,7 + 473: -32,6 + 474: -34,6 + 475: -33,8 + 476: -34,11 + 477: -33,11 + 478: -19,12 + 479: -20,12 + 480: -19,11 + 481: -18,12 + 482: -17,12 + 483: -18,13 + 484: -18,12 + 485: -18,12 + 486: -20,12 + 487: -20,12 + 488: -13,12 + 489: -12,12 + 490: -11,12 + 491: -10,12 + 492: -12,11 + 493: -15,12 + 494: -15,12 + 495: -14,12 + 496: -11,11 + 497: -11,11 + 498: -10,11 + 499: -10,11 + 500: -10,9 + 501: -9,8 + 502: -9,9 + 503: -9,11 + 504: -9,12 + 505: -10,12 + 506: -10,12 + 507: -10,12 + 508: -15,15 + 509: -14,15 + 510: -14,14 + 511: -13,15 + 512: -14,16 + 513: -16,16 + 514: -17,16 + 515: -18,16 + 516: -16,16 + 517: -14,16 + 518: -13,16 + 519: -14,15 + 520: -13,15 + 521: -14,14 + 522: -7,13 + 523: -7,12 + 524: -4,13 + 525: -4,12 + 526: -3,13 + 527: -4,13 + 528: -5,12 + 529: -5,12 + 530: -4,12 + 531: -6,13 + 532: -6,14 + 533: -6,14 + 534: -6,15 + 535: -7,15 + 536: -5,13 + 537: -4,13 + 538: -3,11 + 539: -5,12 + 540: -6,12 + 541: -7,12 + 542: -5,12 + 543: -6,13 + 544: -7,13 + 545: -6,13 + 546: -5,12 + 547: -6,12 + 548: -6,11 + 549: -6,13 + 550: -4,13 + 551: -3,12 + 552: -3,12 + 553: -2,8 + 554: -2,8 + 555: -2,8 + 556: -2,7 + 557: -2,6 + 558: -3,6 + 559: -5,6 + 560: -5,6 + 561: -6,5 + 562: -4,5 + 563: -4,8 + 564: -5,8 + 565: -6,8 + 566: -6,8 + 567: -1,9 + 568: -1,8 + 569: -1,7 + 570: -2,6 + 571: -8,6 + 572: -9,5 + 573: -10,5 + 574: -9,4 + 575: -10,3 + 576: -10,2 + 577: -10,2 + 578: -10,1 + 579: -9,1 + 580: -6,2 + 581: -7,2 + 582: -7,1 + 583: -13,0 + 584: -13,0 + 585: -17,1 + 586: -17,0 + 587: -15,1 + 588: -13,0 + 589: -12,0 + 590: -16,-2 + 591: -16,-2 + 592: -17,-2 + 593: -12,-4 + 594: -12,-4 + 595: -12,-5 + 596: -11,-3 + 597: -11,-3 + 598: -24,3 + 599: -24,3 + 600: -19,6 + 601: -18,7 + 602: -19,8 + 603: -19,6 + 604: -19,5 + 605: -19,5 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 1: -1,-3 + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,9.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,6.5 + parent: 1 +- proto: AirlockSyndicateLocked + entities: + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,13.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,13.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,14.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 1 +- proto: AirlockSyndicateNukeopGlassLocked + entities: + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,9.5 + parent: 1 +- proto: AirlockSyndicateNukeopLocked + entities: + - uid: 27 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,7.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -25.5,14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,11.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,16.5 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 41 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: -2.5,22.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: -9.5,20.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: -10.5,20.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: -8.5,27.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: -8.5,26.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: -9.5,26.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: -9.5,27.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: -7.5,28.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: -4.5,29.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: -5.5,29.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: -8.5,24.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: -12.5,20.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: -20.5,20.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: -17.5,20.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: -16.5,21.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: -18.5,20.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: -16.5,20.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: -15.5,21.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: -15.5,20.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: -16.5,24.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: -15.5,24.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: -14.5,24.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: -14.5,23.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: -16.5,23.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: -14.5,25.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: -13.5,24.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: -16.5,22.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: -18.5,22.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: -20.5,23.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: -18.5,23.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: -19.5,23.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: -19.5,24.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: -25.5,19.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: -24.5,19.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: -23.5,21.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: -23.5,20.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + pos: -23.5,19.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: -22.5,21.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: -22.5,19.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + pos: -21.5,19.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: -20.5,19.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: -27.5,24.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: -27.5,22.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: -26.5,24.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: -26.5,23.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: -27.5,23.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: -25.5,23.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: -24.5,24.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: -24.5,22.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: -23.5,24.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: -23.5,23.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: -23.5,22.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: -24.5,23.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + pos: -22.5,22.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: -29.5,22.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: -29.5,20.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: -28.5,22.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: -28.5,21.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: -28.5,20.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: -29.5,21.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: -28.5,18.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: -29.5,18.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: -31.5,19.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: -30.5,20.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: -30.5,21.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: -33.5,23.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: -32.5,23.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: -32.5,22.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: -31.5,23.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: -31.5,22.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: -33.5,22.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: -32.5,21.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: -33.5,21.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: -32.5,15.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: -31.5,15.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: -30.5,17.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: -30.5,16.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: -30.5,15.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: -34.5,15.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: -33.5,14.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: -34.5,14.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -32.5,14.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -38.5,14.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -37.5,16.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -37.5,14.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -38.5,15.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -36.5,14.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -39.5,9.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -37.5,5.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -38.5,3.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -38.5,2.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -37.5,3.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -36.5,0.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -36.5,12.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - uid: 1706 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - uid: 1707 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 1708 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 1716 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 1717 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 1718 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 + - uid: 1720 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 1722 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 1723 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 101 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 +- proto: AsteroidRockBananium + entities: + - uid: 1400 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 +- proto: AsteroidRockCoal + entities: + - uid: 151 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1 +- proto: AsteroidRockGold + entities: + - uid: 1488 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: -9.5,25.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: -20.5,21.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: -19.5,21.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: -18.5,21.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: -17.5,21.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: -19.5,22.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: -20.5,22.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: -21.5,22.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: -27.5,21.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: -26.5,21.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: -25.5,21.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: -25.5,20.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: -24.5,20.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + pos: -24.5,21.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: -21.5,21.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + pos: -21.5,20.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: -25.5,22.5 + parent: 1 +- proto: AsteroidRockPlasma + entities: + - uid: 1436 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: -22.5,20.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: -25.5,24.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -37.5,0.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -33.5,1.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -33.5,0.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 1 +- proto: AsteroidRockQuartz + entities: + - uid: 1080 + components: + - type: Transform + pos: -38.5,16.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: -19.5,20.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: -17.5,22.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: -26.5,22.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: -29.5,19.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: -30.5,18.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: -31.5,18.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + pos: -30.5,19.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: -32.5,17.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: -31.5,17.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: -31.5,16.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: -32.5,16.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: -33.5,15.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -37.5,15.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -38.5,9.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -38.5,6.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -37.5,2.5 + parent: 1 +- proto: AsteroidRockSalt + entities: + - uid: 78 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 +- proto: AsteroidRockSilver + entities: + - uid: 1413 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 +- proto: AsteroidRockTin + entities: + - uid: 1467 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: -7.5,21.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: -9.5,21.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: -7.5,27.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: -6.5,28.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: -6.5,27.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: -5.5,28.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: -5.5,27.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 46 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 +- proto: BannerSyndicate + entities: + - uid: 162 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: -20.5,17.5 + parent: 1 +- proto: Barricade + entities: + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 1207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1 +- proto: Bed + entities: + - uid: 166 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 169 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 172 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 +- proto: BrutepackAdvanced1 + entities: + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.94998837,-2.16055 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 1.1281366,-1.2230501 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -5.611565,11.620254 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -5.34594,11.589004 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -5.59594,11.276504 + parent: 1 +- proto: C4 + entities: + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.518011,4.5462046 + parent: 1 + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.439886,4.1712046 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 180 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -13.5,16.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -18.5,16.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -18.5,17.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -14.5,11.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -18.5,12.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -26.5,2.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: -21.5,16.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: -22.5,16.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: -23.5,16.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: -24.5,16.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: -20.5,16.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: -22.5,17.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: -30.5,11.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: -32.5,11.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: -33.5,11.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: -31.5,11.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: -34.5,11.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: -34.5,10.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: -32.5,10.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: -32.5,8.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: -32.5,9.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: -32.5,5.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: -31.5,6.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: -31.5,9.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: -27.5,7.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1 +- proto: CableHV + entities: + - uid: 298 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -17.5,15.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -17.5,17.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -22.5,0.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -26.5,2.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: -26.5,5.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -26.5,10.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -26.5,11.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -28.5,11.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -25.5,11.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 +- proto: CableMV + entities: + - uid: 390 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -28.5,11.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -25.5,11.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -26.5,11.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -25.5,12.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -25.5,14.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: -25.5,13.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: -29.5,11.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -30.5,11.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -23.5,14.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -23.5,12.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -23.5,16.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -22.5,16.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -20.5,16.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -21.5,16.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,17.5 + parent: 1 +- proto: Carpet + entities: + - uid: 493 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 494 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 120 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 1 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,17.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,18.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,17.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,18.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 1 + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,15.5 + parent: 1 + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,16.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 +- proto: Chair + entities: + - uid: 530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,17.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,15.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,15.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,16.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: -25.5,9.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.49909186,-3.3099484 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.235903,4.6406918 + parent: 1 + - uid: 1232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.474327,10.668319 + parent: 1 + - uid: 1233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.489952,8.683944 + parent: 1 + - uid: 1234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.646202,6.7933187 + parent: 1 + - uid: 1235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.333702,5.6058187 + parent: 1 + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.208702,11.558944 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: -32.502407,10.543319 + parent: 1 + - uid: 1245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.533657,6.9183187 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 +- proto: CleanerDispenser + entities: + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 +- proto: ClosetJanitorFilled + entities: + - uid: 536 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 +- proto: ClothingBackpackDuffelSyndicateAmmo + entities: + - uid: 1143 + components: + - type: Transform + pos: -22.435818,5.7414713 + parent: 1 +- proto: ClothingMilitaryBackpack + entities: + - uid: 1253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.361782,7.5901937 + parent: 1 +- proto: ClothingNeckSyndicakePin + entities: + - uid: 1172 + components: + - type: Transform + pos: -21.284945,4.876569 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: -21.33182,5.048444 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: -21.316195,5.282819 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: -21.316195,5.454694 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: -21.33182,5.579694 + parent: 1 +- proto: ClothingOuterCoatSyndieCapArmored + entities: + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.470663,0.5878024 + parent: 1 +- proto: ClothingUnderSocksCoder + entities: + - uid: 1293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.937141,-3.5511694 + parent: 1 +- proto: ClothingUniformJumpskirtElegantMaid + entities: + - uid: 1292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.269127,-3.5042944 + parent: 1 +- proto: ClothingUniformJumpsuitRepairmanSyndie + entities: + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.4055195,15.319891 + parent: 1 +- proto: Cobweb1 + entities: + - uid: 1330 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 1337 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 1 +- proto: CombatKnife + entities: + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.935198,8.670343 + parent: 1 + - uid: 1220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.474491,8.642928 + parent: 1 +- proto: ComfyChair + entities: + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 1224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 540 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,7.5 + parent: 1 +- proto: ComputerIFF + entities: + - uid: 1225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,6.5 + parent: 1 +- proto: ComputerMassMedia + entities: + - uid: 1227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 1223 + components: + - type: Transform + pos: -31.5,12.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 1226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,10.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,9.5 + parent: 1 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 1241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 542 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 +- proto: CrateTrashCartJani + entities: + - uid: 543 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 +- proto: CurtainsBlack + entities: + - uid: 544 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: -20.5,12.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 +- proto: CyberPen + entities: + - uid: 555 + components: + - type: Transform + pos: -14.282778,4.6406918 + parent: 1 +- proto: DresserFilled + entities: + - uid: 556 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 +- proto: DrinkNukieCan + entities: + - uid: 559 + components: + - type: Transform + pos: -0.75090814,-3.2318234 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 1140 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 +- proto: FireAxeFlaming + entities: + - uid: 1206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.123259,13.408037 + parent: 1 +- proto: FloorDrain + entities: + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodBoxDonut + entities: + - uid: 561 + components: + - type: Transform + pos: -0.46965814,-3.5130734 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 562 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: GeneratorRTG + entities: + - uid: 563 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1 + - type: PowerSupplier + supplyRate: 20000 + - uid: 564 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: -17.5,15.5 + parent: 1 +- proto: Grille + entities: + - uid: 569 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: -35.5,11.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: -36.5,11.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: -36.5,10.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: -36.5,9.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: -36.5,8.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: -36.5,6.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: -36.5,5.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: -36.5,7.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -35.5,5.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -34.5,12.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: -34.5,13.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1 +- proto: HappyHonkNukie + entities: + - uid: 600 + components: + - type: Transform + pos: -0.43778467,6.782116 + parent: 1 +- proto: HighSecCentralCommandLocked + entities: + - uid: 601 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 602 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.4147344,8.96334 + parent: 1 +- proto: hydroponicsTray + entities: + - uid: 606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 +- proto: JanitorialTrolley + entities: + - uid: 607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 +- proto: LandMineExplosive + entities: + - uid: 608 + components: + - type: Transform + pos: -11.063247,-2.9209385 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: -12.075996,-2.2813346 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: -12.8972845,0.3791206 + parent: 1 + - uid: 1724 + components: + - type: Transform + pos: -31.5635,1.850487 + parent: 1 + - uid: 1725 + components: + - type: Transform + pos: -38.072647,4.6179857 + parent: 1 + - uid: 1726 + components: + - type: Transform + pos: -37.760147,10.664861 + parent: 1 + - uid: 1727 + components: + - type: Transform + pos: -29.336876,16.731863 + parent: 1 + - uid: 1728 + components: + - type: Transform + pos: -28.430626,23.388113 + parent: 1 + - uid: 1729 + components: + - type: Transform + pos: -14.398483,21.565536 + parent: 1 + - uid: 1730 + components: + - type: Transform + pos: -6.4933367,25.516285 + parent: 1 + - uid: 1731 + components: + - type: Transform + pos: -1.8624139,17.935059 + parent: 1 + - uid: 1732 + components: + - type: Transform + pos: -8.190538,19.278809 + parent: 1 + - uid: 1733 + components: + - type: Transform + pos: 2.402419,12.333295 + parent: 1 + - uid: 1734 + components: + - type: Transform + pos: 2.980544,6.4529424 + parent: 1 + - uid: 1735 + components: + - type: Transform + pos: 6.496169,5.9841924 + parent: 1 + - uid: 1736 + components: + - type: Transform + pos: -6.4995937,-8.284485 + parent: 1 + - uid: 1737 + components: + - type: Transform + pos: -9.421469,-12.39386 + parent: 1 + - uid: 1738 + components: + - type: Transform + pos: -15.323654,-6.6751103 + parent: 1 + - uid: 1739 + components: + - type: Transform + pos: -22.474771,-5.541456 + parent: 1 + - uid: 1740 + components: + - type: Transform + pos: -27.724771,-3.4633312 + parent: 1 + - uid: 1741 + components: + - type: Transform + pos: -36.06919,1.9028566 + parent: 1 +- proto: LootSpawnerContraband + entities: + - uid: 610 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 +- proto: LootSpawnerContrabandHigh + entities: + - uid: 1097 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 614 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 617 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: OperatingTable + entities: + - uid: 620 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 +- proto: Paper + entities: + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.360903,4.2031918 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: -21.342056,4.41203 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: -21.685806,4.458905 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: -21.670181,4.19328 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: -21.467056,4.19328 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: -21.232681,17.720062 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: -21.545181,17.720062 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: -21.638931,17.657562 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: -21.513931,17.516937 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: -21.295181,17.407562 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 1246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,9.5 + parent: 1 +- proto: PaperBin20 + entities: + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 +- proto: PillAmbuzol + entities: + - uid: 1219 + components: + - type: Transform + pos: -25.458866,7.642928 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,13.5 + parent: 1 + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,4.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,3.5 + parent: 1 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,5.5 + parent: 1 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 1 + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,11.5 + parent: 1 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,10.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,7.5 + parent: 1 + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 1 + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,9.5 + parent: 1 + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 1 + - uid: 644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,8.5 + parent: 1 + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 1 +- proto: PlushieNuke + entities: + - uid: 1171 + components: + - type: Transform + pos: -27.338573,15.579437 + parent: 1 +- proto: PlushieSharkPink + entities: + - uid: 646 + components: + - type: Transform + pos: -13.282778,3.6094418 + parent: 1 +- proto: PlushieThrongler + entities: + - uid: 647 + components: + - type: Transform + pos: -11.450996,-5.718835 + parent: 1 +- proto: PotatoSeeds + entities: + - uid: 648 + components: + - type: Transform + pos: -5.5709844,9.46334 + parent: 1 +- proto: PowerCellHigh + entities: + - uid: 1221 + components: + - type: Transform + pos: -28.505741,8.549178 + parent: 1 +- proto: PowerCellPotato + entities: + - uid: 1222 + components: + - type: Transform + pos: -28.552616,7.658553 + parent: 1 +- proto: Poweredlight + entities: + - uid: 649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,14.5 + parent: 1 + - uid: 650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: -24.5,17.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: -24.5,17.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: -21.5,17.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,5.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -11.5,12.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + - uid: 664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 +- proto: Rack + entities: + - uid: 669 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,0.5 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 +- proto: Railing + entities: + - uid: 1392 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 +- proto: RandomCommandCorpseSpawner + entities: + - uid: 677 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 678 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 681 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: -17.5,10.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 683 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,8.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 688 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 +- proto: RCDAmmo + entities: + - uid: 690 + components: + - type: Transform + pos: -11.60024,14.620955 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: -11.553365,14.339705 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: RevolverCapGun + entities: + - uid: 1095 + components: + - type: Transform + pos: -18.284372,8.485285 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: -18.456247,8.829035 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 706 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1 +- proto: SalvageMobSpawner + entities: + - uid: 708 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: ScalpelLaser + entities: + - uid: 712 + components: + - type: Transform + pos: -3.4653883,13.886168 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 713 + components: + - type: Transform + pos: 2.6501026,-6.5253134 + parent: 1 +- proto: ShardGlassPlasma + entities: + - uid: 714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.8530402,-0.41116858 + parent: 1 + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.1499152,0.9482064 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 0.10936451,-5.154737 + parent: 1 + - uid: 717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.3281355,-6.201612 + parent: 1 + - uid: 718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.780293,-6.7732124 + parent: 1 +- proto: SheetPlasteel10 + entities: + - uid: 719 + components: + - type: Transform + pos: -11.334615,14.73033 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.3428419,-3.7786984 + parent: 1 + - uid: 721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.48346686,-1.3880734 + parent: 1 + - uid: 722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.4990919,-0.35682344 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 0.38432026,-9.330982 + parent: 1 + - uid: 724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5249453,-8.221607 + parent: 1 + - uid: 725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.3969297,-6.5653577 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 726 + components: + - type: Transform + pos: -11.13149,14.308455 + parent: 1 +- proto: SignArmory + entities: + - uid: 1304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,9.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,8.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 1 +- proto: SignConference + entities: + - uid: 1299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 1 +- proto: SignEngine + entities: + - uid: 1306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,13.5 + parent: 1 +- proto: SignJanitor + entities: + - uid: 1305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 +- proto: SignKitchen + entities: + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 1300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 +- proto: SlipocalypseClusterSoap + entities: + - uid: 727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.482246,-3.5782096 + parent: 1 +- proto: SMESBasic + entities: + - uid: 728 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1 +- proto: Soap + entities: + - uid: 729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.347953,8.507276 + parent: 1 +- proto: SoapSyndie + entities: + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.11663973,-9.592781 + parent: 1 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 731 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + - uid: 735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + - uid: 736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - uid: 738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + - uid: 740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 +- proto: SpawnMobCobraSalvage + entities: + - uid: 742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: SpawnMobSyndicateFootSoldier + entities: + - uid: 743 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,8.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: -31.5,11.5 + parent: 1 +- proto: SpiderWeb + entities: + - uid: 1331 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 1 +- proto: StimpackMini + entities: + - uid: 747 + components: + - type: Transform + pos: -1.4972596,12.728551 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: -1.3097596,12.462926 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 749 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 +- proto: SuitStorageEVASyndicate + entities: + - uid: 754 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: SuitStorageSyndie + entities: + - uid: 1144 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 +- proto: SyndicateIDCard + entities: + - uid: 755 + components: + - type: Transform + pos: -0.50090814,-1.4193234 + parent: 1 +- proto: SyndicateJawsOfLife + entities: + - uid: 756 + components: + - type: Transform + pos: -11.519238,15.677311 + parent: 1 +- proto: SyndicateMicrowave + entities: + - uid: 757 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - uid: 766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: -21.5,16.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: -21.5,17.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,8.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,7.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: -33.5,10.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: -33.5,9.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1 +- proto: TableWood + entities: + - uid: 770 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 +- proto: Telecrystal1 + entities: + - uid: 1247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.268032,10.637069 + parent: 1 + - uid: 1248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.580532,10.558944 + parent: 1 + - uid: 1249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.393032,10.465194 + parent: 1 + - uid: 1250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.627407,7.6370687 + parent: 1 + - uid: 1251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.299282,7.6370687 + parent: 1 + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.424282,7.4183187 + parent: 1 +- proto: Thruster + entities: + - uid: 776 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 +- proto: ToySword + entities: + - uid: 1093 + components: + - type: Transform + pos: -19.487497,8.797785 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: -19.174997,8.672785 + parent: 1 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.947948,14.970061 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 +- proto: VendingMachineCigs + entities: + - uid: 779 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +- proto: VendingMachineClothing + entities: + - uid: 780 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 781 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 782 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 +- proto: VendingMachineVendomat + entities: + - uid: 784 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 785 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 668 + components: + - type: Transform + pos: -29.5,8.5 + parent: 1 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,2.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - uid: 821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 1 + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 1 + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 1 + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - uid: 826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,6.5 + parent: 1 + - uid: 827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 1 + - uid: 828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 1 + - uid: 830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - uid: 832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - uid: 833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - uid: 834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - uid: 835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - uid: 836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + - uid: 845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 1 + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 1 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 1 + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 1 + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + - uid: 852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 1 + - uid: 853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 1 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 1 + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 1 + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-6.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 1 + - uid: 870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1 + - uid: 871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 1 + - uid: 872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,10.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,10.5 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 1 + - uid: 881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + - uid: 885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + - uid: 887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 1 + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 1 + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 1 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 1 + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 1 + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 1 + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 1 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 1 + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 1 + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 1 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 1 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 1 + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 1 + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 1 + - uid: 906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 1 + - uid: 908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 1 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 1 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 1 + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 1 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 1 + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + - uid: 916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-5.5 + parent: 1 + - uid: 917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 1 + - uid: 918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 1 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 1 + - uid: 920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 1 + - uid: 921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 1 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 1 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 1 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 1 + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 1 + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 1 + - uid: 927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1 + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1 + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 1 + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 1 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 1 + - uid: 932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,14.5 + parent: 1 + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,14.5 + parent: 1 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,14.5 + parent: 1 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,14.5 + parent: 1 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 1 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 1 + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 1 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,19.5 + parent: 1 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 1 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 1 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 1 + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,19.5 + parent: 1 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,19.5 + parent: 1 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 1 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,19.5 + parent: 1 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 1 + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 1 + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 1 + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,18.5 + parent: 1 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 1 + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 1 + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + - uid: 955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,14.5 + parent: 1 + - uid: 956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,13.5 + parent: 1 + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 1 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 1 + - uid: 959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 1 + - uid: 960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 1 + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,10.5 + parent: 1 + - uid: 962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,10.5 + parent: 1 + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,10.5 + parent: 1 + - uid: 964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,10.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 1 + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,9.5 + parent: 1 + - uid: 967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1 + - uid: 968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 1 + - uid: 969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 1 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 1 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 1 + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,7.5 + parent: 1 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 1 + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 1 + - uid: 979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,3.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 1 + - uid: 981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1 + - uid: 982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 1 + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 1 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 1 + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 1 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 1 + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 1 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,6.5 + parent: 1 + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 1 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 1 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 1 + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,2.5 + parent: 1 + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 1 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 1 + - uid: 997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,1.5 + parent: 1 + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 1 + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,3.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-1.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-0.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-0.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,14.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,14.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,14.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,14.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,14.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,15.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,16.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,17.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,17.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,17.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,18.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,18.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,18.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,18.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,18.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,12.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,14.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,14.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,12.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,12.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,12.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,2.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,3.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,4.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,10.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,7.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,13.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,12.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,4.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,16.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,15.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -29.5,7.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: -29.5,11.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: -29.5,10.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,11.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 1068 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 +- proto: WaterTankHighCapacity + entities: + - uid: 1072 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 +- proto: WeaponBaguette + entities: + - uid: 1088 + components: + - type: Transform + pos: -17.378122,4.641535 + parent: 1 +- proto: WeaponCroissant + entities: + - uid: 1091 + components: + - type: Transform + pos: -17.518747,4.735285 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: -17.315622,4.516535 + parent: 1 +- proto: WeaponLaserGun + entities: + - uid: 1089 + components: + - type: Transform + pos: -18.534372,4.25091 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: -18.534372,4.62591 + parent: 1 +- proto: WeaponPistolCobra + entities: + - uid: 1142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.717068,5.1477213 + parent: 1 +- proto: WeaponPistolViper + entities: + - uid: 1074 + components: + - type: Transform + pos: -14.025785,16.218596 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: -4.8091383,12.370543 + parent: 1 +- proto: WeaponRevolverPython + entities: + - uid: 1087 + components: + - type: Transform + pos: -18.456247,8.53216 + parent: 1 +- proto: WeaponShotgunBulldog + entities: + - uid: 1146 + components: + - type: Transform + pos: -23.107693,4.1633463 + parent: 1 +- proto: WeaponSniperMosin + entities: + - uid: 1141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.592068,5.4914713 + parent: 1 + - uid: 1255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.408657,8.277694 + parent: 1 + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.533657,11.152694 + parent: 1 +- proto: WeaponTurretSyndicate + entities: + - uid: 1076 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,7.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,12.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,29.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 1694 + components: + - type: Transform + pos: -35.5,3.5 + parent: 1 + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + - uid: 1742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 1 + - uid: 1743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,22.5 + parent: 1 + - uid: 1744 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 1745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + - uid: 1746 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1 +- proto: WeaponTurretSyndicateDisposable + entities: + - uid: 1077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_ussp_asteroid.yml b/Resources/Maps/Ruins/corvax_ussp_asteroid.yml new file mode 100644 index 00000000000..0dc76ef3e21 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_ussp_asteroid.yml @@ -0,0 +1,14544 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 1: FloorAsteroidTile + 2: FloorGrayConcreteMono + 113: FloorSteelDirty + 4: FloorTechMaint3 + 3: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: "" + - type: Transform + pos: 1.8041825,-0.32618448 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: cQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#5712128A' + id: dot + decals: + 201: 16.97999,-11.883357 + 202: 16.695269,-11.945857 + 203: 16.47999,-11.945857 + 204: 16.334158,-11.938912 + 205: 18.327213,-12.300024 + 206: 18.313324,-12.293079 + 207: 18.257769,-12.265302 + 208: 18.271658,-12.216691 + 209: 18.382769,-12.327802 + 210: 18.36888,-12.369469 + 211: 18.22999,-12.369469 + 212: 18.174435,-12.355579 + 213: 18.299435,-12.404191 + 214: 18.341103,-12.397246 + 215: 18.30638,-12.306969 + 216: 18.24388,-12.237524 + 217: 18.278603,-12.216691 + 218: 18.41749,-12.334746 + 219: 18.47999,-12.390302 + 220: 18.507769,-12.404191 + 221: 18.514713,-12.425024 + 222: 18.348047,-12.293079 + 223: 18.22999,-12.223635 + 224: 18.05638,-12.147246 + 225: 17.97999,-12.181969 + 226: 17.952213,-12.300024 + 227: 18.271658,-12.355579 + 228: 18.285547,-12.369469 + 229: 18.424435,-12.452802 + 230: 18.466103,-12.466691 + 231: 18.382769,-12.272246 + 232: 18.29249,-12.188912 + 233: 18.22999,-12.161135 + 234: 18.375824,-12.286135 + 235: 18.459158,-12.348635 + 236: 18.528603,-12.390302 + 237: 18.598047,-12.411135 + 238: 18.271658,-12.161135 + 239: 18.153603,-12.070857 + 240: 18.500824,-12.306969 + - node: + cleanable: True + angle: -0.4363323129985824 rad + color: '#5712128A' + id: line + decals: + 191: 12.612871,-10.092506 + 192: 12.972246,-9.701881 + - node: + cleanable: True + color: '#5712128A' + id: line + decals: + 184: 11.581621,-12.717506 + 185: 11.769121,-11.920631 + 186: 11.628496,-12.108131 + 187: 11.722246,-13.186256 + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#5712128A' + id: line + decals: + 196: 19.021921,-13.561256 + 197: 19.006296,-13.951881 + 198: 18.975046,-12.764381 + 199: 18.662546,-12.561256 + 200: 18.881296,-12.748756 + - node: + cleanable: True + angle: 0.4363323129985824 rad + color: '#5712128A' + id: line + decals: + 188: 12.190996,-14.764381 + 189: 12.065996,-14.764381 + 190: 12.190996,-14.326881 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#5712128A' + id: line + decals: + 193: 16.053171,-11.967506 + 194: 16.740671,-12.139381 + 195: 16.412546,-12.076881 + - node: + cleanable: True + color: '#5712128A' + id: splatter + decals: + 95: 19.97552,-15.266568 + 96: 19.866144,-15.094693 + 97: 19.69427,-15.016568 + 98: 19.616144,-14.954068 + 99: 19.35052,-14.797818 + 100: 19.303644,-14.782193 + 101: 19.116144,-14.579068 + 102: 19.053644,-14.110318 + 103: 19.334894,-14.313443 + 104: 19.522394,-14.672818 + 105: 19.75677,-14.844693 + 106: 19.88177,-15.079068 + 114: 12.491144,-15.563443 + 115: 12.928644,-15.532193 + 116: 12.991144,-15.422818 + 117: 12.413019,-15.188443 + 118: 12.616144,-15.672818 + 119: 12.647394,-15.829068 + 120: 12.538019,-15.204068 + 121: 11.975519,-14.329068 + 122: 11.834894,-13.969693 + 123: 11.725519,-13.719693 + 124: 11.553644,-13.360318 + 125: 12.444269,-10.844693 + 126: 12.194269,-10.860318 + 127: 12.084894,-10.954068 + 128: 11.959894,-11.282193 + 129: 11.850519,-11.500943 + 130: 12.147394,-11.094693 + 131: 12.413019,-10.313443 + 132: 18.959894,-13.110318 + 133: 18.522394,-12.563443 + 134: 18.22552,-12.235318 + 135: 17.928644,-12.219693 + 136: 17.897394,-12.219693 + 137: 17.78802,-12.250943 + 138: 17.31927,-12.250943 + 139: 16.834894,-12.204068 + 140: 17.897394,-12.235318 + 141: 17.31927,-12.172818 + 142: 17.19427,-12.172818 + 143: 17.772394,-12.141568 + 144: 17.584894,-11.829068 + 145: 18.053644,-11.891568 + 146: 15.897394,-11.875943 + 147: 15.819269,-11.688443 + 148: 15.506769,-11.547818 + 149: 15.241144,-11.407193 + 150: 13.100519,-8.360318 + 151: 13.100519,-8.407193 + 152: 13.194269,-8.797818 + 153: 13.116144,-9.141568 + 154: 11.569269,-13.641568 + 155: 11.506769,-13.235318 + 156: 11.881769,-14.188443 + 157: 15.006769,-12.391568 + 158: 15.194269,-12.375943 + 159: 15.491144,-12.032193 + 160: 15.709894,-11.985318 + 161: 14.881769,-12.282193 + 162: 15.006769,-12.688443 + 163: 14.991144,-12.766568 + 164: 13.038019,-15.672818 + 165: 12.522394,-15.860318 + 166: 12.178644,-15.954068 + 167: 12.288019,-16.063442 + 168: 12.897394,-16.157192 + 169: 13.538019,-16.329067 + 170: 13.413019,-15.672818 + 171: 13.538019,-15.547818 + 172: 13.647394,-15.532193 + 173: 12.959894,-15.907193 + 174: 12.897394,-15.657193 + 175: 12.897394,-15.657193 + 176: 19.491144,-15.563443 + 177: 19.897394,-15.563443 + 178: 20.303644,-15.579068 + 179: 20.41302,-15.250943 + 180: 20.25677,-15.000943 + 181: 19.491144,-15.250943 + 182: 19.678644,-15.313443 + 183: 19.85052,-15.344693 + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#571212FF' + id: splatter + decals: + 241: 12.952198,-16.105064 + 242: 12.584143,-16.167564 + 243: 13.264698,-15.931455 + 244: 13.424421,-15.771732 + 245: 19.52165,-15.285621 + 246: 20.185156,-15.36201 + 247: 19.84488,-15.466177 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,1: + 0: 30513 + -1,0: + 0: 50246 + -1,1: + 0: 35020 + 0,2: + 0: 206 + 1,2: + 0: 3313 + 2,2: + 0: 4352 + 2,3: + 0: 15 + 3,3: + 0: 50723 + 3,0: + 0: 110 + 3,2: + 0: 8192 + 3,-1: + 0: 17479 + 4,0: + 0: 3 + 4,3: + 0: 61440 + 1,-4: + 0: 2184 + 1,-3: + 0: 8 + 2,-4: + 0: 35771 + 2,-3: + 0: 15247 + 3,-4: + 0: 65535 + 3,-3: + 0: 4095 + 3,-2: + 0: 12287 + 3,-5: + 0: 12286 + 4,-4: + 0: 7645 + 4,-3: + 0: 52511 + 4,-1: + 0: 57344 + 5,0: + 0: 15 + 5,3: + 0: 4096 + 5,-1: + 0: 12288 + 5,4: + 0: 15 + 6,0: + 0: 241 + 6,4: + 0: 7 + 6,3: + 0: 60416 + 7,0: + 0: 12248 + 7,3: + 0: 65424 + 7,-1: + 0: 34952 + 8,0: + 0: 4972 + 8,1: + 0: 199 + 8,3: + 0: 254 + 4,-2: + 0: 238 + 5,-4: + 0: 819 + 5,-3: + 0: 30465 + 5,-2: + 0: 119 + 7,-3: + 0: 19584 + 7,-2: + 0: 51396 + 8,-3: + 0: 23 + 8,-2: + 0: 1992 + 4,-5: + 0: 272 + 6,-8: + 0: 34952 + 6,-7: + 0: 136 + 6,-9: + 0: 36044 + 7,-8: + 0: 4369 + 7,-7: + 0: 25395 + 7,-9: + 0: 4368 + 7,-6: + 0: 36044 + 8,-6: + 0: 4352 + 8,-5: + 0: 28467 + 8,2: + 0: 32768 + 9,0: + 0: 3 + 9,1: + 0: 33040 + 9,2: + 0: 65256 + 9,3: + 0: 31 + 10,1: + 0: 64640 + 10,2: + 0: 16383 + 11,0: + 0: 63488 + 11,1: + 0: 65535 + 11,2: + 0: 63 + 12,0: + 0: 65472 + 12,1: + 0: 13183 + 8,-4: + 0: 51406 + 9,-4: + 0: 62256 + 9,-2: + 0: 17 + 9,-5: + 0: 52224 + 9,-3: + 0: 136 + 10,-4: + 0: 4096 + 10,-3: + 0: 61713 + 10,-5: + 0: 8191 + 10,-2: + 0: 8 + 11,-2: + 0: 1 + -2,-2: + 0: 2176 + -1,-2: + 0: 4352 + -1,-1: + 0: 25393 + 10,-6: + 0: 65228 + 11,-6: + 0: 13311 + 11,-5: + 0: 307 + 11,-7: + 0: 64512 + 12,-7: + 0: 4915 + 12,-6: + 0: 1 + 13,0: + 0: 6143 + 13,1: + 0: 1 + 13,-1: + 0: 64652 + 13,-2: + 0: 34816 + 14,-2: + 0: 32728 + 14,-1: + 0: 279 + 15,-3: + 0: 65228 + 15,-2: + 0: 887 + 15,-4: + 0: 52352 + 16,-4: + 0: 4403 + 16,-3: + 0: 1 + 12,-8: + 0: 30436 + 12,-9: + 0: 52352 + 14,-8: + 0: 34952 + 14,-7: + 0: 136 + 14,-9: + 0: 35020 + 15,-8: + 0: 29491 + 15,-7: + 0: 52471 + 15,-9: + 0: 12560 + 16,-6: + 0: 3 + 16,-5: + 0: 1 + 13,-9: + 0: 19 + 13,-10: + 0: 16352 + 14,-10: + 0: 53104 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 270 + components: + - type: MetaData + name: solution - beaker + - type: Transform + parent: 269 + - type: Solution + solution: + maxVol: 200 + name: beaker + reagents: + - data: [] + ReagentId: Carbon + Quantity: 200 + - type: ContainedSolution + containerName: beaker + container: 269 + - uid: 272 + components: + - type: MetaData + name: solution - beaker + - type: Transform + parent: 271 + - type: Solution + solution: + maxVol: 200 + name: beaker + reagents: + - data: [] + ReagentId: Potassium + Quantity: 200 + - type: ContainedSolution + containerName: beaker + container: 271 + - uid: 274 + components: + - type: MetaData + name: solution - beaker + - type: Transform + parent: 273 + - type: Solution + solution: + maxVol: 200 + name: beaker + reagents: + - data: [] + ReagentId: Sulfur + Quantity: 200 + - type: ContainedSolution + containerName: beaker + container: 273 + - uid: 2567 + components: + - type: MetaData + name: solution - bucket + - type: Transform + parent: 2566 + - type: Solution + solution: + maxVol: 250 + name: bucket + reagents: + - data: [] + ReagentId: WeldingFuel + Quantity: 50 + - type: ContainedSolution + containerName: bucket + container: 2566 +- proto: ActionToggleLight + entities: + - uid: 347 + components: + - type: Transform + parent: 346 + - type: InstantAction + container: 346 + - uid: 349 + components: + - type: Transform + parent: 348 + - type: InstantAction + container: 348 + - uid: 354 + components: + - type: Transform + parent: 353 + - type: InstantAction + container: 353 + - uid: 356 + components: + - type: Transform + parent: 355 + - type: InstantAction + container: 355 +- proto: AirlockHatch + entities: + - uid: 134 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 +- proto: Ash + entities: + - uid: 265 + components: + - type: Transform + pos: 15.350088,-15.135598 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 15.334463,-15.291848 + parent: 2 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 1384 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 +- proto: AsteroidRockBananium + entities: + - uid: 873 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 +- proto: AsteroidRockCoal + entities: + - uid: 420 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 +- proto: AsteroidRockDiamond + entities: + - uid: 494 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 +- proto: AsteroidRockGold + entities: + - uid: 655 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 +- proto: AsteroidRockMining + entities: + - uid: 3 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 62.5,-19.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: 50.5,-18.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 50.5,-21.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: 50.5,-24.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 50.5,-25.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 50.5,-26.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 50.5,-27.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: 51.5,-18.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: 51.5,-21.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: 52.5,-9.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: 52.5,-11.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: 52.5,-14.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: 52.5,-23.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: 52.5,-25.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: 52.5,-26.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: 53.5,-9.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 53.5,-11.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: 53.5,-24.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: 53.5,-25.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: 53.5,-26.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: 54.5,-8.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: 54.5,-9.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: 62.5,-17.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: 54.5,-27.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 55.5,-18.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 62.5,-14.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 56.5,-23.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 56.5,-25.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: 57.5,-23.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: 57.5,-25.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 58.5,-8.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: 58.5,-10.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: 58.5,-12.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: 58.5,-13.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: 58.5,-14.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: 58.5,-18.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: 58.5,-21.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 59.5,-21.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: 59.5,-23.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: 60.5,-13.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: 60.5,-14.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 60.5,-21.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: 60.5,-22.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: 60.5,-23.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: 60.5,-24.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: 61.5,-13.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 52.5,-30.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: 55.5,-29.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 55.5,-33.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 56.5,-31.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 56.5,-32.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 56.5,-33.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 57.5,-33.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 58.5,-31.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: 58.5,-32.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 58.5,-33.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: 54.5,-35.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: 55.5,-35.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: 57.5,-34.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 57.5,-35.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 57.5,-36.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 48.5,-21.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 47.5,-21.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: 44.5,-16.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 64.5,-18.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 63.5,-18.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 62.5,-18.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 65.5,-19.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 65.5,-18.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 65.5,-17.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 65.5,-16.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 63.5,-15.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 62.5,-15.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 63.5,-21.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 65.5,-20.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 65.5,-21.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 63.5,-20.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 +- proto: AsteroidRockQuartz + entities: + - uid: 528 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: 53.5,-23.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: 55.5,-19.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: 55.5,-23.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: 55.5,-25.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 +- proto: AsteroidRockSalt + entities: + - uid: 527 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 +- proto: AsteroidRockSilver + entities: + - uid: 537 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 +- proto: AsteroidRockTin + entities: + - uid: 1062 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 47.5,-16.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: 50.5,-16.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: 53.5,-18.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 54.5,-21.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: 55.5,-21.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 1560 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 +- proto: BaseUplinkRadio + entities: + - uid: 1591 + components: + - type: MetaData + desc: Радиостанция, используемая для прослушивания различных частот. + - type: Transform + pos: 14.510969,-19.373701 + parent: 2 + missingComponents: + - ActivatableUI + - Contraband +- proto: Beaker + entities: + - uid: 263 + components: + - type: Transform + pos: 15.911615,-15.339215 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 16.23974,-15.19859 + parent: 2 +- proto: BookPetr + entities: + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.496054,-11.503673 + parent: 2 +- proto: BookUSSP + entities: + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.639095,-15.452372 + parent: 2 +- proto: Bucket + entities: + - uid: 2566 + components: + - type: Transform + pos: 13.196016,-18.063358 + parent: 2 + - type: SolutionContainerManager + solutions: null + containers: + - bucket + - type: ContainerContainer + containers: + solution@bucket: !type:ContainerSlot + ent: 2567 +- proto: CableApcExtension + entities: + - uid: 21 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 276 + components: + - type: Transform + pos: 14.57781,-12.755797 + parent: 2 +- proto: CartridgeLightRifle + entities: + - uid: 20 + components: + - type: Transform + pos: 12.180164,-10.445873 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 180 + components: + - type: Transform + pos: 13.243027,-9.960977 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 181 + components: + - type: Transform + pos: 11.836414,-11.883373 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 182 + components: + - type: Transform + pos: 13.783884,-9.698249 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 184 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 185 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 186 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 187 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 188 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 189 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 190 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 191 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 192 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 193 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 194 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 195 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 196 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 197 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 198 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 199 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 200 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 201 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 202 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 203 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 204 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 205 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 206 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 207 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 208 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 209 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 210 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 211 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 212 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 213 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 216 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 217 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 218 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 219 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 220 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 221 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 222 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 223 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 224 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 225 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 226 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 227 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 228 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 229 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 230 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 231 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 232 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 233 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 234 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 235 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 236 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 237 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 238 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 239 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 240 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 241 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 242 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 243 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 244 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 245 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 246 + components: + - type: Transform + pos: 12.539539,-9.570873 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 247 + components: + - type: Transform + pos: 12.742664,-10.180248 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 248 + components: + - type: Transform + pos: 12.336414,-10.852123 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 249 + components: + - type: Transform + pos: 12.51129,-13.974972 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 250 + components: + - type: Transform + pos: 11.086414,-11.539623 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 251 + components: + - type: Transform + pos: 11.477039,-12.586498 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 252 + components: + - type: Transform + pos: 12.2617,-13.365557 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 253 + components: + - type: Transform + pos: 12.617664,-10.414623 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 254 + components: + - type: Transform + pos: 13.655968,-9.31034 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 255 + components: + - type: Transform + pos: 13.640343,-7.6567326 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 256 + components: + - type: Transform + pos: 13.218468,-7.0942326 + parent: 2 + - type: CartridgeAmmo + spent: True +- proto: Catwalk + entities: + - uid: 53 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 +- proto: Cautery + entities: + - uid: 1555 + components: + - type: Transform + pos: 18.579432,-14.539792 + parent: 2 +- proto: ChairFolding + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.53861,-11.941237 + parent: 2 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.53861,-13.050612 + parent: 2 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.429235,-12.878737 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.397985,-11.769362 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 15.97611,-14.488112 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 14.041351,-18.517628 + parent: 2 + - uid: 2451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.92901,-31.215471 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 68 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 1582 + components: + - type: Transform + pos: 8.98,-9.621418 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 8.589375,-9.277668 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: 8.76125,-9.230793 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 8.839375,-9.730793 + parent: 2 +- proto: CigPackMixedMedical + entities: + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.3073287,-11.262043 + parent: 2 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 1544 + components: + - type: Transform + pos: 7.425899,-15.712741 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 1545 + components: + - type: Transform + pos: 9.643692,-14.603366 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 11.7837105,-9.341056 + parent: 2 +- proto: ClothingHeadHelmetAncient + entities: + - uid: 159 + components: + - type: Transform + parent: 158 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 1557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.768984,-14.557326 + parent: 2 +- proto: ClothingMaskNeckGaiterRed + entities: + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.987041,-15.539799 + parent: 2 +- proto: ClothingNeckHeadphones + entities: + - uid: 1594 + components: + - type: Transform + pos: 13.917219,-19.545576 + parent: 2 +- proto: ClothingNeckUSSPPin + entities: + - uid: 340 + components: + - type: MetaData + name: коммунистический значок + - type: Transform + pos: 13.945847,-12.35463 + parent: 2 + - uid: 343 + components: + - type: MetaData + name: коммунистический значок + - type: Transform + pos: 13.820847,-12.651505 + parent: 2 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 160 + components: + - type: Transform + parent: 158 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 163 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorRed + entities: + - uid: 1553 + components: + - type: Transform + pos: 11.377094,-9.419181 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 11.3462105,-9.309806 + parent: 2 +- proto: ClothingShoesBootsSyndieFilled + entities: + - uid: 1589 + components: + - type: Transform + pos: 11.968241,-9.744035 + parent: 2 +- proto: CombatKnife + entities: + - uid: 1596 + components: + - type: Transform + pos: 14.086298,-11.383705 + parent: 2 +- proto: CrateBodyBags + entities: + - uid: 341 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 +- proto: CrateChemistrySecure + entities: + - uid: 268 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 273 + - 271 + - 269 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFoodMRE + entities: + - uid: 1324 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 333 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CratePermaEscapeDigging + entities: + - uid: 342 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 +- proto: CratePermaEscapeMats + entities: + - uid: 338 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 +- proto: CratePermaEscapeMerc + entities: + - uid: 332 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 339 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateSurgery + entities: + - uid: 119 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateTrashCartFilled + entities: + - uid: 1546 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: DrinkFlaskOld + entities: + - uid: 1529 + components: + - type: Transform + pos: 14.023659,-13.258705 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 2558 + components: + - type: Transform + pos: 15.925644,-9.206433 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 14.331894,-12.003308 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 14.271681,-9.137273 + parent: 2 +- proto: DrinkVacuumFlask + entities: + - uid: 1533 + components: + - type: Transform + pos: 14.995939,-9.412158 + parent: 2 +- proto: ExGrenade + entities: + - uid: 1547 + components: + - type: Transform + pos: 20.68465,-8.377126 + parent: 2 +- proto: FireBomb + entities: + - uid: 280 + components: + - type: Transform + pos: 13.501698,-12.045075 + parent: 2 +- proto: FireBombEmpty + entities: + - uid: 279 + components: + - type: Transform + pos: 13.423573,-12.5607 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 353 + components: + - type: Transform + pos: 20.683987,-9.314275 + parent: 2 + - type: HandheldLight + toggleActionEntity: 354 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 354 + - type: ActionsContainer + - uid: 355 + components: + - type: Transform + pos: 20.621487,-9.533025 + parent: 2 + - type: HandheldLight + toggleActionEntity: 356 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 356 + - type: ActionsContainer +- proto: Floodlight + entities: + - uid: 1526 + components: + - type: Transform + pos: 18.310715,-8.602652 + parent: 2 +- proto: FloodlightBroken + entities: + - uid: 1527 + components: + - type: Transform + pos: 18.713684,-8.406491 + parent: 2 +- proto: FloorDesertChasm + entities: + - uid: 1573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 +- proto: FoodBadRecipe + entities: + - uid: 1568 + components: + - type: MetaData + desc: Кто-то промахнулся + name: месиво + - type: Transform + pos: 8.9397335,-8.408732 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 259 + components: + - type: Transform + pos: 14.506056,-9.481023 + parent: 2 +- proto: FoodPelmeniBowl + entities: + - uid: 165 + components: + - type: Transform + pos: 14.570673,-11.571205 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 177 + components: + - type: Transform + pos: 14.579069,-9.253816 + parent: 2 +- proto: FoodSoupBeetRed + entities: + - uid: 257 + components: + - type: Transform + pos: 13.455791,-13.071049 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 1559 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 1579 + components: + - type: Transform + pos: 18.78504,-6.530959 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 11.311937,-12.797186 + parent: 2 +- proto: FoodTinMRE + entities: + - uid: 1562 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: FoodTinPeaches + entities: + - uid: 1558 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: FoodTinPeachesTrash + entities: + - uid: 1581 + components: + - type: Transform + pos: 8.464375,-9.637043 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 337 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-18.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 311 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 292 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 2 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 +- proto: GasPort + entities: + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 +- proto: GasValve + entities: + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 1599 + components: + - type: Transform + pos: 20.293362,-9.376775 + parent: 2 +- proto: GlowstickRed + entities: + - uid: 1592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.138252,-12.691173 + parent: 2 +- proto: GrenadeDummy + entities: + - uid: 1548 + components: + - type: Transform + pos: 20.325275,-8.330251 + parent: 2 +- proto: Igniter + entities: + - uid: 281 + components: + - type: Transform + pos: 13.954823,-11.920075 + parent: 2 +- proto: JugCarbon + entities: + - uid: 269 + components: + - type: MetaData + name: кувшин (углерод) + - type: Transform + parent: 268 + - type: Label + currentLabel: углерод + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: NameModifier + baseName: кувшин + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 270 + - type: InsideEntityStorage +- proto: JugPotassium + entities: + - uid: 271 + components: + - type: MetaData + name: кувшин (калий) + - type: Transform + parent: 268 + - type: Label + currentLabel: калий + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: NameModifier + baseName: кувшин + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 272 + - type: InsideEntityStorage +- proto: JugSulfur + entities: + - uid: 273 + components: + - type: MetaData + name: кувшин (сера) + - type: Transform + parent: 268 + - type: Label + currentLabel: сера + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: NameModifier + baseName: кувшин + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 274 + - type: InsideEntityStorage +- proto: KitchenMicrowave + entities: + - uid: 67 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 287 + components: + - type: Transform + pos: 9.418539,-9.64055 + parent: 2 +- proto: Lantern + entities: + - uid: 346 + components: + - type: Transform + pos: 12.635735,-5.392745 + parent: 2 + - type: HandheldLight + toggleActionEntity: 347 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 347 + - type: ActionsContainer + - uid: 348 + components: + - type: Transform + pos: 12.40136,-5.25212 + parent: 2 + - type: HandheldLight + toggleActionEntity: 349 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 349 + - type: ActionsContainer +- proto: LootSpawnerContrabandHigh + entities: + - uid: 1528 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 +- proto: LootSpawnerIndustrial + entities: + - uid: 137 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 56 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 +- proto: MagazineLightRifleEmpty + entities: + - uid: 183 + components: + - type: Transform + pos: 11.547438,-14.408712 + parent: 2 + - type: BallisticAmmoProvider + entities: + - 191 + - 193 + - 188 + - 187 + - 190 + - 189 + - 185 + - 186 + - 195 + - 192 + - 204 + - 198 + - 205 + - 197 + - 184 + - 211 + - 213 + - 202 + - 200 + - 196 + - 194 + - 199 + - 212 + - 201 + - 203 + - 207 + - 210 + - 209 + - 206 + - 208 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 191 + - 193 + - 188 + - 187 + - 190 + - 189 + - 185 + - 186 + - 195 + - 192 + - 204 + - 198 + - 205 + - 197 + - 184 + - 211 + - 213 + - 202 + - 200 + - 196 + - 194 + - 199 + - 212 + - 201 + - 203 + - 207 + - 210 + - 209 + - 206 + - 208 + - uid: 215 + components: + - type: Transform + parent: 214 + - type: BallisticAmmoProvider + entities: + - 223 + - 225 + - 220 + - 219 + - 222 + - 221 + - 217 + - 218 + - 227 + - 224 + - 236 + - 230 + - 237 + - 229 + - 216 + - 243 + - 245 + - 234 + - 232 + - 228 + - 226 + - 231 + - 244 + - 233 + - 235 + - 239 + - 242 + - 241 + - 238 + - 240 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 223 + - 225 + - 220 + - 219 + - 222 + - 221 + - 217 + - 218 + - 227 + - 224 + - 236 + - 230 + - 237 + - 229 + - 216 + - 243 + - 245 + - 234 + - 232 + - 228 + - 226 + - 231 + - 244 + - 233 + - 235 + - 239 + - 242 + - 241 + - 238 + - 240 + - type: Physics + canCollide: False +- proto: MaterialGunpowder + entities: + - uid: 275 + components: + - type: Transform + pos: 14.600088,-12.838723 + parent: 2 + - type: Stack + count: 6 +- proto: Mattress + entities: + - uid: 283 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 +- proto: MetalDoor + entities: + - uid: 36 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - type: Door + secondsUntilStateChange: -14372.478 + state: Opening + - uid: 151 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 +- proto: OperatingTable + entities: + - uid: 110 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 312 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 +- proto: Paper + entities: + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.490713,-15.588723 + parent: 2 +- proto: PaperRolling1 + entities: + - uid: 1542 + components: + - type: MetaData + desc: Тонкий лист бумаги, используемый для вытирания ж... + name: использованная бумага + - type: Transform + pos: 9.1870365,-9.252482 + parent: 2 + missingComponents: + - Stack + - uid: 1567 + components: + - type: MetaData + desc: Тонкий лист бумаги, используемый для вытирания ж... + name: использованная бумага + - type: Transform + pos: 9.8276615,-9.080607 + parent: 2 + missingComponents: + - Stack +- proto: PaperScrap + entities: + - uid: 1569 + components: + - type: Transform + pos: 8.26189,-8.267529 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.294298,-8.489751 + parent: 2 +- proto: PinionAirlock + entities: + - uid: 144 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 +- proto: PipeBombGunpowder + entities: + - uid: 261 + components: + - type: Transform + pos: 14.700752,-12.284923 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 317 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 +- proto: PosterContrabandCommunistState + entities: + - uid: 149 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 147 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 +- proto: PosterContrabandRevolt + entities: + - uid: 176 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 +- proto: PosterContrabandRise + entities: + - uid: 1602 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 61 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 2452 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 351 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 +- proto: PrintedDocumentApplicationAccess + entities: + - uid: 1572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.2495365,-9.361857 + parent: 2 +- proto: PrintedDocumentApplicationEmployment + entities: + - uid: 1571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.2495365,-9.611857 + parent: 2 +- proto: Rack + entities: + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 1588 + components: + - type: Transform + pos: 13.292219,-19.342451 + parent: 2 +- proto: RadioHandheldSecurity + entities: + - uid: 1593 + components: + - type: Transform + pos: 13.464094,-19.295576 + parent: 2 +- proto: Railing + entities: + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 2545 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 2543 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 334 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 +- proto: SalvageSpawnerMobShark + entities: + - uid: 1530 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 1598 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 +- proto: Scalpel + entities: + - uid: 1556 + components: + - type: Transform + pos: 18.490345,-13.510451 + parent: 2 +- proto: ScrapCanister2 + entities: + - uid: 1595 + components: + - type: Transform + pos: 14.486942,-17.14741 + parent: 2 +- proto: ScrapGlass + entities: + - uid: 1474 + components: + - type: Transform + pos: 14.998474,-18.59147 + parent: 2 +- proto: ScrapIntercom + entities: + - uid: 262 + components: + - type: Transform + pos: 13.407143,-18.746077 + parent: 2 +- proto: ScrapMedkit + entities: + - uid: 1597 + components: + - type: Transform + pos: 21.469643,-14.574202 + parent: 2 +- proto: Screwdriver + entities: + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.566343,-13.440286 + parent: 2 +- proto: SinkEmpty + entities: + - uid: 289 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 327 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 +- proto: SpawnMobCarp + entities: + - uid: 1531 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 +- proto: SpeedLoaderLightRifle + entities: + - uid: 282 + components: + - type: Transform + pos: 11.439198,-15.4982 + parent: 2 +- proto: Spoon + entities: + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.414423,-13.46183 + parent: 2 +- proto: StorageCanister + entities: + - uid: 316 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 157 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 158 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 159 + - 160 + - uid: 161 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 162 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 163 +- proto: SyndicateWhistle + entities: + - uid: 1550 + components: + - type: Transform + parent: 1549 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Table + entities: + - uid: 5 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 344 + components: + - type: Transform + pos: 15.361559,-11.243308 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 1587 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 150 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 7 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 2 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 2 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 +- proto: WardrobeBlack + entities: + - uid: 1549 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1550 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeBlackFilled + entities: + - uid: 156 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 336 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 +- proto: WeaponRifleAk + entities: + - uid: 214 + components: + - type: Transform + pos: 13.4532795,-15.1989975 + parent: 2 + - type: Gun + lastFire: 6664.9600019 + currentAngle: 0.01745329251994332 rad + - type: ChamberMagazineAmmoProvider + boltClosed: True + - type: ContainerContainer + containers: + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: 215 + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponSniperMosin + entities: + - uid: 26 + components: + - type: Transform + pos: 11.438841,-15.480729 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 335 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_ussp_debris.yml b/Resources/Maps/Ruins/corvax_ussp_debris.yml new file mode 100644 index 00000000000..14bdbe13740 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_ussp_debris.yml @@ -0,0 +1,3153 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 60: FloorGrayConcreteOutsideMono + 74: FloorMetalDiamond + 113: FloorSteelDirty + 121: FloorTechMaint + 122: FloorTechMaint2 + 129: FloorWhiteMini + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -3.4398937,-0.5 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: cQAAAAAAcQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASgAAAAAAeQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAegAAAAAAegAAAAAAcQAAAAAAeQAAAAAASgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAcQAAAAAAcQAAAAAAeQAAAAAAcQAAAAAAegAAAAAAeQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAeQAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: 0.5585053606381855 rad + color: '#000000B2' + id: Damaged + decals: + 421: 6.1630964,1.8726134 + 422: 5.4598656,2.4976134 + 423: 5.1082506,3.3765197 + 424: 4.229212,3.552301 + 425: 3.6236525,5.036676 + 426: 3.350174,5.192926 + 427: 2.5297375,4.9390197 + 428: 3.7408571,3.4937072 + 429: 4.6784983,2.4780822 + 430: 4.951977,1.8335509 + 431: 3.2720366,4.7827697 + 432: 3.4478445,4.1382384 + - node: + color: '#FFFFFF99' + id: Dirt + decals: + 433: 4.6784983,2.0288634 + 434: 4.248746,2.6538634 + 435: 3.6431866,3.1226134 + 436: 3.4869127,3.3374572 + 437: 3.1939,3.864801 + 438: 2.7250795,4.587457 + 439: 2.432067,5.1733947 + 440: 2.0218487,5.192926 + 441: 2.4711351,4.489801 + 442: 3.1157637,4.1382384 + 443: 3.3892422,3.7280822 + 444: 3.5064468,3.552301 + 445: 4.0338697,2.7515197 + 446: 4.5222244,2.2046447 + 447: 3.7799253,1.9507384 + 448: 3.701789,2.2827697 + 449: 3.369708,2.7515197 + 450: 3.1157637,3.2202697 + 451: 2.6860113,3.8062072 + 452: 2.275793,4.6265197 + 453: 1.8851099,5.0952697 + 454: 0.81073,4.9194884 + 455: 0.96700287,4.021051 + 456: 2.1585884,3.5913634 + 457: 3.0571613,2.9468322 + 458: 3.1939,2.6343322 + 459: 2.1195202,4.3140197 + 460: 0.5958538,5.0952697 + 461: 0.3419094,4.333551 + 462: 0.08796501,3.1812072 + 463: 0.12703323,2.5757384 + 464: 0.009827614,2.2437072 + 465: 0.38097763,2.3608947 + 466: 0.92793465,3.396051 + 467: 1.4358234,4.118707 + 468: -0.029240608,2.927301 + 469: -0.6934037,1.9702697 + 470: -0.6934037,3.396051 + 471: -0.6152663,4.2944884 + 472: -0.08784294,4.509332 + 473: 1.0060711,5.056207 + 474: 1.709302,5.5640197 + 475: 2.8422852,4.899957 + 476: 2.7836819,3.3569884 + 477: 3.7799253,2.8687072 + 478: 3.1352978,4.4507384 + 479: 2.2367249,5.4858947 + 480: 2.1585884,4.6265197 + 481: 3.0571613,3.8452697 + 482: 4.229212,2.8101134 + 483: 4.795703,2.1655822 + 484: 4.971511,2.3608947 + 485: 4.5612936,3.0249572 + 486: 4.1510754,3.474176 + 487: 4.0143356,3.8257384 + 488: 3.8775969,4.3921447 + 489: 3.8189945,4.6851134 + 490: 3.545515,5.212457 + 491: 3.1352978,5.427301 + 492: 4.248746,4.899957 + 493: 4.444088,4.3140197 + 494: 4.463622,4.099176 + 495: 4.483156,4.040582 + 496: 4.5612936,3.942926 + 497: 4.776169,3.708551 + 498: 5.342661,3.2202697 + 499: 5.4403315,3.0249572 + 500: 5.752878,2.6343322 + 501: 6.1435623,2.1851134 + 502: 6.3193703,1.8726134 + 503: 6.2021646,1.7944884 + 504: 5.6161394,1.7554259 + 505: 4.834772,1.7163634 + 506: 4.63943,1.6773009 + 507: 4.112007,1.6382384 + 508: 3.897131,1.6187072 + 509: 3.545515,1.5991759 + 510: 3.2915707,1.5796447 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 103: 5.4992747,-3.3777366 + 104: 4.5095425,-2.8308616 + 105: 5.8248453,-2.2970076 + 106: 5.9160037,-1.2292992 + 107: 6.189483,-0.226695 + 108: 5.772754,0.3722633 + 112: 5.4081154,-0.083465815 + 113: 4.626748,-0.044403315 + 114: 3.871426,-1.0079451 + 115: 2.9598305,-1.2032576 + 116: 4.17095,-0.4480492 + 117: 4.49652,0.4894508 + 118: 3.1291268,-0.057424188 + 119: 2.9245906,-0.7735699 + 120: 2.9227805,-1.6980492 + 121: 2.4116518,-1.1381533 + 122: 3.5990534,-0.3959658 + 123: 2.5832758,0.17695081 + 124: 1.9451594,-0.3308617 + 125: 1.971205,-1.3985701 + 126: 1.476339,-1.8022158 + 127: -0.12546444,-1.9975283 + 128: 1.8670225,-1.8542992 + 129: 1.9842277,-1.2944033 + 130: 0.57776666,-0.6824242 + 131: 1.3200655,0.13788831 + 132: 1.1507692,0.9712218 + 133: 0.4475386,0.8149717 + 134: -0.11244106,-1.3204451 + 135: 0.42149305,-0.083465815 + 137: -0.9956753,-1.5548201 + 138: -1.2777529,-1.3725283 + 140: -1.7595963,-1.6069033 + 141: -2.1633024,-2.17982 + 142: -2.1112118,-2.505341 + 143: -2.4888725,-1.8330288 + 144: -2.5279408,-2.684546 + 145: -2.7493286,-2.814754 + 146: -2.6060777,-1.9753587 + 147: -2.2674851,-1.8191087 + 148: -2.684214,-0.23056704 + 149: -2.3846898,0.22516215 + 150: -2.8535104,0.12099552 + 151: -2.2284164,0.5871551 + 152: -2.9186249,0.31468678 + 153: -1.9679608,-1.3014615 + 154: -2.3586445,0.20895517 + 155: -1.8247099,0.9902053 + 156: -2.0460973,1.393851 + 157: -2.684214,2.253226 + 158: -2.2284164,2.3443718 + 159: -1.6423912,2.7089553 + 160: -2.5930548,3.2037468 + 161: -2.2544622,3.7636428 + 162: -1.9288926,4.2063513 + 163: -2.9316473,3.6334343 + 164: -1.2386847,3.6073928 + 165: -2.3586445,2.8261428 + 166: -2.8665333,2.8391635 + 167: -1.1605477,-0.16864899 + 168: -1.2429857,-0.72854483 + 169: -0.0453825,-1.6269825 + 170: 5.026601,-2.8400204 + 171: 5.065669,-3.816583 + 172: 4.375461,-3.191583 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 183: 1.2146158,1.8995287 + 184: 0.18581533,2.3812995 + 185: 2.0741198,2.6156745 + 186: 0.78486395,4.230258 + 187: 1.7745962,3.2536955 + 188: 1.6693838,1.695097 + 189: 1.9193892,1.976193 + 190: 0.26549482,2.5100472 + 191: 1.3854551,3.2652557 + 192: 0.5910647,4.515256 + 193: 1.8933439,4.2939014 + 194: -0.2944851,4.1376514 + 195: 1.1901133,3.0569222 + 196: 2.9742353,4.411089 + 198: 1.8542757,3.3433807 + 199: 4.081173,2.8095264 + 200: 3.117486,3.864214 + 202: 4.055127,3.1350472 + 203: 3.0914404,3.0699432 + 206: 2.3882098,3.2001514 + 207: 2.1407766,4.1376514 + 208: 0.7343154,4.58036 + 209: 0.018062115,3.0439014 + 210: 0.7864065,2.132443 + 211: 3.664443,1.976193 + 215: 1.7370703,5.439735 + 216: 1.124999,4.3850474 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 40: 6,-1 + 41: 4,0 + 42: 4,-1 + 43: 3,-1 + 44: 2,0 + 45: 1,0 + 46: -2,0 + 47: -2,-2 + 48: -2,-1 + 49: -2,1 + 50: -3,3 + 51: -3,3 + 52: -2,0 + 53: -2,-2 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 54: -1,-2 + 55: -2,-2 + 56: -2,-1 + 57: -3,3 + 58: 1,0 + 59: 4,0 + 60: 1,-1 + 61: 1,-1 + 62: 2,-1 + 63: 0,1 + 64: 1,1 + 65: 0,-1 + 66: 2,-1 + 68: 2,0 + 69: -2,0 + 70: 0,0 + 71: -3,3 + 72: -2,-1 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 73: -3,1 + 74: 1,0 + 75: 2,-1 + 76: 3,-2 + 77: 3,-1 + 79: 1,-1 + 80: 1,1 + 81: 2,0 + 82: 4,0 + 83: 4,0 + 85: 3,-1 + 86: 3,0 + 87: 4,0 + 88: 6,-1 + 89: 4,-1 + 90: 6,-2 + 91: 1,-2 + 92: -3,1 + 93: -3,0 + 94: -2,2 + 95: -2,4 + 96: -2,2 + 97: -2,-1 + 98: -3,-2 + 99: 0,-1 + 100: 3,0 + 102: 5,0 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 174: 1,1 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 176: 5,-4 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: dot + decals: + 348: 1.4724668,2.1237316 + 349: 0.7171447,1.31644 + 350: 1.1729425,1.00394 + 351: 0.86039543,0.7956066 + 352: 0.95155525,0.457065 + 353: 0.6259856,0.20966911 + 354: 0.54784846,0.07946074 + 355: 0.05298233,-0.18095589 + 356: -0.4809518,-0.18095589 + 357: -1.340456,0.13154411 + 358: -1.4446383,0.24873161 + 359: -1.7050943,0.4961275 + 360: -2.0046186,0.769565 + 361: -2.108801,0.925815 + 362: -2.108801,0.9518566 + 363: 1.7198997,1.9674816 + 364: 1.4073526,1.8893566 + 365: 1.251079,2.240919 + 366: 1.3943298,2.2278984 + 367: 1.0427145,2.332065 + 368: 1.0817827,2.4362316 + 369: 0.7952819,3.0091484 + 370: 1.3422388,2.8919609 + 371: 1.6678085,3.0091484 + 372: 1.7850139,3.50394 + 373: 2.566381,2.56644 + 374: 1.4724668,3.0742526 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: line + decals: + 320: -1.8092766,0.5612316 + - node: + angle: 1.3089969389957472 rad + color: '#7A0000B2' + id: line + decals: + 319: -1.40557,0.20966911 + - node: + angle: 1.6231562043547265 rad + color: '#7A0000B2' + id: line + decals: + 318: -0.7414074,-0.011685014 + - node: + angle: 1.9722220547535925 rad + color: '#7A0000B2' + id: line + decals: + 316: -0.09026837,0.04039824 + - node: + cleanable: True + angle: 2.1467549799530254 rad + color: '#7A0000B2' + id: line + decals: + 311: 1.4594442,1.9935234 + - node: + angle: 2.303834612632515 rad + color: '#7A0000B2' + id: line + decals: + 315: 0.33948398,0.13154411 + - node: + cleanable: True + angle: 2.443460952792061 rad + color: '#7A0000B2' + id: line + decals: + 312: 0.9385326,1.4336275 + - node: + angle: 2.6878070480712677 rad + color: '#7A0000B2' + id: line + decals: + 314: 0.6259856,0.4310233 + - node: + cleanable: True + angle: 3.01941960595019 rad + color: '#7A0000B2' + id: line + decals: + 313: 0.7692363,0.7956066 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: smallbrush + decals: + 321: 1.6938541,2.5013359 + 322: 1.5375805,2.7617526 + 323: 2.27988,2.5403984 + 324: 1.8631504,1.9674816 + 325: 1.9803557,1.8502941 + 326: 2.019424,2.5794609 + 327: 2.0715148,2.5924816 + 328: 2.006401,2.162794 + 329: 1.7719913,3.0482109 + 330: 2.3580165,2.4492526 + 331: 2.331971,2.0325859 + - node: + cleanable: True + color: '#323232B9' + id: splatter + decals: + 264: 3.8988538,5.5439014 + 265: 4.3806973,5.3876514 + 266: 4.5499935,5.192339 + 267: 4.445811,4.645464 + 268: 4.3806973,4.2157764 + 269: 4.445811,3.812131 + 270: 4.6411524,3.4475472 + 271: 4.8104486,3.4996307 + 272: 5.2922926,3.4215057 + 273: 5.5397253,3.2522347 + 274: 5.5527477,2.9657764 + 275: 5.826227,2.4840055 + 276: 5.9825,2.1845264 + 277: 6.607594,1.7808805 + 278: 6.659685,1.6116097 + 279: 6.750845,1.585568 + 280: 6.464343,1.6246305 + 281: 6.190865,1.5725472 + 282: 5.8001814,1.5334847 + 283: 5.109973,1.5595264 + 284: 4.6411524,1.5465055 + 285: 3.5732837,1.7157764 + 286: 5.8913403,1.7027555 + 287: 5.5397253,2.054318 + 288: 5.565771,2.7183805 + 289: 5.2271786,3.2782764 + 290: 4.341628,3.8251514 + 291: 4.185355,4.6064014 + 292: 3.8467627,5.5569224 + 293: 4.0030355,4.6845264 + 294: 4.029082,3.9032764 + 295: 4.2765145,3.5647345 + 296: 4.563016,3.2522347 + 297: 5.1229963,3.004839 + 298: 5.201133,2.679318 + 299: 5.3574057,2.2756722 + 300: 5.5006566,1.7678597 + 301: 5.396475,2.4058805 + 302: 4.432788,3.838172 + 303: 4.055127,4.7105684 + 304: 3.6253748,5.426714 + 305: 4.029082,5.0100474 + 306: 4.1332636,5.4006724 + 307: 3.664443,5.296506 + 308: 3.1565542,5.5439014 + 309: 3.6904893,5.0100474 + 310: 3.8597856,4.593381 + - node: + cleanable: True + color: '#323232FF' + id: splatter + decals: + 261: 5.6178617,3.082964 + - node: + color: '#515151C8' + id: splatter + decals: + 177: 2.2437177,1.5868068 + - node: + color: '#5B7A35BA' + id: splatter + decals: + 178: 3.5735812,-1.5379314 + 179: 3.4954443,-1.9545982 + 180: 3.5084667,-1.498869 + 181: 0.6088066,0.121494114 + 182: 0.73903465,0.29076493 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: splatter + decals: + 332: 2.006401,2.2799816 + 333: 2.0845382,2.7357109 + 334: 1.8110595,2.8919609 + 335: 2.1105838,2.8398776 + 336: 2.0845382,2.2669609 + 337: 1.7068768,2.6185234 + 338: 1.563626,2.25394 + 339: 1.3161933,1.8242526 + 340: 1.1338743,1.5247734 + 341: 0.8473728,1.0169609 + 342: 0.6259856,0.4961275 + 343: 0.24832416,0.07946074 + 344: -0.16840482,0.066439986 + 345: -1.1190691,0.17060661 + 346: -1.7832308,0.69144 + 347: -0.78047633,0.07946074 + 375: 1.381307,2.41019 + 376: 1.7589684,1.9935234 + 377: 1.4594442,2.319044 + 378: 1.4854896,1.8633151 + 379: 1.1599199,1.6159191 + 380: 0.95155525,1.2122734 + 381: 0.7952819,0.769565 + 382: 0.41762114,0.300815 + 383: -0.16840482,0.18362749 + 384: -1.4316158,0.3138358 + 385: -1.692071,0.6002941 + 386: -1.952528,0.84769 + 387: -2.082756,0.89977336 + 388: -2.1608925,0.9909191 + 389: -2.0436869,1.238315 + 390: -1.7962542,1.3424816 + 391: -1.7962542,1.0169609 + 392: -1.8483448,0.9648775 + 393: -2.1348467,1.1341484 + 394: -2.1999607,1.2773775 + 395: -1.9264822,1.3815441 + 396: -1.7311392,1.082065 + 397: -1.822299,0.9648775 + 398: -2.147869,0.925815 + 399: -2.1869373,0.925815 + 400: -2.2520514,1.00394 + 401: -2.3822794,1.16019 + 402: -2.499485,1.2513359 + 403: -2.5385532,1.3294609 + 404: -2.5776215,1.4466484 + 405: -2.499485,1.6289401 + 406: -2.434371,1.7851901 + 407: -2.2129831,1.9544609 + 408: -1.9134588,1.9674816 + 409: -1.6790485,1.7982109 + 410: -1.6139345,1.4857109 + 411: -1.6139345,1.4466484 + 412: -1.887413,1.8242526 + 413: -2.173915,1.7331066 + 414: -2.2520514,1.5898776 + 415: -2.4083252,1.31644 + 416: -2.434371,1.0950859 + 417: -2.4083252,0.89977336 + 418: -2.1869373,0.8086275 + 419: -1.692071,1.394565 + 420: -1.8483448,1.6549816 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65327 + 0,-1: + 0: 65280 + 1: 2 + -1,0: + 0: 26222 + 0,1: + 0: 239 + 1: 12288 + 0,2: + 1: 15 + -1,2: + 1: 15 + 1,0: + 0: 14087 + 1: 34816 + 1,1: + 0: 17 + 1: 13448 + 1,2: + 1: 15 + 1,-1: + 0: 29218 + 1: 8 + 2,0: + 1: 12834 + 2,2: + 1: 1 + 2,1: + 1: 12834 + 2,-1: + 1: 12835 + 0,-2: + 1: 28928 + -1,-2: + 1: 12032 + 1,-2: + 1: 28672 + -2,-2: + 1: 27648 + -2,-1: + 1: 8738 + -2,0: + 1: 8750 + -1,-1: + 0: 18016 + -2,1: + 1: 25314 + -2,2: + 1: 12 + -1,1: + 0: 6 + 1: 8704 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +- proto: APCElectronics + entities: + - uid: 7 + components: + - type: Transform + pos: 4.5032835,2.7000911 + parent: 1 +- proto: Ash + entities: + - uid: 8 + components: + - type: Transform + pos: 2.6361296,2.3076563 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 4.669772,-0.611199 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 2.452991,-0.723173 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.6389203,1.6466186 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.3545895,1.8158895 + parent: 1 +- proto: AsteroidRockMining + entities: + - uid: 13 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: Bed + entities: + - uid: 31 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: BedsheetBlack + entities: + - uid: 32 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: Blunt + entities: + - uid: 33 + components: + - type: Transform + pos: 1.6800191,-1.5044086 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.7776897,-1.3481586 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 35 + components: + - type: Transform + rot: 4.642575810304916 rad + pos: 1.330194,0.82198584 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 1.2042771838760873 rad + pos: 3.893465,-0.7341547 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 37 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 63 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.7449977,5.0093203 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.401647,4.8791122 + parent: 1 +- proto: CheapLighter + entities: + - uid: 84 + components: + - type: Transform + rot: 24.20771672516135 rad + pos: 1.1932144,-1.4721935 + parent: 1 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 85 + components: + - type: Transform + pos: 5.9402523,2.5925646 + parent: 1 +- proto: ChemistryEmptyBottle02 + entities: + - uid: 86 + components: + - type: Transform + pos: 1.9616665,5.8537683 + parent: 1 +- proto: ChemistryEmptyBottle04 + entities: + - uid: 87 + components: + - type: Transform + pos: 6.087844,2.8095784 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 88 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 89 + components: + - type: Transform + pos: 2.1183896,-0.80812955 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 5.3100595,0.26119685 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -1.9545794,0.76700485 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.827167,2.069479 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5776408,0.40862203 + parent: 1 +- proto: CigarSpent + entities: + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.805426,2.099323 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 2.6621752,2.255573 + parent: 1 +- proto: ClothingBeltBandolier + entities: + - uid: 96 + components: + - type: Transform + pos: -2.7488399,1.670884 + parent: 1 + - type: BallisticAmmoProvider + entities: + - 97 + - 98 + - 99 + - 100 + - 101 + - 102 + - 103 + - 104 + - 105 + - 106 + - 107 + - 108 + - 109 + - 110 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 97 + - 98 + - 99 + - 100 + - 101 + - 102 + - 103 + - 104 + - 105 + - 106 + - 107 + - 108 + - 109 + - 110 +- proto: ClothingHeadHatCowboyBrown + entities: + - uid: 112 + components: + - type: MetaData + name: коричневая шляпа Дик Маленна + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingNeckHorrific + entities: + - uid: 113 + components: + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatLabOpened + entities: + - uid: 117 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False + - uid: 118 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False +- proto: ClothingOuterDiscoAssBlazer + entities: + - uid: 114 + components: + - type: MetaData + name: стильный диско-блейзер ягера + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingShoesBootsWork + entities: + - uid: 119 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False + - uid: 120 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 115 + components: + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 121 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False + - uid: 122 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False +- proto: CrateFreezer + entities: + - uid: 123 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: Crowbar + entities: + - uid: 124 + components: + - type: Transform + pos: -1.5839062,-1.6197791 + parent: 1 +- proto: DiagnosisReportPaper + entities: + - uid: 125 + components: + - type: Transform + rot: 22.56710722828668 rad + pos: 3.548812,3.3231666 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 1631455.2100413744 rad + pos: 4.4734297,4.104417 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: 60907.732291227236 rad + pos: 1.8167803,4.247646 + parent: 1 +- proto: Dresser + entities: + - uid: 116 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - type: Storage + storedItems: + 121: + position: 0,0 + _rotation: South + 122: + position: 2,0 + _rotation: South + 120: + position: 2,2 + _rotation: South + 119: + position: 0,2 + _rotation: South + 117: + position: 4,0 + _rotation: South + 118: + position: 4,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 121 + - 122 + - 119 + - 118 + - 117 + - 120 +- proto: DrinkBeerBottleFull + entities: + - uid: 129 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False + - uid: 130 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False +- proto: DrinkBeerCan + entities: + - uid: 131 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False + - uid: 132 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False +- proto: DrinkBottleWhiskey + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4452057,4.8175335 + parent: 1 +- proto: DrinkTequilaBottleFull + entities: + - uid: 133 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 134 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False + - uid: 135 + components: + - type: Transform + parent: 128 + - type: Sealable + sealed: False + - type: Openable + opened: True + - type: Physics + canCollide: False +- proto: ExtinguisherCabinetOpen + entities: + - uid: 137 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: FireAxeCabinetOpen + entities: + - uid: 138 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 +- proto: FireBombEmpty + entities: + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5409765,2.5624886 + parent: 1 +- proto: FirelockElectronics + entities: + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.4708157,2.4782007 + parent: 1 +- proto: FloraGreyStalagmite2 + entities: + - uid: 141 + components: + - type: Transform + pos: 4.053198,3.8774834 + parent: 1 +- proto: FloraGreyStalagmite6 + entities: + - uid: 142 + components: + - type: Transform + pos: 5.69407,3.2134209 + parent: 1 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 143 + components: + - type: Transform + pos: 3.4866977,2.7990737 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 145 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - type: GasPressurePump + targetPressure: 4500 +- proto: Gauze1 + entities: + - uid: 148 + components: + - type: Transform + pos: -2.6687942,2.1933446 + parent: 1 +- proto: GenericTank + entities: + - uid: 149 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: Grille + entities: + - uid: 150 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + anchored: False + pos: 5.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + anchored: False + pos: 0.5,8.5 + parent: 1 + - uid: 157 + components: + - type: Transform + anchored: False + pos: -0.5,8.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 +- proto: InflatableDoor + entities: + - uid: 206 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: InflatableWall + entities: + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 +- proto: Joint + entities: + - uid: 211 + components: + - type: Transform + rot: 0.15707963267948966 rad + pos: -2.4462023,1.4126525 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 212 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: MachineCentrifuge + entities: + - uid: 213 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 214 + components: + - type: Transform + anchored: False + pos: 5,3.8 + parent: 1 + - type: Physics + bodyType: Dynamic +- proto: Mannequin + entities: + - uid: 111 + components: + - type: MetaData + name: Текила Сансет + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 115 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 114 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 113 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 112 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: ReplacementAccent + accent: cowboy +- proto: Paper + entities: + - uid: 215 + components: + - type: Transform + pos: -2.569386,0.53651655 + parent: 1 + - type: Paper + content: >+ + - Жизнь отшельника довольно тяжела... Понимать что ты один одишёшенек на весь космос... Никому не нужный.. + + + + - Сегодня нашел странное яйцо на обшивке, по всей видимости в яйце было нечто неизвестное науке. + + + + + - Это "нечто" имеет способности к созданию магнитных полей, тоесть оно работает как комуникатор. В дальнейшем буду называть обьект "симбиот" + + + + - Я изучил всё что мог, и просто выбросил плод в космос, мое оборудование не способно к дальнейшим изучениям, плод не омжет быть чем-то ценным, но изза него у меня дико болит голова. + + + + - К моей хижине летит странный обломок, но не думаю что это важно, обычно они пролетают мимо, а осколки спокойно останавливает защита. + + +- proto: PartRodMetal1 + entities: + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.0858188,5.544298 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 3.8281176,5.518256 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5546393,5.6484647 + parent: 1 +- proto: Pen + entities: + - uid: 30 + components: + - type: Transform + pos: -2.3790708,0.8433417 + parent: 1 +- proto: Pill + entities: + - uid: 219 + components: + - type: MetaData + name: таблетка амбузола плюс + - type: Transform + pos: 6.7044783,2.506638 + parent: 1 + - type: Pill + pillType: 2 +- proto: PipeBomb + entities: + - uid: 220 + components: + - type: Transform + pos: 3.9608643,2.6374404 + parent: 1 +- proto: PortableGeneratorJrPacman + entities: + - uid: 221 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: PosterContrabandCommunistState + entities: + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 +- proto: PosterLegitHighClassMartini + entities: + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 +- proto: PosterLegitScience + entities: + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 +- proto: PowerCellHyperPrinted + entities: + - uid: 228 + components: + - type: Transform + rot: 6.178465552059927 rad + pos: 4.631891,5.6235 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 229 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 230 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 +- proto: Railing + entities: + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5466769,0.6870057 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 2.1642082724729685 rad + pos: 0.27455688,-0.39176452 + parent: 1 +- proto: ScrapAirlock2 + entities: + - uid: 239 + components: + - type: Transform + pos: 5.510503,-1.1010869 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -0.3301115,0.38467616 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 241 + components: + - type: Transform + pos: 1.2557225,-0.0014241934 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 242 + components: + - type: Transform + pos: 6.290276,0.16332203 + parent: 1 +- proto: ScrapCloset + entities: + - uid: 243 + components: + - type: Transform + pos: 3.5049932,-1.6088994 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 244 + components: + - type: Transform + rot: -0.9250245035569946 rad + pos: 3.486802,4.356388 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 245 + components: + - type: Transform + pos: 5.542177,0.9421544 + parent: 1 +- proto: ScrapFirelock1 + entities: + - uid: 246 + components: + - type: Transform + pos: 5.5231876,-1.2573369 + parent: 1 +- proto: ScrapFirelock2 + entities: + - uid: 247 + components: + - type: Transform + pos: 5.4841194,-1.7000451 + parent: 1 +- proto: ScrapFirelock3 + entities: + - uid: 248 + components: + - type: Transform + pos: 1.3286049,1.6579106 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.135658,2.5172632 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.2624507,2.5693467 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 251 + components: + - type: Transform + pos: 1.7070642,-0.69124377 + parent: 1 +- proto: ScrapJetpack + entities: + - uid: 252 + components: + - type: Transform + pos: 6.470984,-0.46114743 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 253 + components: + - type: Transform + pos: -2.588142,2.6920896 + parent: 1 +- proto: ScrapMopBucket + entities: + - uid: 254 + components: + - type: Transform + pos: 3.7172325,-1.6324682 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 255 + components: + - type: Transform + pos: 5.5839233,-1.5114582 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 3.740813,0.6301204 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 3.4872546,5.38213 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 3.4919705,-1.4917119 + parent: 1 +- proto: ScrapTube + entities: + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.0895996,5.5412536 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 2.8623399732707004 rad + pos: 2.5844655,4.161045 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 5.7462296,2.6231356 + parent: 1 +- proto: Screwdriver + entities: + - uid: 262 + components: + - type: Transform + rot: 156.8527398767304 rad + pos: 2.7424226,2.8456998 + parent: 1 +- proto: ShardCrystalRed + entities: + - uid: 263 + components: + - type: MetaData + name: окровавленный осколок. + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5693874,2.26426 + parent: 1 +- proto: ShardGlass + entities: + - uid: 264 + components: + - type: Transform + pos: 1.8718715,2.7990737 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.7266173,3.6844902 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 266 + components: + - type: Transform + pos: 3.2811606,5.609402 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5937076,5.440131 + parent: 1 +- proto: ShelfBar + entities: + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: Storage + storedItems: + 133: + position: 0,0 + _rotation: South + 134: + position: 2,0 + _rotation: South + 135: + position: 4,0 + _rotation: South + 129: + position: 0,3 + _rotation: South + 130: + position: 1,4 + _rotation: East + 131: + position: 3,4 + _rotation: East + 132: + position: 4,3 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 133 + - 135 + - 131 + - 132 + - 130 + - 129 + - 134 +- proto: ShelfMetal + entities: + - uid: 268 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: Storage + storedItems: + 269: + position: 0,0 + _rotation: South + 270: + position: 2,0 + _rotation: South + 271: + position: 1,0 + _rotation: South + 272: + position: 3,0 + _rotation: South + 273: + position: 0,3 + _rotation: South + 274: + position: 1,3 + _rotation: South + 275: + position: 2,3 + _rotation: South + 276: + position: 3,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 269 + - 270 + - 271 + - 272 + - 273 + - 274 + - 275 + - 276 +- proto: ShellShotgun + entities: + - uid: 97 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 98 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 99 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 100 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 101 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 102 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 103 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 104 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 105 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 106 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 107 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 108 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 109 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 110 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False +- proto: SinkWide + entities: + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: SpaceTickSpawner + entities: + - uid: 278 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 +- proto: SpawnMobCobraSalvage + entities: + - uid: 279 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: SpawnMobMouse + entities: + - uid: 280 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 281 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: StrangePill + entities: + - uid: 282 + components: + - type: Transform + rot: 3.4557519189487724 rad + pos: -2.3279738,2.836079 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 1.2740903539558606 rad + pos: -2.762124,3.1699073 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: -2.3540764,2.4407406 + parent: 1 +- proto: SubstationBasicEmpty + entities: + - uid: 285 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 286 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: SyringeIpecac + entities: + - uid: 287 + components: + - type: MetaData + name: шприц ромерола + - type: Transform + pos: 6.481953,2.7327712 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 +- proto: TableStone + entities: + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 +- proto: TableWood + entities: + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: TechnologyDisk + entities: + - uid: 300 + components: + - type: Transform + rot: 0.13962634015954636 rad + pos: 4.831558,0.39876032 + parent: 1 +- proto: TreasureCDDrive + entities: + - uid: 301 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 2.9293222,3.8990533 + parent: 1 +- proto: TreasureDatadiskEncrypted + entities: + - uid: 269 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 270 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 271 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 272 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 273 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 274 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 275 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 276 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False +- proto: TreasureHardDiskDrive + entities: + - uid: 302 + components: + - type: Transform + rot: 602.7494571762417 rad + pos: 2.4096804,0.04821062 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: -0.5934119456780721 rad + pos: 2.0698175,3.3000948 + parent: 1 +- proto: WallReinforced + entities: + - uid: 304 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 320 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: WarpPoint + entities: + - uid: 351 + components: + - type: MetaData + name: Дом отшельника + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: WaterTank + entities: + - uid: 352 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: WeaponMakeshiftLaser + entities: + - uid: 353 + components: + - type: Transform + rot: 0.2792526803190927 rad + pos: 5.362331,2.6227639 + parent: 1 +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 354 + components: + - type: Transform + pos: -2.6085157,4.5205574 + parent: 1 +- proto: WeaponSniperMosin + entities: + - uid: 355 + components: + - type: Transform + rot: -0.5759586531581288 rad + pos: 0.65219474,-1.3794775 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 +- proto: Wrench + entities: + - uid: 358 + components: + - type: Transform + rot: 3.717551306747922 rad + pos: 1.3663311,3.7201161 + parent: 1 +... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 75511b17604..e535f9e0114 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -36,11 +36,11 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -68,12 +68,16 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-2: ind: -1,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -100,247 +104,301 @@ entities: data: tiles: -4,0: + 0: 65532 + -4,-1: 0: 65535 -4,1: - 0: 65535 + 0: 15 + 1: 65280 + -5,1: + 1: 52292 + -4,2: + 1: 8959 + -5,2: + 1: 204 + -4,3: + 1: 8738 + -4,4: + 1: 230 -3,0: - 0: 65535 + 0: 65524 -3,1: - 0: 65535 + 0: 3823 + -3,2: + 1: 35071 + -3,-1: + 0: 56797 -2,0: - 0: 65535 + 0: 65534 -2,1: - 0: 65535 + 0: 61167 + -3,3: + 1: 8 + -2,3: + 1: 15 -2,2: - 0: 65535 + 0: 3822 + -2,-1: + 0: 61166 -1,0: 0: 65535 -1,1: 0: 65535 -1,2: + 0: 53247 + -1,3: + 1: 1 + -1,-1: 0: 65535 - -4,-3: - 0: 61440 - -4,-2: + 0,0: 0: 65535 - -4,-1: + 0,1: 0: 65535 - -3,-3: - 0: 61440 - -3,-2: + 0,2: 0: 65535 - -3,-1: + -4,-2: 0: 65535 + -3,-2: + 0: 56829 + -2,-2: + 0: 3838 -2,-4: - 0: 65520 + 0: 60928 -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 + 0: 61166 -1,-4: - 0: 65535 + 0: 65350 -1,-3: 0: 65535 -1,-2: + 0: 4095 + -1,-5: + 0: 16384 + 0,-4: + 0: 65299 + 0,-3: 0: 65535 - -1,-1: + 0,-2: + 0: 53247 + 0,-1: 0: 65535 0,4: - 0: 61183 + 1: 17 + 0: 3276 + 0,3: + 1: 4368 + 0: 52428 + -1,4: + 1: 240 0,5: - 0: 61166 + 0: 52428 0,6: 0: 14 1,4: + 0: 17759 + 1,3: 0: 65535 1,5: - 0: 65535 + 0: 58990 1,6: - 0: 65535 + 0: 26350 1,7: - 0: 15 + 0: 4 2,4: - 0: 65535 + 0: 65419 2,5: - 0: 65535 + 0: 45311 2,6: - 0: 4095 + 0: 187 + 2,3: + 0: 16383 3,4: - 0: 65535 + 0: 46011 3,5: - 0: 65535 + 0: 47295 3,6: - 0: 53247 - 3,7: - 0: 12 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 + 0: 35007 + 3,3: + 0: 8191 + 4,4: + 0: 12595 + 4,5: + 0: 13107 + 4,6: + 0: 13107 1,0: 0: 65535 - 1,1: - 0: 65535 1,2: + 0: 65520 + 1,-1: 0: 65535 - 1,3: - 0: 65535 + 1,1: + 0: 61166 + 2,2: + 0: 7632 2,0: - 0: 4369 1: 8738 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 + 2,1: + 1: 2 3,2: - 0: 65535 - 3,3: - 0: 65535 + 0: 36828 + 3,0: + 0: 36590 3,1: - 0: 61166 - 0,-4: - 0: 65527 - 0,-3: - 0: 65535 - 0,-2: + 0: 52428 + 3,-1: + 0: 35771 + 4,0: + 0: 8191 + 4,1: 0: 65535 - 0,-1: + 4,2: 0: 65535 + 4,3: + 0: 8191 + 0,-5: + 0: 4096 1,-4: - 0: 30576 + 0: 48008 1,-3: - 0: 65399 + 0: 65467 1,-2: - 0: 63359 - 1,-1: + 0: 3003 + 1,-5: + 0: 34952 + 2,-4: + 0: 45875 + 1: 1092 + 2: 2056 + 2,-3: 0: 65535 2,-2: - 0: 4096 - 1: 8738 + 0: 61439 + 2,-5: + 0: 65535 2,-1: - 0: 4369 - 1: 8738 - 3,-1: - 0: 65262 + 0: 3822 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 3,-2: - 0: 61152 + 0: 48063 + 3,-5: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 4,-2: - 0: 65520 + 0: 65311 4,-1: + 0: 8191 + 4,-5: 0: 65535 + 5,-4: + 0: 62451 + 2: 3084 + 5,-3: + 0: 62451 + 3: 12 + 4: 3072 5,-2: - 0: 65520 + 0: 65283 + 5: 12 5,-1: - 0: 65535 + 0: 36863 + 5,-5: + 0: 62451 + 2: 3084 + 5,0: + 0: 40959 + 6,-4: + 2: 257 + 0: 4112 + 1: 17476 + 6,-3: + 3: 1 + 0: 4112 + 4: 256 + 1: 17476 6,-2: - 0: 65520 + 5: 1 + 0: 47872 + 1: 4 6,-1: + 0: 7103 + 6,-5: + 0: 4112 + 1: 17476 + 2: 257 + 6,0: 0: 65535 7,-2: - 0: 65520 + 0: 65280 7,-1: - 0: 65535 + 0: 8191 + 7,0: + 0: 13107 + 8,-2: + 0: 13056 + 8,-1: + 0: 819 -5,0: - 0: 52428 - -5,-3: - 0: 32768 - -5,-2: - 0: 51336 + 1: 17476 -5,-1: - 0: 52428 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 + 1: 17476 + -5,-2: + 1: 16384 5,1: - 0: 65535 + 0: 48051 5,2: - 0: 65535 + 0: 7103 5,3: - 0: 65535 - 6,0: - 0: 65535 + 0: 4095 6,1: - 0: 65535 + 0: 65525 6,2: - 0: 65535 + 0: 4095 6,3: - 0: 63351 - 7,0: - 0: 30583 - 7,1: - 0: 4375 - 7,2: - 0: 4369 - 7,3: - 0: 4096 - 8,-2: - 0: 30576 - 8,-1: - 0: 30583 - 4,4: - 0: 30583 - 4,5: - 0: 30583 - 4,6: - 0: 30583 - 4,7: - 0: 7 - -4,2: - 0: 26367 - -1,3: - 0: 15 - 2,1: - 0: 4369 - 1: 2 - -5,1: - 0: 52428 - -4,3: - 0: 26222 - -3,3: - 0: 15 - -2,3: - 0: 15 - -4,4: - 0: 238 + 0: 626 -3,4: - 0: 255 + 1: 240 -2,4: - 0: 255 - -1,4: - 0: 255 - -5,2: - 0: 204 - -3,2: - 0: 35071 - 0,-5: - 0: 28672 - -1,-5: + 1: 240 + 1,-7: + 1: 192 + 0: 32768 + 1,-6: + 0: 34952 + 2,-7: + 1: 240 0: 61440 - 2,-3: - 1: 12834 - 2,-4: - 1: 61166 - 3,-4: - 1: 13107 - 2,-5: - 1: 57344 - 3,-5: - 1: 12288 + 2,-6: + 0: 65535 + 3,-7: + 1: 240 + 0: 61440 + 3,-6: + 0: 65535 + 4,-7: + 1: 240 + 0: 62976 + 4,-6: + 0: 65535 + 5,-7: + 1: 240 + 0: 61440 + 5,-6: + 0: 62451 + 2: 3084 + 6,-7: + 1: 17520 + 0: 4096 + 6,-6: + 2: 257 + 0: 4112 + 1: 17476 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -357,6 +415,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -372,45 +445,102 @@ entities: - 0 - 0 - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: BecomesStation - id: Dev - - type: SpreaderGrid - - type: GridPathfinding - - type: NavMap - - uid: 962 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap -- proto: AirAlarm - entities: - - uid: 800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 179 - - type: DeviceList - devices: - - 801 -- proto: AirCanister - entities: - - uid: 458 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 179 -- proto: Airlock - entities: - - uid: 48 + - 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: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: BecomesStation + id: Dev + - type: SpreaderGrid + - type: GridPathfinding + - type: NavMap + - uid: 962 + components: + - type: MetaData + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap +- proto: AirAlarm + entities: + - uid: 800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 179 + - type: DeviceList + devices: + - 801 + - uid: 1556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 179 +- proto: AirCanister + entities: + - uid: 1281 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 179 + - uid: 1284 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 179 +- proto: Airlock + entities: + - uid: 48 components: - type: Transform pos: 7.5,20.5 @@ -435,6 +565,32 @@ entities: - type: Transform pos: 6.5,28.5 parent: 179 +- proto: AirlockAtmospherics + entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 179 + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 179 + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 179 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 179 - proto: AirlockCargo entities: - uid: 87 @@ -481,16 +637,6 @@ entities: - type: Transform pos: 0.5,-14.5 parent: 179 - - uid: 255 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 179 - - uid: 256 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 179 - uid: 318 components: - type: Transform @@ -741,6 +887,23 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-13.5 parent: 179 +- proto: AmmoniaCanister + entities: + - uid: 250 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 179 + - uid: 251 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 179 + - uid: 1317 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 179 - proto: AnomalyLocator entities: - uid: 1086 @@ -795,3157 +958,2622 @@ entities: - type: Transform pos: 0.5,-16.5 parent: 179 -- proto: Autolathe - entities: - - uid: 1 + - uid: 1184 components: - type: Transform - pos: 12.5,21.5 + pos: 22.5,-16.5 parent: 179 - - uid: 94 + - uid: 1187 components: - type: Transform - pos: -4.5,-5.5 + pos: 22.5,-14.5 parent: 179 - - uid: 446 + - uid: 1200 components: - type: Transform - pos: -6.5,5.5 + pos: 22.5,-10.5 parent: 179 - - uid: 528 + - uid: 1201 components: - type: Transform - pos: -12.5,-7.5 + pos: 22.5,-12.5 parent: 179 - - uid: 531 + - uid: 1207 components: - type: Transform - pos: -13.5,-7.5 + pos: 22.5,-18.5 parent: 179 - - uid: 532 + - uid: 1220 components: - type: Transform - pos: -14.5,-7.5 + pos: 22.5,-8.5 parent: 179 -- proto: BaseUplinkRadioDebug - entities: - - uid: 732 + - uid: 1235 components: - type: Transform - pos: 0.6038008,7.5209107 + pos: 22.5,-20.5 parent: 179 -- proto: Basketball - entities: - - uid: 951 + - uid: 1238 components: - type: Transform - pos: -9.702013,9.68404 + pos: 22.5,-22.5 parent: 179 - - uid: 952 + - uid: 1260 components: - type: Transform - pos: -10.879096,9.579802 + rot: 3.141592653589793 rad + pos: 22.5,-24.5 parent: 179 -- proto: Beaker - entities: - - uid: 174 + - uid: 1335 components: - type: Transform - pos: 25.291822,10.667244 + rot: 3.141592653589793 rad + pos: 18.5,-25.5 parent: 179 - - uid: 175 + - uid: 1336 components: - type: Transform - pos: 24.541822,10.635994 + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 parent: 179 - - uid: 176 + - uid: 1489 components: - type: Transform - pos: 26.416822,10.651619 + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 parent: 179 - - uid: 324 + - uid: 1493 components: - type: Transform - pos: 4.718221,9.39097 + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 parent: 179 - - uid: 735 + - uid: 1500 components: - type: Transform - pos: 4.739054,9.807927 + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 parent: 179 - - uid: 920 + - uid: 1507 components: - type: Transform - pos: -4.293744,10.966518 + pos: 7.5,-19.5 parent: 179 - - uid: 950 + - uid: 1508 components: - type: Transform - pos: -4.293744,10.966518 + pos: 8.5,-19.5 parent: 179 -- proto: BikeHorn - entities: - - uid: 672 + - uid: 1509 components: - type: Transform - pos: 1.1246341,7.500063 + pos: 9.5,-19.5 parent: 179 -- proto: BlastDoor - entities: - - uid: 202 + - uid: 1510 components: - type: Transform - pos: -2.5,-14.5 + pos: 10.5,-19.5 parent: 179 - - uid: 697 + - uid: 1511 components: - type: Transform - pos: 1.5,-14.5 + pos: 11.5,-19.5 parent: 179 - - uid: 698 + - uid: 1512 components: - type: Transform - pos: 1.5,-16.5 + pos: 12.5,-19.5 parent: 179 - - uid: 984 + - uid: 1513 components: - type: Transform - pos: -2.5,-16.5 + pos: 13.5,-19.5 parent: 179 -- proto: BoozeDispenser - entities: - - uid: 752 + - uid: 1514 components: - type: Transform - pos: 7.5,12.5 + pos: 14.5,-19.5 parent: 179 -- proto: BoxBeaker - entities: - - uid: 280 + - uid: 1515 components: - type: Transform - pos: 5.163024,9.63072 + pos: 14.5,-20.5 parent: 179 -- proto: Brutepack - entities: - - uid: 150 + - uid: 1516 components: - type: Transform - pos: 18.601385,5.512907 + pos: 14.5,-21.5 parent: 179 - - uid: 151 + - uid: 1517 components: - type: Transform - pos: 18.476385,4.841032 + pos: 14.5,-22.5 parent: 179 -- proto: Bucket - entities: - - uid: 691 + - uid: 1518 components: - type: Transform - pos: 7.1447573,15.900927 + pos: 14.5,-23.5 parent: 179 -- proto: CableApcExtension - entities: - - uid: 15 + - uid: 1519 components: - type: Transform - pos: 5.5,15.5 + pos: 14.5,-24.5 parent: 179 - - uid: 23 +- proto: AtmosFixBlockerMarker + entities: + - uid: 1582 components: - type: Transform - pos: 3.5,15.5 + pos: 23.5,-13.5 parent: 179 - - uid: 58 + - uid: 1583 components: - type: Transform - pos: 8.5,15.5 + pos: 23.5,-15.5 parent: 179 - - uid: 90 + - uid: 1584 components: - type: Transform - pos: 4.5,15.5 + pos: 23.5,-17.5 parent: 179 - - uid: 281 + - uid: 1585 components: - type: Transform - pos: -13.5,4.5 + pos: 23.5,-19.5 parent: 179 - - uid: 389 + - uid: 1586 components: - type: Transform - pos: 7.5,15.5 + pos: 23.5,-21.5 parent: 179 - - uid: 453 + - uid: 1587 components: - type: Transform - pos: 6.5,15.5 + pos: 23.5,-23.5 parent: 179 - - uid: 736 + - uid: 1588 components: - type: Transform - pos: -2.5,9.5 + pos: 10.5,-14.5 parent: 179 - - uid: 760 + - uid: 1589 components: - type: Transform - pos: -2.5,10.5 + pos: 22.5,-13.5 parent: 179 - - uid: 761 + - uid: 1590 components: - type: Transform - pos: -15.5,5.5 + pos: 24.5,-13.5 parent: 179 - - uid: 763 + - uid: 1591 components: - type: Transform - pos: -2.5,11.5 + pos: 24.5,-15.5 parent: 179 - - uid: 764 + - uid: 1592 components: - type: Transform - pos: -1.5,11.5 + pos: 22.5,-15.5 parent: 179 - - uid: 765 + - uid: 1593 components: - type: Transform - pos: -7.5,0.5 + pos: 22.5,-17.5 parent: 179 - - uid: 766 + - uid: 1594 components: - type: Transform - pos: -0.5,11.5 + pos: 24.5,-17.5 parent: 179 - - uid: 767 + - uid: 1595 components: - type: Transform - pos: -3.5,10.5 + pos: 24.5,-19.5 parent: 179 - - uid: 768 + - uid: 1596 components: - type: Transform - pos: -4.5,10.5 + pos: 22.5,-19.5 parent: 179 - - uid: 769 + - uid: 1597 components: - type: Transform - pos: -5.5,10.5 + pos: 22.5,-21.5 parent: 179 - - uid: 770 + - uid: 1598 components: - type: Transform - pos: -6.5,10.5 + pos: 22.5,-23.5 parent: 179 - - uid: 771 + - uid: 1599 components: - type: Transform - pos: -2.5,8.5 + pos: 24.5,-23.5 parent: 179 - - uid: 772 + - uid: 1600 components: - type: Transform - pos: -2.5,7.5 + pos: 24.5,-21.5 parent: 179 - - uid: 773 + - uid: 1607 components: - type: Transform - pos: -2.5,6.5 + pos: 10.5,-15.5 parent: 179 - - uid: 774 + - uid: 1608 components: - type: Transform - pos: -2.5,5.5 + pos: 10.5,-13.5 parent: 179 - - uid: 775 + - uid: 1609 components: - type: Transform - pos: -3.5,5.5 + pos: 11.5,-13.5 parent: 179 - - uid: 776 + - uid: 1610 components: - type: Transform - pos: -4.5,5.5 + pos: 11.5,-15.5 parent: 179 - - uid: 777 +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 1611 components: - type: Transform - pos: -5.5,5.5 + pos: 12.5,-15.5 parent: 179 - - uid: 778 + - uid: 1612 components: - type: Transform - pos: -6.5,5.5 + pos: 13.5,-15.5 parent: 179 - - uid: 779 + - uid: 1613 components: - type: Transform - pos: -6.5,4.5 + pos: 14.5,-15.5 parent: 179 - - uid: 780 + - uid: 1614 components: - type: Transform - pos: -7.5,4.5 + pos: 14.5,-14.5 parent: 179 - - uid: 781 + - uid: 1615 components: - type: Transform - pos: -8.5,4.5 + pos: 13.5,-14.5 parent: 179 - - uid: 782 + - uid: 1616 components: - type: Transform - pos: -9.5,4.5 + pos: 12.5,-14.5 parent: 179 - - uid: 783 + - uid: 1617 components: - type: Transform - pos: -10.5,4.5 + pos: 12.5,-13.5 parent: 179 - - uid: 784 + - uid: 1618 components: - type: Transform - pos: -11.5,4.5 + pos: 13.5,-13.5 parent: 179 - - uid: 785 + - uid: 1619 components: - type: Transform - pos: -12.5,4.5 + pos: 14.5,-13.5 parent: 179 - - uid: 786 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1579 components: - type: Transform - pos: -12.5,3.5 + pos: 23.5,-9.5 parent: 179 - - uid: 787 + - uid: 1603 components: - type: Transform - pos: -12.5,2.5 + pos: 22.5,-9.5 parent: 179 - - uid: 788 + - uid: 1604 components: - type: Transform - pos: -12.5,1.5 + pos: 24.5,-9.5 parent: 179 - - uid: 789 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1580 components: - type: Transform - pos: -12.5,0.5 + pos: 23.5,-7.5 parent: 179 - - uid: 790 + - uid: 1605 components: - type: Transform - pos: -12.5,-0.5 + pos: 22.5,-7.5 parent: 179 - - uid: 791 + - uid: 1606 components: - type: Transform - pos: -2.5,4.5 + pos: 24.5,-7.5 parent: 179 - - uid: 792 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 1581 components: - type: Transform - pos: -2.5,2.5 + pos: 23.5,-11.5 parent: 179 - - uid: 793 + - uid: 1601 components: - type: Transform - pos: -2.5,1.5 + pos: 22.5,-11.5 parent: 179 - - uid: 794 + - uid: 1602 components: - type: Transform - pos: -2.5,0.5 + pos: 24.5,-11.5 parent: 179 - - uid: 795 +- proto: Autolathe + entities: + - uid: 1 components: - type: Transform - pos: -2.5,3.5 + pos: 12.5,21.5 parent: 179 - - uid: 796 + - uid: 94 components: - type: Transform - pos: -2.5,-0.5 + pos: -4.5,-5.5 parent: 179 - - uid: 797 + - uid: 446 components: - type: Transform - pos: -2.5,-1.5 + pos: -6.5,5.5 parent: 179 - - uid: 798 + - uid: 528 components: - type: Transform - pos: -2.5,-2.5 + pos: -12.5,-7.5 parent: 179 - - uid: 799 + - uid: 531 components: - type: Transform - pos: -2.5,-3.5 + pos: -13.5,-7.5 parent: 179 - - uid: 802 + - uid: 532 components: - type: Transform - pos: -8.5,0.5 + pos: -14.5,-7.5 parent: 179 - - uid: 803 +- proto: BaseUplinkRadioDebug + entities: + - uid: 732 components: - type: Transform - pos: 2.5,-2.5 + pos: 0.6038008,7.5209107 parent: 179 - - uid: 804 +- proto: Basketball + entities: + - uid: 951 components: - type: Transform - pos: 2.5,-3.5 + pos: -9.702013,9.68404 parent: 179 - - uid: 805 + - uid: 952 components: - type: Transform - pos: -9.5,0.5 + pos: -10.879096,9.579802 parent: 179 - - uid: 806 +- proto: Beaker + entities: + - uid: 174 components: - type: Transform - pos: -10.5,0.5 + pos: 25.291822,10.667244 parent: 179 - - uid: 807 + - uid: 175 components: - type: Transform - pos: -14.5,0.5 + pos: 24.541822,10.635994 parent: 179 - - uid: 808 + - uid: 176 components: - type: Transform - pos: -11.5,0.5 + pos: 26.416822,10.651619 parent: 179 - - uid: 809 + - uid: 324 components: - type: Transform - pos: -15.5,0.5 + pos: 4.718221,9.39097 parent: 179 - - uid: 810 + - uid: 735 components: - type: Transform - pos: -15.5,0.5 + pos: 4.739054,9.807927 parent: 179 - - uid: 811 + - uid: 920 components: - type: Transform - pos: -16.5,0.5 + pos: -4.293744,10.966518 parent: 179 - - uid: 812 + - uid: 950 components: - type: Transform - pos: -16.5,5.5 + pos: -4.293744,10.966518 parent: 179 - - uid: 813 +- proto: BikeHorn + entities: + - uid: 672 components: - type: Transform - pos: -16.5,4.5 + pos: 1.1246341,7.500063 parent: 179 - - uid: 814 +- proto: BlastDoor + entities: + - uid: 202 components: - type: Transform - pos: -16.5,3.5 + pos: -2.5,-14.5 parent: 179 - - uid: 815 + - uid: 697 components: - type: Transform - pos: -16.5,2.5 + pos: 1.5,-14.5 parent: 179 - - uid: 816 + - uid: 698 components: - type: Transform - pos: -16.5,1.5 + pos: 1.5,-16.5 parent: 179 - - uid: 817 + - uid: 984 components: - type: Transform - pos: 7.5,5.5 + pos: -2.5,-16.5 parent: 179 - - uid: 818 + - uid: 1230 components: - type: Transform - pos: 7.5,7.5 + pos: 6.5,-20.5 parent: 179 - - uid: 819 + - uid: 1232 components: - type: Transform - pos: 7.5,8.5 + pos: 6.5,-17.5 parent: 179 - - uid: 820 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 1233 components: - type: Transform - pos: 7.5,9.5 + pos: 6.5,-16.5 parent: 179 - - uid: 821 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 1234 components: - type: Transform - pos: 8.5,9.5 + pos: 6.5,-15.5 parent: 179 - - uid: 822 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 1385 components: - type: Transform - pos: 6.5,9.5 + pos: 11.5,-14.5 parent: 179 - - uid: 823 +- proto: BoozeDispenser + entities: + - uid: 752 components: - type: Transform - pos: 5.5,9.5 + pos: 7.5,12.5 parent: 179 - - uid: 824 +- proto: BoxBeaker + entities: + - uid: 280 components: - type: Transform - pos: 4.5,9.5 + pos: 5.163024,9.63072 parent: 179 - - uid: 825 +- proto: Brutepack + entities: + - uid: 150 components: - type: Transform - pos: 8.5,10.5 + pos: 18.601385,5.512907 parent: 179 - - uid: 826 + - uid: 151 components: - type: Transform - pos: 8.5,11.5 + pos: 18.476385,4.841032 parent: 179 - - uid: 827 +- proto: Bucket + entities: + - uid: 691 components: - type: Transform - pos: 8.5,12.5 + pos: 7.1447573,15.900927 parent: 179 - - uid: 828 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 1488 components: - type: Transform - pos: 7.5,12.5 + rot: 3.141592653589793 rad + pos: 14.5,-12.5 parent: 179 - - uid: 829 +- proto: CableApcExtension + entities: + - uid: 15 components: - type: Transform - pos: 7.5,11.5 + pos: 5.5,15.5 parent: 179 - - uid: 830 + - uid: 23 components: - type: Transform - pos: 2.5,-5.5 + pos: 3.5,15.5 parent: 179 - - uid: 831 + - uid: 58 components: - type: Transform - pos: 2.5,-4.5 + pos: 8.5,15.5 parent: 179 - - uid: 832 + - uid: 90 components: - type: Transform - pos: 1.5,-5.5 + pos: 4.5,15.5 parent: 179 - - uid: 833 + - uid: 281 components: - type: Transform - pos: 0.5,-5.5 + pos: -13.5,4.5 parent: 179 - - uid: 834 + - uid: 389 components: - type: Transform - pos: -0.5,-5.5 + pos: 7.5,15.5 parent: 179 - - uid: 835 + - uid: 453 components: - type: Transform - pos: -1.5,-5.5 + pos: 6.5,15.5 parent: 179 - - uid: 836 + - uid: 736 components: - type: Transform - pos: -2.5,-5.5 + pos: -2.5,9.5 parent: 179 - - uid: 837 + - uid: 760 components: - type: Transform - pos: -3.5,-5.5 + pos: -2.5,10.5 parent: 179 - - uid: 838 + - uid: 761 components: - type: Transform - pos: -4.5,-5.5 + pos: -15.5,5.5 parent: 179 - - uid: 839 + - uid: 763 components: - type: Transform - pos: 1.5,11.5 + pos: -2.5,11.5 parent: 179 - - uid: 840 + - uid: 764 components: - type: Transform - pos: 2.5,11.5 + pos: -1.5,11.5 parent: 179 - - uid: 841 + - uid: 765 components: - type: Transform - pos: 0.5,11.5 + pos: -7.5,0.5 parent: 179 - - uid: 842 + - uid: 766 components: - type: Transform - pos: 2.5,12.5 + pos: -0.5,11.5 parent: 179 - - uid: 843 + - uid: 767 components: - type: Transform - pos: 2.5,13.5 + pos: -3.5,10.5 parent: 179 - - uid: 844 + - uid: 768 components: - type: Transform - pos: 2.5,14.5 + pos: -4.5,10.5 parent: 179 - - uid: 845 + - uid: 769 components: - type: Transform - pos: 2.5,15.5 + pos: -5.5,10.5 parent: 179 - - uid: 853 + - uid: 770 components: - type: Transform - pos: -3.5,-3.5 + pos: -6.5,10.5 parent: 179 - - uid: 854 + - uid: 771 components: - type: Transform - pos: -4.5,-3.5 + pos: -2.5,8.5 parent: 179 - - uid: 855 + - uid: 772 components: - type: Transform - pos: -5.5,-3.5 + pos: -2.5,7.5 parent: 179 - - uid: 856 + - uid: 773 components: - type: Transform - pos: -6.5,-3.5 + pos: -2.5,6.5 parent: 179 - - uid: 857 + - uid: 774 components: - type: Transform - pos: -6.5,-2.5 + pos: -2.5,5.5 parent: 179 - - uid: 858 + - uid: 775 components: - type: Transform - pos: -6.5,-1.5 + pos: -3.5,5.5 parent: 179 - - uid: 859 + - uid: 776 components: - type: Transform - pos: -6.5,-0.5 + pos: -4.5,5.5 parent: 179 - - uid: 860 + - uid: 777 components: - type: Transform - pos: -6.5,0.5 + pos: -5.5,5.5 parent: 179 - - uid: 861 + - uid: 778 components: - type: Transform - pos: -6.5,1.5 + pos: -6.5,5.5 parent: 179 - - uid: 862 + - uid: 779 components: - type: Transform - pos: -6.5,2.5 + pos: -6.5,4.5 parent: 179 - - uid: 872 + - uid: 780 components: - type: Transform - pos: 7.5,6.5 + pos: -7.5,4.5 parent: 179 - - uid: 873 + - uid: 781 components: - type: Transform - pos: 8.5,21.5 + pos: -8.5,4.5 parent: 179 - - uid: 877 + - uid: 782 components: - type: Transform - pos: -6.5,3.5 + pos: -9.5,4.5 parent: 179 - - uid: 878 + - uid: 783 components: - type: Transform - pos: -2.5,-4.5 + pos: -10.5,4.5 parent: 179 - - uid: 879 + - uid: 784 components: - type: Transform - pos: -1.5,-4.5 + pos: -11.5,4.5 parent: 179 - - uid: 880 + - uid: 785 components: - type: Transform - pos: -0.5,-4.5 + pos: -12.5,4.5 parent: 179 - - uid: 881 + - uid: 786 components: - type: Transform - pos: 0.5,-4.5 + pos: -12.5,3.5 parent: 179 - - uid: 882 + - uid: 787 components: - type: Transform - pos: 1.5,-4.5 + pos: -12.5,2.5 parent: 179 - - uid: 883 + - uid: 788 components: - type: Transform - pos: 2.5,-4.5 + pos: -12.5,1.5 parent: 179 - - uid: 884 + - uid: 789 components: - type: Transform - pos: 3.5,-4.5 + pos: -12.5,0.5 parent: 179 - - uid: 885 + - uid: 790 components: - type: Transform - pos: 4.5,-4.5 + pos: -12.5,-0.5 parent: 179 - - uid: 886 + - uid: 791 components: - type: Transform - pos: 5.5,-4.5 + pos: -2.5,4.5 parent: 179 - - uid: 887 + - uid: 792 components: - type: Transform - pos: 6.5,-4.5 + pos: -2.5,2.5 parent: 179 - - uid: 888 + - uid: 793 components: - type: Transform - pos: 7.5,-4.5 + pos: -2.5,1.5 parent: 179 - - uid: 889 + - uid: 794 components: - type: Transform - pos: 8.5,-4.5 + pos: -2.5,0.5 parent: 179 - - uid: 890 + - uid: 795 components: - type: Transform - pos: 8.5,-3.5 + pos: -2.5,3.5 parent: 179 - - uid: 891 + - uid: 796 components: - type: Transform - pos: 8.5,-2.5 + pos: -2.5,-0.5 parent: 179 - - uid: 892 + - uid: 797 components: - type: Transform - pos: 8.5,-1.5 + pos: -2.5,-1.5 parent: 179 - - uid: 893 + - uid: 798 components: - type: Transform - pos: 8.5,-0.5 + pos: -2.5,-2.5 parent: 179 - - uid: 894 + - uid: 799 components: - type: Transform - pos: 8.5,0.5 + pos: -2.5,-3.5 parent: 179 - - uid: 895 + - uid: 802 components: - type: Transform - pos: 8.5,1.5 + pos: -8.5,0.5 parent: 179 - - uid: 896 + - uid: 803 components: - type: Transform - pos: 8.5,2.5 + pos: 2.5,-2.5 parent: 179 - - uid: 897 + - uid: 804 components: - type: Transform - pos: 8.5,3.5 + pos: 2.5,-3.5 parent: 179 - - uid: 898 + - uid: 805 components: - type: Transform - pos: 8.5,4.5 + pos: -9.5,0.5 parent: 179 - - uid: 899 + - uid: 806 components: - type: Transform - pos: 8.5,5.5 + pos: -10.5,0.5 parent: 179 - - uid: 900 + - uid: 807 components: - type: Transform - pos: -14.5,5.5 + pos: -14.5,0.5 parent: 179 - - uid: 905 + - uid: 808 components: - type: Transform - pos: -12.5,5.5 + pos: -11.5,0.5 parent: 179 - - uid: 906 + - uid: 809 components: - type: Transform - pos: -14.5,4.5 + pos: -15.5,0.5 parent: 179 - - uid: 908 + - uid: 810 components: - type: Transform - pos: -15.5,4.5 + pos: -15.5,0.5 parent: 179 - - uid: 909 + - uid: 811 components: - type: Transform - pos: 8.5,20.5 + pos: -16.5,0.5 parent: 179 - - uid: 970 + - uid: 812 components: - type: Transform - pos: 9.5,12.5 + pos: -16.5,5.5 parent: 179 - - uid: 971 + - uid: 813 components: - type: Transform - pos: 10.5,12.5 + pos: -16.5,4.5 parent: 179 - - uid: 972 + - uid: 814 components: - type: Transform - pos: 11.5,12.5 + pos: -16.5,3.5 parent: 179 - - uid: 973 + - uid: 815 components: - type: Transform - pos: 12.5,12.5 + pos: -16.5,2.5 parent: 179 - - uid: 974 + - uid: 816 components: - type: Transform - pos: 13.5,12.5 + pos: -16.5,1.5 parent: 179 - - uid: 1026 + - uid: 817 components: - type: Transform - pos: -5.5,-14.5 + pos: 7.5,5.5 parent: 179 - - uid: 1027 + - uid: 818 components: - type: Transform - pos: -5.5,-13.5 + pos: 7.5,7.5 parent: 179 - - uid: 1028 + - uid: 819 components: - type: Transform - pos: -5.5,-12.5 + pos: 7.5,8.5 parent: 179 - - uid: 1029 + - uid: 820 components: - type: Transform - pos: -4.5,-12.5 + pos: 7.5,9.5 parent: 179 - - uid: 1030 + - uid: 821 components: - type: Transform - pos: -3.5,-12.5 + pos: 8.5,9.5 parent: 179 - - uid: 1031 + - uid: 822 components: - type: Transform - pos: -2.5,-12.5 + pos: 6.5,9.5 parent: 179 - - uid: 1032 + - uid: 823 components: - type: Transform - pos: -1.5,-12.5 + pos: 5.5,9.5 parent: 179 - - uid: 1033 + - uid: 824 components: - type: Transform - pos: -0.5,-12.5 + pos: 4.5,9.5 parent: 179 - - uid: 1034 + - uid: 825 components: - type: Transform - pos: 0.5,-12.5 + pos: 8.5,10.5 parent: 179 - - uid: 1035 + - uid: 826 components: - type: Transform - pos: 1.5,-12.5 + pos: 8.5,11.5 parent: 179 - - uid: 1036 + - uid: 827 components: - type: Transform - pos: 2.5,-12.5 + pos: 8.5,12.5 parent: 179 - - uid: 1037 + - uid: 828 components: - type: Transform - pos: 3.5,-12.5 + pos: 7.5,12.5 parent: 179 - - uid: 1038 + - uid: 829 components: - type: Transform - pos: 0.5,-13.5 + pos: 7.5,11.5 parent: 179 - - uid: 1039 + - uid: 830 components: - type: Transform - pos: 0.5,-14.5 + pos: 2.5,-5.5 parent: 179 - - uid: 1040 + - uid: 831 components: - type: Transform - pos: 0.5,-15.5 + pos: 2.5,-4.5 parent: 179 - - uid: 1041 + - uid: 832 components: - type: Transform - pos: -1.5,-13.5 + pos: 1.5,-5.5 parent: 179 - - uid: 1042 + - uid: 833 components: - type: Transform - pos: -1.5,-14.5 + pos: 0.5,-5.5 parent: 179 - - uid: 1043 + - uid: 834 components: - type: Transform - pos: -1.5,-15.5 + pos: -0.5,-5.5 parent: 179 - - uid: 1044 + - uid: 835 components: - type: Transform - pos: 4.5,-12.5 + pos: -1.5,-5.5 parent: 179 - - uid: 1045 + - uid: 836 components: - type: Transform - pos: 4.5,-13.5 + pos: -2.5,-5.5 parent: 179 - - uid: 1051 + - uid: 837 components: - type: Transform - pos: 9.5,15.5 + pos: -3.5,-5.5 parent: 179 - - uid: 1052 + - uid: 838 components: - type: Transform - pos: 9.5,16.5 + pos: -4.5,-5.5 parent: 179 - - uid: 1053 + - uid: 839 components: - type: Transform - pos: 9.5,17.5 + pos: 1.5,11.5 parent: 179 - - uid: 1054 + - uid: 840 components: - type: Transform - pos: 9.5,18.5 + pos: 2.5,11.5 parent: 179 - - uid: 1055 + - uid: 841 components: - type: Transform - pos: 9.5,19.5 + pos: 0.5,11.5 parent: 179 - - uid: 1056 + - uid: 842 components: - type: Transform - pos: 9.5,20.5 + pos: 2.5,12.5 parent: 179 - - uid: 1057 + - uid: 843 components: - type: Transform - pos: 10.5,20.5 + pos: 2.5,13.5 parent: 179 - - uid: 1058 + - uid: 844 components: - type: Transform - pos: 11.5,20.5 + pos: 2.5,14.5 parent: 179 - - uid: 1059 + - uid: 845 components: - type: Transform - pos: 12.5,20.5 + pos: 2.5,15.5 parent: 179 - - uid: 1060 + - uid: 853 components: - type: Transform - pos: 13.5,20.5 + pos: -3.5,-3.5 parent: 179 - - uid: 1061 + - uid: 854 components: - type: Transform - pos: 14.5,20.5 + pos: -4.5,-3.5 parent: 179 - - uid: 1062 + - uid: 855 components: - type: Transform - pos: 15.5,20.5 + pos: -5.5,-3.5 parent: 179 - - uid: 1063 + - uid: 856 components: - type: Transform - pos: 16.5,20.5 + pos: -6.5,-3.5 parent: 179 - - uid: 1064 + - uid: 857 components: - type: Transform - pos: 16.5,21.5 + pos: -6.5,-2.5 parent: 179 - - uid: 1065 + - uid: 858 components: - type: Transform - pos: 16.5,22.5 + pos: -6.5,-1.5 parent: 179 - - uid: 1066 + - uid: 859 components: - type: Transform - pos: 16.5,23.5 + pos: -6.5,-0.5 parent: 179 - - uid: 1067 + - uid: 860 components: - type: Transform - pos: 16.5,24.5 + pos: -6.5,0.5 parent: 179 - - uid: 1068 + - uid: 861 components: - type: Transform - pos: 16.5,25.5 + pos: -6.5,1.5 parent: 179 - - uid: 1069 + - uid: 862 components: - type: Transform - pos: 16.5,26.5 + pos: -6.5,2.5 parent: 179 - - uid: 1070 + - uid: 872 components: - type: Transform - pos: 16.5,27.5 + pos: 7.5,6.5 parent: 179 - - uid: 1079 + - uid: 873 components: - type: Transform - pos: 15.5,24.5 + pos: 8.5,21.5 parent: 179 - - uid: 1080 + - uid: 877 components: - type: Transform - pos: 14.5,24.5 + pos: -6.5,3.5 parent: 179 - - uid: 1081 + - uid: 878 components: - type: Transform - pos: 13.5,24.5 + pos: -2.5,-4.5 parent: 179 - - uid: 1082 + - uid: 879 components: - type: Transform - pos: 12.5,24.5 + pos: -1.5,-4.5 parent: 179 - - uid: 1097 + - uid: 880 components: - type: Transform - pos: 8.5,14.5 + pos: -0.5,-4.5 parent: 179 - - uid: 1098 + - uid: 881 components: - type: Transform - pos: 8.5,13.5 + pos: 0.5,-4.5 parent: 179 - - uid: 1099 + - uid: 882 components: - type: Transform - pos: 9.5,13.5 + pos: 1.5,-4.5 parent: 179 - - uid: 1100 + - uid: 883 components: - type: Transform - pos: 10.5,13.5 + pos: 2.5,-4.5 parent: 179 - - uid: 1101 + - uid: 884 components: - type: Transform - pos: 11.5,13.5 + pos: 3.5,-4.5 parent: 179 - - uid: 1102 + - uid: 885 components: - type: Transform - pos: 12.5,13.5 + pos: 4.5,-4.5 parent: 179 - - uid: 1103 + - uid: 886 components: - type: Transform - pos: 13.5,13.5 + pos: 5.5,-4.5 parent: 179 - - uid: 1104 + - uid: 887 components: - type: Transform - pos: 14.5,13.5 + pos: 6.5,-4.5 parent: 179 - - uid: 1105 + - uid: 888 components: - type: Transform - pos: 15.5,13.5 + pos: 7.5,-4.5 parent: 179 - - uid: 1106 + - uid: 889 components: - type: Transform - pos: 16.5,13.5 + pos: 8.5,-4.5 parent: 179 - - uid: 1107 + - uid: 890 components: - type: Transform - pos: 17.5,13.5 + pos: 8.5,-3.5 parent: 179 - - uid: 1108 + - uid: 891 components: - type: Transform - pos: 18.5,13.5 + pos: 8.5,-2.5 parent: 179 - - uid: 1109 + - uid: 892 components: - type: Transform - pos: 19.5,13.5 + pos: 8.5,-1.5 parent: 179 - - uid: 1110 + - uid: 893 components: - type: Transform - pos: 20.5,13.5 + pos: 8.5,-0.5 parent: 179 - - uid: 1111 + - uid: 894 components: - type: Transform - pos: 21.5,13.5 + pos: 8.5,0.5 parent: 179 - - uid: 1112 + - uid: 895 components: - type: Transform - pos: 22.5,13.5 + pos: 8.5,1.5 parent: 179 - - uid: 1113 + - uid: 896 components: - type: Transform - pos: 23.5,13.5 + pos: 8.5,2.5 parent: 179 - - uid: 1114 + - uid: 897 components: - type: Transform - pos: 24.5,13.5 + pos: 8.5,3.5 parent: 179 - - uid: 1115 + - uid: 898 components: - type: Transform - pos: 25.5,13.5 + pos: 8.5,4.5 parent: 179 - - uid: 1116 + - uid: 899 components: - type: Transform - pos: 16.5,12.5 + pos: 8.5,5.5 parent: 179 - - uid: 1117 + - uid: 900 components: - type: Transform - pos: 16.5,11.5 + pos: -14.5,5.5 parent: 179 - - uid: 1118 + - uid: 905 components: - type: Transform - pos: 16.5,10.5 + pos: -12.5,5.5 parent: 179 - - uid: 1119 + - uid: 906 components: - type: Transform - pos: 16.5,9.5 + pos: -14.5,4.5 parent: 179 - - uid: 1120 + - uid: 908 components: - type: Transform - pos: 16.5,8.5 + pos: -15.5,4.5 parent: 179 - - uid: 1121 + - uid: 909 components: - type: Transform - pos: 16.5,7.5 + pos: 8.5,20.5 parent: 179 - - uid: 1122 + - uid: 970 components: - type: Transform - pos: 16.5,6.5 + pos: 9.5,12.5 parent: 179 - - uid: 1123 + - uid: 971 components: - type: Transform - pos: 16.5,5.5 + pos: 10.5,12.5 parent: 179 - - uid: 1124 + - uid: 972 components: - type: Transform - pos: 16.5,4.5 + pos: 11.5,12.5 parent: 179 - - uid: 1125 + - uid: 973 components: - type: Transform - pos: 16.5,3.5 + pos: 12.5,12.5 parent: 179 - - uid: 1126 + - uid: 974 components: - type: Transform - pos: 16.5,2.5 + pos: 13.5,12.5 parent: 179 - - uid: 1127 + - uid: 1026 components: - type: Transform - pos: 16.5,1.5 + pos: -5.5,-14.5 parent: 179 - - uid: 1128 + - uid: 1027 components: - type: Transform - pos: 16.5,0.5 + pos: -5.5,-13.5 parent: 179 - - uid: 1129 + - uid: 1028 components: - type: Transform - pos: 16.5,-0.5 + pos: -5.5,-12.5 parent: 179 - - uid: 1130 + - uid: 1029 components: - type: Transform - pos: 16.5,-1.5 + pos: -4.5,-12.5 parent: 179 - - uid: 1131 + - uid: 1030 components: - type: Transform - pos: 16.5,-2.5 + pos: -3.5,-12.5 parent: 179 - - uid: 1132 + - uid: 1031 components: - type: Transform - pos: 16.5,-3.5 + pos: -2.5,-12.5 parent: 179 - - uid: 1133 + - uid: 1032 components: - type: Transform - pos: 17.5,-3.5 + pos: -1.5,-12.5 parent: 179 - - uid: 1134 + - uid: 1033 components: - type: Transform - pos: 18.5,-3.5 + pos: -0.5,-12.5 parent: 179 - - uid: 1135 + - uid: 1034 components: - type: Transform - pos: 19.5,-3.5 + pos: 0.5,-12.5 parent: 179 - - uid: 1136 + - uid: 1035 components: - type: Transform - pos: 20.5,-3.5 + pos: 1.5,-12.5 parent: 179 - - uid: 1137 + - uid: 1036 components: - type: Transform - pos: 21.5,-3.5 + pos: 2.5,-12.5 parent: 179 - - uid: 1138 + - uid: 1037 components: - type: Transform - pos: 22.5,-3.5 + pos: 3.5,-12.5 parent: 179 - - uid: 1139 + - uid: 1038 components: - type: Transform - pos: 23.5,-3.5 + pos: 0.5,-13.5 parent: 179 - - uid: 1140 + - uid: 1039 components: - type: Transform - pos: 24.5,-3.5 + pos: 0.5,-14.5 parent: 179 - - uid: 1141 + - uid: 1040 components: - type: Transform - pos: 25.5,-3.5 + pos: 0.5,-15.5 parent: 179 - - uid: 1142 + - uid: 1041 components: - type: Transform - pos: 26.5,-3.5 + pos: -1.5,-13.5 parent: 179 - - uid: 1143 + - uid: 1042 components: - type: Transform - pos: 27.5,-3.5 + pos: -1.5,-14.5 parent: 179 - - uid: 1144 + - uid: 1043 components: - type: Transform - pos: 28.5,-3.5 + pos: -1.5,-15.5 parent: 179 - - uid: 1145 + - uid: 1044 components: - type: Transform - pos: 17.5,2.5 + pos: 4.5,-12.5 parent: 179 - - uid: 1146 + - uid: 1045 components: - type: Transform - pos: 18.5,2.5 + pos: 4.5,-13.5 parent: 179 - - uid: 1147 + - uid: 1051 components: - type: Transform - pos: 19.5,2.5 + pos: 9.5,15.5 parent: 179 - - uid: 1148 + - uid: 1052 components: - type: Transform - pos: 20.5,2.5 + pos: 9.5,16.5 parent: 179 - - uid: 1149 + - uid: 1053 components: - type: Transform - pos: 21.5,2.5 + pos: 9.5,17.5 parent: 179 - - uid: 1150 + - uid: 1054 components: - type: Transform - pos: 22.5,2.5 + pos: 9.5,18.5 parent: 179 - - uid: 1151 + - uid: 1055 components: - type: Transform - pos: 23.5,2.5 + pos: 9.5,19.5 parent: 179 - - uid: 1152 + - uid: 1056 components: - type: Transform - pos: 24.5,2.5 + pos: 9.5,20.5 parent: 179 - - uid: 1153 + - uid: 1057 components: - type: Transform - pos: 25.5,2.5 + pos: 10.5,20.5 parent: 179 - - uid: 1154 + - uid: 1058 components: - type: Transform - pos: 26.5,2.5 + pos: 11.5,20.5 parent: 179 - - uid: 1155 + - uid: 1059 components: - type: Transform - pos: 27.5,2.5 + pos: 12.5,20.5 parent: 179 - - uid: 1156 + - uid: 1060 components: - type: Transform - pos: 28.5,2.5 + pos: 13.5,20.5 parent: 179 - - uid: 1157 + - uid: 1061 components: - type: Transform - pos: 26.5,3.5 + pos: 14.5,20.5 parent: 179 - - uid: 1158 + - uid: 1062 components: - type: Transform - pos: 26.5,4.5 + pos: 15.5,20.5 parent: 179 - - uid: 1159 + - uid: 1063 components: - type: Transform - pos: 26.5,5.5 + pos: 16.5,20.5 parent: 179 - - uid: 1160 + - uid: 1064 components: - type: Transform - pos: 26.5,6.5 + pos: 16.5,21.5 parent: 179 - - uid: 1161 + - uid: 1065 components: - type: Transform - pos: 26.5,7.5 + pos: 16.5,22.5 parent: 179 - - uid: 1162 + - uid: 1066 components: - type: Transform - pos: 26.5,8.5 + pos: 16.5,23.5 parent: 179 - - uid: 1163 + - uid: 1067 components: - type: Transform - pos: 26.5,9.5 + pos: 16.5,24.5 parent: 179 - - uid: 1164 + - uid: 1068 components: - type: Transform - pos: 25.5,9.5 + pos: 16.5,25.5 parent: 179 - - uid: 1165 + - uid: 1069 components: - type: Transform - pos: 24.5,9.5 + pos: 16.5,26.5 parent: 179 - - uid: 1166 + - uid: 1070 components: - type: Transform - pos: 16.5,19.5 + pos: 16.5,27.5 parent: 179 - - uid: 1167 + - uid: 1079 components: - type: Transform - pos: 16.5,18.5 + pos: 15.5,24.5 parent: 179 - - uid: 1168 + - uid: 1080 components: - type: Transform - pos: 16.5,17.5 + pos: 14.5,24.5 parent: 179 - - uid: 1169 + - uid: 1081 components: - type: Transform - pos: 16.5,16.5 + pos: 13.5,24.5 parent: 179 - - uid: 1170 + - uid: 1082 components: - type: Transform - pos: 16.5,15.5 + pos: 12.5,24.5 parent: 179 - - uid: 1171 + - uid: 1097 components: - type: Transform - pos: 16.5,14.5 + pos: 8.5,14.5 parent: 179 - - uid: 1177 + - uid: 1098 components: - type: Transform - pos: 8.5,22.5 + pos: 8.5,13.5 parent: 179 - - uid: 1178 + - uid: 1099 components: - type: Transform - pos: 8.5,23.5 + pos: 9.5,13.5 parent: 179 - - uid: 1179 + - uid: 1100 components: - type: Transform - pos: 8.5,24.5 + pos: 10.5,13.5 parent: 179 - - uid: 1180 + - uid: 1101 components: - type: Transform - pos: 8.5,25.5 + pos: 11.5,13.5 parent: 179 -- proto: CableApcStack - entities: - - uid: 70 + - uid: 1102 components: - type: Transform - pos: 10.577456,21.424059 + pos: 12.5,13.5 parent: 179 - - uid: 183 + - uid: 1103 components: - type: Transform - pos: -6.6863613,7.351646 + pos: 13.5,13.5 parent: 179 - - uid: 351 + - uid: 1104 components: - type: Transform - pos: 10.561831,21.767809 + pos: 14.5,13.5 parent: 179 - - uid: 537 + - uid: 1105 components: - type: Transform - pos: -15.5,-0.5 + pos: 15.5,13.5 parent: 179 - - uid: 538 + - uid: 1106 components: - type: Transform - pos: -15.5,-0.5 + pos: 16.5,13.5 parent: 179 -- proto: CableHV - entities: - - uid: 1019 + - uid: 1107 components: - type: Transform - pos: -6.5,-13.5 + pos: 17.5,13.5 parent: 179 - - uid: 1020 + - uid: 1108 components: - type: Transform - pos: -6.5,-12.5 + pos: 18.5,13.5 parent: 179 - - uid: 1021 + - uid: 1109 components: - type: Transform - pos: -6.5,-11.5 + pos: 19.5,13.5 parent: 179 -- proto: CableHVStack - entities: - - uid: 184 + - uid: 1110 components: - type: Transform - pos: -6.665528,7.840053 + pos: 20.5,13.5 parent: 179 -- proto: CableMV - entities: - - uid: 1023 + - uid: 1111 components: - type: Transform - pos: -6.5,-13.5 + pos: 21.5,13.5 parent: 179 - - uid: 1024 + - uid: 1112 components: - type: Transform - pos: -5.5,-13.5 + pos: 22.5,13.5 parent: 179 - - uid: 1025 + - uid: 1113 components: - type: Transform - pos: -5.5,-14.5 + pos: 23.5,13.5 parent: 179 -- proto: CableMVStack - entities: - - uid: 325 + - uid: 1114 components: - type: Transform - pos: -6.665528,7.5601244 + pos: 24.5,13.5 parent: 179 -- proto: CableTerminal - entities: - - uid: 1022 + - uid: 1115 components: - type: Transform - pos: -6.5,-11.5 + pos: 25.5,13.5 parent: 179 -- proto: CapacitorStockPart - entities: - - uid: 296 + - uid: 1116 components: - type: Transform - pos: -4.3012447,8.817795 + pos: 16.5,12.5 parent: 179 - - uid: 700 + - uid: 1117 components: - type: Transform - pos: -3.8324947,8.786524 + pos: 16.5,11.5 parent: 179 - - uid: 701 + - uid: 1118 components: - type: Transform - pos: -3.2804112,8.786524 + pos: 16.5,10.5 parent: 179 - - uid: 704 + - uid: 1119 components: - type: Transform - pos: -4.8741612,8.817795 + pos: 16.5,9.5 parent: 179 -- proto: CaptainIDCard - entities: - - uid: 726 + - uid: 1120 components: - type: Transform - pos: 1.0820513,8.752605 + pos: 16.5,8.5 parent: 179 -- proto: CaptainSabre - entities: - - uid: 381 + - uid: 1121 components: - type: Transform - pos: -3.277628,-2.15838 + pos: 16.5,7.5 parent: 179 -- proto: Catwalk - entities: - - uid: 2 + - uid: 1122 components: - type: Transform - pos: 13.5,24.5 + pos: 16.5,6.5 parent: 179 - - uid: 7 + - uid: 1123 components: - type: Transform - pos: 6.5,24.5 + pos: 16.5,5.5 parent: 179 - - uid: 20 + - uid: 1124 components: - type: Transform - pos: 6.5,20.5 + pos: 16.5,4.5 parent: 179 - - uid: 120 + - uid: 1125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,18.5 + pos: 16.5,3.5 parent: 179 - - uid: 246 + - uid: 1126 components: - type: Transform - pos: -6.5,-6.5 + pos: 16.5,2.5 parent: 179 - - uid: 247 + - uid: 1127 components: - type: Transform - pos: -8.5,-6.5 + pos: 16.5,1.5 parent: 179 - - uid: 252 + - uid: 1128 components: - type: Transform - pos: 4.5,-8.5 + pos: 16.5,0.5 parent: 179 - - uid: 269 + - uid: 1129 components: - type: Transform - pos: 12.5,10.5 + pos: 16.5,-0.5 parent: 179 - - uid: 286 + - uid: 1130 components: - type: Transform - pos: 2.5,-11.5 + pos: 16.5,-1.5 parent: 179 - - uid: 287 + - uid: 1131 components: - type: Transform - pos: -4.5,-11.5 + pos: 16.5,-2.5 parent: 179 - - uid: 308 + - uid: 1132 components: - type: Transform - pos: -2.5,-12.5 + pos: 16.5,-3.5 parent: 179 - - uid: 309 + - uid: 1133 components: - type: Transform - pos: 1.5,-12.5 + pos: 17.5,-3.5 parent: 179 - - uid: 333 + - uid: 1134 components: - type: Transform - pos: 4.5,-13.5 + pos: 18.5,-3.5 parent: 179 - - uid: 334 + - uid: 1135 components: - type: Transform - pos: -5.5,-13.5 + pos: 19.5,-3.5 parent: 179 - - uid: 345 + - uid: 1136 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,0.5 + pos: 20.5,-3.5 parent: 179 - - uid: 346 + - uid: 1137 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,1.5 + pos: 21.5,-3.5 parent: 179 - - uid: 347 + - uid: 1138 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,2.5 + pos: 22.5,-3.5 parent: 179 - - uid: 348 + - uid: 1139 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,3.5 + pos: 23.5,-3.5 parent: 179 - - uid: 349 + - uid: 1140 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,4.5 + pos: 24.5,-3.5 parent: 179 - - uid: 403 + - uid: 1141 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-0.5 + pos: 25.5,-3.5 parent: 179 - - uid: 404 + - uid: 1142 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-1.5 + pos: 26.5,-3.5 parent: 179 - - uid: 405 + - uid: 1143 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-2.5 + pos: 27.5,-3.5 parent: 179 - - uid: 406 + - uid: 1144 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-3.5 + pos: 28.5,-3.5 parent: 179 - - uid: 407 + - uid: 1145 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-4.5 + pos: 17.5,2.5 parent: 179 - - uid: 408 + - uid: 1146 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-5.5 + pos: 18.5,2.5 parent: 179 - - uid: 409 + - uid: 1147 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-6.5 + pos: 19.5,2.5 parent: 179 - - uid: 410 + - uid: 1148 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-7.5 + pos: 20.5,2.5 parent: 179 - - uid: 411 + - uid: 1149 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-8.5 + pos: 21.5,2.5 parent: 179 - - uid: 412 + - uid: 1150 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-9.5 + pos: 22.5,2.5 parent: 179 - - uid: 413 + - uid: 1151 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-10.5 + pos: 23.5,2.5 parent: 179 - - uid: 414 + - uid: 1152 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-11.5 + pos: 24.5,2.5 parent: 179 - - uid: 415 + - uid: 1153 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 8.5,-8.5 + pos: 25.5,2.5 parent: 179 - - uid: 438 + - uid: 1154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-0.5 + pos: 26.5,2.5 parent: 179 - - uid: 442 + - uid: 1155 components: - type: Transform - pos: -9.5,8.5 + pos: 27.5,2.5 parent: 179 - - uid: 514 + - uid: 1156 components: - type: Transform - pos: -10.5,8.5 + pos: 28.5,2.5 parent: 179 - - uid: 541 + - uid: 1157 components: - type: Transform - pos: -11.5,-6.5 + pos: 26.5,3.5 parent: 179 - - uid: 542 + - uid: 1158 components: - type: Transform - pos: -9.5,-6.5 + pos: 26.5,4.5 parent: 179 - - uid: 695 + - uid: 1159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,8.5 + pos: 26.5,5.5 parent: 179 -- proto: Chair - entities: - - uid: 580 + - uid: 1160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 + pos: 26.5,6.5 parent: 179 - - uid: 581 + - uid: 1161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,8.5 + pos: 26.5,7.5 parent: 179 - - uid: 582 + - uid: 1162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,7.5 + pos: 26.5,8.5 parent: 179 -- proto: ChairOfficeDark - entities: - - uid: 380 + - uid: 1163 components: - type: Transform - rot: 3.1415926535897967 rad - pos: 0.5,-6.5 + pos: 26.5,9.5 parent: 179 -- proto: ChairOfficeLight - entities: - - uid: 576 + - uid: 1164 components: - type: Transform - rot: 4.71238898038469 rad - pos: 19.5,4.5 + pos: 25.5,9.5 parent: 179 - - uid: 577 + - uid: 1165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,5.5 + pos: 24.5,9.5 parent: 179 - - uid: 578 + - uid: 1166 components: - type: Transform - rot: 4.71238898038469 rad - pos: 23.5,8.5 + pos: 16.5,19.5 parent: 179 - - uid: 579 + - uid: 1167 components: - type: Transform - pos: 24.5,5.5 + pos: 16.5,18.5 parent: 179 -- proto: ChemDispenser - entities: - - uid: 583 + - uid: 1168 components: - type: Transform - pos: 23.5,9.5 + pos: 16.5,17.5 parent: 179 - - type: ContainerContainer - containers: - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 750 + - uid: 1169 components: - type: Transform - pos: 7.5,11.5 + pos: 16.5,16.5 parent: 179 -- proto: ChemicalPayload - entities: - - uid: 432 + - uid: 1170 components: - type: Transform - pos: 6.4651074,9.828774 + pos: 16.5,15.5 parent: 179 -- proto: ChemMaster - entities: - - uid: 311 + - uid: 1171 components: - type: Transform - pos: 8.5,11.5 + pos: 16.5,14.5 parent: 179 -- proto: ChemMasterMachineCircuitboard - entities: - - uid: 718 + - uid: 1177 components: - type: Transform - pos: -4.5458,10.514079 + pos: 8.5,22.5 parent: 179 -- proto: CircuitImprinter - entities: - - uid: 332 + - uid: 1178 components: - type: Transform - pos: -6.5,4.5 + pos: 8.5,23.5 parent: 179 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 319 + - uid: 1179 components: - type: Transform - pos: 1.5,-10.5 + pos: 8.5,24.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 322 + - uid: 1180 components: - type: Transform - pos: 0.5,-10.5 + pos: 8.5,25.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetToolFilled - entities: - - uid: 524 + - uid: 1277 components: - type: Transform - pos: -11.5,-5.5 + pos: 4.5,-10.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 525 + - uid: 1282 components: - type: Transform - pos: -11.5,-4.5 + pos: 4.5,-11.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 526 + - uid: 1289 components: - type: Transform - pos: -11.5,-3.5 + pos: 5.5,-9.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 527 + - uid: 1292 components: - type: Transform - pos: -11.5,-2.5 + pos: 4.5,-9.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 427 + - uid: 1348 components: - type: Transform - pos: -1.895102,-10.33495 + pos: 6.5,-9.5 parent: 179 - - uid: 428 + - uid: 1349 components: - type: Transform - pos: -1.770102,-10.63182 + pos: 7.5,-9.5 parent: 179 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 454 + - uid: 1350 components: - type: Transform - pos: -0.78741443,4.322194 + pos: 9.5,-9.5 parent: 179 -- proto: ClothingHeadHatWelding - entities: - - uid: 344 + - uid: 1351 components: - type: Transform - pos: 0.7198646,4.374314 + pos: 10.5,-9.5 parent: 179 -- proto: ClothingMaskBreath - entities: - - uid: 955 + - uid: 1352 components: - type: Transform - pos: -10.595239,6.1907988 + pos: 11.5,-9.5 parent: 179 -- proto: ClothingMaskGas - entities: - - uid: 425 + - uid: 1353 components: - type: Transform - pos: -0.2880585,-10.69432 + pos: 12.5,-9.5 parent: 179 -- proto: ClothingOuterHardsuitAtmos - entities: - - uid: 270 + - uid: 1354 components: - type: Transform - pos: -10.5426235,5.472399 + pos: 13.5,-9.5 parent: 179 -- proto: ClothingOuterVest - entities: - - uid: 426 + - uid: 1355 components: - type: Transform - pos: -0.9130585,-10.66307 + pos: 14.5,-9.5 parent: 179 -- proto: ClothingShoesBootsMag - entities: - - uid: 725 + - uid: 1356 components: - type: Transform - pos: 0.47880077,8.073378 + pos: 15.5,-9.5 parent: 179 -- proto: ClothingUniformJumpsuitEngineering - entities: - - uid: 424 + - uid: 1357 components: - type: Transform - pos: -0.6474335,-10.27245 + pos: 16.5,-9.5 parent: 179 -- proto: ClownPDA - entities: - - uid: 91 + - uid: 1358 components: - type: Transform - pos: -15.5,2.5 + pos: 17.5,-9.5 parent: 179 - - uid: 762 + - uid: 1359 components: - type: Transform - pos: -14.5,1.5 + pos: 18.5,-9.5 parent: 179 - - uid: 864 + - uid: 1360 components: - type: Transform - pos: -14.5,2.5 + pos: 19.5,-9.5 parent: 179 - - uid: 912 + - uid: 1361 components: - type: Transform - pos: -15.5,1.5 + pos: 20.5,-9.5 parent: 179 -- proto: ComputerAnalysisConsole - entities: - - uid: 1083 + - uid: 1362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,23.5 + pos: 21.5,-9.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 1078: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerCargoOrders - entities: - - uid: 326 + - uid: 1363 components: - type: Transform - pos: 0.5,-5.5 + pos: 8.5,-9.5 parent: 179 - - uid: 996 + - uid: 1364 components: - type: Transform - pos: -1.5,-11.5 + pos: 11.5,-8.5 parent: 179 -- proto: ComputerCargoShuttle - entities: - - uid: 995 + - uid: 1365 components: - type: Transform - pos: 0.5,-11.5 + pos: 11.5,-7.5 parent: 179 -- proto: ComputerMedicalRecords - entities: - - uid: 152 + - uid: 1366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 + pos: 11.5,-5.5 parent: 179 - - uid: 591 + - uid: 1367 components: - type: Transform - pos: 21.5,5.5 + pos: 11.5,-4.5 parent: 179 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 88 + - uid: 1368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 + pos: 11.5,-6.5 parent: 179 -- proto: ComputerShuttleCargo - entities: - - uid: 994 + - uid: 1369 components: - type: Transform - pos: -0.5,-11.5 + pos: 11.5,-3.5 parent: 179 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 1185 + - uid: 1370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 + pos: 9.5,-16.5 parent: 179 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 1088 + - uid: 1371 components: - type: Transform - pos: 13.5,16.5 + pos: 9.5,-22.5 parent: 179 -- proto: ConveyorBelt - entities: - - uid: 195 + - uid: 1372 components: - type: Transform - pos: -2.5,-15.5 + pos: 9.5,-21.5 parent: 179 - - uid: 259 + - uid: 1373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 + pos: 9.5,-10.5 parent: 179 - - uid: 463 + - uid: 1374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 + pos: 9.5,-20.5 parent: 179 - - uid: 677 + - uid: 1375 components: - type: Transform - pos: -2.5,-14.5 + pos: 9.5,-19.5 parent: 179 - - uid: 716 + - uid: 1376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 + pos: 9.5,-18.5 parent: 179 - - uid: 720 + - uid: 1377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 + pos: 9.5,-17.5 parent: 179 - - uid: 721 + - uid: 1378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 + pos: 9.5,-15.5 parent: 179 - - uid: 985 + - uid: 1379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-13.5 + pos: 9.5,-11.5 parent: 179 - - uid: 989 + - uid: 1380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-15.5 + pos: 9.5,-14.5 parent: 179 - - uid: 990 + - uid: 1381 components: - type: Transform - pos: -2.5,-13.5 + pos: 9.5,-13.5 parent: 179 - - uid: 991 + - uid: 1382 components: - type: Transform - pos: -2.5,-16.5 + pos: 9.5,-12.5 parent: 179 -- proto: CrateEngineeringToolbox - entities: - - uid: 692 + - uid: 1383 components: - type: Transform - pos: -0.5,3.5 + pos: 10.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateGeneric - entities: - - uid: 266 + - uid: 1384 components: - type: Transform - pos: 5.5,-6.5 + pos: 11.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsSeeds - entities: - - uid: 754 + - uid: 1389 components: - type: Transform - pos: 2.5,12.5 + pos: 16.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsTools - entities: - - uid: 755 + - uid: 1390 components: - type: Transform - pos: 2.5,13.5 + pos: 17.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMedical - entities: - - uid: 131 + - uid: 1391 components: - type: Transform - pos: 31.5,-1.5 + pos: 19.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 132 + - uid: 1392 components: - type: Transform - pos: 32.5,-1.5 + pos: 20.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 1183 + - uid: 1393 components: - type: Transform - pos: 9.5,25.5 + pos: 21.5,-14.5 parent: 179 -- proto: Crowbar - entities: - - uid: 147 + - uid: 1394 components: - type: Transform - pos: -2.172831,4.5306726 + pos: 22.5,-14.5 parent: 179 - - uid: 423 + - uid: 1395 components: - type: Transform - pos: -2.861032,-5.524786 + pos: 18.5,-14.5 parent: 179 -- proto: DebugBatteryDischarger - entities: - - uid: 711 + - uid: 1396 components: - type: Transform - pos: 0.5,-3.5 + pos: 22.5,-9.5 parent: 179 -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 1198 + - uid: 1397 components: - type: Transform - pos: 11.5,-14.5 + pos: 10.5,-19.5 parent: 179 -- proto: DefaultStationBeaconBotany - entities: - - uid: 1193 + - uid: 1398 components: - type: Transform - pos: 3.5,15.5 + pos: 11.5,-19.5 parent: 179 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 1195 + - uid: 1399 components: - type: Transform - pos: 7.5,10.5 + pos: 12.5,-19.5 parent: 179 -- proto: DefaultStationBeaconCommand - entities: - - uid: 1196 + - uid: 1400 components: - type: Transform - pos: 0.5,8.5 + pos: 13.5,-19.5 parent: 179 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 1172 + - uid: 1401 components: - type: Transform - pos: 6.5,5.5 + pos: 14.5,-19.5 parent: 179 -- proto: DefaultStationBeaconMedical - entities: - - uid: 1173 + - uid: 1402 components: - type: Transform - pos: 19.5,5.5 + pos: 15.5,-19.5 parent: 179 -- proto: DefaultStationBeaconScience - entities: - - uid: 1194 + - uid: 1403 components: - type: Transform - pos: 12.5,20.5 + pos: 17.5,-19.5 parent: 179 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 1197 + - uid: 1404 components: - type: Transform - pos: -14.5,17.5 + pos: 18.5,-19.5 parent: 179 -- proto: DefaultStationBeaconSupply - entities: - - uid: 1175 + - uid: 1405 components: - type: Transform - pos: -0.5,-11.5 + pos: 19.5,-19.5 parent: 179 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 1174 + - uid: 1406 components: - type: Transform - pos: -1.5,4.5 + pos: 20.5,-19.5 parent: 179 -- proto: DisposalPipe - entities: - - uid: 717 + - uid: 1407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 + pos: 21.5,-19.5 parent: 179 -- proto: DisposalTrunk - entities: - - uid: 285 + - uid: 1408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 + pos: 22.5,-19.5 parent: 179 - - uid: 715 + - uid: 1409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 + pos: 16.5,-19.5 parent: 179 -- proto: DisposalUnit - entities: - - uid: 719 + - uid: 1410 components: - type: Transform - pos: -1.5,10.5 + pos: 9.5,-23.5 parent: 179 -- proto: DrinkBeerglass - entities: - - uid: 688 + - uid: 1411 components: - type: Transform - pos: 3.1981986,5.733985 + pos: 9.5,-24.5 parent: 179 -- proto: DrinkColaCan - entities: - - uid: 690 + - uid: 1412 components: - type: Transform - pos: 3.8231986,6.150942 + pos: 10.5,-24.5 parent: 179 -- proto: Dropper - entities: - - uid: 730 + - uid: 1413 components: - type: Transform - pos: 5.892191,9.4118185 + pos: 11.5,-24.5 parent: 179 -- proto: EmergencyOxygenTankFilled - entities: - - uid: 956 + - uid: 1414 components: - type: Transform - pos: -10.505015,6.711994 + pos: 12.5,-24.5 parent: 179 -- proto: ExGrenade - entities: - - uid: 433 + - uid: 1415 components: - type: Transform - pos: -3.7704864,-1.6163371 + pos: 13.5,-24.5 parent: 179 -- proto: ExplosivePayload - entities: - - uid: 668 + - uid: 1416 components: - type: Transform - pos: 6.829691,9.4118185 + pos: 14.5,-24.5 parent: 179 -- proto: FaxMachineCaptain - entities: - - uid: 967 + - uid: 1417 components: - type: Transform - pos: 9.5,12.5 + pos: 15.5,-24.5 parent: 179 -- proto: FaxMachineCentcom - entities: - - uid: 968 + - uid: 1418 components: - type: Transform - pos: 11.5,12.5 + pos: 16.5,-24.5 parent: 179 -- proto: FaxMachineSyndie - entities: - - uid: 969 + - uid: 1419 components: - type: Transform - pos: 13.5,12.5 + pos: 17.5,-24.5 parent: 179 -- proto: FireExtinguisher - entities: - - uid: 323 + - uid: 1420 components: - type: Transform - pos: -1.297692,-5.396082 + pos: 18.5,-24.5 parent: 179 - - uid: 868 + - uid: 1421 components: - type: Transform - pos: -14.5,-1.5 + pos: 19.5,-24.5 parent: 179 -- proto: FlashlightLantern - entities: - - uid: 421 + - uid: 1422 components: - type: Transform - pos: -1.934832,-5.154238 + pos: 20.5,-24.5 parent: 179 - - uid: 422 + - uid: 1423 components: - type: Transform - pos: 1.1350493,8.198464 + pos: 21.5,-24.5 parent: 179 -- proto: FloorLavaEntity - entities: - - uid: 134 + - uid: 1424 components: - type: Transform - pos: -13.5,-3.5 + pos: 22.5,-24.5 parent: 179 - - uid: 135 + - uid: 1502 components: - type: Transform - pos: -14.5,-3.5 + pos: 13.5,-14.5 parent: 179 - - uid: 141 + - uid: 1503 components: - type: Transform - pos: -13.5,-2.5 + pos: 12.5,-14.5 parent: 179 - - uid: 469 + - uid: 1504 components: - type: Transform - pos: -14.5,-2.5 + pos: 14.5,-14.5 parent: 179 -- proto: FloorWaterEntity - entities: - - uid: 136 + - uid: 1554 components: - type: Transform - pos: -12.5,-2.5 + pos: 15.5,-14.5 parent: 179 - - uid: 137 +- proto: CableApcStack + entities: + - uid: 70 components: - type: Transform - pos: -12.5,-3.5 + pos: 10.577456,21.424059 parent: 179 -- proto: FoodApple - entities: - - uid: 16 + - uid: 183 components: - type: Transform - pos: 3.9853282,16.430082 + pos: -6.6863613,7.351646 parent: 179 - - uid: 849 + - uid: 351 components: - type: Transform - pos: 3.7249117,16.242453 + pos: 10.561831,21.767809 parent: 179 - - uid: 866 + - uid: 537 components: - type: Transform - pos: 3.651995,16.55517 + pos: -15.5,-0.5 parent: 179 -- proto: FoodBurgerBacon - entities: - - uid: 689 + - uid: 538 components: - type: Transform - pos: 3.3844857,6.0702233 + pos: -15.5,-0.5 parent: 179 -- proto: FoodCarrot +- proto: CableHV entities: - - uid: 850 + - uid: 1019 components: - type: Transform - pos: 3.6023045,15.67151 + pos: -6.5,-13.5 parent: 179 - - uid: 851 + - uid: 1020 components: - type: Transform - pos: 3.620745,15.015423 + pos: -6.5,-12.5 parent: 179 - - uid: 863 + - uid: 1021 components: - type: Transform - pos: 3.620745,14.389988 + pos: -6.5,-11.5 parent: 179 -- proto: FoodPizzaPineapple +- proto: CableHVStack entities: - - uid: 687 + - uid: 184 components: - type: Transform - pos: 3.5215416,6.799056 + pos: -6.665528,7.840053 parent: 179 -- proto: GasAnalyzer +- proto: CableMV entities: - - uid: 876 + - uid: 1023 components: - type: Transform - pos: 4.4732866,-0.48882532 + pos: -6.5,-13.5 parent: 179 -- proto: GasFilter - entities: - - uid: 480 + - uid: 1024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 + pos: -5.5,-13.5 parent: 179 -- proto: GasMixer - entities: - - uid: 747 + - uid: 1025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + pos: -5.5,-14.5 parent: 179 -- proto: GasOutletInjector +- proto: CableMVStack entities: - - uid: 429 + - uid: 325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: -6.665528,7.5601244 parent: 179 -- proto: GasPipeBend +- proto: CableTerminal entities: - - uid: 727 + - uid: 1022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: -6.5,-11.5 parent: 179 -- proto: GasPipeFourway +- proto: CapacitorStockPart entities: - - uid: 728 + - uid: 296 components: - type: Transform - pos: 5.5,-1.5 + pos: -4.3012447,8.817795 parent: 179 -- proto: GasPipeStraight - entities: - - uid: 749 + - uid: 700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 + pos: -3.8324947,8.786524 parent: 179 -- proto: GasPipeTJunction - entities: - - uid: 748 + - uid: 701 components: - type: Transform - pos: 5.5,-2.5 + pos: -3.2804112,8.786524 parent: 179 -- proto: GasPort - entities: - - uid: 457 + - uid: 704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: -4.8741612,8.817795 parent: 179 -- proto: GasPressurePump +- proto: CaptainIDCard entities: - - uid: 171 + - uid: 726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 + pos: 1.0820513,8.752605 parent: 179 -- proto: GasValve +- proto: CaptainSabre entities: - - uid: 168 + - uid: 381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: -3.277628,-2.15838 parent: 179 -- proto: GasVentPump +- proto: CarbonDioxideCanister entities: - - uid: 729 + - uid: 748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 + pos: 13.5,-4.5 parent: 179 -- proto: GasVentScrubber - entities: - - uid: 452 + - uid: 749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 12.5,-4.5 parent: 179 -- proto: GasVolumePump - entities: - - uid: 160 + - uid: 1316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 24.5,-21.5 parent: 179 -- proto: GeigerCounter +- proto: Catwalk entities: - - uid: 759 + - uid: 2 components: - type: Transform - pos: 1.760596,4.5697265 + pos: 13.5,24.5 parent: 179 -- proto: GravityGenerator - entities: - - uid: 744 + - uid: 7 components: - type: Transform - pos: 6.5,6.5 + pos: 6.5,24.5 parent: 179 -- proto: Grille - entities: - - uid: 108 + - uid: 20 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 + pos: 6.5,20.5 parent: 179 - - uid: 986 + - uid: 120 components: - type: Transform - pos: -0.5,-16.5 + rot: -1.5707963267948966 rad + pos: 6.5,18.5 parent: 179 - - uid: 987 + - uid: 246 components: - type: Transform - pos: -0.5,-15.5 + pos: -6.5,-6.5 parent: 179 - - uid: 988 + - uid: 247 components: - type: Transform - pos: -0.5,-14.5 + pos: -8.5,-6.5 parent: 179 - - uid: 1007 + - uid: 252 components: - type: Transform - pos: -3.5,-16.5 + pos: 4.5,-8.5 parent: 179 - - uid: 1008 + - uid: 269 components: - type: Transform - pos: -3.5,-15.5 + pos: 12.5,10.5 parent: 179 - - uid: 1009 + - uid: 286 components: - type: Transform - pos: -3.5,-14.5 + pos: 2.5,-11.5 parent: 179 - - uid: 1010 + - uid: 287 components: - type: Transform - pos: 2.5,-16.5 + pos: -4.5,-11.5 parent: 179 - - uid: 1011 + - uid: 308 components: - type: Transform - pos: 2.5,-15.5 + pos: -2.5,-12.5 parent: 179 - - uid: 1012 + - uid: 309 components: - type: Transform - pos: 2.5,-14.5 + pos: 1.5,-12.5 parent: 179 - - uid: 1089 + - uid: 333 components: - type: Transform - pos: 8.5,17.5 + pos: 4.5,-13.5 parent: 179 - - uid: 1090 + - uid: 334 components: - type: Transform - pos: 9.5,17.5 + pos: -5.5,-13.5 parent: 179 - - uid: 1091 + - uid: 438 components: - type: Transform - pos: 10.5,17.5 + rot: 3.141592653589793 rad + pos: -9.5,-0.5 parent: 179 - - uid: 1092 + - uid: 442 components: - type: Transform - pos: 10.5,16.5 + pos: -9.5,8.5 parent: 179 -- proto: Handcuffs - entities: - - uid: 331 + - uid: 514 components: - type: Transform - pos: -3.5805476,0.74100244 + pos: -10.5,8.5 parent: 179 -- proto: HandheldHealthAnalyzer - entities: - - uid: 513 + - uid: 541 components: - type: Transform - pos: -5.9808183,-3.6614444 + pos: -11.5,-6.5 parent: 179 -- proto: HoloFan - entities: - - uid: 142 + - uid: 542 components: - type: Transform - pos: -8.5,7.5 + pos: -9.5,-6.5 parent: 179 - missingComponents: - - TimedDespawn - - uid: 901 + - uid: 695 components: - type: Transform - pos: -10.5,7.5 + rot: 3.141592653589793 rad + pos: -8.5,8.5 parent: 179 - missingComponents: - - TimedDespawn - - uid: 902 +- proto: Chair + entities: + - uid: 580 components: - type: Transform - pos: -9.5,7.5 + rot: 1.5707963267948966 rad + pos: 14.5,6.5 parent: 179 - missingComponents: - - TimedDespawn -- proto: HolosignWetFloor - entities: - - uid: 848 + - uid: 581 components: - type: Transform - pos: -13.5,2.5 + rot: 1.5707963267948966 rad + pos: 14.5,8.5 parent: 179 - - type: Fixtures - fixtures: {} - missingComponents: - - TimedDespawn - - uid: 911 + - uid: 582 components: - type: Transform - pos: -13.5,1.5 + rot: 1.5707963267948966 rad + pos: 14.5,7.5 parent: 179 - - type: Fixtures - fixtures: {} - missingComponents: - - TimedDespawn -- proto: hydroponicsTray +- proto: ChairOfficeDark entities: - - uid: 756 + - uid: 380 components: - type: Transform - pos: 2.5,14.5 + rot: 3.1415926535897967 rad + pos: 0.5,-6.5 parent: 179 - - uid: 757 +- proto: ChairOfficeLight + entities: + - uid: 576 components: - type: Transform - pos: 2.5,15.5 + rot: 4.71238898038469 rad + pos: 19.5,4.5 parent: 179 -- proto: KitchenReagentGrinder - entities: - - uid: 731 + - uid: 577 components: - type: Transform - pos: 8.5,9.5 + rot: 3.141592653589793 rad + pos: 20.5,5.5 parent: 179 -- proto: LargeBeaker - entities: - - uid: 210 + - uid: 578 components: - type: Transform - pos: 4.3272614,9.338851 + rot: 4.71238898038469 rad + pos: 23.5,8.5 parent: 179 - - uid: 253 + - uid: 579 components: - type: Transform - pos: 23.494947,7.0422435 + pos: 24.5,5.5 parent: 179 - - uid: 402 +- proto: ChemDispenser + entities: + - uid: 583 components: - type: Transform - pos: 23.510572,7.7141185 + pos: 23.5,9.5 parent: 179 - - uid: 737 + - type: ContainerContainer + containers: + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 750 components: - type: Transform - pos: 4.2969,9.828774 + pos: 7.5,11.5 parent: 179 -- proto: LedLightTube +- proto: ChemicalPayload entities: - - uid: 481 + - uid: 432 components: - type: Transform - pos: -3.511025,-10.35149 + pos: 6.4651074,9.828774 parent: 179 -- proto: LockerBotanistFilled +- proto: ChemMaster entities: - - uid: 869 + - uid: 311 components: - type: Transform - pos: 2.5,16.5 + pos: 8.5,11.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChemistry +- proto: ChemMasterMachineCircuitboard entities: - - uid: 127 + - uid: 718 components: - type: Transform - pos: 27.5,6.5 + pos: -4.5458,10.514079 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChemistryFilled +- proto: CircuitImprinter entities: - - uid: 297 + - uid: 332 components: - type: Transform - pos: 7.5,9.5 + pos: -6.5,4.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChiefEngineerFilled +- proto: ClosetEmergencyFilledRandom entities: - - uid: 447 + - uid: 349 components: - type: Transform - pos: 7.5,2.5 + pos: 1.5,-10.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 444 + - uid: 403 components: - type: Transform - pos: 7.5,3.5 + pos: 0.5,-10.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerEngineerFilled +- proto: ClosetToolFilled entities: - - uid: 490 + - uid: 524 components: - type: Transform - pos: 7.5,4.5 + pos: -11.5,-5.5 parent: 179 - type: EntityStorage air: @@ -3965,12 +3593,10 @@ entities: - 0 - 0 - 0 -- proto: LockerMedical - entities: - - uid: 128 + - uid: 525 components: - type: Transform - pos: 27.5,5.5 + pos: -11.5,-4.5 parent: 179 - type: EntityStorage air: @@ -3990,10 +3616,10 @@ entities: - 0 - 0 - 0 - - uid: 129 + - uid: 526 components: - type: Transform - pos: 29.5,-1.5 + pos: -11.5,-3.5 parent: 179 - type: EntityStorage air: @@ -4013,10 +3639,10 @@ entities: - 0 - 0 - 0 - - uid: 130 + - uid: 527 components: - type: Transform - pos: 30.5,-1.5 + pos: -11.5,-2.5 parent: 179 - type: EntityStorage air: @@ -4036,70 +3662,253 @@ entities: - 0 - 0 - 0 -- proto: LockerMedicalFilled +- proto: ClothingBeltChiefEngineerFilled entities: - - uid: 865 + - uid: 1573 components: - type: Transform - pos: -6.5,-3.5 + pos: 1.3037996,-5.2961445 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerMedicineFilled +- proto: ClothingBeltUtilityFilled entities: - - uid: 562 + - uid: 427 components: - type: Transform - pos: -5.5,-3.5 + pos: -1.895102,-10.33495 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSalvageSpecialistFilled + - uid: 428 + components: + - type: Transform + pos: -1.770102,-10.63182 + parent: 179 +- proto: ClothingHandsGlovesColorYellow entities: - - uid: 493 + - uid: 454 components: - type: Transform - pos: -10.5,4.5 + pos: -0.78741443,4.322194 parent: 179 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 +- proto: ClothingHeadHatWelding + entities: + - uid: 344 + components: + - type: Transform + pos: 0.7198646,4.374314 + parent: 179 +- proto: ClothingMaskBreath + entities: + - uid: 955 + components: + - type: Transform + pos: -10.595239,6.1907988 + parent: 179 +- proto: ClothingMaskGas + entities: + - uid: 425 + components: + - type: Transform + pos: -0.2880585,-10.69432 + parent: 179 +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 270 + components: + - type: Transform + pos: -10.5426235,5.472399 + parent: 179 +- proto: ClothingOuterVest + entities: + - uid: 426 + components: + - type: Transform + pos: -0.9130585,-10.66307 + parent: 179 +- proto: ClothingShoesBootsMag + entities: + - uid: 725 + components: + - type: Transform + pos: 0.47880077,8.073378 + parent: 179 +- proto: ClothingUniformJumpsuitEngineering + entities: + - uid: 424 + components: + - type: Transform + pos: -0.6474335,-10.27245 + parent: 179 +- proto: ClownPDA + entities: + - uid: 91 + components: + - type: Transform + pos: -15.5,2.5 + parent: 179 + - uid: 762 + components: + - type: Transform + pos: -14.5,1.5 + parent: 179 + - uid: 864 + components: + - type: Transform + pos: -14.5,2.5 + parent: 179 + - uid: 912 + components: + - type: Transform + pos: -15.5,1.5 + parent: 179 +- proto: ComputerAnalysisConsole + entities: + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 1078: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerCargoOrders + entities: + - uid: 326 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 179 + - uid: 996 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 179 +- proto: ComputerCargoShuttle + entities: + - uid: 404 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 179 +- proto: ComputerMedicalRecords + entities: + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 179 + - uid: 591 + components: + - type: Transform + pos: 21.5,5.5 + parent: 179 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 179 +- proto: ComputerShuttleCargo + entities: + - uid: 994 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 179 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 179 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 1088 + components: + - type: Transform + pos: 13.5,16.5 + parent: 179 +- proto: ConveyorBelt + entities: + - uid: 195 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 179 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 179 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 179 + - uid: 677 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 179 + - uid: 716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 179 + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 179 + - uid: 721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 179 + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 179 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 179 + - uid: 990 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 179 + - uid: 991 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 179 +- proto: CrateEngineeringToolbox + entities: + - uid: 692 + components: + - type: Transform + pos: -0.5,3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 moles: - 2.9923203 - 11.2568245 @@ -4113,12 +3922,12 @@ entities: - 0 - 0 - 0 -- proto: LockerWeldingSuppliesFilled +- proto: CrateHydroponicsSeeds entities: - - uid: 871 + - uid: 754 components: - type: Transform - pos: 7.5,1.5 + pos: 2.5,12.5 parent: 179 - type: EntityStorage air: @@ -4138,3490 +3947,6113 @@ entities: - 0 - 0 - 0 -- proto: MachineAnomalyGenerator +- proto: CrateHydroponicsTools + entities: + - uid: 755 + components: + - type: Transform + pos: 2.5,13.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMaterialSteel + entities: + - uid: 1258 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 179 + - uid: 1293 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 179 +- proto: CrateMedical + entities: + - uid: 131 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 132 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 1183 + components: + - type: Transform + pos: 9.5,25.5 + parent: 179 +- proto: Crowbar + entities: + - uid: 147 + components: + - type: Transform + pos: -2.172831,4.5306726 + parent: 179 + - uid: 423 + components: + - type: Transform + pos: -2.861032,-5.524786 + parent: 179 +- proto: DebugBatteryDischarger + entities: + - uid: 711 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 179 +- proto: DebugGenerator + entities: + - uid: 490 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 179 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 1198 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 179 +- proto: DefaultStationBeaconBotany + entities: + - uid: 1193 + components: + - type: Transform + pos: 3.5,15.5 + parent: 179 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 1195 + components: + - type: Transform + pos: 7.5,10.5 + parent: 179 +- proto: DefaultStationBeaconCommand + entities: + - uid: 1196 + components: + - type: Transform + pos: 0.5,8.5 + parent: 179 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 1172 + components: + - type: Transform + pos: 6.5,5.5 + parent: 179 +- proto: DefaultStationBeaconMedical + entities: + - uid: 1173 + components: + - type: Transform + pos: 19.5,5.5 + parent: 179 +- proto: DefaultStationBeaconScience + entities: + - uid: 1194 + components: + - type: Transform + pos: 12.5,20.5 + parent: 179 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 1197 + components: + - type: Transform + pos: -14.5,17.5 + parent: 179 +- proto: DefaultStationBeaconSupply + entities: + - uid: 1175 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 179 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 1174 + components: + - type: Transform + pos: -1.5,4.5 + parent: 179 +- proto: DisposalPipe + entities: + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 179 +- proto: DisposalTrunk + entities: + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 179 + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 179 +- proto: DisposalUnit + entities: + - uid: 719 + components: + - type: Transform + pos: -1.5,10.5 + parent: 179 +- proto: DrinkBeerglass + entities: + - uid: 688 + components: + - type: Transform + pos: 3.1981986,5.733985 + parent: 179 +- proto: DrinkColaCan + entities: + - uid: 690 + components: + - type: Transform + pos: 3.8231986,6.150942 + parent: 179 +- proto: Dropper + entities: + - uid: 730 + components: + - type: Transform + pos: 5.892191,9.4118185 + parent: 179 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 956 + components: + - type: Transform + pos: -10.505015,6.711994 + parent: 179 +- proto: ExGrenade + entities: + - uid: 433 + components: + - type: Transform + pos: -3.7704864,-1.6163371 + parent: 179 +- proto: ExplosivePayload + entities: + - uid: 668 + components: + - type: Transform + pos: 6.829691,9.4118185 + parent: 179 +- proto: FaxMachineCaptain + entities: + - uid: 967 + components: + - type: Transform + pos: 9.5,12.5 + parent: 179 +- proto: FaxMachineCentcom + entities: + - uid: 968 + components: + - type: Transform + pos: 11.5,12.5 + parent: 179 +- proto: FaxMachineSyndie + entities: + - uid: 969 + components: + - type: Transform + pos: 13.5,12.5 + parent: 179 +- proto: FireAxeCabinetFilled + entities: + - uid: 1574 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 179 +- proto: FireExtinguisher + entities: + - uid: 323 + components: + - type: Transform + pos: -1.297692,-5.396082 + parent: 179 + - uid: 868 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 179 +- proto: FlashlightLantern + entities: + - uid: 421 + components: + - type: Transform + pos: -1.934832,-5.154238 + parent: 179 + - uid: 422 + components: + - type: Transform + pos: 1.1350493,8.198464 + parent: 179 +- proto: FloorLavaEntity + entities: + - uid: 134 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 179 + - uid: 135 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 179 + - uid: 141 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 179 + - uid: 469 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 179 +- proto: FloorWaterEntity + entities: + - uid: 136 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 179 + - uid: 137 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 179 +- proto: FoodApple + entities: + - uid: 16 + components: + - type: Transform + pos: 3.9853282,16.430082 + parent: 179 + - uid: 849 + components: + - type: Transform + pos: 3.7249117,16.242453 + parent: 179 + - uid: 866 + components: + - type: Transform + pos: 3.651995,16.55517 + parent: 179 +- proto: FoodBurgerBacon + entities: + - uid: 689 + components: + - type: Transform + pos: 3.3844857,6.0702233 + parent: 179 +- proto: FoodCarrot + entities: + - uid: 850 + components: + - type: Transform + pos: 3.6023045,15.67151 + parent: 179 + - uid: 851 + components: + - type: Transform + pos: 3.620745,15.015423 + parent: 179 + - uid: 863 + components: + - type: Transform + pos: 3.620745,14.389988 + parent: 179 +- proto: FoodPizzaPineapple + entities: + - uid: 687 + components: + - type: Transform + pos: 3.5215416,6.799056 + parent: 179 +- proto: FrezonCanister + entities: + - uid: 1308 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 179 + - uid: 1309 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 179 + - uid: 1318 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 179 +- proto: GasAnalyzer + entities: + - uid: 1571 + components: + - type: Transform + pos: 7.3675013,-6.725376 + parent: 179 +- proto: GasMinerAmmonia + entities: + - uid: 1204 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 179 +- proto: GasMinerCarbonDioxide + entities: + - uid: 1205 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 179 +- proto: GasMinerFrezon + entities: + - uid: 1223 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 179 +- proto: GasMinerNitrogenStation + entities: + - uid: 1222 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 179 +- proto: GasMinerNitrousOxide + entities: + - uid: 1225 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 179 +- proto: GasMinerOxygenStation + entities: + - uid: 1199 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 179 +- proto: GasMinerPlasma + entities: + - uid: 1221 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 179 +- proto: GasMinerTritium + entities: + - uid: 1224 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 179 +- proto: GasMinerWaterVapor + entities: + - uid: 1202 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 179 +- proto: GasMixer + entities: + - uid: 1480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 179 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 +- proto: GasOutletInjector + entities: + - uid: 406 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 179 + - uid: 409 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 179 + - uid: 410 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 179 + - uid: 411 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 179 + - uid: 413 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 179 + - uid: 414 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 179 + - uid: 429 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 179 + - uid: 444 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 179 + - uid: 447 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 179 +- proto: GasPassiveVent + entities: + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 179 + - uid: 1320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 179 + - uid: 1321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 179 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 179 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 179 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 179 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 179 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 179 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 179 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-26.5 + parent: 179 +- proto: GasPipeBend + entities: + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 179 + - uid: 408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 179 + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-8.5 + parent: 179 + - uid: 415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 179 + - uid: 418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 179 + - uid: 1439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 179 + - uid: 1440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 179 + - uid: 1441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 179 + - uid: 1442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 179 + - uid: 1482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 179 + - uid: 1542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 179 +- proto: GasPipeStraight + entities: + - uid: 1443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 179 + - uid: 1444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 179 + - uid: 1445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 179 + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 179 + - uid: 1447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 179 + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 179 + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 179 + - uid: 1450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 179 + - uid: 1451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 179 + - uid: 1452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 179 + - uid: 1453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 179 + - uid: 1454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 179 + - uid: 1455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 179 + - uid: 1456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 179 + - uid: 1457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 179 + - uid: 1458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 179 + - uid: 1460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 179 + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 179 + - uid: 1483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 179 + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-8.5 + parent: 179 + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 179 + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 179 + - uid: 1487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 179 + - uid: 1522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-21.5 + parent: 179 + - uid: 1523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 179 + - uid: 1524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 179 + - uid: 1525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 179 + - uid: 1526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 179 + - uid: 1527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 179 + - uid: 1528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 179 + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 179 + - uid: 1530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 179 + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 179 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 179 + - uid: 1533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 179 + - uid: 1534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 179 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 179 + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 179 + - uid: 1537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 179 + - uid: 1538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 179 + - uid: 1539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 179 + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 179 + - uid: 1541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 179 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-25.5 + parent: 179 + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 179 + - uid: 1548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 179 + - uid: 1549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 179 + - uid: 1550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 179 + - uid: 1551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 179 + - uid: 1552 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 179 +- proto: GasPipeTJunction + entities: + - uid: 1479 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 179 + - uid: 1481 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 179 + - uid: 1553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 179 +- proto: GasPressurePump + entities: + - uid: 1459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 179 + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 179 + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 179 + - uid: 1464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 179 + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 179 + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 179 + - uid: 1467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 179 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 179 + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 179 + - uid: 1470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 179 + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 179 + - uid: 1472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 179 + - uid: 1473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 179 + - uid: 1474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 179 + - uid: 1475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 179 + - uid: 1476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 179 + - uid: 1477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 179 + - uid: 1478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 179 +- proto: GasThermoMachineFreezer + entities: + - uid: 480 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 179 + - uid: 616 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 179 +- proto: GasThermoMachineHeater + entities: + - uid: 483 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 179 + - uid: 1568 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 179 +- proto: GasValve + entities: + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 179 +- proto: GasVentPump + entities: + - uid: 1521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 179 +- proto: GasVentScrubber + entities: + - uid: 1543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 179 +- proto: GeigerCounter + entities: + - uid: 759 + components: + - type: Transform + pos: 1.760596,4.5697265 + parent: 179 +- proto: GravityGenerator + entities: + - uid: 744 + components: + - type: Transform + pos: 6.5,6.5 + parent: 179 +- proto: Grille + entities: + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + - uid: 986 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 179 + - uid: 987 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 179 + - uid: 988 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 179 + - uid: 1007 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 179 + - uid: 1008 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 179 + - uid: 1009 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 179 + - uid: 1010 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 179 + - uid: 1011 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 179 + - uid: 1012 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 179 + - uid: 1089 + components: + - type: Transform + pos: 8.5,17.5 + parent: 179 + - uid: 1090 + components: + - type: Transform + pos: 9.5,17.5 + parent: 179 + - uid: 1091 + components: + - type: Transform + pos: 10.5,17.5 + parent: 179 + - uid: 1092 + components: + - type: Transform + pos: 10.5,16.5 + parent: 179 +- proto: Handcuffs + entities: + - uid: 331 + components: + - type: Transform + pos: -3.5805476,0.74100244 + parent: 179 +- proto: HandheldHealthAnalyzer + entities: + - uid: 513 + components: + - type: Transform + pos: -5.9808183,-3.6614444 + parent: 179 +- proto: HoloFan + entities: + - uid: 142 + components: + - type: Transform + pos: -8.5,7.5 + parent: 179 + - type: Fixtures + fixtures: {} + - type: Airtight + noAirWhenFullyAirBlocked: True + missingComponents: + - TimedDespawn + - uid: 901 + components: + - type: Transform + pos: -10.5,7.5 + parent: 179 + - type: Fixtures + fixtures: {} + - type: Airtight + noAirWhenFullyAirBlocked: True + missingComponents: + - TimedDespawn + - uid: 902 + components: + - type: Transform + pos: -9.5,7.5 + parent: 179 + - type: Fixtures + fixtures: {} + - type: Airtight + noAirWhenFullyAirBlocked: True + missingComponents: + - TimedDespawn +- proto: HolofanProjectorEmpty + entities: + - uid: 1569 + components: + - type: Transform + pos: 7.2439203,-7.545966 + parent: 179 +- proto: HolosignWetFloor + entities: + - uid: 848 + components: + - type: Transform + pos: -13.5,2.5 + parent: 179 + - type: Fixtures + fixtures: {} + missingComponents: + - TimedDespawn + - uid: 911 + components: + - type: Transform + pos: -13.5,1.5 + parent: 179 + - type: Fixtures + fixtures: {} + missingComponents: + - TimedDespawn +- proto: hydroponicsTray + entities: + - uid: 756 + components: + - type: Transform + pos: 2.5,14.5 + parent: 179 + - uid: 757 + components: + - type: Transform + pos: 2.5,15.5 + parent: 179 +- proto: Igniter + entities: + - uid: 728 + components: + - type: Transform + pos: 13.546334,-14.688479 + parent: 179 +- proto: KitchenReagentGrinder + entities: + - uid: 731 + components: + - type: Transform + pos: 8.5,9.5 + parent: 179 +- proto: LargeBeaker + entities: + - uid: 210 + components: + - type: Transform + pos: 4.3272614,9.338851 + parent: 179 + - uid: 253 + components: + - type: Transform + pos: 23.494947,7.0422435 + parent: 179 + - uid: 402 + components: + - type: Transform + pos: 23.510572,7.7141185 + parent: 179 + - uid: 737 + components: + - type: Transform + pos: 4.2969,9.828774 + parent: 179 +- proto: LedLightTube + entities: + - uid: 481 + components: + - type: Transform + pos: -3.511025,-10.35149 + parent: 179 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 1278 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 179 +- proto: LockerBotanistFilled + entities: + - uid: 869 + components: + - type: Transform + pos: 2.5,16.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChemistry + entities: + - uid: 127 + components: + - type: Transform + pos: 27.5,6.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChemistryFilled + entities: + - uid: 297 + components: + - type: Transform + pos: 7.5,9.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 1564 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 179 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 405 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 179 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 458 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 179 +- proto: LockerMedical + entities: + - uid: 128 + components: + - type: Transform + pos: 27.5,5.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 129 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 130 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedicalFilled + entities: + - uid: 865 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedicineFilled + entities: + - uid: 562 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 493 + components: + - type: Transform + pos: -10.5,4.5 + parent: 179 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 457 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 179 +- proto: MachineAnomalyGenerator + entities: + - uid: 1071 + components: + - type: Transform + pos: 16.5,25.5 + parent: 179 +- proto: MachineAnomalyVessel + entities: + - uid: 1087 + components: + - type: Transform + pos: 15.5,19.5 + parent: 179 +- proto: MachineArtifactAnalyzer + entities: + - uid: 1078 + components: + - type: Transform + pos: 12.5,24.5 + parent: 179 +- proto: MachineFrame + entities: + - uid: 533 + components: + - type: Transform + pos: -5.5,10.5 + parent: 179 +- proto: MedicalScanner + entities: + - uid: 592 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 179 + - type: ContainerContainer + containers: + MedicalScanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 593 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 179 + - type: ContainerContainer + containers: + MedicalScanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MedkitFilled + entities: + - uid: 153 + components: + - type: Transform + pos: 13.632214,1.5673001 + parent: 179 + - uid: 154 + components: + - type: Transform + pos: 13.460339,0.6141751 + parent: 179 + - uid: 321 + components: + - type: Transform + pos: 3.8440318,4.425983 + parent: 179 +- proto: MicroManipulatorStockPart + entities: + - uid: 455 + components: + - type: Transform + pos: -6.337244,8.838643 + parent: 179 + - uid: 456 + components: + - type: Transform + pos: -5.920577,8.817795 + parent: 179 + - uid: 484 + components: + - type: Transform + pos: -5.5039105,8.838643 + parent: 179 + - uid: 712 + components: + - type: Transform + pos: -6.7434506,8.817795 + parent: 179 + - uid: 959 + components: + - type: Transform + pos: -4.752078,10.904018 + parent: 179 +- proto: ModularGrenade + entities: + - uid: 435 + components: + - type: Transform + pos: 6.829691,9.860046 + parent: 179 +- proto: MopBucket + entities: + - uid: 696 + components: + - type: Transform + pos: 7.5,16.5 + parent: 179 +- proto: MopItem + entities: + - uid: 328 + components: + - type: Transform + pos: 7.6382103,16.08618 + parent: 179 + - type: SolutionContainerManager + solutions: + absorbed: + temperature: 293.15 + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Water + Quantity: 25 +- proto: Multitool + entities: + - uid: 307 + components: + - type: Transform + pos: -1.249865,-10.43489 + parent: 179 + - uid: 430 + components: + - type: Transform + pos: -0.6298993,4.7431083 + parent: 179 + - type: NetworkConfigurator + devices: + 'UID: 31739': 801 +- proto: NitrogenCanister + entities: + - uid: 871 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 179 + - uid: 876 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 179 + - uid: 1315 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 179 +- proto: NitrousOxideCanister + entities: + - uid: 617 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 179 + - uid: 1302 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 179 + - uid: 1314 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 179 +- proto: Ointment + entities: + - uid: 148 + components: + - type: Transform + pos: 18.77326,6.653532 + parent: 179 + - uid: 149 + components: + - type: Transform + pos: 18.49201,6.059782 + parent: 179 +- proto: OxygenCanister + entities: + - uid: 747 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 179 + - uid: 875 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 179 + - uid: 1310 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 179 +- proto: PaperBin10 + entities: + - uid: 977 + components: + - type: Transform + pos: 10.5,12.5 + parent: 179 +- proto: PartRodMetal + entities: + - uid: 133 + components: + - type: Transform + pos: -3.4717777,7.672426 + parent: 179 +- proto: Pen + entities: + - uid: 978 + components: + - type: Transform + pos: 10.893699,12.7794075 + parent: 179 + - uid: 979 + components: + - type: Transform + pos: 10.862433,12.602201 + parent: 179 +- proto: PlasmaCanister + entities: + - uid: 255 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 179 + - uid: 256 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 179 + - uid: 1311 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 179 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 997 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 179 + - uid: 998 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 179 + - uid: 999 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 179 + - uid: 1000 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 179 +- proto: PlayerStationAi + entities: + - uid: 14 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 179 +- proto: PowerCellAntiqueProto + entities: + - uid: 1570 + components: + - type: Transform + pos: 7.5772533,-7.233466 + parent: 179 +- proto: PowerCellHigh + entities: + - uid: 567 + components: + - type: Transform + pos: -4.76583,8.265328 + parent: 179 +- proto: PowerCellHyper + entities: + - uid: 703 + components: + - type: Transform + pos: -4.3179135,8.275752 + parent: 179 +- proto: PowerCellMedium + entities: + - uid: 186 + components: + - type: Transform + pos: -2.67511,-10.351 + parent: 179 + - uid: 187 + components: + - type: Transform + pos: -2.55011,-10.6635 + parent: 179 + - uid: 360 + components: + - type: Transform + pos: -3.7970803,8.275752 + parent: 179 +- proto: PowerCellRecharger + entities: + - uid: 709 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 179 +- proto: PowerCellSmall + entities: + - uid: 705 + components: + - type: Transform + pos: -3.3182633,8.234056 + parent: 179 +- proto: Poweredlight + entities: + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 179 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-5.5 + parent: 179 + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 663 + components: + - type: Transform + pos: 22.5,2.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 682 + components: + - type: Transform + pos: 13.5,2.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1075 + components: + - type: Transform + pos: 16.5,27.5 + parent: 179 + - uid: 1076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 179 + - uid: 1425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 179 + - uid: 1426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 179 + - uid: 1427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 179 + - uid: 1428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 179 + - uid: 1429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 179 + - uid: 1430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 179 + - uid: 1431 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 179 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 179 + - uid: 1433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 179 + - uid: 1434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 179 + - uid: 1435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 179 + - uid: 1436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 179 + - uid: 1437 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 179 +- proto: PoweredlightExterior + entities: + - uid: 1557 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 179 +- proto: PoweredLightPostSmall + entities: + - uid: 1438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 179 +- proto: PoweredSmallLight + entities: + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 388 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 417 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 179 +- proto: Protolathe + entities: + - uid: 12 + components: + - type: Transform + pos: 13.5,21.5 + parent: 179 + - uid: 384 + components: + - type: Transform + pos: -6.5,6.5 + parent: 179 +- proto: Railing + entities: + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 179 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 179 + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 179 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 179 + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 179 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 179 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 179 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 179 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 179 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 179 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 179 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 179 + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 179 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 179 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 179 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 179 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 179 + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 179 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 179 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 179 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 179 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 179 + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 179 +- proto: RailingCornerSmall + entities: + - uid: 919 + components: + - type: Transform + pos: -14.5,9.5 + parent: 179 +- proto: RCDExperimental + entities: + - uid: 1575 + components: + - type: Transform + pos: 1.6787996,-5.6922684 + parent: 179 +- proto: ReinforcedWindow + entities: + - uid: 1084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + - uid: 1093 + components: + - type: Transform + pos: 8.5,17.5 + parent: 179 + - uid: 1094 + components: + - type: Transform + pos: 9.5,17.5 + parent: 179 + - uid: 1095 + components: + - type: Transform + pos: 10.5,17.5 + parent: 179 + - uid: 1096 + components: + - type: Transform + pos: 10.5,16.5 + parent: 179 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 17 + components: + - type: Transform + pos: 8.5,18.5 + parent: 179 +- proto: ResearchDiskDebug + entities: + - uid: 54 + components: + - type: Transform + pos: 9.532393,18.446417 + parent: 179 +- proto: RubberStampCaptain + entities: + - uid: 982 + components: + - type: Transform + pos: 12.800895,12.664745 + parent: 179 +- proto: RubberStampCentcom + entities: + - uid: 980 + components: + - type: Transform + pos: 12.186007,12.716865 + parent: 179 +- proto: RubberStampSyndicate + entities: + - uid: 981 + components: + - type: Transform + pos: 12.436131,12.550082 + parent: 179 +- proto: Screen + entities: + - uid: 1192 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 179 +- proto: Screwdriver + entities: + - uid: 431 + components: + - type: Transform + pos: -1.235331,4.739151 + parent: 179 +- proto: SeedExtractor + entities: + - uid: 65 + components: + - type: Transform + pos: 2.5,17.5 + parent: 179 +- proto: SheetGlass + entities: + - uid: 354 + components: + - type: Transform + pos: 8.57603,21.566113 + parent: 179 + - uid: 479 + components: + - type: Transform + pos: -5.13758,7.5586076 + parent: 179 + - uid: 529 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 179 + - uid: 564 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 179 + - uid: 565 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 179 + - uid: 566 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 179 +- proto: SheetGlass1 + entities: + - uid: 960 + components: + - type: Transform + pos: -3.981244,10.799851 + parent: 179 +- proto: SheetPGlass + entities: + - uid: 416 + components: + - type: Transform + pos: -0.5,8.5 + parent: 179 +- proto: SheetPlasma + entities: + - uid: 1077 + components: + - type: Transform + pos: 17.485096,24.503635 + parent: 179 +- proto: SheetPlasteel + entities: + - uid: 478 + components: + - type: Transform + pos: -4.0129576,7.6107273 + parent: 179 +- proto: SheetPlastic + entities: + - uid: 79 + components: + - type: Transform + pos: 8.951309,21.511908 + parent: 179 + - uid: 181 + components: + - type: Transform + pos: -4.54383,7.579455 + parent: 179 +- proto: SheetRPGlass + entities: + - uid: 182 + components: + - type: Transform + pos: -0.5,7.5 + parent: 179 +- proto: SheetSteel + entities: + - uid: 205 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 179 + - uid: 305 + components: + - type: Transform + pos: 9.435405,21.503613 + parent: 179 + - uid: 382 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 179 + - uid: 473 + components: + - type: Transform + pos: -5.6834707,7.529523 + parent: 179 + - uid: 543 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 179 + - uid: 544 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 179 +- proto: SignalButton + entities: + - uid: 1013 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 202: + - Pressed: Toggle + 984: + - Pressed: Toggle + - uid: 1014 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 697: + - Pressed: Toggle + 698: + - Pressed: Toggle + - uid: 1560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 728: + - Pressed: Trigger +- proto: SignAtmos + entities: + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 179 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-6.5 + parent: 179 +- proto: SignCargoDock + entities: + - uid: 1046 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 179 +- proto: SignCryogenics + entities: + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 179 +- proto: SignDanger entities: - - uid: 1071 + - uid: 1203 components: - type: Transform - pos: 16.5,25.5 + rot: -1.5707963267948966 rad + pos: 25.5,-19.5 parent: 179 -- proto: MachineAnomalyVessel +- proto: SignFlammable entities: - - uid: 1087 + - uid: 1297 components: - type: Transform - pos: 15.5,19.5 + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 parent: 179 -- proto: MachineArtifactAnalyzer - entities: - - uid: 1078 + - uid: 1299 components: - type: Transform - pos: 12.5,24.5 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 parent: 179 -- proto: MachineFrame +- proto: SignSpace entities: - - uid: 533 + - uid: 1291 components: - type: Transform - pos: -5.5,10.5 + pos: 6.5,-19.5 parent: 179 -- proto: MedicalScanner + - uid: 1555 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 179 + - uid: 1563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-25.5 + parent: 179 +- proto: SmallLight entities: - - uid: 592 + - uid: 1048 components: - type: Transform - pos: 18.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 179 - - type: ContainerContainer - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 593 + - uid: 1049 components: - type: Transform - pos: 18.5,-5.5 + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 parent: 179 - - type: ContainerContainer - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: MedkitFilled +- proto: SMESBasic entities: - - uid: 153 + - uid: 1017 components: - type: Transform - pos: 13.632214,1.5673001 + pos: -6.5,-12.5 parent: 179 - - uid: 154 +- proto: SodaDispenser + entities: + - uid: 751 components: - type: Transform - pos: 13.460339,0.6141751 + pos: 8.5,12.5 parent: 179 - - uid: 321 +- proto: SpawnMobCorgiMouse + entities: + - uid: 1050 components: - type: Transform - pos: 3.8440318,4.425983 + pos: 3.5,8.5 parent: 179 -- proto: MicroManipulatorStockPart +- proto: SpawnMobCrabAtmos entities: - - uid: 455 + - uid: 729 components: - type: Transform - pos: -6.337244,8.838643 + pos: 15.5,-10.5 parent: 179 - - uid: 456 +- proto: SpawnMobHuman + entities: + - uid: 138 components: - type: Transform - pos: -5.920577,8.817795 + pos: -6.5,-0.5 parent: 179 - - uid: 484 + - uid: 139 components: - type: Transform - pos: -5.5039105,8.838643 + pos: -6.5,0.5 parent: 179 - - uid: 712 + - uid: 140 components: - type: Transform - pos: -6.7434506,8.817795 + pos: 3.5,7.5 parent: 179 - - uid: 959 +- proto: SpawnPointCaptain + entities: + - uid: 954 components: - type: Transform - pos: -4.752078,10.904018 + pos: -4.5,4.5 parent: 179 -- proto: ModularGrenade +- proto: SpawnPointLatejoin entities: - - uid: 435 + - uid: 961 components: - type: Transform - pos: 6.829691,9.860046 + pos: -3.5,3.5 parent: 179 -- proto: MopBucket +- proto: SpawnPointObserver entities: - - uid: 696 + - uid: 679 components: - type: Transform - pos: 7.5,16.5 + pos: -3.5,4.5 parent: 179 -- proto: MopItem +- proto: Spear entities: - - uid: 328 + - uid: 185 components: - type: Transform - pos: 7.6382103,16.08618 + pos: -3.4579864,-1.9811735 parent: 179 - - type: SolutionContainerManager - solutions: - absorbed: - temperature: 293.15 - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: Water - Quantity: 25 -- proto: Multitool +- proto: SprayBottleWater entities: - - uid: 307 + - uid: 903 components: - type: Transform - pos: -1.249865,-10.43489 + pos: 6.985283,16.424004 parent: 179 - - uid: 430 +- proto: SprayPainter + entities: + - uid: 1572 components: - type: Transform - pos: -0.6298993,4.7431083 + pos: 7.5948057,-5.356733 parent: 179 - - type: NetworkConfigurator - devices: - 'UID: 31739': 801 -- proto: NitrogenCanister +- proto: Stimpack entities: - - uid: 459 + - uid: 462 components: - type: Transform - pos: 7.5,-1.5 + pos: 3.6877818,5.312015 parent: 179 -- proto: Ointment +- proto: Stool entities: - - uid: 148 + - uid: 383 components: - type: Transform - pos: 18.77326,6.653532 + pos: -1.5,-9.5 parent: 179 - - uid: 149 + - uid: 387 components: - type: Transform - pos: 18.49201,6.059782 + rot: 3.141592653589793 rad + pos: -2.5,-6.5 parent: 179 -- proto: OxygenCanister +- proto: StorageCanister entities: - - uid: 340 + - uid: 1285 components: - type: Transform - pos: 7.5,-3.5 + pos: 10.5,-6.5 parent: 179 -- proto: PaperBin10 + - uid: 1286 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 179 + - uid: 1287 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 179 + - uid: 1288 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 179 +- proto: Stunbaton entities: - - uid: 977 + - uid: 434 components: - type: Transform - pos: 10.5,12.5 + pos: -3.1734612,-2.6066077 parent: 179 -- proto: PartRodMetal +- proto: SubstationBasic entities: - - uid: 133 + - uid: 1018 components: - type: Transform - pos: -3.4717777,7.672426 + pos: -6.5,-13.5 parent: 179 -- proto: Pen +- proto: SurveillanceCameraGeneral entities: - - uid: 978 + - uid: 1186 components: - type: Transform - pos: 10.893699,12.7794075 + rot: 3.141592653589793 rad + pos: -2.5,10.5 parent: 179 - - uid: 979 + - uid: 1188 components: - type: Transform - pos: 10.862433,12.602201 + rot: -1.5707963267948966 rad + pos: 15.5,21.5 parent: 179 -- proto: PlasmaCanister + - uid: 1190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 179 +- proto: SurveillanceCameraRouterGeneral entities: - - uid: 461 + - uid: 1189 components: - type: Transform - pos: 7.5,-2.5 + pos: 9.5,24.5 parent: 179 -- proto: PlasticFlapsAirtightClear +- proto: Syringe entities: - - uid: 997 + - uid: 460 components: - type: Transform - pos: -2.5,-16.5 + pos: 3.2502818,4.5823417 parent: 179 - - uid: 998 + - uid: 738 components: - type: Transform - pos: -2.5,-14.5 + pos: 5.767191,9.787079 parent: 179 - - uid: 999 +- proto: Table + entities: + - uid: 63 components: - type: Transform - pos: 1.5,-16.5 + pos: 9.5,21.5 parent: 179 - - uid: 1000 + - uid: 64 components: - type: Transform - pos: 1.5,-14.5 + pos: 10.5,21.5 parent: 179 -- proto: PlayerStationAi - entities: - - uid: 14 + - uid: 67 components: - type: Transform - pos: -5.5,-5.5 + pos: 8.5,21.5 parent: 179 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 1016 + - uid: 76 components: - type: Transform - pos: -6.5,-11.5 + pos: 7.5,-7.5 parent: 179 -- proto: PowerCellHigh - entities: - - uid: 567 + - uid: 92 components: - type: Transform - pos: -4.76583,8.265328 + pos: 11.5,21.5 parent: 179 -- proto: PowerCellHyper - entities: - - uid: 703 + - uid: 143 components: - type: Transform - pos: -4.3179135,8.275752 + pos: 33.5,-3.5 parent: 179 -- proto: PowerCellMedium - entities: - - uid: 186 + - uid: 144 components: - type: Transform - pos: -2.67511,-10.351 + pos: 33.5,-2.5 parent: 179 - - uid: 187 + - uid: 145 components: - type: Transform - pos: -2.55011,-10.6635 + pos: 33.5,-1.5 parent: 179 - - uid: 360 + - uid: 161 components: - type: Transform - pos: -3.7970803,8.275752 + pos: 24.5,-5.5 parent: 179 -- proto: PowerCellRecharger - entities: - - uid: 709 + - uid: 162 components: - type: Transform - pos: -1.5,-3.5 + pos: 23.5,-5.5 parent: 179 -- proto: PowerCellSmall - entities: - - uid: 705 + - uid: 172 components: - type: Transform - pos: -3.3182633,8.234056 + rot: -1.5707963267948966 rad + pos: 4.5,9.5 parent: 179 -- proto: Poweredlight - entities: - - uid: 93 + - uid: 180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-5.5 + pos: -4.5,10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 536 + - uid: 262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 + pos: -3.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 660 + - uid: 263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + pos: -2.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 661 + - uid: 264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,7.5 + pos: -1.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 663 + - uid: 265 components: - type: Transform - pos: 22.5,2.5 + pos: -0.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 666 + - uid: 267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 + pos: 23.5,5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 670 + - uid: 268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,18.5 + pos: 23.5,6.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 673 + - uid: 298 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-5.5 + pos: 6.5,9.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 674 + - uid: 299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 + rot: -1.5707963267948966 rad + pos: 5.5,9.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 675 + - uid: 300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 + rot: -1.5707963267948966 rad + pos: 8.5,9.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 676 + - uid: 312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 + pos: -3.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 678 + - uid: 313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: -2.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 680 + - uid: 314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 + pos: -1.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 681 + - uid: 315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 + pos: -0.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 682 + - uid: 355 components: - type: Transform - pos: 13.5,2.5 + pos: -6.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 683 + - uid: 356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,4.5 + pos: -5.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1075 + - uid: 357 components: - type: Transform - pos: 16.5,27.5 + pos: -4.5,7.5 parent: 179 - - uid: 1076 + - uid: 358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,22.5 + pos: -3.5,7.5 parent: 179 -- proto: PoweredSmallLight - entities: - - uid: 163 + - uid: 361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,26.5 + pos: -0.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 166 + - uid: 362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,24.5 + pos: 0.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 167 + - uid: 363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 + pos: 1.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 388 + - uid: 366 components: - type: Transform - pos: 0.5,-5.5 + pos: -2.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 417 + - uid: 367 components: - type: Transform - pos: -4.5,-5.5 + pos: -1.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 483 + - uid: 368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 + pos: -0.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 534 + - uid: 371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 + pos: 1.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: Protolathe - entities: - - uid: 12 + - uid: 385 components: - type: Transform - pos: 13.5,21.5 + pos: -3.5,-2.5 parent: 179 - - uid: 384 + - uid: 386 components: - type: Transform - pos: -6.5,6.5 + pos: -3.5,-1.5 parent: 179 -- proto: Railing - entities: - - uid: 665 + - uid: 440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 + pos: 0.5,4.5 parent: 179 - - uid: 927 + - uid: 445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 + pos: -3.5,-0.5 parent: 179 - - uid: 928 + - uid: 448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 + pos: 3.5,5.5 parent: 179 - - uid: 929 + - uid: 452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,12.5 + pos: 1.5,-5.5 parent: 179 - - uid: 930 + - uid: 461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 + pos: 7.5,-6.5 parent: 179 - - uid: 931 + - uid: 465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,14.5 + pos: 1.5,8.5 parent: 179 - - uid: 932 + - uid: 466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,15.5 + pos: 0.5,8.5 parent: 179 - - uid: 933 + - uid: 467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,16.5 + pos: -3.5,8.5 parent: 179 - - uid: 934 + - uid: 468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,17.5 + pos: -0.5,8.5 parent: 179 - - uid: 935 + - uid: 470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 + pos: -6.5,8.5 parent: 179 - - uid: 936 + - uid: 471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 + pos: -5.5,8.5 parent: 179 - - uid: 937 + - uid: 472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,17.5 + pos: -4.5,8.5 parent: 179 - - uid: 938 + - uid: 515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,17.5 + pos: -15.5,-5.5 parent: 179 - - uid: 939 + - uid: 516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 + pos: -15.5,-1.5 parent: 179 - - uid: 940 + - uid: 520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 + pos: -15.5,-0.5 parent: 179 - - uid: 941 + - uid: 559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,17.5 + pos: -15.5,-4.5 parent: 179 - - uid: 942 + - uid: 560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 + pos: -15.5,-3.5 parent: 179 - - uid: 943 + - uid: 568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 + pos: 18.5,4.5 parent: 179 - - uid: 944 + - uid: 569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,17.5 + pos: 21.5,6.5 parent: 179 - - uid: 945 + - uid: 570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,17.5 + pos: 20.5,6.5 parent: 179 - - uid: 946 + - uid: 571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 + pos: 18.5,6.5 parent: 179 - - uid: 947 + - uid: 572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,17.5 + pos: 19.5,6.5 parent: 179 - - uid: 948 + - uid: 573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 + pos: 18.5,5.5 parent: 179 -- proto: RailingCornerSmall - entities: - - uid: 919 + - uid: 574 components: - type: Transform - pos: -14.5,9.5 + pos: 22.5,8.5 parent: 179 -- proto: ReinforcedWindow - entities: - - uid: 1084 + - uid: 575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 + pos: 24.5,4.5 parent: 179 - - uid: 1093 + - uid: 584 components: - type: Transform - pos: 8.5,17.5 + pos: 23.5,7.5 parent: 179 - - uid: 1094 + - uid: 586 components: - type: Transform - pos: 9.5,17.5 + pos: 25.5,10.5 parent: 179 - - uid: 1095 + - uid: 587 components: - type: Transform - pos: 10.5,17.5 + pos: 23.5,10.5 parent: 179 - - uid: 1096 + - uid: 588 components: - type: Transform - pos: 10.5,16.5 + pos: 24.5,10.5 parent: 179 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 17 + - uid: 589 components: - type: Transform - pos: 8.5,18.5 + pos: 26.5,10.5 parent: 179 -- proto: ResearchDiskDebug - entities: - - uid: 54 + - uid: 590 components: - type: Transform - pos: 9.532393,18.446417 + pos: 27.5,10.5 parent: 179 -- proto: RubberStampCaptain - entities: - - uid: 982 + - uid: 594 components: - type: Transform - pos: 12.800895,12.664745 + pos: 13.5,2.5 parent: 179 -- proto: RubberStampCentcom - entities: - - uid: 980 + - uid: 595 components: - type: Transform - pos: 12.186007,12.716865 + pos: 13.5,0.5 parent: 179 -- proto: RubberStampSyndicate - entities: - - uid: 981 + - uid: 596 components: - type: Transform - pos: 12.436131,12.550082 + pos: 13.5,1.5 parent: 179 -- proto: Screen - entities: - - uid: 1192 + - uid: 684 components: - type: Transform - pos: 4.5,-14.5 + pos: -3.5,0.5 parent: 179 -- proto: Screwdriver - entities: - - uid: 431 + - uid: 685 components: - type: Transform - pos: -1.235331,4.739151 + pos: 3.5,4.5 parent: 179 -- proto: SeedExtractor - entities: - - uid: 65 + - uid: 686 components: - type: Transform - pos: 2.5,17.5 + pos: 3.5,6.5 parent: 179 -- proto: SheetGlass - entities: - - uid: 354 + - uid: 706 components: - type: Transform - pos: 8.57603,21.566113 + pos: -1.5,-3.5 parent: 179 - - uid: 479 + - uid: 707 components: - type: Transform - pos: -5.13758,7.5586076 + pos: -0.5,-3.5 parent: 179 - - uid: 529 + - uid: 710 components: - type: Transform - pos: -15.5,-3.5 + pos: 0.5,-3.5 parent: 179 - - uid: 564 + - uid: 1561 components: - type: Transform - pos: -15.5,-1.5 + pos: 7.5,-5.5 parent: 179 - - uid: 565 +- proto: TableGlass + entities: + - uid: 964 components: - type: Transform - pos: -15.5,-1.5 + pos: 9.5,12.5 parent: 179 - - uid: 566 + - uid: 965 components: - type: Transform - pos: -15.5,-3.5 + pos: 11.5,12.5 parent: 179 -- proto: SheetGlass1 - entities: - - uid: 960 + - uid: 966 components: - type: Transform - pos: -3.981244,10.799851 + pos: 13.5,12.5 parent: 179 -- proto: SheetPGlass - entities: - - uid: 416 + - uid: 975 components: - type: Transform - pos: -0.5,8.5 + pos: 10.5,12.5 parent: 179 -- proto: SheetPlasma - entities: - - uid: 1077 + - uid: 976 components: - type: Transform - pos: 17.485096,24.503635 + pos: 12.5,12.5 parent: 179 -- proto: SheetPlasteel +- proto: TargetClown entities: - - uid: 478 + - uid: 459 components: - type: Transform - pos: -4.0129576,7.6107273 + pos: 7.5,-0.5 parent: 179 -- proto: SheetPlastic +- proto: TargetHuman entities: - - uid: 79 + - uid: 159 components: - type: Transform - pos: 8.951309,21.511908 + pos: -6.5,-1.5 parent: 179 - - uid: 181 + - uid: 248 components: - type: Transform - pos: -4.54383,7.579455 + pos: 7.5,1.5 parent: 179 -- proto: SheetRPGlass +- proto: TargetSyndicate entities: - - uid: 182 + - uid: 613 components: - type: Transform - pos: -0.5,7.5 + pos: 7.5,-2.5 parent: 179 -- proto: SheetSteel +- proto: TegCenter entities: - - uid: 205 + - uid: 1576 components: - type: Transform - pos: -15.5,-5.5 + rot: 1.5707963267948966 rad + pos: 13.5,-18.5 parent: 179 - - uid: 305 +- proto: TegCirculator + entities: + - uid: 1577 components: - type: Transform - pos: 9.435405,21.503613 + pos: 14.5,-18.5 parent: 179 - - uid: 382 + - type: PointLight + color: '#FF3300FF' + - uid: 1578 components: - type: Transform - pos: -15.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,-18.5 parent: 179 - - uid: 473 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerFilled + entities: + - uid: 963 components: - type: Transform - pos: -5.6834707,7.529523 + pos: -3.5,10.5 parent: 179 - - uid: 543 +- proto: TimerTrigger + entities: + - uid: 482 components: - type: Transform - pos: -15.5,-4.5 + pos: 6.413024,9.39097 parent: 179 - - uid: 544 +- proto: ToolboxElectricalFilled + entities: + - uid: 365 components: - type: Transform - pos: -15.5,-4.5 + pos: 0.4993378,3.429311 parent: 179 -- proto: SignalButton - entities: - - uid: 1013 + - uid: 419 components: - type: Transform - pos: -4.5,-14.5 + pos: -0.8099712,-5.21454 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 202: - - Pressed: Toggle - 984: - - Pressed: Toggle - - uid: 1014 + - uid: 420 components: - type: Transform - pos: 3.5,-14.5 + pos: -0.5597038,-5.679647 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 697: - - Pressed: Toggle - 698: - - Pressed: Toggle -- proto: SignCargoDock +- proto: ToolboxMechanicalFilled entities: - - uid: 1046 + - uid: 364 components: - type: Transform - pos: 4.5,-4.5 + pos: 1.452203,3.4605832 parent: 179 -- proto: SmallLight +- proto: ToyRubberDuck entities: - - uid: 1048 + - uid: 723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 + pos: -1.6653601,11.616664 parent: 179 - - uid: 1049 +- proto: trayScanner + entities: + - uid: 758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: 1.354346,4.548879 parent: 179 -- proto: SMESBasic +- proto: TritiumCanister entities: - - uid: 1017 + - uid: 254 components: - type: Transform - pos: -6.5,-12.5 + pos: 13.5,-2.5 parent: 179 -- proto: SodaDispenser - entities: - - uid: 751 + - uid: 619 components: - type: Transform - pos: 8.5,12.5 + pos: 12.5,-2.5 parent: 179 -- proto: SpawnMobHuman - entities: - - uid: 138 + - uid: 1312 components: - type: Transform - pos: -6.5,-0.5 + pos: 24.5,-13.5 parent: 179 - - uid: 139 +- proto: TwoWayLever + entities: + - uid: 699 components: - type: Transform - pos: -6.5,0.5 + pos: -3.5,-13.5 parent: 179 - - uid: 140 + - type: DeviceLinkSource + linkedPorts: + 990: + - Left: Forward + - Right: Reverse + - Middle: Off + 195: + - Left: Forward + - Right: Reverse + - Middle: Off + 991: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 722 components: - type: Transform - pos: 3.5,7.5 + pos: 1.5,11.5 parent: 179 -- proto: SpawnMobCorgiMouse - entities: - - uid: 1050 + - type: DeviceLinkSource + linkedPorts: + 721: + - Left: Forward + - Right: Reverse + - Middle: Off + 720: + - Left: Forward + - Right: Reverse + - Middle: Off + 716: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 983 components: - type: Transform - pos: 3.5,8.5 + pos: 2.5,-13.5 parent: 179 -- proto: SpawnPointCaptain - entities: - - uid: 954 + - type: DeviceLinkSource + linkedPorts: + 985: + - Left: Forward + - Right: Reverse + - Middle: Off + 259: + - Left: Forward + - Right: Reverse + - Middle: Off + 989: + - Left: Forward + - Right: Reverse + - Middle: Off + 463: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 1290 components: - type: Transform - pos: -4.5,4.5 + pos: 7.5,-14.5 parent: 179 -- proto: SpawnPointLatejoin - entities: - - uid: 961 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 1234: + - Left: Open + - Right: Open + - Middle: Close + 1233: + - Left: Open + - Right: Open + - Middle: Close + 1232: + - Left: Open + - Right: Open + - Middle: Close + 728: + - Left: Trigger + - Right: Trigger + - Middle: Trigger + - uid: 1499 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 1385: + - Left: Open + - Right: Open + - Middle: Close + - uid: 1520 components: - type: Transform - pos: -3.5,3.5 + pos: 7.5,-18.5 parent: 179 -- proto: SpawnPointObserver + - type: DeviceLinkSource + linkedPorts: + 1230: + - Left: Open + - Right: Open + - Middle: Close +- proto: UnfinishedMachineFrame entities: - - uid: 679 + - uid: 522 components: - type: Transform - pos: -3.5,4.5 + pos: -6.5,10.5 parent: 179 -- proto: Spear +- proto: UniformPrinter entities: - - uid: 185 + - uid: 443 components: - type: Transform - pos: -3.4579864,-1.9811735 + pos: -7.5,4.5 parent: 179 -- proto: SprayBottleWater +- proto: VendingMachineCigs entities: - - uid: 903 + - uid: 870 components: - type: Transform - pos: 6.985283,16.424004 + pos: -14.5,4.5 parent: 179 -- proto: Stimpack +- proto: VendingMachineEngivend entities: - - uid: 462 + - uid: 441 components: - type: Transform - pos: 3.6877818,5.312015 + pos: -11.5,4.5 parent: 179 -- proto: Stool - entities: - - uid: 383 + - uid: 523 components: - type: Transform - pos: -1.5,-9.5 + pos: -11.5,-1.5 parent: 179 - - uid: 387 + - uid: 1567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 + pos: 5.5,-11.5 parent: 179 -- proto: Stunbaton + - type: ActionGrant + actions: + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow +- proto: VendingMachineMedical entities: - - uid: 434 + - uid: 156 components: - type: Transform - pos: -3.1734612,-2.6066077 + pos: 25.5,-5.5 parent: 179 -- proto: SubstationBasic - entities: - - uid: 1018 + - uid: 157 components: - type: Transform - pos: -6.5,-13.5 + pos: 27.5,-5.5 parent: 179 -- proto: SurveillanceCameraGeneral - entities: - - uid: 1186 + - uid: 158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,10.5 + pos: 29.5,3.5 parent: 179 - - uid: 1188 + - uid: 521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 + pos: -12.5,4.5 parent: 179 - - uid: 1190 +- proto: VendingMachineSalvage + entities: + - uid: 485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,10.5 + pos: -15.5,4.5 parent: 179 -- proto: SurveillanceCameraRouterGeneral +- proto: VendingMachineSec entities: - - uid: 1189 + - uid: 874 components: - type: Transform - pos: 9.5,24.5 + pos: -13.5,4.5 parent: 179 -- proto: Syringe +- proto: VendingMachineTankDispenserEngineering entities: - - uid: 460 + - uid: 615 components: - type: Transform - pos: 3.2502818,4.5823417 + pos: 17.5,-7.5 parent: 179 - - uid: 738 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 614 components: - type: Transform - pos: 5.767191,9.787079 + pos: 14.5,-7.5 parent: 179 -- proto: Table +- proto: VendingMachineVendomat entities: - - uid: 63 + - uid: 1565 components: - type: Transform - pos: 9.5,21.5 + pos: 5.5,-12.5 parent: 179 - - uid: 64 +- proto: VendingMachineYouTool + entities: + - uid: 350 components: - type: Transform - pos: 10.5,21.5 + pos: -11.5,-0.5 parent: 179 - - uid: 67 + - uid: 1566 components: - type: Transform - pos: 8.5,21.5 + pos: 5.5,-10.5 parent: 179 - - uid: 92 + - type: ActionGrant + actions: + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow +- proto: WallSolid + entities: + - uid: 3 components: - type: Transform - pos: 11.5,21.5 + pos: 1.5,18.5 parent: 179 - - uid: 143 + - uid: 4 components: - type: Transform - pos: 33.5,-3.5 + pos: 11.5,26.5 parent: 179 - - uid: 144 + - uid: 5 components: - type: Transform - pos: 33.5,-2.5 + pos: 18.5,24.5 parent: 179 - - uid: 145 + - uid: 6 components: - type: Transform - pos: 33.5,-1.5 + pos: 20.5,15.5 parent: 179 - - uid: 161 + - uid: 8 components: - type: Transform - pos: 24.5,-5.5 + pos: 14.5,19.5 parent: 179 - - uid: 162 + - uid: 9 components: - type: Transform - pos: 23.5,-5.5 + pos: 1.5,19.5 parent: 179 - - uid: 172 + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 + pos: 18.5,26.5 parent: 179 - - uid: 180 + - uid: 11 components: - type: Transform - pos: -4.5,10.5 + pos: 13.5,26.5 parent: 179 - - uid: 262 + - uid: 13 components: - type: Transform - pos: -3.5,-5.5 + pos: 25.5,15.5 parent: 179 - - uid: 263 + - uid: 18 components: - type: Transform - pos: -2.5,-5.5 + pos: 4.5,26.5 parent: 179 - - uid: 264 + - uid: 19 components: - type: Transform - pos: -1.5,-5.5 + pos: 18.5,25.5 parent: 179 - - uid: 265 + - uid: 21 components: - type: Transform - pos: -0.5,-5.5 + pos: 10.5,26.5 parent: 179 - - uid: 267 + - uid: 22 components: - type: Transform - pos: 23.5,5.5 + pos: 26.5,15.5 parent: 179 - - uid: 268 + - uid: 25 components: - type: Transform - pos: 23.5,6.5 + pos: 1.5,21.5 parent: 179 - - uid: 298 + - uid: 27 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,9.5 + pos: 8.5,-0.5 parent: 179 - - uid: 299 + - uid: 28 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 + pos: 18.5,18.5 parent: 179 - - uid: 300 + - uid: 29 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 + pos: 18.5,21.5 parent: 179 - - uid: 312 + - uid: 30 components: - type: Transform - pos: -3.5,-10.5 + pos: 1.5,22.5 parent: 179 - - uid: 313 + - uid: 31 components: - type: Transform - pos: -2.5,-10.5 + pos: 1.5,20.5 parent: 179 - - uid: 314 + - uid: 32 components: - type: Transform - pos: -1.5,-10.5 + pos: 18.5,19.5 parent: 179 - - uid: 315 + - uid: 33 components: - type: Transform - pos: -0.5,-10.5 + pos: 23.5,15.5 parent: 179 - - uid: 355 + - uid: 34 components: - type: Transform - pos: -6.5,7.5 + pos: 12.5,22.5 parent: 179 - - uid: 356 + - uid: 35 components: - type: Transform - pos: -5.5,7.5 + pos: 27.5,15.5 parent: 179 - - uid: 357 + - uid: 36 components: - type: Transform - pos: -4.5,7.5 + pos: 7.5,22.5 parent: 179 - - uid: 358 + - uid: 37 components: - type: Transform - pos: -3.5,7.5 + pos: 14.5,22.5 parent: 179 - - uid: 361 + - uid: 38 components: - type: Transform - pos: -0.5,7.5 + pos: 10.5,23.5 parent: 179 - - uid: 362 + - uid: 39 components: - type: Transform - pos: 0.5,7.5 + pos: 10.5,24.5 parent: 179 - - uid: 363 + - uid: 40 components: - type: Transform - pos: 1.5,7.5 + pos: 8.5,26.5 parent: 179 - - uid: 366 + - uid: 41 components: - type: Transform - pos: -2.5,4.5 + pos: 10.5,25.5 parent: 179 - - uid: 367 + - uid: 42 components: - type: Transform - pos: -1.5,4.5 + pos: 18.5,22.5 parent: 179 - - uid: 368 + - uid: 43 components: - type: Transform - pos: -0.5,4.5 + pos: 14.5,27.5 parent: 179 - - uid: 371 + - uid: 44 components: - type: Transform - pos: 1.5,4.5 + pos: 14.5,26.5 parent: 179 - - uid: 385 + - uid: 45 components: - type: Transform - pos: -3.5,-2.5 + pos: 1.5,16.5 parent: 179 - - uid: 386 + - uid: 46 components: - type: Transform - pos: -3.5,-1.5 + pos: 18.5,27.5 parent: 179 - - uid: 440 + - uid: 49 components: - type: Transform - pos: 0.5,4.5 + pos: 7.5,28.5 parent: 179 - - uid: 445 + - uid: 50 components: - type: Transform - pos: -3.5,-0.5 + pos: 13.5,22.5 parent: 179 - - uid: 448 + - uid: 51 components: - type: Transform - pos: 3.5,5.5 + pos: 12.5,26.5 parent: 179 - - uid: 465 + - uid: 52 components: - type: Transform - pos: 1.5,8.5 + pos: 1.5,15.5 parent: 179 - - uid: 466 + - uid: 53 components: - type: Transform - pos: 0.5,8.5 + pos: 9.5,26.5 parent: 179 - - uid: 467 + - uid: 55 components: - type: Transform - pos: -3.5,8.5 + pos: 24.5,15.5 parent: 179 - - uid: 468 + - uid: 56 components: - type: Transform - pos: -0.5,8.5 + pos: 14.5,25.5 parent: 179 - - uid: 470 + - uid: 57 components: - type: Transform - pos: -6.5,8.5 + pos: 14.5,21.5 parent: 179 - - uid: 471 + - uid: 60 components: - type: Transform - pos: -5.5,8.5 + pos: 7.5,21.5 parent: 179 - - uid: 472 + - uid: 61 components: - type: Transform - pos: -4.5,8.5 + pos: 18.5,20.5 parent: 179 - - uid: 515 + - uid: 62 components: - type: Transform - pos: -15.5,-5.5 + pos: 18.5,23.5 parent: 179 - - uid: 516 + - uid: 66 components: - type: Transform - pos: -15.5,-1.5 + pos: 18.5,17.5 parent: 179 - - uid: 520 + - uid: 68 components: - type: Transform - pos: -15.5,-0.5 + pos: 18.5,28.5 parent: 179 - - uid: 559 + - uid: 69 components: - type: Transform - pos: -15.5,-4.5 + pos: 28.5,15.5 parent: 179 - - uid: 560 + - uid: 71 components: - type: Transform - pos: -15.5,-3.5 + pos: 11.5,22.5 parent: 179 - - uid: 568 + - uid: 72 components: - type: Transform - pos: 18.5,4.5 + pos: 1.5,17.5 parent: 179 - - uid: 569 + - uid: 73 components: - type: Transform - pos: 21.5,6.5 + pos: 14.5,28.5 parent: 179 - - uid: 570 + - uid: 74 components: - type: Transform - pos: 20.5,6.5 + pos: 10.5,22.5 parent: 179 - - uid: 571 + - uid: 75 components: - type: Transform - pos: 18.5,6.5 + pos: 9.5,22.5 parent: 179 - - uid: 572 + - uid: 78 components: - type: Transform - pos: 19.5,6.5 + pos: 21.5,15.5 parent: 179 - - uid: 573 + - uid: 80 components: - type: Transform - pos: 18.5,5.5 + pos: 18.5,16.5 parent: 179 - - uid: 574 + - uid: 81 components: - type: Transform - pos: 22.5,8.5 + pos: 18.5,15.5 parent: 179 - - uid: 575 + - uid: 82 components: - type: Transform - pos: 24.5,4.5 + pos: 14.5,18.5 parent: 179 - - uid: 584 + - uid: 83 components: - type: Transform - pos: 23.5,7.5 + pos: 4.5,28.5 parent: 179 - - uid: 586 + - uid: 84 components: - type: Transform - pos: 25.5,10.5 + pos: 7.5,26.5 parent: 179 - - uid: 587 + - uid: 85 components: - type: Transform - pos: 23.5,10.5 + pos: 1.5,23.5 parent: 179 - - uid: 588 + - uid: 86 components: - type: Transform - pos: 24.5,10.5 + pos: 17.5,15.5 parent: 179 - - uid: 589 + - uid: 89 components: - type: Transform - pos: 26.5,10.5 + pos: 22.5,15.5 parent: 179 - - uid: 590 + - uid: 95 components: - type: Transform - pos: 27.5,10.5 + pos: 8.5,22.5 parent: 179 - - uid: 594 + - uid: 96 components: - type: Transform - pos: 13.5,2.5 + pos: 7.5,27.5 parent: 179 - - uid: 595 + - uid: 98 components: - type: Transform - pos: 13.5,0.5 + pos: 4.5,25.5 parent: 179 - - uid: 596 + - uid: 99 components: - type: Transform - pos: 13.5,1.5 + pos: 17.5,18.5 parent: 179 - - uid: 684 + - uid: 100 components: - type: Transform - pos: -3.5,0.5 + pos: 19.5,15.5 parent: 179 - - uid: 685 + - uid: 101 components: - type: Transform - pos: 3.5,4.5 + pos: 4.5,27.5 parent: 179 - - uid: 686 + - uid: 103 components: - type: Transform - pos: 3.5,6.5 + pos: 14.5,17.5 parent: 179 - - uid: 706 + - uid: 104 components: - type: Transform - pos: -1.5,-3.5 + pos: 14.5,16.5 parent: 179 - - uid: 707 + - uid: 105 components: - type: Transform - pos: -0.5,-3.5 + pos: 15.5,15.5 parent: 179 - - uid: 710 + - uid: 106 components: - type: Transform - pos: 0.5,-3.5 + pos: 14.5,15.5 parent: 179 -- proto: TableGlass - entities: - - uid: 964 + - uid: 107 components: - type: Transform - pos: 9.5,12.5 + pos: 13.5,15.5 parent: 179 - - uid: 965 + - uid: 109 components: - type: Transform - pos: 11.5,12.5 + pos: 11.5,15.5 parent: 179 - - uid: 966 + - uid: 110 components: - type: Transform - pos: 13.5,12.5 + pos: 10.5,15.5 parent: 179 - - uid: 975 + - uid: 112 components: - type: Transform - pos: 10.5,12.5 + pos: 7.5,19.5 parent: 179 - - uid: 976 + - uid: 113 components: - type: Transform - pos: 12.5,12.5 + pos: 7.5,18.5 parent: 179 -- proto: TargetHuman - entities: - - uid: 159 + - uid: 114 components: - type: Transform - pos: -6.5,-1.5 + pos: 7.5,17.5 parent: 179 -- proto: TelecomServerFilled - entities: - - uid: 963 + - uid: 117 components: - type: Transform - pos: -3.5,10.5 + pos: 5.5,18.5 parent: 179 -- proto: TimerTrigger - entities: - - uid: 482 + - uid: 118 components: - type: Transform - pos: 6.413024,9.39097 + pos: 5.5,19.5 parent: 179 -- proto: ToolboxElectricalFilled - entities: - - uid: 365 + - uid: 121 components: - type: Transform - pos: 0.4993378,3.429311 + pos: 4.5,19.5 parent: 179 - - uid: 419 + - uid: 122 components: - type: Transform - pos: -0.8099712,-5.21454 + pos: 4.5,20.5 parent: 179 - - uid: 420 + - uid: 123 components: - type: Transform - pos: -0.5597038,-5.679647 + pos: 4.5,21.5 parent: 179 -- proto: ToolboxMechanicalFilled - entities: - - uid: 364 + - uid: 124 components: - type: Transform - pos: 1.452203,3.4605832 + pos: 4.5,22.5 parent: 179 -- proto: ToyRubberDuck - entities: - - uid: 723 + - uid: 125 components: - type: Transform - pos: -1.6653601,11.616664 + pos: 4.5,23.5 parent: 179 -- proto: trayScanner - entities: - - uid: 758 + - uid: 126 components: - type: Transform - pos: 1.354346,4.548879 + pos: 4.5,24.5 parent: 179 -- proto: TwoWayLever - entities: - - uid: 699 + - uid: 160 components: - type: Transform - pos: -3.5,-13.5 + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 990: - - Left: Forward - - Right: Reverse - - Middle: Off - 195: - - Left: Forward - - Right: Reverse - - Middle: Off - 991: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 722 + - uid: 164 components: - type: Transform - pos: 1.5,11.5 + rot: 1.5707963267948966 rad + pos: 22.5,9.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 721: - - Left: Forward - - Right: Reverse - - Middle: Off - 720: - - Left: Forward - - Right: Reverse - - Middle: Off - 716: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 983 + - uid: 165 components: - type: Transform - pos: 2.5,-13.5 + pos: 8.5,2.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 985: - - Left: Forward - - Right: Reverse - - Middle: Off - 259: - - Left: Forward - - Right: Reverse - - Middle: Off - 989: - - Left: Forward - - Right: Reverse - - Middle: Off - 463: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UnfinishedMachineFrame - entities: - - uid: 522 + - uid: 168 components: - type: Transform - pos: -6.5,10.5 + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 179 -- proto: UniformPrinter - entities: - - uid: 443 + - uid: 169 components: - type: Transform - pos: -7.5,4.5 + pos: 8.5,0.5 parent: 179 -- proto: VendingMachineCigs - entities: - - uid: 870 + - uid: 171 components: - type: Transform - pos: -14.5,4.5 + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 parent: 179 -- proto: VendingMachineEngivend - entities: - - uid: 441 + - uid: 173 components: - type: Transform - pos: -11.5,4.5 + pos: 8.5,1.5 parent: 179 - - uid: 523 + - uid: 189 components: - type: Transform - pos: -11.5,-1.5 + pos: -7.5,0.5 parent: 179 -- proto: VendingMachineMedical - entities: - - uid: 156 + - uid: 190 components: - type: Transform - pos: 25.5,-5.5 + pos: -7.5,-0.5 parent: 179 - - uid: 157 + - uid: 191 components: - type: Transform - pos: 27.5,-5.5 + pos: -7.5,-1.5 parent: 179 - - uid: 158 + - uid: 192 components: - type: Transform - pos: 29.5,3.5 + pos: -7.5,-2.5 parent: 179 - - uid: 521 + - uid: 193 components: - type: Transform - pos: -12.5,4.5 + pos: -7.5,-3.5 parent: 179 -- proto: VendingMachineSalvage - entities: - - uid: 485 + - uid: 196 components: - type: Transform - pos: -15.5,4.5 + pos: 3.5,-14.5 parent: 179 -- proto: VendingMachineSec - entities: - - uid: 874 + - uid: 197 components: - type: Transform - pos: -13.5,4.5 + pos: 4.5,-14.5 parent: 179 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 875 + - uid: 198 components: - type: Transform - pos: 7.5,0.5 + pos: -7.5,-10.5 parent: 179 -- proto: VendingMachineYouTool - entities: - - uid: 350 + - uid: 199 components: - type: Transform - pos: -11.5,-0.5 + pos: -7.5,-11.5 parent: 179 -- proto: WallSolid - entities: - - uid: 3 + - uid: 200 components: - type: Transform - pos: 1.5,18.5 + pos: -7.5,-12.5 parent: 179 - - uid: 4 + - uid: 201 components: - type: Transform - pos: 11.5,26.5 + pos: -7.5,-13.5 parent: 179 - - uid: 5 + - uid: 208 components: - type: Transform - pos: 18.5,24.5 + pos: -7.5,-9.5 parent: 179 - - uid: 6 + - uid: 209 components: - type: Transform - pos: 20.5,15.5 + pos: -10.5,-7.5 parent: 179 - - uid: 8 + - uid: 211 components: - type: Transform - pos: 14.5,19.5 + pos: -10.5,-5.5 parent: 179 - - uid: 9 + - uid: 212 components: - type: Transform - pos: 1.5,19.5 + pos: -10.5,-4.5 parent: 179 - - uid: 10 + - uid: 213 components: - type: Transform - pos: 18.5,26.5 + pos: -10.5,-3.5 parent: 179 - - uid: 11 + - uid: 214 components: - type: Transform - pos: 13.5,26.5 + pos: -10.5,-2.5 parent: 179 - - uid: 13 + - uid: 215 components: - type: Transform - pos: 25.5,15.5 + pos: -10.5,-1.5 parent: 179 - - uid: 18 + - uid: 217 components: - type: Transform - pos: 4.5,26.5 + pos: 1.5,-4.5 parent: 179 - - uid: 19 + - uid: 218 components: - type: Transform - pos: 18.5,25.5 + pos: 0.5,-4.5 parent: 179 - - uid: 21 + - uid: 219 components: - type: Transform - pos: 10.5,26.5 + pos: -0.5,-4.5 parent: 179 - - uid: 22 + - uid: 220 components: - type: Transform - pos: 26.5,15.5 + pos: -1.5,-4.5 parent: 179 - - uid: 25 + - uid: 221 components: - type: Transform - pos: 1.5,21.5 + pos: -2.5,-4.5 parent: 179 - - uid: 27 + - uid: 222 components: - type: Transform - pos: 8.5,-0.5 + pos: -3.5,-4.5 parent: 179 - - uid: 28 + - uid: 223 components: - type: Transform - pos: 18.5,18.5 + pos: -4.5,-4.5 parent: 179 - - uid: 29 + - uid: 224 components: - type: Transform - pos: 18.5,21.5 + pos: -5.5,-4.5 parent: 179 - - uid: 30 + - uid: 225 components: - type: Transform - pos: 1.5,22.5 + pos: -6.5,-4.5 parent: 179 - - uid: 31 + - uid: 226 components: - type: Transform - pos: 1.5,20.5 + pos: 4.5,-4.5 parent: 179 - - uid: 32 + - uid: 227 components: - type: Transform - pos: 18.5,19.5 + pos: 5.5,-4.5 parent: 179 - - uid: 33 + - uid: 228 components: - type: Transform - pos: 23.5,15.5 + pos: 6.5,-4.5 parent: 179 - - uid: 34 + - uid: 229 components: - type: Transform - pos: 12.5,22.5 + pos: -7.5,-14.5 parent: 179 - - uid: 35 + - uid: 231 components: - type: Transform - pos: 27.5,15.5 + pos: -6.5,-14.5 parent: 179 - - uid: 36 + - uid: 232 components: - type: Transform - pos: 7.5,22.5 + pos: -5.5,-14.5 parent: 179 - - uid: 37 + - uid: 233 components: - type: Transform - pos: 14.5,22.5 + pos: -4.5,-14.5 parent: 179 - - uid: 38 + - uid: 234 components: - type: Transform - pos: 10.5,23.5 + pos: 6.5,-10.5 parent: 179 - - uid: 39 + - uid: 235 components: - type: Transform - pos: 10.5,24.5 + pos: 6.5,-11.5 parent: 179 - - uid: 40 + - uid: 236 components: - type: Transform - pos: 8.5,26.5 + pos: 6.5,-12.5 parent: 179 - - uid: 41 + - uid: 237 components: - type: Transform - pos: 10.5,25.5 + pos: 6.5,-13.5 parent: 179 - - uid: 42 + - uid: 238 components: - type: Transform - pos: 18.5,22.5 + pos: 6.5,-14.5 parent: 179 - - uid: 43 + - uid: 239 components: - type: Transform - pos: 14.5,27.5 + pos: 5.5,-14.5 parent: 179 - - uid: 44 + - uid: 240 components: - type: Transform - pos: 14.5,26.5 + pos: -7.5,-8.5 parent: 179 - - uid: 45 + - uid: 241 components: - type: Transform - pos: 1.5,16.5 + pos: -7.5,-7.5 parent: 179 - - uid: 46 + - uid: 242 components: - type: Transform - pos: 18.5,27.5 + pos: -8.5,-8.5 parent: 179 - - uid: 49 + - uid: 243 components: - type: Transform - pos: 7.5,28.5 + pos: -9.5,-8.5 parent: 179 - - uid: 50 + - uid: 244 components: - type: Transform - pos: 13.5,22.5 + pos: -10.5,-8.5 parent: 179 - - uid: 51 + - uid: 245 components: - type: Transform - pos: 12.5,26.5 + pos: -7.5,-5.5 parent: 179 - - uid: 52 + - uid: 260 components: - type: Transform - pos: 1.5,15.5 + pos: 6.5,-6.5 parent: 179 - - uid: 53 + - uid: 261 components: - type: Transform - pos: 9.5,26.5 + pos: 6.5,-5.5 parent: 179 - - uid: 55 + - uid: 266 components: - type: Transform - pos: 24.5,15.5 + pos: 8.5,-3.5 parent: 179 - - uid: 56 + - uid: 271 components: - type: Transform - pos: 14.5,25.5 + pos: 1.5,14.5 parent: 179 - - uid: 57 + - uid: 272 components: - type: Transform - pos: 14.5,21.5 + pos: 1.5,13.5 parent: 179 - - uid: 60 + - uid: 273 components: - type: Transform - pos: 7.5,21.5 + pos: 1.5,12.5 parent: 179 - - uid: 61 + - uid: 274 components: - type: Transform - pos: 18.5,20.5 + pos: -7.5,11.5 parent: 179 - - uid: 62 + - uid: 275 components: - type: Transform - pos: 18.5,23.5 + pos: -6.5,11.5 parent: 179 - - uid: 66 + - uid: 276 components: - type: Transform - pos: 18.5,17.5 + pos: -5.5,11.5 parent: 179 - - uid: 68 + - uid: 277 components: - type: Transform - pos: 18.5,28.5 + pos: -4.5,11.5 parent: 179 - - uid: 69 + - uid: 278 components: - type: Transform - pos: 28.5,15.5 + pos: -3.5,11.5 parent: 179 - - uid: 71 + - uid: 279 components: - type: Transform - pos: 11.5,22.5 + pos: -2.5,11.5 parent: 179 - - uid: 72 + - uid: 282 components: - type: Transform - pos: 1.5,17.5 + pos: -1.5,12.5 parent: 179 - - uid: 73 + - uid: 283 components: - type: Transform - pos: 14.5,28.5 + pos: -0.5,12.5 parent: 179 - - uid: 74 + - uid: 284 components: - type: Transform - pos: 10.5,22.5 + pos: 0.5,12.5 parent: 179 - - uid: 75 + - uid: 288 components: - type: Transform - pos: 9.5,22.5 + pos: 12.5,8.5 parent: 179 - - uid: 76 + - uid: 289 components: - type: Transform - pos: 8.5,-1.5 + pos: 11.5,8.5 parent: 179 - - uid: 77 + - uid: 290 components: - type: Transform - pos: 8.5,-2.5 + pos: 10.5,8.5 parent: 179 - - uid: 78 + - uid: 291 components: - type: Transform - pos: 21.5,15.5 + pos: 9.5,8.5 parent: 179 - - uid: 80 + - uid: 292 components: - type: Transform - pos: 18.5,16.5 + pos: 8.5,8.5 parent: 179 - - uid: 81 + - uid: 293 components: - type: Transform - pos: 18.5,15.5 + pos: 7.5,8.5 parent: 179 - - uid: 82 + - uid: 294 components: - type: Transform - pos: 14.5,18.5 + pos: 6.5,8.5 parent: 179 - - uid: 83 + - uid: 295 components: - type: Transform - pos: 4.5,28.5 + pos: 5.5,8.5 parent: 179 - - uid: 84 + - uid: 301 components: - type: Transform - pos: 7.5,26.5 + pos: 9.5,11.5 parent: 179 - - uid: 85 + - uid: 302 components: - type: Transform - pos: 1.5,23.5 + pos: 10.5,11.5 parent: 179 - - uid: 86 + - uid: 303 components: - type: Transform - pos: 17.5,15.5 + pos: 11.5,11.5 parent: 179 - - uid: 89 + - uid: 304 components: - type: Transform - pos: 22.5,15.5 + pos: 12.5,11.5 parent: 179 - - uid: 95 + - uid: 310 components: - type: Transform - pos: 8.5,22.5 + pos: 9.5,9.5 parent: 179 - - uid: 96 + - uid: 316 components: - type: Transform - pos: 7.5,27.5 + pos: -7.5,-4.5 parent: 179 - - uid: 97 + - uid: 317 components: - type: Transform - pos: 8.5,-3.5 + pos: 26.5,14.5 parent: 179 - - uid: 98 + - uid: 320 components: - type: Transform - pos: 4.5,25.5 + pos: 24.5,14.5 parent: 179 - - uid: 99 + - uid: 322 components: - type: Transform - pos: 17.5,18.5 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 parent: 179 - - uid: 100 + - uid: 329 components: - type: Transform - pos: 19.5,15.5 + pos: -11.5,5.5 parent: 179 - - uid: 101 + - uid: 335 components: - type: Transform - pos: 4.5,27.5 + pos: 13.5,11.5 parent: 179 - - uid: 103 + - uid: 336 components: - type: Transform - pos: 14.5,17.5 + pos: 14.5,11.5 parent: 179 - - uid: 104 + - uid: 337 components: - type: Transform - pos: 14.5,16.5 + pos: 13.5,9.5 parent: 179 - - uid: 105 + - uid: 338 components: - type: Transform - pos: 15.5,15.5 + pos: 13.5,8.5 parent: 179 - - uid: 106 + - uid: 339 components: - type: Transform - pos: 14.5,15.5 + pos: 13.5,7.5 parent: 179 - - uid: 107 + - uid: 341 components: - type: Transform - pos: 13.5,15.5 + pos: 24.5,12.5 parent: 179 - - uid: 109 + - uid: 342 components: - type: Transform - pos: 11.5,15.5 + pos: 26.5,12.5 parent: 179 - - uid: 110 + - uid: 346 components: - type: Transform - pos: 10.5,15.5 + rot: -1.5707963267948966 rad + pos: 25.5,-7.5 parent: 179 - - uid: 112 + - uid: 352 components: - type: Transform - pos: 7.5,19.5 + pos: 13.5,6.5 parent: 179 - - uid: 113 + - uid: 353 components: - type: Transform - pos: 7.5,18.5 + pos: 13.5,5.5 parent: 179 - - uid: 114 + - uid: 372 components: - type: Transform - pos: 7.5,17.5 + pos: 13.5,4.5 parent: 179 - - uid: 117 + - uid: 373 components: - type: Transform - pos: 5.5,18.5 + pos: 25.5,4.5 parent: 179 - - uid: 118 + - uid: 374 components: - type: Transform - pos: 5.5,19.5 + pos: 23.5,4.5 parent: 179 - - uid: 121 + - uid: 375 components: - type: Transform - pos: 4.5,19.5 + pos: 17.5,3.5 parent: 179 - - uid: 122 + - uid: 376 components: - type: Transform - pos: 4.5,20.5 + pos: -10.5,-0.5 parent: 179 - - uid: 123 + - uid: 377 components: - type: Transform - pos: 4.5,21.5 + pos: -10.5,0.5 parent: 179 - - uid: 124 + - uid: 379 components: - type: Transform - pos: 4.5,22.5 + pos: -8.5,0.5 parent: 179 - - uid: 125 + - uid: 390 components: - type: Transform - pos: 4.5,23.5 + pos: 18.5,3.5 parent: 179 - - uid: 126 + - uid: 391 components: - type: Transform - pos: 4.5,24.5 + pos: 19.5,3.5 parent: 179 - - uid: 164 + - uid: 392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,9.5 + pos: 21.5,3.5 parent: 179 - - uid: 165 + - uid: 393 components: - type: Transform - pos: 8.5,2.5 + pos: 22.5,3.5 parent: 179 - - uid: 169 + - uid: 394 components: - type: Transform - pos: 8.5,0.5 + pos: 22.5,4.5 parent: 179 - - uid: 173 + - uid: 395 components: - type: Transform - pos: 8.5,1.5 + pos: 22.5,5.5 parent: 179 - - uid: 189 + - uid: 396 components: - type: Transform - pos: -7.5,0.5 + pos: 22.5,6.5 parent: 179 - - uid: 190 + - uid: 397 components: - type: Transform - pos: -7.5,-0.5 + pos: 22.5,7.5 parent: 179 - - uid: 191 + - uid: 399 components: - type: Transform - pos: -7.5,-1.5 + pos: 22.5,10.5 parent: 179 - - uid: 192 + - uid: 400 components: - type: Transform - pos: -7.5,-2.5 + pos: 21.5,11.5 parent: 179 - - uid: 193 + - uid: 401 components: - type: Transform - pos: -7.5,-3.5 + pos: 22.5,11.5 parent: 179 - - uid: 196 + - uid: 439 components: - type: Transform - pos: 3.5,-14.5 + pos: -13.5,5.5 parent: 179 - - uid: 197 + - uid: 449 components: - type: Transform - pos: 4.5,-14.5 + pos: -16.5,2.5 parent: 179 - - uid: 198 + - uid: 450 components: - type: Transform - pos: -7.5,-10.5 + pos: -16.5,3.5 parent: 179 - - uid: 199 + - uid: 464 components: - type: Transform - pos: -7.5,-11.5 + pos: 4.5,8.5 parent: 179 - - uid: 200 + - uid: 474 components: - type: Transform - pos: -7.5,-12.5 + pos: -7.5,8.5 parent: 179 - - uid: 201 + - uid: 475 components: - type: Transform - pos: -7.5,-13.5 + pos: -7.5,7.5 parent: 179 - - uid: 208 + - uid: 476 components: - type: Transform - pos: -7.5,-9.5 + pos: -7.5,6.5 parent: 179 - - uid: 209 + - uid: 477 components: - type: Transform - pos: -10.5,-7.5 + pos: -7.5,5.5 parent: 179 - - uid: 211 + - uid: 486 components: - type: Transform - pos: -10.5,-5.5 + pos: -15.5,5.5 parent: 179 - - uid: 212 + - uid: 487 components: - type: Transform - pos: -10.5,-4.5 + pos: -16.5,4.5 parent: 179 - - uid: 213 + - uid: 488 components: - type: Transform - pos: -10.5,-3.5 + pos: 5.5,17.5 parent: 179 - - uid: 214 + - uid: 489 components: - type: Transform - pos: -10.5,-2.5 + pos: -11.5,0.5 parent: 179 - - uid: 215 + - uid: 491 components: - type: Transform - pos: -10.5,-1.5 + pos: -16.5,5.5 parent: 179 - - uid: 217 + - uid: 492 components: - type: Transform - pos: 1.5,-4.5 + pos: -14.5,5.5 parent: 179 - - uid: 218 + - uid: 494 components: - type: Transform - pos: 0.5,-4.5 + rot: -1.5707963267948966 rad + pos: -11.5,7.5 parent: 179 - - uid: 219 + - uid: 495 components: - type: Transform - pos: -0.5,-4.5 + pos: -12.5,5.5 parent: 179 - - uid: 220 + - uid: 496 components: - type: Transform - pos: -1.5,-4.5 + pos: -16.5,1.5 parent: 179 - - uid: 221 + - uid: 497 components: - type: Transform - pos: -2.5,-4.5 + pos: -16.5,0.5 parent: 179 - - uid: 222 + - uid: 498 components: - type: Transform - pos: -3.5,-4.5 + pos: -16.5,-0.5 parent: 179 - - uid: 223 + - uid: 499 components: - type: Transform - pos: -4.5,-4.5 + pos: -16.5,-1.5 parent: 179 - - uid: 224 + - uid: 500 components: - type: Transform - pos: -5.5,-4.5 + pos: -16.5,-2.5 parent: 179 - - uid: 225 + - uid: 501 components: - type: Transform - pos: -6.5,-4.5 + pos: -16.5,-3.5 parent: 179 - - uid: 226 + - uid: 502 components: - type: Transform - pos: 4.5,-4.5 + pos: -16.5,-4.5 parent: 179 - - uid: 227 + - uid: 503 components: - type: Transform - pos: 5.5,-4.5 + pos: -16.5,-5.5 parent: 179 - - uid: 228 + - uid: 504 components: - type: Transform - pos: 6.5,-4.5 + pos: -16.5,-6.5 parent: 179 - - uid: 229 + - uid: 505 components: - type: Transform - pos: -7.5,-14.5 + pos: -16.5,-7.5 parent: 179 - - uid: 231 + - uid: 506 components: - type: Transform - pos: -6.5,-14.5 + pos: -16.5,-8.5 parent: 179 - - uid: 232 + - uid: 507 components: - type: Transform - pos: -5.5,-14.5 + pos: -15.5,-8.5 parent: 179 - - uid: 233 + - uid: 508 components: - type: Transform - pos: -4.5,-14.5 + pos: -14.5,-8.5 parent: 179 - - uid: 234 + - uid: 509 components: - type: Transform - pos: 6.5,-10.5 + pos: -13.5,-8.5 parent: 179 - - uid: 235 + - uid: 510 components: - type: Transform - pos: 6.5,-11.5 + pos: -12.5,-8.5 parent: 179 - - uid: 236 + - uid: 511 components: - type: Transform - pos: 6.5,-12.5 + pos: -11.5,-8.5 parent: 179 - - uid: 237 + - uid: 517 components: - type: Transform - pos: 6.5,-13.5 + pos: 23.5,11.5 parent: 179 - - uid: 238 + - uid: 518 components: - type: Transform - pos: 6.5,-14.5 + pos: 24.5,11.5 parent: 179 - - uid: 239 + - uid: 519 components: - type: Transform - pos: 5.5,-14.5 + pos: 25.5,11.5 parent: 179 - - uid: 240 + - uid: 535 components: - type: Transform - pos: -7.5,-8.5 + pos: -15.5,0.5 parent: 179 - - uid: 241 + - uid: 539 components: - type: Transform - pos: -7.5,-7.5 + pos: 26.5,11.5 parent: 179 - - uid: 242 + - uid: 540 components: - type: Transform - pos: -8.5,-8.5 + pos: 27.5,11.5 parent: 179 - - uid: 243 + - uid: 545 components: - type: Transform - pos: -9.5,-8.5 + pos: 7.5,-4.5 parent: 179 - - uid: 244 + - uid: 547 components: - type: Transform - pos: -10.5,-8.5 + pos: 28.5,11.5 parent: 179 - - uid: 245 + - uid: 548 components: - type: Transform - pos: -7.5,-5.5 + pos: 28.5,10.5 parent: 179 - - uid: 248 + - uid: 549 components: - type: Transform - pos: 5.5,-7.5 + pos: 28.5,9.5 parent: 179 - - uid: 249 + - uid: 550 components: - type: Transform - pos: 5.5,-9.5 + pos: 28.5,8.5 parent: 179 - - uid: 250 + - uid: 551 components: - type: Transform - pos: 6.5,-9.5 + pos: 28.5,7.5 parent: 179 - - uid: 251 + - uid: 552 components: - type: Transform - pos: 6.5,-7.5 + pos: 28.5,6.5 parent: 179 - - uid: 254 + - uid: 553 components: - type: Transform - pos: 7.5,-9.5 + pos: 28.5,5.5 parent: 179 - - uid: 260 + - uid: 554 components: - type: Transform - pos: 6.5,-6.5 + pos: 26.5,-2.5 parent: 179 - - uid: 261 + - uid: 555 components: - type: Transform - pos: 6.5,-5.5 + pos: 26.5,-1.5 parent: 179 - - uid: 271 + - uid: 556 components: - type: Transform - pos: 1.5,14.5 + pos: 25.5,-0.5 parent: 179 - - uid: 272 + - uid: 557 components: - type: Transform - pos: 1.5,13.5 + pos: 26.5,-0.5 parent: 179 - - uid: 273 + - uid: 558 components: - type: Transform - pos: 1.5,12.5 + pos: 27.5,-0.5 parent: 179 - - uid: 274 + - uid: 561 components: - type: Transform - pos: -7.5,11.5 + pos: -14.5,0.5 parent: 179 - - uid: 275 + - uid: 585 components: - type: Transform - pos: -6.5,11.5 + pos: 9.5,10.5 parent: 179 - - uid: 276 + - uid: 597 components: - type: Transform - pos: -5.5,11.5 + pos: 22.5,-0.5 parent: 179 - - uid: 277 + - uid: 598 components: - type: Transform - pos: -4.5,11.5 + pos: 17.5,-0.5 parent: 179 - - uid: 278 + - uid: 599 components: - type: Transform - pos: -3.5,11.5 + pos: 18.5,-0.5 parent: 179 - - uid: 279 + - uid: 600 components: - type: Transform - pos: -2.5,11.5 + pos: 20.5,-0.5 parent: 179 - - uid: 282 + - uid: 601 components: - type: Transform - pos: -1.5,12.5 + pos: 21.5,-0.5 parent: 179 - - uid: 283 + - uid: 602 components: - type: Transform - pos: -0.5,12.5 + pos: 19.5,-0.5 parent: 179 - - uid: 284 + - uid: 603 components: - type: Transform - pos: 0.5,12.5 + pos: 14.5,3.5 parent: 179 - - uid: 288 + - uid: 604 components: - type: Transform - pos: 12.5,8.5 + pos: 13.5,3.5 parent: 179 - - uid: 289 + - uid: 605 components: - type: Transform - pos: 11.5,8.5 + pos: 12.5,3.5 parent: 179 - - uid: 290 + - uid: 606 components: - type: Transform - pos: 10.5,8.5 + pos: 12.5,2.5 parent: 179 - - uid: 291 + - uid: 607 components: - type: Transform - pos: 9.5,8.5 + pos: 12.5,1.5 parent: 179 - - uid: 292 + - uid: 608 components: - type: Transform - pos: 8.5,8.5 + pos: 12.5,0.5 parent: 179 - - uid: 293 + - uid: 609 components: - type: Transform - pos: 7.5,8.5 + pos: 12.5,-0.5 parent: 179 - - uid: 294 + - uid: 610 components: - type: Transform - pos: 6.5,8.5 + pos: 13.5,-0.5 parent: 179 - - uid: 295 + - uid: 611 components: - type: Transform - pos: 5.5,8.5 + pos: 14.5,-0.5 parent: 179 - - uid: 301 + - uid: 612 components: - type: Transform - pos: 9.5,11.5 + pos: 8.5,-2.5 parent: 179 - - uid: 302 + - uid: 618 components: - type: Transform - pos: 10.5,11.5 + pos: 14.5,-6.5 parent: 179 - - uid: 303 + - uid: 620 components: - type: Transform - pos: 11.5,11.5 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 parent: 179 - - uid: 304 + - uid: 621 components: - type: Transform - pos: 12.5,11.5 + pos: 17.5,-6.5 parent: 179 - - uid: 310 + - uid: 622 components: - type: Transform - pos: 9.5,9.5 + pos: 18.5,-6.5 parent: 179 - - uid: 316 + - uid: 623 components: - type: Transform - pos: -7.5,-4.5 + pos: 19.5,-6.5 parent: 179 - - uid: 317 + - uid: 624 components: - type: Transform - pos: 26.5,14.5 + pos: 20.5,-6.5 parent: 179 - - uid: 320 + - uid: 625 components: - type: Transform - pos: 24.5,14.5 + pos: 21.5,-6.5 parent: 179 - - uid: 329 + - uid: 626 components: - type: Transform - pos: -11.5,5.5 + pos: 22.5,-6.5 parent: 179 - - uid: 335 + - uid: 627 components: - type: Transform - pos: 13.5,11.5 + pos: 23.5,-6.5 parent: 179 - - uid: 336 + - uid: 628 components: - type: Transform - pos: 14.5,11.5 + pos: 24.5,-6.5 parent: 179 - - uid: 337 + - uid: 629 components: - type: Transform - pos: 13.5,9.5 + pos: 25.5,-6.5 parent: 179 - - uid: 338 + - uid: 630 components: - type: Transform - pos: 13.5,8.5 + pos: 26.5,-6.5 parent: 179 - - uid: 339 + - uid: 631 components: - type: Transform - pos: 13.5,7.5 + pos: 26.5,-5.5 parent: 179 - - uid: 341 + - uid: 632 components: - type: Transform - pos: 24.5,12.5 + pos: 26.5,-4.5 parent: 179 - - uid: 342 + - uid: 633 components: - type: Transform - pos: 26.5,12.5 + pos: 27.5,-6.5 parent: 179 - - uid: 352 + - uid: 634 components: - type: Transform - pos: 13.5,6.5 + pos: 28.5,-6.5 parent: 179 - - uid: 353 + - uid: 635 components: - type: Transform - pos: 13.5,5.5 + pos: 29.5,-6.5 parent: 179 - - uid: 372 + - uid: 636 components: - type: Transform - pos: 13.5,4.5 + pos: 30.5,-6.5 parent: 179 - - uid: 373 + - uid: 637 components: - type: Transform - pos: 25.5,4.5 + pos: 31.5,-6.5 parent: 179 - - uid: 374 + - uid: 638 components: - type: Transform - pos: 23.5,4.5 + pos: 32.5,-6.5 parent: 179 - - uid: 375 + - uid: 639 components: - type: Transform - pos: 17.5,3.5 + pos: 33.5,-6.5 parent: 179 - - uid: 376 + - uid: 640 components: - type: Transform - pos: -10.5,-0.5 + pos: 34.5,-6.5 parent: 179 - - uid: 377 + - uid: 641 components: - type: Transform - pos: -10.5,0.5 + pos: 34.5,-5.5 parent: 179 - - uid: 379 + - uid: 642 components: - type: Transform - pos: -8.5,0.5 + pos: 34.5,-4.5 parent: 179 - - uid: 390 + - uid: 643 components: - type: Transform - pos: 18.5,3.5 + pos: 34.5,-3.5 parent: 179 - - uid: 391 + - uid: 644 components: - type: Transform - pos: 19.5,3.5 + pos: 34.5,-2.5 parent: 179 - - uid: 392 + - uid: 645 components: - type: Transform - pos: 21.5,3.5 + pos: 34.5,-1.5 parent: 179 - - uid: 393 + - uid: 646 components: - type: Transform - pos: 22.5,3.5 + pos: 34.5,-0.5 parent: 179 - - uid: 394 + - uid: 647 components: - type: Transform - pos: 22.5,4.5 + pos: 33.5,-0.5 parent: 179 - - uid: 395 + - uid: 648 components: - type: Transform - pos: 22.5,5.5 + pos: 32.5,-0.5 parent: 179 - - uid: 396 + - uid: 649 components: - type: Transform - pos: 22.5,6.5 + pos: 31.5,-0.5 parent: 179 - - uid: 397 + - uid: 650 components: - type: Transform - pos: 22.5,7.5 + pos: 30.5,-0.5 parent: 179 - - uid: 399 + - uid: 651 components: - type: Transform - pos: 22.5,10.5 + pos: 29.5,-0.5 parent: 179 - - uid: 400 + - uid: 652 components: - type: Transform - pos: 21.5,11.5 + pos: 30.5,0.5 parent: 179 - - uid: 401 + - uid: 653 components: - type: Transform - pos: 22.5,11.5 + pos: 30.5,1.5 parent: 179 - - uid: 418 + - uid: 654 components: - type: Transform - pos: 7.5,-7.5 + pos: 30.5,2.5 parent: 179 - - uid: 439 + - uid: 655 components: - type: Transform - pos: -13.5,5.5 + pos: 30.5,3.5 parent: 179 - - uid: 449 + - uid: 656 components: - type: Transform - pos: -16.5,2.5 + pos: 30.5,4.5 parent: 179 - - uid: 450 + - uid: 657 components: - type: Transform - pos: -16.5,3.5 + pos: 29.5,4.5 parent: 179 - - uid: 464 + - uid: 658 components: - type: Transform - pos: 4.5,8.5 + pos: 28.5,4.5 parent: 179 - - uid: 474 + - uid: 659 components: - type: Transform - pos: -7.5,8.5 + pos: 27.5,4.5 parent: 179 - - uid: 475 + - uid: 680 components: - type: Transform - pos: -7.5,7.5 + pos: 8.5,-1.5 parent: 179 - - uid: 476 + - uid: 702 components: - type: Transform - pos: -7.5,6.5 + rot: -1.5707963267948966 rad + pos: -11.5,6.5 parent: 179 - - uid: 477 + - uid: 713 components: - type: Transform - pos: -7.5,5.5 + pos: -7.5,9.5 parent: 179 - - uid: 486 + - uid: 714 components: - type: Transform - pos: -15.5,5.5 + pos: -7.5,10.5 parent: 179 - - uid: 487 + - uid: 724 components: - type: Transform - pos: -16.5,4.5 + pos: -2.5,12.5 parent: 179 - - uid: 488 + - uid: 733 components: - type: Transform - pos: 5.5,17.5 + pos: 4.5,5.5 parent: 179 - - uid: 489 + - uid: 734 components: - type: Transform - pos: -11.5,0.5 + pos: 4.5,4.5 parent: 179 - - uid: 491 + - uid: 739 components: - type: Transform - pos: -16.5,5.5 + pos: 8.5,7.5 parent: 179 - - uid: 492 + - uid: 740 components: - type: Transform - pos: -14.5,5.5 + pos: 8.5,6.5 parent: 179 - - uid: 494 + - uid: 741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,7.5 + pos: 8.5,5.5 parent: 179 - - uid: 495 + - uid: 742 components: - type: Transform - pos: -12.5,5.5 + pos: 8.5,4.5 parent: 179 - - uid: 496 + - uid: 743 components: - type: Transform - pos: -16.5,1.5 + pos: 8.5,3.5 parent: 179 - - uid: 497 + - uid: 745 components: - type: Transform - pos: -16.5,0.5 + pos: 4.5,7.5 parent: 179 - - uid: 498 + - uid: 746 components: - type: Transform - pos: -16.5,-0.5 + pos: 4.5,6.5 parent: 179 - - uid: 499 + - uid: 846 components: - type: Transform - pos: -16.5,-1.5 + pos: 2.5,19.5 parent: 179 - - uid: 500 + - uid: 847 components: - type: Transform - pos: -16.5,-2.5 + pos: 3.5,19.5 parent: 179 - - uid: 501 + - uid: 925 components: - type: Transform - pos: -16.5,-3.5 + rot: -1.5707963267948966 rad + pos: -14.5,17.5 parent: 179 - - uid: 502 + - uid: 958 components: - type: Transform - pos: -16.5,-4.5 + rot: 3.141592653589793 rad + pos: 15.5,18.5 parent: 179 - - uid: 503 + - uid: 1016 components: - type: Transform - pos: -16.5,-5.5 + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 parent: 179 - - uid: 504 + - uid: 1072 components: - type: Transform - pos: -16.5,-6.5 + pos: 15.5,28.5 parent: 179 - - uid: 505 + - uid: 1073 components: - type: Transform - pos: -16.5,-7.5 + pos: 16.5,28.5 parent: 179 - - uid: 506 + - uid: 1074 components: - type: Transform - pos: -16.5,-8.5 + pos: 17.5,28.5 parent: 179 - - uid: 507 + - uid: 1176 components: - type: Transform - pos: -15.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 parent: 179 - - uid: 508 + - uid: 1181 components: - type: Transform - pos: -14.5,-8.5 + pos: 5.5,28.5 parent: 179 - - uid: 509 + - uid: 1206 components: - type: Transform - pos: -13.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-12.5 parent: 179 - - uid: 510 + - uid: 1209 components: - type: Transform - pos: -12.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 parent: 179 - - uid: 511 + - uid: 1210 components: - type: Transform - pos: -11.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 parent: 179 - - uid: 517 + - uid: 1211 components: - type: Transform - pos: 23.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 parent: 179 - - uid: 518 + - uid: 1212 components: - type: Transform - pos: 24.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-19.5 parent: 179 - - uid: 519 + - uid: 1213 components: - type: Transform - pos: 25.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-18.5 parent: 179 - - uid: 535 + - uid: 1214 components: - type: Transform - pos: -15.5,0.5 + rot: -1.5707963267948966 rad + pos: 25.5,-22.5 parent: 179 - - uid: 539 + - uid: 1215 components: - type: Transform - pos: 26.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-20.5 parent: 179 - - uid: 540 + - uid: 1216 components: - type: Transform - pos: 27.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-21.5 parent: 179 - - uid: 545 + - uid: 1217 components: - type: Transform - pos: 7.5,-4.5 + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 parent: 179 - - uid: 546 + - uid: 1218 components: - type: Transform - pos: 8.5,-4.5 + rot: -1.5707963267948966 rad + pos: 25.5,-14.5 parent: 179 - - uid: 547 + - uid: 1219 components: - type: Transform - pos: 28.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-16.5 parent: 179 - - uid: 548 + - uid: 1226 components: - type: Transform - pos: 28.5,10.5 + pos: 6.5,-22.5 parent: 179 - - uid: 549 + - uid: 1228 components: - type: Transform - pos: 28.5,9.5 + pos: 6.5,-21.5 parent: 179 - - uid: 550 + - uid: 1229 components: - type: Transform - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 6.5,-19.5 parent: 179 - - uid: 551 + - uid: 1231 components: - type: Transform - pos: 28.5,7.5 + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 parent: 179 - - uid: 552 + - uid: 1263 components: - type: Transform - pos: 28.5,6.5 + pos: 6.5,-23.5 parent: 179 - - uid: 553 + - uid: 1272 components: - type: Transform - pos: 28.5,5.5 + pos: 6.5,-24.5 parent: 179 - - uid: 554 + - uid: 1294 components: - type: Transform - pos: 26.5,-2.5 + pos: 25.5,-24.5 parent: 179 - - uid: 555 + - uid: 1295 components: - type: Transform - pos: 26.5,-1.5 + pos: 25.5,-23.5 parent: 179 - - uid: 556 + - uid: 1303 components: - type: Transform - pos: 25.5,-0.5 + rot: 3.141592653589793 rad + pos: 14.5,-1.5 parent: 179 - - uid: 557 + - uid: 1304 components: - type: Transform - pos: 26.5,-0.5 + rot: 3.141592653589793 rad + pos: 14.5,-2.5 parent: 179 - - uid: 558 + - uid: 1305 components: - type: Transform - pos: 27.5,-0.5 + rot: 3.141592653589793 rad + pos: 14.5,-3.5 parent: 179 - - uid: 561 + - uid: 1306 components: - type: Transform - pos: -14.5,0.5 + rot: 3.141592653589793 rad + pos: 14.5,-4.5 parent: 179 - - uid: 585 + - uid: 1307 components: - type: Transform - pos: 9.5,10.5 + rot: 3.141592653589793 rad + pos: 14.5,-5.5 parent: 179 - - uid: 597 + - uid: 1328 components: - type: Transform - pos: 22.5,-0.5 + pos: 25.5,-25.5 parent: 179 - - uid: 598 + - uid: 1329 components: - type: Transform - pos: 17.5,-0.5 + pos: 24.5,-25.5 parent: 179 - - uid: 599 + - uid: 1330 components: - type: Transform - pos: 18.5,-0.5 + pos: 23.5,-25.5 parent: 179 - - uid: 600 + - uid: 1331 components: - type: Transform - pos: 20.5,-0.5 + pos: 22.5,-25.5 parent: 179 - - uid: 601 + - uid: 1332 components: - type: Transform - pos: 21.5,-0.5 + pos: 21.5,-25.5 parent: 179 - - uid: 602 + - uid: 1333 components: - type: Transform - pos: 19.5,-0.5 + pos: 20.5,-25.5 parent: 179 - - uid: 603 + - uid: 1334 components: - type: Transform - pos: 14.5,3.5 + pos: 19.5,-25.5 parent: 179 - - uid: 604 + - uid: 1337 components: - type: Transform - pos: 13.5,3.5 + pos: 16.5,-25.5 parent: 179 - - uid: 605 + - uid: 1338 components: - type: Transform - pos: 12.5,3.5 + pos: 15.5,-25.5 parent: 179 - - uid: 606 + - uid: 1339 components: - type: Transform - pos: 12.5,2.5 + pos: 14.5,-25.5 parent: 179 - - uid: 607 + - uid: 1340 components: - type: Transform - pos: 12.5,1.5 + pos: 12.5,-25.5 parent: 179 - - uid: 608 + - uid: 1341 components: - type: Transform - pos: 12.5,0.5 + pos: 11.5,-25.5 parent: 179 - - uid: 609 + - uid: 1342 components: - type: Transform - pos: 12.5,-0.5 + pos: 10.5,-25.5 parent: 179 - - uid: 610 + - uid: 1343 components: - type: Transform - pos: 13.5,-0.5 + pos: 9.5,-25.5 parent: 179 - - uid: 611 + - uid: 1344 components: - type: Transform - pos: 14.5,-0.5 + pos: 8.5,-25.5 parent: 179 - - uid: 612 + - uid: 1345 components: - type: Transform - pos: 13.5,-1.5 + pos: 7.5,-25.5 parent: 179 - - uid: 613 + - uid: 1346 components: - type: Transform - pos: 13.5,-6.5 + pos: 6.5,-25.5 parent: 179 - - uid: 614 + - uid: 1347 components: - type: Transform - pos: 13.5,-5.5 + pos: 13.5,-25.5 parent: 179 - - uid: 615 + - uid: 1506 components: - type: Transform - pos: 13.5,-4.5 + pos: 10.5,-12.5 parent: 179 - - uid: 616 + - uid: 1559 components: - type: Transform - pos: 13.5,-3.5 + pos: 8.5,-4.5 parent: 179 - - uid: 617 +- proto: WarningCO2 + entities: + - uid: 1300 components: - type: Transform - pos: 13.5,-2.5 + rot: -1.5707963267948966 rad + pos: 25.5,-21.5 parent: 179 - - uid: 618 +- proto: WarningN2 + entities: + - uid: 1208 components: - type: Transform - pos: 14.5,-6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 parent: 179 - - uid: 619 +- proto: WarningN2O + entities: + - uid: 1296 components: - type: Transform - pos: 15.5,-6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 parent: 179 - - uid: 620 +- proto: WarningO2 + entities: + - uid: 1227 components: - type: Transform - pos: 16.5,-6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-7.5 parent: 179 - - uid: 621 +- proto: WaterTankFull + entities: + - uid: 115 components: - type: Transform - pos: 17.5,-6.5 + pos: 4.5,18.5 parent: 179 - - uid: 622 + - uid: 694 components: - type: Transform - pos: 18.5,-6.5 + pos: -2.5,3.5 parent: 179 - - uid: 623 +- proto: WaterVaporCanister + entities: + - uid: 97 components: - type: Transform - pos: 19.5,-6.5 + pos: 12.5,-1.5 parent: 179 - - uid: 624 + - uid: 319 components: - type: Transform - pos: 20.5,-6.5 + pos: 13.5,-1.5 parent: 179 - - uid: 625 + - uid: 1313 components: - type: Transform - pos: 21.5,-6.5 + pos: 24.5,-23.5 parent: 179 - - uid: 626 +- proto: WeaponCapacitorRecharger + entities: + - uid: 708 components: - type: Transform - pos: 22.5,-6.5 + pos: -0.5,-3.5 parent: 179 - - uid: 627 +- proto: WeaponLaserCarbine + entities: + - uid: 188 components: - type: Transform - pos: 23.5,-6.5 + pos: -3.5226438,-0.45543313 parent: 179 - - uid: 628 +- proto: WeaponLauncherMultipleRocket + entities: + - uid: 671 components: - type: Transform - pos: 24.5,-6.5 + pos: -13.195735,9.730438 parent: 179 - - uid: 629 +- proto: WeaponLauncherRocket + entities: + - uid: 436 components: - type: Transform - pos: 25.5,-6.5 + pos: -3.478273,-1.1611286 parent: 179 - - uid: 630 +- proto: WeaponRifleAk + entities: + - uid: 437 components: - type: Transform - pos: 26.5,-6.5 + pos: -3.5018106,0.24183923 parent: 179 - - uid: 631 + - uid: 949 components: - type: Transform - pos: 26.5,-5.5 + pos: -12.238617,9.081488 parent: 179 - - uid: 632 +- proto: WelderExperimental + entities: + - uid: 343 components: - type: Transform - pos: 26.5,-4.5 + pos: 0.6895334,4.7183027 parent: 179 - - uid: 633 +- proto: WeldingFuelTankFull + entities: + - uid: 693 components: - type: Transform - pos: 27.5,-6.5 + pos: -1.5,3.5 parent: 179 - - uid: 634 +- proto: Window + entities: + - uid: 111 components: - type: Transform - pos: 28.5,-6.5 + pos: -0.5,-15.5 parent: 179 - - uid: 635 + - uid: 194 components: - type: Transform - pos: 29.5,-6.5 + pos: -0.5,-16.5 parent: 179 - - uid: 636 + - uid: 230 components: - type: Transform - pos: 30.5,-6.5 + pos: -0.5,-14.5 parent: 179 - - uid: 637 + - uid: 1001 components: - type: Transform - pos: 31.5,-6.5 + pos: -3.5,-16.5 parent: 179 - - uid: 638 + - uid: 1002 components: - type: Transform - pos: 32.5,-6.5 + pos: -3.5,-15.5 parent: 179 - - uid: 639 + - uid: 1003 components: - type: Transform - pos: 33.5,-6.5 + pos: -3.5,-14.5 parent: 179 - - uid: 640 + - uid: 1004 components: - type: Transform - pos: 34.5,-6.5 + pos: 2.5,-16.5 parent: 179 - - uid: 641 + - uid: 1005 components: - type: Transform - pos: 34.5,-5.5 + pos: 2.5,-15.5 parent: 179 - - uid: 642 + - uid: 1006 components: - type: Transform - pos: 34.5,-4.5 + pos: 2.5,-14.5 parent: 179 - - uid: 643 +- proto: WindowReinforcedDirectional + entities: + - uid: 340 components: - type: Transform - pos: 34.5,-3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 parent: 179 - - uid: 644 + - uid: 345 components: - type: Transform - pos: 34.5,-2.5 + rot: 3.141592653589793 rad + pos: 24.5,-8.5 parent: 179 - - uid: 645 + - uid: 347 components: - type: Transform - pos: 34.5,-1.5 + pos: 24.5,-22.5 parent: 179 - - uid: 646 + - uid: 348 components: - type: Transform - pos: 34.5,-0.5 + rot: 3.141592653589793 rad + pos: 23.5,-8.5 parent: 179 - - uid: 647 + - uid: 1236 components: - type: Transform - pos: 33.5,-0.5 + pos: 23.5,-8.5 parent: 179 - - uid: 648 + - uid: 1237 components: - type: Transform - pos: 32.5,-0.5 + pos: 24.5,-8.5 parent: 179 - - uid: 649 + - uid: 1239 components: - type: Transform - pos: 31.5,-0.5 + rot: 3.141592653589793 rad + pos: 23.5,-10.5 parent: 179 - - uid: 650 + - uid: 1240 components: - type: Transform - pos: 30.5,-0.5 + rot: 3.141592653589793 rad + pos: 24.5,-10.5 parent: 179 - - uid: 651 + - uid: 1241 components: - type: Transform - pos: 29.5,-0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 parent: 179 - - uid: 652 + - uid: 1242 components: - type: Transform - pos: 30.5,0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-11.5 parent: 179 - - uid: 653 + - uid: 1243 components: - type: Transform - pos: 30.5,1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 parent: 179 - - uid: 654 + - uid: 1244 components: - type: Transform - pos: 30.5,2.5 + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 parent: 179 - - uid: 655 + - uid: 1245 components: - type: Transform - pos: 30.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 parent: 179 - - uid: 656 + - uid: 1246 components: - type: Transform - pos: 30.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,-19.5 parent: 179 - - uid: 657 + - uid: 1247 components: - type: Transform - pos: 29.5,4.5 + rot: 3.141592653589793 rad + pos: 23.5,-22.5 parent: 179 - - uid: 658 + - uid: 1248 components: - type: Transform - pos: 28.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 parent: 179 - - uid: 659 + - uid: 1249 components: - type: Transform - pos: 27.5,4.5 + pos: 23.5,-10.5 parent: 179 - - uid: 702 + - uid: 1250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,6.5 + pos: 24.5,-10.5 parent: 179 - - uid: 713 + - uid: 1251 components: - type: Transform - pos: -7.5,9.5 + pos: 24.5,-12.5 parent: 179 - - uid: 714 + - uid: 1252 components: - type: Transform - pos: -7.5,10.5 + pos: 24.5,-14.5 parent: 179 - - uid: 724 + - uid: 1253 components: - type: Transform - pos: -2.5,12.5 + pos: 24.5,-16.5 parent: 179 - - uid: 733 + - uid: 1254 components: - type: Transform - pos: 4.5,5.5 + pos: 24.5,-18.5 parent: 179 - - uid: 734 + - uid: 1255 components: - type: Transform - pos: 4.5,4.5 + pos: 24.5,-20.5 parent: 179 - - uid: 739 + - uid: 1256 components: - type: Transform - pos: 8.5,7.5 + pos: 23.5,-20.5 parent: 179 - - uid: 740 + - uid: 1257 components: - type: Transform - pos: 8.5,6.5 + pos: 23.5,-18.5 parent: 179 - - uid: 741 + - uid: 1259 components: - type: Transform - pos: 8.5,5.5 + rot: 3.141592653589793 rad + pos: 23.5,-24.5 parent: 179 - - uid: 742 + - uid: 1261 components: - type: Transform - pos: 8.5,4.5 + pos: 23.5,-16.5 parent: 179 - - uid: 743 + - uid: 1262 components: - type: Transform - pos: 8.5,3.5 + pos: 23.5,-14.5 parent: 179 - - uid: 745 + - uid: 1264 components: - type: Transform - pos: 4.5,7.5 + rot: 3.141592653589793 rad + pos: 24.5,-22.5 parent: 179 - - uid: 746 + - uid: 1265 components: - type: Transform - pos: 4.5,6.5 + pos: 23.5,-12.5 parent: 179 - - uid: 846 + - uid: 1266 components: - type: Transform - pos: 2.5,19.5 + pos: 23.5,-22.5 parent: 179 - - uid: 847 + - uid: 1267 components: - type: Transform - pos: 3.5,19.5 + rot: 3.141592653589793 rad + pos: 23.5,-12.5 parent: 179 - - uid: 925 + - uid: 1268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,17.5 + rot: 3.141592653589793 rad + pos: 24.5,-12.5 parent: 179 - - uid: 958 + - uid: 1269 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,18.5 + pos: 24.5,-14.5 parent: 179 - - uid: 1072 + - uid: 1270 components: - type: Transform - pos: 15.5,28.5 + rot: 3.141592653589793 rad + pos: 23.5,-14.5 parent: 179 - - uid: 1073 + - uid: 1271 components: - type: Transform - pos: 16.5,28.5 + rot: 1.5707963267948966 rad + pos: 21.5,-23.5 parent: 179 - - uid: 1074 + - uid: 1273 components: - type: Transform - pos: 17.5,28.5 + rot: 3.141592653589793 rad + pos: 23.5,-16.5 parent: 179 - - uid: 1181 + - uid: 1274 components: - type: Transform - pos: 5.5,28.5 + rot: 3.141592653589793 rad + pos: 24.5,-16.5 parent: 179 -- proto: WaterTankFull - entities: - - uid: 115 + - uid: 1275 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: 24.5,-18.5 parent: 179 - - uid: 694 + - uid: 1276 components: - type: Transform - pos: -2.5,3.5 + rot: 3.141592653589793 rad + pos: 23.5,-18.5 parent: 179 -- proto: WeaponCapacitorRecharger - entities: - - uid: 708 + - uid: 1279 components: - type: Transform - pos: -0.5,-3.5 + rot: 3.141592653589793 rad + pos: 23.5,-20.5 parent: 179 -- proto: WeaponLaserCarbine - entities: - - uid: 188 + - uid: 1280 components: - type: Transform - pos: -3.5226438,-0.45543313 + rot: 3.141592653589793 rad + pos: 24.5,-20.5 parent: 179 -- proto: WeaponLauncherMultipleRocket - entities: - - uid: 671 + - uid: 1283 components: - type: Transform - pos: -13.195735,9.730438 + rot: 3.141592653589793 rad + pos: 24.5,-24.5 parent: 179 -- proto: WeaponLauncherRocket - entities: - - uid: 436 + - uid: 1386 components: - type: Transform - pos: -3.478273,-1.1611286 + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 parent: 179 -- proto: WeaponRifleAk - entities: - - uid: 437 + - uid: 1387 components: - type: Transform - pos: -3.5018106,0.24183923 + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 parent: 179 - - uid: 949 + - uid: 1388 components: - type: Transform - pos: -12.238617,9.081488 + pos: 12.5,-12.5 parent: 179 -- proto: WelderExperimental - entities: - - uid: 343 + - uid: 1490 components: - type: Transform - pos: 0.6895334,4.7183027 + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 parent: 179 -- proto: WeldingFuelTankFull - entities: - - uid: 693 + - uid: 1491 components: - type: Transform - pos: -1.5,3.5 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 179 -- proto: Window - entities: - - uid: 111 + - uid: 1492 components: - type: Transform - pos: -0.5,-15.5 + rot: 3.141592653589793 rad + pos: 11.5,-16.5 parent: 179 - - uid: 194 + - uid: 1494 components: - type: Transform - pos: -0.5,-16.5 + rot: -1.5707963267948966 rad + pos: 15.5,-13.5 parent: 179 - - uid: 230 + - uid: 1495 components: - type: Transform - pos: -0.5,-14.5 + rot: 3.141592653589793 rad + pos: 10.5,-16.5 parent: 179 - - uid: 1001 + - uid: 1496 components: - type: Transform - pos: -3.5,-16.5 + pos: 11.5,-12.5 parent: 179 - - uid: 1002 + - uid: 1497 components: - type: Transform - pos: -3.5,-15.5 + rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 179 - - uid: 1003 + - uid: 1498 components: - type: Transform - pos: -3.5,-14.5 + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 parent: 179 - - uid: 1004 + - uid: 1501 components: - type: Transform - pos: 2.5,-16.5 + rot: 3.141592653589793 rad + pos: 12.5,-16.5 parent: 179 - - uid: 1005 + - uid: 1505 components: - type: Transform - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 parent: 179 - - uid: 1006 + - uid: 1562 components: - type: Transform - pos: 2.5,-14.5 + pos: 14.5,-12.5 parent: 179 - proto: Wirecutter entities: diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 3adc9767832..2918b26110f 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -10019,6 +10019,11 @@ entities: - type: Transform pos: -14.5,-67.5 parent: 8364 + - type: DeviceList + devices: + - 5463 + - 5462 + - 1860 - uid: 26908 components: - type: Transform @@ -11579,7 +11584,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -16708.217 + secondsUntilStateChange: -18243.016 state: Opening - type: DeviceLinkSource lastSignals: @@ -13271,6 +13276,9 @@ entities: - type: Transform pos: -11.5,-68.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 14486 components: - type: Transform @@ -19614,6 +19622,11 @@ entities: - type: Transform pos: 2.5,-13.5 parent: 8364 + - uid: 8185 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 8364 - uid: 8383 components: - type: Transform @@ -81253,11 +81266,6 @@ entities: - type: Transform pos: 70.5,-43.5 parent: 8364 - - uid: 21936 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 8364 - uid: 25921 components: - type: Transform @@ -81280,6 +81288,11 @@ entities: - type: Transform pos: 11.5,-68.5 parent: 8364 + - uid: 27920 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 8364 - proto: DisposalYJunction entities: - uid: 6145 @@ -84418,7 +84431,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -10896.755 + secondsUntilStateChange: -12431.553 state: Closing - uid: 15010 components: @@ -84911,7 +84924,7 @@ entities: pos: -4.5,-71.5 parent: 8364 - type: Door - secondsUntilStateChange: -2644.4858 + secondsUntilStateChange: -4179.284 state: Closing - proto: Fireplace entities: @@ -110589,6 +110602,9 @@ entities: - type: Transform pos: -15.5,-68.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7282 @@ -112049,6 +112065,9 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-69.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 7284 components: - type: Transform @@ -133757,6 +133776,11 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 8364 + - uid: 17697 + components: + - type: Transform + pos: 10.5,-81.5 + parent: 8364 - uid: 17718 components: - type: Transform @@ -133777,6 +133801,11 @@ entities: - type: Transform pos: 17.5,-50.5 parent: 8364 + - uid: 21936 + components: + - type: Transform + pos: 10.5,-80.5 + parent: 8364 - uid: 22830 components: - type: Transform @@ -137215,12 +137244,6 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 - - uid: 8185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-81.5 - parent: 8364 - uid: 8207 components: - type: Transform @@ -138045,12 +138068,6 @@ entities: - type: Transform pos: 25.5,-75.5 parent: 8364 - - uid: 17697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-80.5 - parent: 8364 - uid: 17787 components: - type: Transform diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 553ec560ce1..384c60f599a 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -153,11 +153,11 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIgAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAAAcwAAAAADcwAAAAACIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAABgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACCwAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIgAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAAAcwAAAAADcwAAAAACIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAABgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACCwAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -165,7 +165,7 @@ entities: version: 6 0,-4: ind: 0,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAACCQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADCQAAAAABCQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAACQAAAAADCQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADDAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACDAAAAAAAYAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 @@ -397,7 +397,7 @@ entities: version: 6 -4,3: ind: -4,3 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAEAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB version: 6 -3,3: ind: -3,3 @@ -413,15 +413,15 @@ entities: version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAABHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHQAAAAADHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAACHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADHQAAAAAAHQAAAAABHQAAAAADIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAYAAAAAAAHQAAAAADHQAAAAADHQAAAAACIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACYAAAAAAAHQAAAAACHQAAAAACHQAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACYAAAAAAAHQAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAA version: 6 -2,4: ind: -2,4 - tiles: gQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 @@ -445,7 +445,7 @@ entities: version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-5: ind: 0,-5 @@ -461,7 +461,15 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + -3,5: + ind: -3,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -574,6 +582,7 @@ entities: 2149: -4.9654737,27.154173 7349: -20.712843,20.881693 7381: -20.692894,-14.720455 + 9630: 4.6297913,-60.77529 - node: angle: 0.017453292519943295 rad color: '#FFFFFFFF' @@ -615,6 +624,11 @@ entities: 2152: -1.1244693,28.919865 7350: -20.36495,22.00225 7384: -12.161644,-13.896967 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 9631: 5.9526916,-63.01578 - node: color: '#FFFFFFFF' id: Basalt9 @@ -826,7 +840,6 @@ entities: 6793: 61,-19 6794: 62,-19 6795: 63,-19 - 7202: 3,-61 7203: 3,-60 7204: -8,-69 7205: -17,-59 @@ -858,6 +871,7 @@ entities: 9291: 55,-40 9537: 39,-1 9613: 52,63 + 9874: -32,77 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1062,12 +1076,6 @@ entities: decals: 4244: 24,49 4245: 24,50 - 5561: -46,68 - 5562: -46,69 - 5563: -46,70 - 5564: -46,71 - 5582: -46,72 - 5583: -46,67 6692: 0,-15 7848: 53,4 7849: 53,5 @@ -1136,6 +1144,7 @@ entities: 8598: 30,25 9590: -5,75 9591: -5,72 + 9900: -48,74 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1154,6 +1163,7 @@ entities: 8597: 28,25 9587: -12,72 9588: -12,75 + 9898: -53,74 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1173,6 +1183,7 @@ entities: 7935: 57,-4 7971: 61,3 9589: -5,74 + 9897: -48,69 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1196,6 +1207,7 @@ entities: 7972: 58,3 8596: 28,21 9592: -12,74 + 9899: -53,69 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -1289,6 +1301,8 @@ entities: 8593: 30,23 8594: 30,24 9612: -5,71 + 9911: -48,70 + 9912: -48,73 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1343,6 +1357,10 @@ entities: 9608: -8,72 9609: -7,72 9610: -6,72 + 9901: -52,74 + 9902: -51,74 + 9903: -50,74 + 9904: -49,74 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1400,6 +1418,10 @@ entities: 9602: -9,74 9604: -10,74 9606: -11,74 + 9905: -52,69 + 9906: -51,69 + 9907: -50,69 + 9908: -49,69 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1437,6 +1459,8 @@ entities: 7979: 58,4 8591: 28,24 9611: -12,71 + 9909: -53,70 + 9910: -53,73 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1857,10 +1881,8 @@ entities: 7188: -54,-49 7189: -48,-51 7190: -40,-51 - 7197: 3,-61 7199: 3,-63 7200: 0,-65 - 7201: 4,-60 7206: 4,-52 7207: 6,-48 7208: 10,-50 @@ -1921,6 +1943,22 @@ entities: 9500: 5,-55 9501: 10,-52 9502: -19,-70 + 9647: 3,-61 + 9648: 3,-61 + 9787: -36,76 + 9788: -36,78 + 9789: -39,79 + 9790: -40,78 + 9791: -32,77 + 9792: -29,78 + 9793: -28,75 + 9794: -30,73 + 9795: -32,72 + 9796: -43,73 + 9797: -44,69 + 9920: -32,75 + 9921: -28,74 + 9922: -29,77 - node: cleanable: True zIndex: 1 @@ -2481,7 +2519,6 @@ entities: 5663: -35,72 5664: -37,72 5665: -40,72 - 5666: -45,67 5667: -44,70 5668: -45,72 5669: -42,69 @@ -2499,8 +2536,6 @@ entities: 5681: -51,62 5683: -53,61 5684: -54,61 - 5685: -54,62 - 5686: -53,62 5687: -51,61 5688: -51,59 5689: -51,56 @@ -2946,7 +2981,6 @@ entities: 9456: 36,-43 9457: 33,-43 9485: 8,-57 - 9486: 7,-56 9487: 6,-55 9488: 10,-52 9489: 10,-54 @@ -2980,6 +3014,88 @@ entities: 9558: 37,2 9559: 39,4 9560: 40,2 + 9733: -32,77 + 9734: -32,77 + 9735: -32,78 + 9736: -31,78 + 9737: -29,79 + 9738: -28,79 + 9739: -28,78 + 9740: -27,77 + 9741: -29,77 + 9742: -28,75 + 9743: -29,75 + 9744: -30,75 + 9745: -28,77 + 9746: -28,76 + 9747: -27,78 + 9748: -28,78 + 9749: -29,79 + 9750: -30,78 + 9751: -28,79 + 9752: -27,79 + 9753: -30,73 + 9754: -32,74 + 9755: -33,73 + 9756: -34,73 + 9757: -35,73 + 9758: -38,74 + 9760: -36,76 + 9761: -38,76 + 9762: -39,77 + 9763: -38,77 + 9764: -37,77 + 9875: -40,76 + 9876: -37,76 + 9877: -37,77 + 9878: -37,77 + 9879: -38,77 + 9880: -39,77 + 9881: -39,78 + 9882: -39,79 + 9883: -38,79 + 9884: -38,78 + 9885: -37,78 + 9886: -37,79 + 9887: -36,78 + 9888: -39,74 + 9889: -40,74 + 9890: -36,73 + 9891: -35,74 + 9892: -37,74 + 9893: -38,74 + 9894: -38,74 + 9895: -38,74 + 9896: -38,74 + 9913: -28,73 + 9914: -28,74 + 9915: -29,73 + 9916: -29,74 + 9917: -30,74 + 9918: -28,75 + 9919: -30,75 + 9923: -30,77 + 9924: -28,77 + 9925: -28,76 + 9926: -28,75 + 9927: -29,75 + 9928: -30,74 + 9929: -30,74 + 9930: -30,73 + 9931: -31,72 + 9932: -32,72 + 9933: -34,72 + 9934: -39,73 + 9935: -43,72 + 9936: -44,72 + 9937: -43,69 + 9938: -43,68 + 9939: -44,69 + 9940: -44,68 + 9941: -43,67 + 9942: -43,67 + 9943: -43,68 + 9944: -46,68 - node: cleanable: True zIndex: 1 @@ -3212,7 +3328,6 @@ entities: 3047: -45,52 3049: -47,55 3050: -43,58 - 3051: -46,59 3052: -45,61 3053: -49,62 3054: -42,62 @@ -4028,10 +4143,6 @@ entities: 7078: -29,-59 7079: -28,-60 7080: -29,-57 - 7191: 3,-61 - 7192: 3,-61 - 7193: 4,-60 - 7194: 4,-60 7695: 1,-38 7696: -2,-36 7697: 2,-33 @@ -4314,6 +4425,36 @@ entities: 9575: 39,-2 9576: 39,-1 9577: 39,-1 + 9617: 5,-60 + 9618: 5,-60 + 9619: 5,-60 + 9620: 5,-60 + 9621: 5,-60 + 9798: -53,68 + 9799: -55,70 + 9800: -54,71 + 9801: -54,74 + 9802: -51,75 + 9803: -50,76 + 9804: -47,74 + 9805: -46,72 + 9806: -47,70 + 9807: -47,70 + 9808: -47,68 + 9809: -50,68 + 9810: -49,67 + 9811: -51,67 + 9812: -52,68 + 9864: -33,74 + 9865: -32,73 + 9866: -31,74 + 9867: -31,74 + 9868: -31,74 + 9869: -31,74 + 9870: -31,74 + 9871: -31,75 + 9872: -31,75 + 9873: -32,75 - node: cleanable: True zIndex: 1 @@ -4387,6 +4528,18 @@ entities: 8561: 30.483143,22.477749 8562: 29.489317,22.508635 8563: 29.612774,23.37652 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 9622: 5,-60 + 9623: 5,-60 + 9624: 6,-62 + 9625: 6,-62 + 9626: 6,-62 + 9627: 6,-62 - node: cleanable: True color: '#FFFFFFFF' @@ -4447,6 +4600,57 @@ entities: 9389: -62,-21 9390: -62,-21 9391: -62,-21 + 9813: -50,67 + 9814: -46,68 + 9815: -46,70 + 9816: -47,71 + 9817: -54,72 + 9818: -55,73 + 9819: -51,75 + 9820: -50,76 + 9821: -49,76 + 9822: -49,75 + 9823: -52,64 + 9824: -52,65 + 9825: -51,65 + 9826: -51,63 + 9827: -51,61 + 9828: -51,59 + 9829: -52,59 + 9830: -52,60 + 9831: -52,57 + 9832: -52,55 + 9833: -52,55 + 9834: -53,54 + 9835: -52,51 + 9836: -52,49 + 9837: -54,51 + 9838: -50,52 + 9839: -49,52 + 9840: -49,50 + 9841: -49,50 + 9842: -42,68 + 9843: -42,69 + 9844: -42,71 + 9845: -43,71 + 9846: -41,73 + 9847: -40,73 + 9848: -38,74 + 9849: -37,73 + 9850: -43,73 + 9851: -44,72 + 9852: -34,74 + 9853: -33,74 + 9854: -31,73 + 9855: -30,72 + 9856: -31,72 + 9857: -33,72 + 9858: -34,72 + 9859: -32,77 + 9860: -31,78 + 9861: -31,78 + 9862: -29,75 + 9863: -29,75 - node: cleanable: True zIndex: 1 @@ -4482,6 +4686,11 @@ entities: id: FlowersBRThree decals: 7264: 26.104586,-35.788994 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 9634: 3.844667,-59.998734 - node: cleanable: True color: '#8600003C' @@ -4499,6 +4708,11 @@ entities: id: Flowerspv1 decals: 7266: 29.790075,-31.994879 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 9635: 4.798371,-61.027225 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -4515,6 +4729,7 @@ entities: decals: 7258: 26.24314,-34.01442 7259: 28.224497,-32.072487 + 9633: 6.0730624,-60.884834 - node: cleanable: True color: '#8600003C' @@ -4820,6 +5035,12 @@ entities: 2154: -1.157942,30.175095 7267: 16.652384,-34.100002 7269: 11.344307,-31.211573 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc3 + decals: + 9641: 5.033425,-62.563927 - node: color: '#FFFFFFFF' id: Grassd1 @@ -4847,6 +5068,7 @@ entities: 7524: -6.217932,-59.185604 7675: -3.5938263,-56.260292 7680: -1.5469481,-58.996563 + 9638: 5.0452843,-61.87877 - node: color: '#FFFFFFFF' id: Grassd2 @@ -4878,6 +5100,7 @@ entities: 7536: -6.9667845,-59.92288 7537: -7.3973403,-55.888157 7676: -1.5469494,-57.83951 + 9639: 5.616272,-62.734875 - node: color: '#FFFFFFFF' id: Grassd3 @@ -4891,6 +5114,12 @@ entities: 6346: -12.371423,21.042667 7526: -6.3637667,-55.222935 7535: -5.6820626,-58.1451 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassd3 + decals: + 9642: 5.450092,-61.303795 - node: color: '#FFFFFFFF' id: Grasse1 @@ -4925,6 +5154,7 @@ entities: 6342: -11.392975,19.721764 7529: -8.943234,-55.069675 7679: -2.2657008,-56.79191 + 9640: 5.962713,-59.932472 - node: color: '#FFFFFFFF' id: Grasse3 @@ -4941,6 +5171,13 @@ entities: 4017: 70.72331,43.30718 7528: -6.4679327,-56.7646 7678: -3.7188244,-58.042778 + - node: + color: '#32CD3293' + id: HalfTileOverlayGreyscale + decals: + 9656: -46,59 + 9657: -44,59 + 9661: -45,63 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -5082,6 +5319,13 @@ entities: 4240: 40,57 7501: 76,50 8368: 66,50 + - node: + color: '#A020F093' + id: HalfTileOverlayGreyscale + decals: + 9662: -43,59 + 9663: -41,59 + 9666: -42,63 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -5239,12 +5483,6 @@ entities: 2283: -31,60 2284: -32,60 2285: -33,60 - 2358: -49,59 - 2359: -47,59 - 2360: -46,59 - 2361: -44,59 - 2362: -43,59 - 2363: -41,59 2778: 22,59 4220: -31,31 5363: -43,53 @@ -5382,6 +5620,13 @@ entities: 190: -28,-42 191: -27,-42 204: -31,-42 + - node: + color: '#FFA50093' + id: HalfTileOverlayGreyscale + decals: + 9652: -48,63 + 9654: -49,59 + 9655: -47,59 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -5797,6 +6042,12 @@ entities: 6050: -33,-45 8386: -29,-45 8387: -28,-45 + - node: + color: '#32CD3293' + id: HalfTileOverlayGreyscale270 + decals: + 9658: -46,61 + 9659: -46,62 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -5905,6 +6156,12 @@ entities: 2458: -13,61 2459: -13,65 2872: 53,48 + - node: + color: '#A020F093' + id: HalfTileOverlayGreyscale270 + decals: + 9664: -43,61 + 9665: -43,62 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -6135,6 +6392,12 @@ entities: decals: 182: -36,-44 183: -36,-43 + - node: + color: '#FFA50093' + id: HalfTileOverlayGreyscale270 + decals: + 9649: -49,61 + 9650: -49,62 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -7645,6 +7908,11 @@ entities: id: SpaceStationSign7 decals: 1867: -19,9 + - node: + color: '#32CD3293' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9660: -46,63 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale @@ -7696,6 +7964,11 @@ entities: 2869: 53,49 2870: 54,50 2920: 67,52 + - node: + color: '#A020F093' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9667: -43,63 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale @@ -7760,6 +8033,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 200: -36,-42 + - node: + color: '#FFA50093' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9653: -49,63 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale180 @@ -8664,6 +8942,12 @@ entities: id: arrow decals: 7134: -1,-66 + - node: + cleanable: True + color: '#FFFFFFFF' + id: body + decals: + 9704: -54.01239,56.214497 - node: cleanable: True color: '#FFFFFFFF' @@ -8724,6 +9008,25 @@ entities: 5225: -46.56901,-13.125473 5226: -46.193733,-12.893991 5227: -45.901848,-13.130102 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FF000019' + id: footprint + decals: + 9709: -55.204544,57.35501 + 9710: -55.016273,57.10175 + 9711: -54.559483,57.01218 + 9712: -54.917507,57.568123 + 9713: -55.182938,57.836826 + - node: + cleanable: True + angle: 3.9269908169872414 rad + color: '#FF000019' + id: footprint + decals: + 9707: -54.94837,56.814514 + 9708: -54.83726,57.216026 - node: cleanable: True color: '#8600003C' @@ -8766,6 +9069,14 @@ entities: id: revolution decals: 6670: -20.968155,61.005226 + - node: + cleanable: True + color: '#FF0000FF' + id: revolution + decals: + 9644: 3.5085063,-61.033157 + 9645: 6.0640616,-61.992157 + 9646: 5.022396,-59.949074 - node: cleanable: True angle: 0.05235987755982989 rad @@ -8788,6 +9099,32 @@ entities: 4348: -43.279102,-46.79024 4349: -43.888477,-48.399616 4350: -45.903927,-47.07149 + - node: + cleanable: True + color: '#894A0067' + id: splatter + decals: + 9732: -56.899662,59.249393 + - node: + cleanable: True + color: '#EC000019' + id: splatter + decals: + 9731: -55.007996,61.89848 + - node: + cleanable: True + color: '#FF000019' + id: splatter + decals: + 9668: -54.08878,56.11026 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#FF000019' + id: splatter + decals: + 9705: -54.38739,56.499416 + 9706: -54.380444,56.061615 - type: GridAtmosphere version: 2 data: @@ -9500,31 +9837,31 @@ entities: -12,-14: 0: 65024 -11,-15: - 2: 63624 + 2: 61440 -11,-14: 0: 64256 -11,-16: - 2: 34952 + 2: 58030 -11,-17: - 2: 34952 + 2: 41646 -10,-16: - 2: 62191 + 2: 58111 -10,-14: 0: 16368 + -10,-17: + 2: 62207 -10,-15: 0: 61152 - -10,-17: - 2: 58095 -9,-16: - 2: 1279 + 2: 2047 -9,-14: 0: 4084 -9,-17: - 2: 62719 + 2: 63487 -9,-15: 0: 60142 -8,-16: - 2: 255 + 2: 767 -8,-15: 0: 65535 -8,-14: @@ -9532,16 +9869,14 @@ entities: -8,-13: 2: 1792 -8,-17: - 2: 61695 + 2: 62207 -7,-16: - 2: 273 + 2: 1 0: 17608 -7,-15: 0: 26469 -7,-14: 0: 30582 - -7,-17: - 2: 12799 -6,-16: 0: 65039 -6,-15: @@ -9601,13 +9936,13 @@ entities: 0,-15: 0: 36394 1,-16: - 0: 30304 + 0: 30560 1,-15: 0: 63255 1,-14: - 0: 53759 + 0: 53745 1,-13: - 0: 60317 + 0: 64413 1,-17: 2: 4369 1,-12: @@ -9615,7 +9950,7 @@ entities: 2,-15: 0: 28672 2,-14: - 0: 54375 + 0: 54374 2,-13: 0: 21525 2,-12: @@ -11139,9 +11474,10 @@ entities: 2: 3 0: 36736 -14,12: - 2: 22003 + 2: 4403 + 0: 49280 -13,12: - 0: 60136 + 0: 64504 -19,11: 2: 52224 -19,12: @@ -11165,25 +11501,25 @@ entities: -15,13: 2: 8191 -15,14: - 2: 3 + 2: 15 + 0: 32768 -15,15: - 0: 3212 + 0: 2184 -14,13: - 2: 20309 - -14,15: - 0: 4079 + 2: 273 + 0: 1036 -14,14: - 0: 35016 - -14,16: - 2: 17604 - -13,15: - 0: 43938 + 0: 28774 + -14,15: + 0: 32631 -13,13: - 0: 59950 + 0: 64318 -13,14: - 0: 43690 + 0: 47803 + -13,15: + 0: 43939 -13,16: - 0: 57570 + 0: 61683 -12,13: 0: 45966 -12,14: @@ -11244,57 +11580,69 @@ entities: 0: 1395 2: 16384 -14,17: - 2: 17484 + 0: 61132 -14,18: - 2: 2244 - -13,18: - 2: 61745 - 0: 8 + 0: 52462 + -14,16: + 2: 1088 -13,17: - 0: 52974 + 0: 65535 + -13,18: + 0: 65535 + -13,19: + 0: 15 -12,16: - 0: 61680 + 0: 1776 -12,17: - 0: 65535 + 0: 30527 -12,18: - 0: 15 - 2: 63488 + 0: 13175 + 2: 32768 -11,16: 0: 29808 -11,17: - 0: 21845 + 0: 30071 -11,18: - 0: 13 - 2: 62464 + 0: 127 + 2: 28672 -10,17: 2: 3857 0: 12 -10,18: - 0: 15 - 2: 61440 + 0: 20415 + -10,19: + 0: 61439 -9,17: 0: 15 2: 3840 -9,18: - 0: 15 - 2: 61440 + 0: 1887 + -9,19: + 0: 273 + 2: 1024 -8,17: 2: 256 0: 3276 -8,18: - 0: 15 - 2: 61952 + 0: 65535 + -8,19: + 0: 53205 -7,17: 0: 819 -7,18: - 0: 15 - 2: 29696 + 0: 4383 + 2: 17408 + -7,19: + 0: 13105 -6,18: 0: 15 + 2: 32768 -6,17: 2: 1092 -5,18: 0: 631 + -6,19: + 2: 8 -5,-18: 0: 48000 -4,-18: @@ -11311,11 +11659,13 @@ entities: 0,-18: 0: 29440 -8,-18: - 2: 61680 + 2: 62192 -9,-18: - 2: 62704 + 2: 62192 -7,-18: 2: 65535 + -7,-17: + 2: 255 -6,-18: 2: 6001 -6,-17: @@ -11324,9 +11674,9 @@ entities: -17,-13: 1: 4 -11,-18: - 2: 34944 + 2: 41696 -10,-18: - 2: 58096 + 2: 62192 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11454,6 +11804,14 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap +- proto: AcousticGuitarInstrument + entities: + - uid: 29038 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 26.526651,-21.486578 + parent: 12 - proto: ActionStethoscope entities: - uid: 4711 @@ -13412,27 +13770,6 @@ entities: - 19338 - 19339 - 16364 - - uid: 29782 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - - type: DeviceList - devices: - - 29397 - - 29396 - - 9513 - - uid: 29783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,71.5 - parent: 12 - - type: DeviceList - devices: - - 29820 - - 29651 - - 29784 - uid: 30349 components: - type: Transform @@ -13639,6 +13976,11 @@ entities: - type: Transform pos: -4.5,11.5 parent: 12 + - uid: 23715 + components: + - type: Transform + pos: -53.5,52.5 + parent: 12 - uid: 23899 components: - type: Transform @@ -13669,6 +14011,11 @@ entities: - type: Transform pos: 45.5,10.5 parent: 12 + - uid: 30113 + components: + - type: Transform + pos: -39.5,73.5 + parent: 12 - uid: 30705 components: - type: Transform @@ -14150,12 +14497,6 @@ entities: - type: Transform pos: 39.5,0.5 parent: 12 - - uid: 2891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-48.5 - parent: 12 - uid: 3226 components: - type: Transform @@ -14344,6 +14685,11 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 12 + - uid: 29431 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 12 - uid: 31074 components: - type: Transform @@ -14629,12 +14975,6 @@ entities: - type: Transform pos: 57.5,-49.5 parent: 12 - - uid: 22328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,59.5 - parent: 12 - uid: 28520 components: - type: Transform @@ -14884,12 +15224,6 @@ entities: - DoorStatus: DoorBolt 478: - DoorStatus: DoorBolt - - uid: 1061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,62.5 - parent: 12 - uid: 2041 components: - type: Transform @@ -14966,13 +15300,11 @@ entities: pos: 52.5,67.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 1 - - uid: 22277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,60.5 - parent: 12 + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 18560: + - DoorStatus: DoorBolt - uid: 25678 components: - type: Transform @@ -15115,12 +15447,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,66.5 parent: 12 - - uid: 22322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,57.5 - parent: 12 - uid: 24238 components: - type: Transform @@ -15200,18 +15526,6 @@ entities: - type: Transform pos: 13.5,-57.5 parent: 12 - - uid: 22320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,62.5 - parent: 12 - - uid: 22321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,60.5 - parent: 12 - uid: 25330 components: - type: Transform @@ -15297,6 +15611,12 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,64.5 parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19844: + - DoorStatus: DoorBolt - uid: 25663 components: - type: Transform @@ -16420,11 +16740,28 @@ entities: rot: 3.141592653589793 rad pos: -5.5,8.5 parent: 12 - - uid: 29517 + - uid: 29024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,67.5 + rot: 3.141592653589793 rad + pos: -44.5,68.5 + parent: 12 + - type: Door + secondsUntilStateChange: -5764.909 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 29076 + components: + - type: Transform + pos: -31.5,76.5 + parent: 12 + - uid: 29138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,75.5 parent: 12 - uid: 29718 components: @@ -18481,23 +18818,6 @@ entities: - type: DeviceNetwork deviceLists: - 29275 - - uid: 29396 - components: - - type: Transform - pos: -53.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - - uid: 29784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,69.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - uid: 30260 components: - type: Transform @@ -18671,6 +18991,13 @@ entities: actions: !type:Container ents: - 2687 +- proto: AltarConvertMaint + entities: + - uid: 22330 + components: + - type: Transform + pos: -37.5,78.5 + parent: 12 - proto: AltarSpawner entities: - uid: 13340 @@ -18891,6 +19218,12 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 + - uid: 9589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,67.5 + parent: 12 - uid: 9899 components: - type: Transform @@ -19233,12 +19566,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 12 - - uid: 29647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,68.5 - parent: 12 - uid: 29777 components: - type: Transform @@ -19356,6 +19683,13 @@ entities: rot: -12.566370614359172 rad pos: -3.622931,-15.409775 parent: 12 +- proto: Ash + entities: + - uid: 28977 + components: + - type: Transform + pos: -55.65416,60.668686 + parent: 12 - proto: Ashtray entities: - uid: 6886 @@ -19388,6 +19722,11 @@ entities: - type: Transform pos: 11.456245,57.051254 parent: 12 + - uid: 28976 + components: + - type: Transform + pos: -54.97468,61.653255 + parent: 12 - proto: AsimovCircuitBoard entities: - uid: 28848 @@ -19741,24 +20080,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,76.5 parent: 12 - - uid: 12033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,57.5 - parent: 12 - - uid: 12057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,62.5 - parent: 12 - - uid: 12645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,60.5 - parent: 12 - uid: 13558 components: - type: Transform @@ -20683,6 +21004,16 @@ entities: - type: Transform pos: -61.5,-57.5 parent: 12 + - uid: 23721 + components: + - type: Transform + pos: -51.5,62.5 + parent: 12 + - uid: 23760 + components: + - type: Transform + pos: -37.5,75.5 + parent: 12 - uid: 26914 components: - type: Transform @@ -21034,6 +21365,11 @@ entities: parent: 12 - proto: BedsheetGreen entities: + - uid: 2384 + components: + - type: Transform + pos: -44.5,63.5 + parent: 12 - uid: 21711 components: - type: Transform @@ -21128,18 +21464,13 @@ entities: - type: Transform pos: -47.5,63.5 parent: 12 - - uid: 19377 - components: - - type: Transform - pos: -44.5,63.5 - parent: 12 - - uid: 19378 +- proto: BedsheetPurple + entities: + - uid: 2467 components: - type: Transform pos: -41.5,63.5 parent: 12 -- proto: BedsheetPurple - entities: - uid: 12283 components: - type: Transform @@ -22808,7 +23139,7 @@ entities: - uid: 4212 components: - type: Transform - pos: 5.6581864,-60.013676 + pos: 4.33757,-60.111046 parent: 12 - uid: 13623 components: @@ -23041,6 +23372,12 @@ entities: - type: Transform pos: 14.5,6.5 parent: 12 + - uid: 29187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,58.5 + parent: 12 - uid: 29367 components: - type: Transform @@ -27554,6 +27891,11 @@ entities: - type: Transform pos: 21.5,5.5 parent: 12 + - uid: 5834 + components: + - type: Transform + pos: -53.5,68.5 + parent: 12 - uid: 5837 components: - type: Transform @@ -29994,6 +30336,16 @@ entities: - type: Transform pos: 22.5,5.5 parent: 12 + - uid: 9525 + components: + - type: Transform + pos: -47.5,68.5 + parent: 12 + - uid: 9531 + components: + - type: Transform + pos: -48.5,68.5 + parent: 12 - uid: 9536 components: - type: Transform @@ -30034,6 +30386,11 @@ entities: - type: Transform pos: 11.5,23.5 parent: 12 + - uid: 9624 + components: + - type: Transform + pos: -47.5,67.5 + parent: 12 - uid: 9635 components: - type: Transform @@ -30599,11 +30956,6 @@ entities: - type: Transform pos: 9.5,20.5 parent: 12 - - uid: 11366 - components: - - type: Transform - pos: -53.5,61.5 - parent: 12 - uid: 11367 components: - type: Transform @@ -30634,11 +30986,6 @@ entities: - type: Transform pos: -35.5,-58.5 parent: 12 - - uid: 11400 - components: - - type: Transform - pos: -52.5,61.5 - parent: 12 - uid: 11411 components: - type: Transform @@ -35664,6 +36011,21 @@ entities: - type: Transform pos: 23.5,4.5 parent: 12 + - uid: 17920 + components: + - type: Transform + pos: -54.5,60.5 + parent: 12 + - uid: 17921 + components: + - type: Transform + pos: -54.5,59.5 + parent: 12 + - uid: 17922 + components: + - type: Transform + pos: -54.5,58.5 + parent: 12 - uid: 17934 components: - type: Transform @@ -36764,11 +37126,21 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 + - uid: 19179 + components: + - type: Transform + pos: -54.5,57.5 + parent: 12 - uid: 19294 components: - type: Transform pos: 57.5,8.5 parent: 12 + - uid: 19377 + components: + - type: Transform + pos: -54.5,56.5 + parent: 12 - uid: 19556 components: - type: Transform @@ -36844,6 +37216,16 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 + - uid: 20523 + components: + - type: Transform + pos: -51.5,75.5 + parent: 12 + - uid: 20527 + components: + - type: Transform + pos: -50.5,75.5 + parent: 12 - uid: 20570 components: - type: Transform @@ -38554,6 +38936,21 @@ entities: - type: Transform pos: -9.5,-1.5 parent: 12 + - uid: 22026 + components: + - type: Transform + pos: -49.5,75.5 + parent: 12 + - uid: 22029 + components: + - type: Transform + pos: -48.5,75.5 + parent: 12 + - uid: 22031 + components: + - type: Transform + pos: -47.5,75.5 + parent: 12 - uid: 22058 components: - type: Transform @@ -38684,11 +39081,6 @@ entities: - type: Transform pos: 42.5,43.5 parent: 12 - - uid: 24196 - components: - - type: Transform - pos: -54.5,61.5 - parent: 12 - uid: 24202 components: - type: Transform @@ -38704,26 +39096,11 @@ entities: - type: Transform pos: 31.5,-56.5 parent: 12 - - uid: 24255 - components: - - type: Transform - pos: -55.5,61.5 - parent: 12 - - uid: 24256 - components: - - type: Transform - pos: -56.5,61.5 - parent: 12 - uid: 24295 components: - type: Transform pos: -24.5,-60.5 parent: 12 - - uid: 24300 - components: - - type: Transform - pos: -52.5,60.5 - parent: 12 - uid: 24325 components: - type: Transform @@ -38739,21 +39116,11 @@ entities: - type: Transform pos: -28.5,10.5 parent: 12 - - uid: 24340 - components: - - type: Transform - pos: -52.5,59.5 - parent: 12 - uid: 24455 components: - type: Transform pos: 45.5,-5.5 parent: 12 - - uid: 24456 - components: - - type: Transform - pos: -52.5,58.5 - parent: 12 - uid: 24469 components: - type: Transform @@ -38769,11 +39136,6 @@ entities: - type: Transform pos: 30.5,18.5 parent: 12 - - uid: 24642 - components: - - type: Transform - pos: -52.5,57.5 - parent: 12 - uid: 24651 components: - type: Transform @@ -41674,6 +42036,31 @@ entities: - type: Transform pos: -26.5,62.5 parent: 12 + - uid: 28071 + components: + - type: Transform + pos: -50.5,68.5 + parent: 12 + - uid: 28075 + components: + - type: Transform + pos: -49.5,68.5 + parent: 12 + - uid: 28117 + components: + - type: Transform + pos: -53.5,71.5 + parent: 12 + - uid: 28122 + components: + - type: Transform + pos: -53.5,73.5 + parent: 12 + - uid: 28138 + components: + - type: Transform + pos: -53.5,72.5 + parent: 12 - uid: 28186 components: - type: Transform @@ -42434,11 +42821,66 @@ entities: - type: Transform pos: 5.5,-11.5 parent: 12 + - uid: 28978 + components: + - type: Transform + pos: -54.5,62.5 + parent: 12 + - uid: 28980 + components: + - type: Transform + pos: -54.5,61.5 + parent: 12 + - uid: 28982 + components: + - type: Transform + pos: -46.5,74.5 + parent: 12 + - uid: 29018 + components: + - type: Transform + pos: -53.5,69.5 + parent: 12 + - uid: 29039 + components: + - type: Transform + pos: -52.5,68.5 + parent: 12 + - uid: 29040 + components: + - type: Transform + pos: -51.5,68.5 + parent: 12 + - uid: 29041 + components: + - type: Transform + pos: -52.5,75.5 + parent: 12 + - uid: 29042 + components: + - type: Transform + pos: -53.5,74.5 + parent: 12 + - uid: 29043 + components: + - type: Transform + pos: -53.5,75.5 + parent: 12 + - uid: 29059 + components: + - type: Transform + pos: -53.5,70.5 + parent: 12 - uid: 29093 components: - type: Transform pos: 32.5,18.5 parent: 12 + - uid: 29102 + components: + - type: Transform + pos: -46.5,75.5 + parent: 12 - uid: 29124 components: - type: Transform @@ -42649,6 +43091,16 @@ entities: - type: Transform pos: 48.5,5.5 parent: 12 + - uid: 29368 + components: + - type: Transform + pos: -53.5,62.5 + parent: 12 + - uid: 29373 + components: + - type: Transform + pos: -55.5,62.5 + parent: 12 - uid: 29414 components: - type: Transform @@ -42674,111 +43126,16 @@ entities: - type: Transform pos: -44.5,65.5 parent: 12 - - uid: 29601 - components: - - type: Transform - pos: -43.5,73.5 - parent: 12 - - uid: 29604 - components: - - type: Transform - pos: -44.5,73.5 - parent: 12 - - uid: 29617 - components: - - type: Transform - pos: -45.5,73.5 - parent: 12 - uid: 29618 components: - type: Transform pos: -46.5,73.5 parent: 12 - - uid: 29619 - components: - - type: Transform - pos: -47.5,73.5 - parent: 12 - - uid: 29620 - components: - - type: Transform - pos: -48.5,73.5 - parent: 12 - - uid: 29621 - components: - - type: Transform - pos: -49.5,73.5 - parent: 12 - - uid: 29622 - components: - - type: Transform - pos: -49.5,72.5 - parent: 12 - - uid: 29623 - components: - - type: Transform - pos: -50.5,72.5 - parent: 12 - - uid: 29624 - components: - - type: Transform - pos: -50.5,71.5 - parent: 12 - - uid: 29625 - components: - - type: Transform - pos: -51.5,71.5 - parent: 12 - - uid: 29626 - components: - - type: Transform - pos: -51.5,70.5 - parent: 12 - - uid: 29627 - components: - - type: Transform - pos: -51.5,69.5 - parent: 12 - - uid: 29628 - components: - - type: Transform - pos: -51.5,68.5 - parent: 12 - - uid: 29629 - components: - - type: Transform - pos: -51.5,67.5 - parent: 12 - - uid: 29630 - components: - - type: Transform - pos: -50.5,69.5 - parent: 12 - - uid: 29631 - components: - - type: Transform - pos: -49.5,69.5 - parent: 12 - - uid: 29632 - components: - - type: Transform - pos: -48.5,69.5 - parent: 12 - - uid: 29633 - components: - - type: Transform - pos: -47.5,69.5 - parent: 12 - uid: 29635 components: - type: Transform pos: -46.5,68.5 parent: 12 - - uid: 29637 - components: - - type: Transform - pos: -45.5,69.5 - parent: 12 - uid: 29639 components: - type: Transform @@ -42789,26 +43146,6 @@ entities: - type: Transform pos: -46.5,71.5 parent: 12 - - uid: 29643 - components: - - type: Transform - pos: -44.5,69.5 - parent: 12 - - uid: 29644 - components: - - type: Transform - pos: -43.5,69.5 - parent: 12 - - uid: 29645 - components: - - type: Transform - pos: -43.5,68.5 - parent: 12 - - uid: 29646 - components: - - type: Transform - pos: -42.5,68.5 - parent: 12 - uid: 29649 components: - type: Transform @@ -42959,11 +43296,6 @@ entities: - type: Transform pos: -41.5,65.5 parent: 12 - - uid: 29755 - components: - - type: Transform - pos: -41.5,66.5 - parent: 12 - uid: 29756 components: - type: Transform @@ -43139,6 +43471,126 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 + - uid: 30037 + components: + - type: Transform + pos: -31.5,73.5 + parent: 12 + - uid: 30047 + components: + - type: Transform + pos: -31.5,74.5 + parent: 12 + - uid: 30052 + components: + - type: Transform + pos: -31.5,75.5 + parent: 12 + - uid: 30056 + components: + - type: Transform + pos: -31.5,76.5 + parent: 12 + - uid: 30057 + components: + - type: Transform + pos: -31.5,77.5 + parent: 12 + - uid: 30059 + components: + - type: Transform + pos: -31.5,78.5 + parent: 12 + - uid: 30062 + components: + - type: Transform + pos: -30.5,78.5 + parent: 12 + - uid: 30063 + components: + - type: Transform + pos: -29.5,78.5 + parent: 12 + - uid: 30064 + components: + - type: Transform + pos: -28.5,78.5 + parent: 12 + - uid: 30068 + components: + - type: Transform + pos: -27.5,78.5 + parent: 12 + - uid: 30072 + components: + - type: Transform + pos: -28.5,77.5 + parent: 12 + - uid: 30078 + components: + - type: Transform + pos: -38.5,73.5 + parent: 12 + - uid: 30085 + components: + - type: Transform + pos: -38.5,74.5 + parent: 12 + - uid: 30088 + components: + - type: Transform + pos: -37.5,74.5 + parent: 12 + - uid: 30094 + components: + - type: Transform + pos: -37.5,75.5 + parent: 12 + - uid: 30096 + components: + - type: Transform + pos: -37.5,76.5 + parent: 12 + - uid: 30101 + components: + - type: Transform + pos: -37.5,77.5 + parent: 12 + - uid: 30112 + components: + - type: Transform + pos: -37.5,78.5 + parent: 12 + - uid: 30144 + components: + - type: Transform + pos: -41.5,67.5 + parent: 12 + - uid: 30149 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 + - uid: 30159 + components: + - type: Transform + pos: -43.5,67.5 + parent: 12 + - uid: 30163 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 + - uid: 30165 + components: + - type: Transform + pos: -44.5,68.5 + parent: 12 + - uid: 30175 + components: + - type: Transform + pos: -45.5,68.5 + parent: 12 - uid: 30242 components: - type: Transform @@ -44349,6 +44801,12 @@ entities: - type: Transform pos: -24.5,54.5 parent: 12 + - uid: 23759 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -54.55476,56.53342 + parent: 12 - uid: 31135 components: - type: Transform @@ -44442,6 +44900,11 @@ entities: - type: Transform pos: 8.5,28.5 parent: 12 + - uid: 510 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 12 - uid: 617 components: - type: Transform @@ -44917,16 +45380,6 @@ entities: - type: Transform pos: 8.5,-14.5 parent: 12 - - uid: 3147 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - - uid: 3148 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 12 - uid: 3149 components: - type: Transform @@ -54022,21 +54475,6 @@ entities: - type: Transform pos: -36.5,-62.5 parent: 12 - - uid: 28122 - components: - - type: Transform - pos: -35.5,-62.5 - parent: 12 - - uid: 28138 - components: - - type: Transform - pos: -34.5,-62.5 - parent: 12 - - uid: 28140 - components: - - type: Transform - pos: -34.5,-64.5 - parent: 12 - uid: 28142 components: - type: Transform @@ -54052,11 +54490,6 @@ entities: - type: Transform pos: -38.5,-64.5 parent: 12 - - uid: 28146 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 12 - uid: 28160 components: - type: Transform @@ -54072,31 +54505,11 @@ entities: - type: Transform pos: -36.5,-66.5 parent: 12 - - uid: 28163 - components: - - type: Transform - pos: -35.5,-66.5 - parent: 12 - - uid: 28165 - components: - - type: Transform - pos: -34.5,-66.5 - parent: 12 - - uid: 28166 - components: - - type: Transform - pos: -34.5,-68.5 - parent: 12 - uid: 28181 components: - type: Transform pos: -36.5,-68.5 parent: 12 - - uid: 28191 - components: - - type: Transform - pos: -35.5,-68.5 - parent: 12 - uid: 28192 components: - type: Transform @@ -54602,6 +55015,11 @@ entities: - type: Transform pos: 30.5,-5.5 parent: 12 + - uid: 29002 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 12 - uid: 29047 components: - type: Transform @@ -54617,6 +55035,11 @@ entities: - type: Transform pos: 18.5,21.5 parent: 12 + - uid: 29091 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 12 - uid: 29182 components: - type: Transform @@ -54642,6 +55065,96 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 + - uid: 29426 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 12 + - uid: 29432 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 12 + - uid: 29433 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 12 + - uid: 29469 + components: + - type: Transform + pos: -40.5,-63.5 + parent: 12 + - uid: 29470 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 12 + - uid: 29471 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 12 + - uid: 29472 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 12 + - uid: 29473 + components: + - type: Transform + pos: -39.5,-66.5 + parent: 12 + - uid: 29474 + components: + - type: Transform + pos: -40.5,-66.5 + parent: 12 + - uid: 29475 + components: + - type: Transform + pos: -40.5,-68.5 + parent: 12 + - uid: 29476 + components: + - type: Transform + pos: -39.5,-68.5 + parent: 12 + - uid: 29478 + components: + - type: Transform + pos: -40.5,-67.5 + parent: 12 + - uid: 29479 + components: + - type: Transform + pos: -36.5,-67.5 + parent: 12 + - uid: 29480 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 12 + - uid: 29481 + components: + - type: Transform + pos: -32.5,-63.5 + parent: 12 + - uid: 29482 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 12 + - uid: 29483 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 12 + - uid: 29484 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 12 - uid: 29873 components: - type: Transform @@ -56922,6 +57435,11 @@ entities: - type: Transform pos: 0.5,-37.5 parent: 12 + - uid: 3143 + components: + - type: Transform + pos: -38.5,61.5 + parent: 12 - uid: 3160 components: - type: Transform @@ -56952,16 +57470,6 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 12 - - uid: 3199 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - - uid: 3200 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 12 - uid: 3201 components: - type: Transform @@ -58842,6 +59350,11 @@ entities: - type: Transform pos: 30.5,4.5 parent: 12 + - uid: 9644 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 - uid: 9655 components: - type: Transform @@ -59440,7 +59953,7 @@ entities: - uid: 11487 components: - type: Transform - pos: -52.5,59.5 + pos: -47.5,68.5 parent: 12 - uid: 11517 components: @@ -59737,11 +60250,6 @@ entities: - type: Transform pos: 50.5,25.5 parent: 12 - - uid: 12640 - components: - - type: Transform - pos: -52.5,58.5 - parent: 12 - uid: 12856 components: - type: Transform @@ -62427,11 +62935,6 @@ entities: - type: Transform pos: -23.5,59.5 parent: 12 - - uid: 19514 - components: - - type: Transform - pos: -38.5,61.5 - parent: 12 - uid: 19515 components: - type: Transform @@ -62537,6 +63040,11 @@ entities: - type: Transform pos: -47.5,17.5 parent: 12 + - uid: 20097 + components: + - type: Transform + pos: -44.5,68.5 + parent: 12 - uid: 20343 components: - type: Transform @@ -63372,6 +63880,11 @@ entities: - type: Transform pos: -44.5,60.5 parent: 12 + - uid: 20521 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 - uid: 20524 components: - type: Transform @@ -63862,26 +64375,11 @@ entities: - type: Transform pos: 39.5,18.5 parent: 12 - - uid: 22330 - components: - - type: Transform - pos: -53.5,57.5 - parent: 12 - - uid: 22338 - components: - - type: Transform - pos: -53.5,56.5 - parent: 12 - uid: 22524 components: - type: Transform pos: -2.5,34.5 parent: 12 - - uid: 23122 - components: - - type: Transform - pos: -53.5,58.5 - parent: 12 - uid: 23123 components: - type: Transform @@ -63892,21 +64390,6 @@ entities: - type: Transform pos: 16.5,-16.5 parent: 12 - - uid: 23713 - components: - - type: Transform - pos: -55.5,61.5 - parent: 12 - - uid: 23715 - components: - - type: Transform - pos: -57.5,61.5 - parent: 12 - - uid: 23716 - components: - - type: Transform - pos: -56.5,61.5 - parent: 12 - uid: 23884 components: - type: Transform @@ -65497,6 +65980,11 @@ entities: - type: Transform pos: -25.5,67.5 parent: 12 + - uid: 28165 + components: + - type: Transform + pos: -45.5,68.5 + parent: 12 - uid: 28220 components: - type: Transform @@ -65572,6 +66060,11 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 + - uid: 28979 + components: + - type: Transform + pos: -46.5,68.5 + parent: 12 - uid: 28986 components: - type: Transform @@ -65787,240 +66280,40 @@ entities: - type: Transform pos: -44.5,65.5 parent: 12 - - uid: 29466 - components: - - type: Transform - pos: -50.5,62.5 - parent: 12 - - uid: 29467 - components: - - type: Transform - pos: -52.5,62.5 - parent: 12 - - uid: 29468 - components: - - type: Transform - pos: -53.5,62.5 - parent: 12 - - uid: 29469 - components: - - type: Transform - pos: -51.5,62.5 - parent: 12 - - uid: 29470 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - - uid: 29471 - components: - - type: Transform - pos: -53.5,64.5 - parent: 12 - - uid: 29472 - components: - - type: Transform - pos: -53.5,65.5 - parent: 12 - - uid: 29473 - components: - - type: Transform - pos: -53.5,66.5 - parent: 12 - - uid: 29474 - components: - - type: Transform - pos: -53.5,67.5 - parent: 12 - - uid: 29475 - components: - - type: Transform - pos: -53.5,68.5 - parent: 12 - - uid: 29476 - components: - - type: Transform - pos: -53.5,69.5 - parent: 12 - - uid: 29477 - components: - - type: Transform - pos: -53.5,70.5 - parent: 12 - - uid: 29478 - components: - - type: Transform - pos: -53.5,71.5 - parent: 12 - - uid: 29479 - components: - - type: Transform - pos: -53.5,72.5 - parent: 12 - - uid: 29480 - components: - - type: Transform - pos: -53.5,73.5 - parent: 12 - - uid: 29481 - components: - - type: Transform - pos: -52.5,73.5 - parent: 12 - - uid: 29482 - components: - - type: Transform - pos: -52.5,74.5 - parent: 12 - - uid: 29483 - components: - - type: Transform - pos: -51.5,74.5 - parent: 12 - - uid: 29484 - components: - - type: Transform - pos: -51.5,75.5 - parent: 12 - - uid: 29485 - components: - - type: Transform - pos: -50.5,75.5 - parent: 12 - - uid: 29486 - components: - - type: Transform - pos: -49.5,75.5 - parent: 12 - - uid: 29487 - components: - - type: Transform - pos: -48.5,75.5 - parent: 12 - - uid: 29488 - components: - - type: Transform - pos: -47.5,75.5 - parent: 12 - - uid: 29489 - components: - - type: Transform - pos: -46.5,75.5 - parent: 12 - - uid: 29490 - components: - - type: Transform - pos: -45.5,75.5 - parent: 12 - - uid: 29491 - components: - - type: Transform - pos: -44.5,75.5 - parent: 12 - - uid: 29492 - components: - - type: Transform - pos: -43.5,75.5 - parent: 12 - - uid: 29493 - components: - - type: Transform - pos: -42.5,75.5 - parent: 12 - - uid: 29494 - components: - - type: Transform - pos: -41.5,75.5 - parent: 12 - - uid: 29495 - components: - - type: Transform - pos: -40.5,75.5 - parent: 12 - - uid: 29496 - components: - - type: Transform - pos: -39.5,75.5 - parent: 12 - - uid: 29497 - components: - - type: Transform - pos: -38.5,75.5 - parent: 12 - - uid: 29498 - components: - - type: Transform - pos: -37.5,75.5 - parent: 12 - - uid: 29499 - components: - - type: Transform - pos: -36.5,75.5 - parent: 12 - - uid: 29500 - components: - - type: Transform - pos: -35.5,75.5 - parent: 12 - - uid: 29501 - components: - - type: Transform - pos: -33.5,75.5 - parent: 12 - - uid: 29502 - components: - - type: Transform - pos: -32.5,75.5 - parent: 12 - - uid: 29503 - components: - - type: Transform - pos: -34.5,75.5 - parent: 12 - - uid: 29504 - components: - - type: Transform - pos: -31.5,75.5 - parent: 12 - - uid: 29505 - components: - - type: Transform - pos: -30.5,75.5 - parent: 12 - - uid: 29506 + - uid: 29421 components: - type: Transform - pos: -29.5,75.5 + pos: -47.5,67.5 parent: 12 - - uid: 29507 + - uid: 29424 components: - type: Transform - pos: -28.5,75.5 + pos: -43.5,67.5 parent: 12 - - uid: 29508 + - uid: 29434 components: - type: Transform - pos: -27.5,75.5 + pos: 4.5,-54.5 parent: 12 - - uid: 29509 + - uid: 29435 components: - type: Transform - pos: -26.5,75.5 + pos: 5.5,-54.5 parent: 12 - - uid: 29510 + - uid: 29436 components: - type: Transform - pos: -25.5,75.5 + pos: 6.5,-54.5 parent: 12 - - uid: 29511 + - uid: 29437 components: - type: Transform - pos: -25.5,74.5 + pos: 7.5,-54.5 parent: 12 - - uid: 29512 + - uid: 29466 components: - type: Transform - pos: -25.5,73.5 + pos: -50.5,62.5 parent: 12 - uid: 29513 components: @@ -66287,11 +66580,6 @@ entities: - type: Transform pos: -50.5,64.5 parent: 12 - - uid: 29648 - components: - - type: Transform - pos: -42.5,68.5 - parent: 12 - uid: 29699 components: - type: Transform @@ -66327,31 +66615,11 @@ entities: - type: Transform pos: 26.5,-21.5 parent: 12 - - uid: 29822 - components: - - type: Transform - pos: -53.5,61.5 - parent: 12 - uid: 29823 components: - type: Transform pos: 26.5,-22.5 parent: 12 - - uid: 29824 - components: - - type: Transform - pos: -54.5,61.5 - parent: 12 - - uid: 29826 - components: - - type: Transform - pos: -52.5,60.5 - parent: 12 - - uid: 29827 - components: - - type: Transform - pos: -53.5,60.5 - parent: 12 - uid: 29840 components: - type: Transform @@ -71662,6 +71930,18 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-63.5 + parent: 12 + - uid: 10955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-67.5 + parent: 12 - uid: 10967 components: - type: Transform @@ -71673,6 +71953,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 12 + - uid: 11030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-67.5 + parent: 12 - uid: 11049 components: - type: Transform @@ -71740,6 +72026,42 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 12 + - uid: 11277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-67.5 + parent: 12 + - uid: 11278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-67.5 + parent: 12 + - uid: 11297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-67.5 + parent: 12 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-67.5 + parent: 12 + - uid: 11300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-63.5 + parent: 12 + - uid: 11301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-67.5 + parent: 12 - uid: 11303 components: - type: Transform @@ -71771,6 +72093,12 @@ entities: - type: Transform pos: 30.5,8.5 parent: 12 + - uid: 11389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-65.5 + parent: 12 - uid: 11392 components: - type: Transform @@ -72960,6 +73288,16 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-52.5 parent: 12 + - uid: 23704 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 + - uid: 23722 + components: + - type: Transform + pos: -43.5,67.5 + parent: 12 - uid: 24144 components: - type: Transform @@ -74780,6 +75118,54 @@ entities: rot: 3.141592653589793 rad pos: 18.5,22.5 parent: 12 + - uid: 29080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-67.5 + parent: 12 + - uid: 29081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-66.5 + parent: 12 + - uid: 29082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-62.5 + parent: 12 + - uid: 29085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-64.5 + parent: 12 + - uid: 29086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-67.5 + parent: 12 + - uid: 29087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-67.5 + parent: 12 + - uid: 29089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-67.5 + parent: 12 + - uid: 29090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-67.5 + parent: 12 - uid: 29418 components: - type: Transform @@ -74792,6 +75178,119 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,65.5 parent: 12 + - uid: 29428 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 12 + - uid: 29438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-63.5 + parent: 12 + - uid: 29439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-63.5 + parent: 12 + - uid: 29440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-63.5 + parent: 12 + - uid: 29441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-63.5 + parent: 12 + - uid: 29442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-63.5 + parent: 12 + - uid: 29443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-63.5 + parent: 12 + - uid: 29444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-63.5 + parent: 12 + - uid: 29445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-63.5 + parent: 12 + - uid: 29446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-63.5 + parent: 12 + - uid: 29447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-63.5 + parent: 12 + - uid: 29448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-63.5 + parent: 12 + - uid: 29449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-67.5 + parent: 12 + - uid: 29450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-67.5 + parent: 12 + - uid: 29451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-67.5 + parent: 12 + - uid: 29452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-67.5 + parent: 12 + - uid: 29453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-67.5 + parent: 12 + - uid: 29454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-67.5 + parent: 12 + - uid: 29455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-68.5 + parent: 12 - uid: 29562 components: - type: Transform @@ -75114,6 +75613,11 @@ entities: - type: Transform pos: 52.5,68.5 parent: 12 + - uid: 30131 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 - uid: 30473 components: - type: Transform @@ -76938,6 +77442,18 @@ entities: - type: Transform pos: 56.5,0.5 parent: 12 + - uid: 29026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,67.5 + parent: 12 + - uid: 29027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,67.5 + parent: 12 - uid: 29349 components: - type: Transform @@ -76949,6 +77465,33 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-3.5 parent: 12 + - uid: 29517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,74.5 + parent: 12 + - uid: 29594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,73.5 + parent: 12 + - uid: 29609 + components: + - type: Transform + pos: -26.5,78.5 + parent: 12 + - uid: 29755 + components: + - type: Transform + pos: -42.5,73.5 + parent: 12 + - uid: 29782 + components: + - type: Transform + pos: -41.5,73.5 + parent: 12 - uid: 29838 components: - type: Transform @@ -77279,6 +77822,12 @@ entities: - type: Transform pos: 48.602276,-10.465746 parent: 12 + - uid: 29288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,60.5 + parent: 12 - uid: 30282 components: - type: Transform @@ -77508,6 +78057,11 @@ entities: parent: 12 - proto: CheapLighter entities: + - uid: 2044 + components: + - type: Transform + pos: -56.64224,59.774014 + parent: 12 - uid: 13017 components: - type: Transform @@ -77534,7 +78088,7 @@ entities: - uid: 19379 components: - type: Transform - pos: -47.544018,57.542088 + pos: -47.5615,56.51636 parent: 12 - proto: CheckerBoard entities: @@ -77732,6 +78286,13 @@ entities: - type: Transform pos: 46.470013,-36.518024 parent: 12 +- proto: CigPackBlack + entities: + - uid: 29176 + components: + - type: Transform + pos: -56.756435,59.391033 + parent: 12 - proto: CigPackBlue entities: - uid: 30152 @@ -78055,6 +78616,11 @@ entities: - type: Transform pos: -29.5,60.5 parent: 12 + - uid: 27711 + components: + - type: Transform + pos: -51.5,65.5 + parent: 12 - uid: 27862 components: - type: Transform @@ -78093,6 +78659,11 @@ entities: - 0 - 0 - 0 + - uid: 29648 + components: + - type: Transform + pos: -43.5,72.5 + parent: 12 - uid: 30464 components: - type: Transform @@ -78160,6 +78731,11 @@ entities: - type: Transform pos: 38.5,-42.5 parent: 12 + - uid: 29145 + components: + - type: Transform + pos: -51.5,64.5 + parent: 12 - uid: 31273 components: - type: Transform @@ -78322,6 +78898,11 @@ entities: - type: Transform pos: -52.5,-35.5 parent: 12 + - uid: 29654 + components: + - type: Transform + pos: -43.5,71.5 + parent: 12 - uid: 30472 components: - type: Transform @@ -78480,6 +79061,11 @@ entities: - type: Transform pos: -42.5,-53.5 parent: 12 + - uid: 2148 + components: + - type: Transform + pos: -51.5,57.5 + parent: 12 - uid: 2973 components: - type: Transform @@ -78490,11 +79076,6 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 12 - - uid: 5817 - components: - - type: Transform - pos: -48.5,52.5 - parent: 12 - uid: 7012 components: - type: Transform @@ -78564,15 +79145,15 @@ entities: - type: Transform pos: 36.5,10.5 parent: 12 - - uid: 12058 + - uid: 12057 components: - type: Transform - pos: 40.5,12.5 + pos: -45.5,66.5 parent: 12 - - uid: 12113 + - uid: 12058 components: - type: Transform - pos: -52.5,56.5 + pos: 40.5,12.5 parent: 12 - uid: 12246 components: @@ -78770,6 +79351,26 @@ entities: - type: Transform pos: -49.5,47.5 parent: 12 + - uid: 29647 + components: + - type: Transform + pos: -30.5,75.5 + parent: 12 + - uid: 29824 + components: + - type: Transform + pos: -43.5,69.5 + parent: 12 + - uid: 29989 + components: + - type: Transform + pos: -52.5,52.5 + parent: 12 + - uid: 29995 + components: + - type: Transform + pos: -39.5,74.5 + parent: 12 - uid: 30471 components: - type: Transform @@ -78896,11 +79497,6 @@ entities: - type: Transform pos: -26.5,52.5 parent: 12 - - uid: 23712 - components: - - type: Transform - pos: -54.5,63.5 - parent: 12 - uid: 25358 components: - type: Transform @@ -78914,11 +79510,6 @@ entities: - type: Transform pos: -27.5,49.5 parent: 12 - - uid: 23760 - components: - - type: Transform - pos: -52.5,63.5 - parent: 12 - uid: 25345 components: - type: Transform @@ -79163,6 +79754,15 @@ entities: - type: Transform pos: 48.481655,51.562435 parent: 12 + - uid: 29311 + components: + - type: MetaData + desc: They seem to just be regular insulated gloves. These gloves will protect the wearer from electric shocks. + name: holy relic + - type: Transform + rot: -12.566370614359172 rad + pos: -37.51887,78.52481 + parent: 12 - proto: ClothingHandsGlovesLatex entities: - uid: 9488 @@ -79299,6 +79899,14 @@ entities: - type: Transform pos: 42.777477,-19.21 parent: 12 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 29181 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -55.470665,63.704964 + parent: 12 - proto: ClothingHeadHatGladiator entities: - uid: 31203 @@ -79362,12 +79970,12 @@ entities: - uid: 30941 components: - type: Transform - pos: 4.3314962,-59.50384 + pos: 5.4417367,-60.162846 parent: 12 - uid: 31184 components: - type: Transform - pos: 4.665799,-60.034203 + pos: 5.6500697,-60.402912 parent: 12 - proto: ClothingHeadHatWelding entities: @@ -79449,8 +80057,7 @@ entities: - uid: 32167 components: - type: Transform - rot: -125.66370614359157 rad - pos: -62.594955,-52.33298 + pos: -61.5426,-52.550335 parent: 12 - proto: ClothingHeadHelmetRiot entities: @@ -79567,6 +80174,11 @@ entities: rot: -6.283185307179586 rad pos: 42.37392,63.744247 parent: 12 + - uid: 29502 + components: + - type: Transform + pos: -35.515575,77.54999 + parent: 12 - proto: ClothingMaskGasAtmos entities: - uid: 27188 @@ -79651,7 +80263,8 @@ entities: - uid: 29599 components: - type: Transform - pos: -43.44968,72.43989 + rot: -6.283185307179586 rad + pos: -50.5738,76.70312 parent: 12 - proto: ClothingNeckScarfStripedBlue entities: @@ -79693,6 +80306,14 @@ entities: actions: !type:Container ents: - 4711 +- proto: ClothingNeckTieDet + entities: + - uid: 29309 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.762493,61.658695 + parent: 12 - proto: ClothingOuterApronBar entities: - uid: 19822 @@ -79837,6 +80458,13 @@ entities: - type: Transform pos: -4.4779925,21.516867 parent: 12 +- proto: ClothingOuterCoatTrench + entities: + - uid: 1523 + components: + - type: Transform + pos: -54.5,60.5 + parent: 12 - proto: ClothingOuterFlannelBlue entities: - uid: 30219 @@ -79856,8 +80484,7 @@ entities: - uid: 32142 components: - type: Transform - rot: -125.66370614359157 rad - pos: -62.331066,-52.62485 + pos: -62.521767,-52.550335 parent: 12 - proto: ClothingOuterHoodieBlack entities: @@ -80004,22 +80631,26 @@ entities: - uid: 836 components: - type: Transform - pos: -43.654907,69.632965 + rot: -6.283185307179586 rad + pos: -51.46078,67.59943 parent: 12 - uid: 1836 components: - type: Transform - pos: -43.72829,70.59985 + rot: -12.566370614359172 rad + pos: -45.59967,73.321205 parent: 12 - uid: 25439 components: - type: Transform - pos: -43.55706,69.76759 + rot: -6.283185307179586 rad + pos: -50.495502,67.57858 parent: 12 - uid: 29215 components: - type: Transform - pos: -43.603027,70.68353 + rot: -12.566370614359172 rad + pos: -45.342724,73.68256 parent: 12 - proto: ClothingShoesTourist entities: @@ -80108,6 +80739,22 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorOrange + entities: + - uid: 1878 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -54.02698,57.18202 + parent: 12 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 29094 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.392857,61.517265 + parent: 12 - proto: ClothingUniformJumpsuitGladiator entities: - uid: 31205 @@ -81191,6 +81838,12 @@ entities: - type: Transform pos: 21.5,59.5 parent: 12 + - uid: 28975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,60.5 + parent: 12 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 17952 @@ -81275,6 +81928,11 @@ entities: - type: Transform pos: -7.5,63.5 parent: 12 + - uid: 29302 + components: + - type: Transform + pos: -53.5,63.5 + parent: 12 - uid: 30262 components: - type: Transform @@ -81798,6 +82456,52 @@ entities: rot: 3.141592653589793 rad pos: 39.5,15.5 parent: 12 + - uid: 22952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 12 + - uid: 23122 + components: + - type: Transform + pos: -27.5,77.5 + parent: 12 + - uid: 23177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,76.5 + parent: 12 + - uid: 23700 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 + - uid: 27040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,77.5 + parent: 12 + - uid: 27329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,75.5 + parent: 12 + - uid: 27498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,77.5 + parent: 12 + - uid: 27716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,75.5 + parent: 12 - proto: ConveyorBeltAssembly entities: - uid: 6163 @@ -82720,11 +83424,23 @@ entities: - type: Transform pos: -28.283596,23.347982 parent: 12 + - uid: 30176 + components: + - type: Transform + pos: -42.437584,42.39632 + parent: 12 - uid: 31702 components: - type: Transform pos: -60.47375,-25.60259 parent: 12 +- proto: CrowbarRed + entities: + - uid: 29500 + components: + - type: Transform + pos: -36.524837,76.4381 + parent: 12 - proto: CryogenicSleepUnit entities: - uid: 21356 @@ -83178,11 +83894,6 @@ entities: parent: 12 - proto: DefaultStationBeaconEscapePod entities: - - uid: 509 - components: - - type: Transform - pos: -52.5,57.5 - parent: 12 - uid: 627 components: - type: Transform @@ -95345,6 +96056,13 @@ entities: - type: Transform pos: -35.56558,-20.24829 parent: 12 +- proto: DrinkTequilaBottleFull + entities: + - uid: 288 + components: + - type: Transform + pos: -56.342857,59.59179 + parent: 12 - proto: DrinkWhiskeyBottleFull entities: - uid: 13631 @@ -96919,6 +97637,11 @@ entities: - type: Transform pos: -40.5,-24.5 parent: 12 + - uid: 2325 + components: + - type: Transform + pos: -55.5,63.5 + parent: 12 - proto: filingCabinetRandom entities: - uid: 1959 @@ -98820,9 +99543,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,62.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - uid: 9606 components: - type: Transform @@ -98908,11 +99628,6 @@ entities: deviceLists: - 23796 - 70 - - uid: 11603 - components: - - type: Transform - pos: -49.5,65.5 - parent: 12 - uid: 11858 components: - type: Transform @@ -101050,15 +101765,6 @@ entities: - 23927 - 4418 - 7342 - - uid: 29820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,67.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - uid: 29867 components: - type: Transform @@ -101086,6 +101792,12 @@ entities: - type: DeviceNetwork deviceLists: - 28376 + - uid: 29996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,66.5 + parent: 12 - uid: 30199 components: - type: Transform @@ -101840,6 +102552,13 @@ entities: - type: Transform pos: 57.376583,58.4156 parent: 12 +- proto: FoodBakedCannabisBrownie + entities: + - uid: 30036 + components: + - type: Transform + pos: -53.30888,54.409172 + parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -102121,7 +102840,7 @@ entities: - uid: 32189 components: - type: Transform - pos: -62.21474,-54.675816 + pos: -60.632877,-54.815796 parent: 12 - proto: FoodFrozenSnowcone entities: @@ -102385,27 +103104,24 @@ entities: - uid: 32191 components: - type: Transform - pos: -62.222897,-54.586063 + pos: -61.584267,-54.808846 parent: 12 - proto: FoodPotato entities: - uid: 31464 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.2709417,-62.27473 + pos: 5.7125697,-59.47866 parent: 12 - uid: 31465 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.40983,-62.46236 + pos: 6.643125,-62.02904 parent: 12 - uid: 31466 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.576497,-62.253883 + pos: 5.8445144,-61.33158 parent: 12 - proto: FoodRiceBoiled entities: @@ -102433,6 +103149,30 @@ entities: - type: Transform pos: 49.52798,18.523731 parent: 12 +- proto: FoodSnackMREBrownie + entities: + - uid: 29154 + components: + - type: Transform + pos: -54.505745,61.642376 + parent: 12 +- proto: FoodSnackRaisins + entities: + - uid: 27824 + components: + - type: Transform + pos: -38.5,-60.5 + parent: 12 + - uid: 27844 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 12 + - uid: 29485 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 12 - proto: FoodSoupMiso entities: - uid: 2685 @@ -102476,6 +103216,11 @@ entities: parent: 12 - proto: FoodTinPeachesMaintTrash entities: + - uid: 29645 + components: + - type: Transform + pos: -27.343327,78.76142 + parent: 12 - uid: 31133 components: - type: Transform @@ -102484,7 +103229,7 @@ entities: - uid: 32192 components: - type: Transform - pos: -61.211834,-54.267845 + pos: -61.132877,-54.03053 parent: 12 - proto: Football entities: @@ -134524,9 +135269,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,62.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - type: AtmosPipeColor color: '#0055CCFF' - uid: 29400 @@ -134542,9 +135284,6 @@ entities: - type: Transform pos: -43.5,68.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - type: AtmosPipeColor color: '#0055CCFF' - uid: 29837 @@ -136557,6 +137296,23 @@ entities: - type: Transform pos: 48.5,9.5 parent: 12 + - uid: 29035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,53.5 + parent: 12 + - uid: 29396 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 12 + - uid: 29986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,74.5 + parent: 12 - uid: 30737 components: - type: Transform @@ -136622,7 +137378,8 @@ entities: - uid: 29613 components: - type: Transform - pos: -43.34914,69.38818 + rot: 2.220446049250313E-16 rad + pos: -47.544113,68.56509 parent: 12 - uid: 30217 components: @@ -136636,11 +137393,6 @@ entities: parent: 12 - proto: GlowstickBlue entities: - - uid: 29614 - components: - - type: Transform - pos: -43.64537,71.96256 - parent: 12 - uid: 30220 components: - type: Transform @@ -136657,21 +137409,24 @@ entities: - uid: 29612 components: - type: Transform - pos: -43.226837,69.27803 + rot: -6.283185307179586 rad + pos: -52.46078,75.45116 parent: 12 - proto: GlowstickRed entities: - uid: 29611 components: - type: Transform - pos: -43.50814,70.391785 + rot: -6.283185307179586 rad + pos: -46.405224,74.242805 parent: 12 - proto: GlowstickYellow entities: - uid: 29600 components: - type: Transform - pos: -43.361374,70.35507 + rot: -6.283185307179586 rad + pos: -53.55106,69.57985 parent: 12 - proto: GrassBattlemap entities: @@ -137481,12 +138236,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-45.5 parent: 12 - - uid: 1065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,56.5 - parent: 12 - uid: 1276 components: - type: Transform @@ -137509,12 +138258,6 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 1523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,75.5 - parent: 12 - uid: 1538 components: - type: Transform @@ -137669,12 +138412,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-62.5 parent: 12 - - uid: 2384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-66.5 - parent: 12 - uid: 2445 components: - type: Transform @@ -138096,6 +138833,11 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 + - uid: 3200 + components: + - type: Transform + pos: -58.5,56.5 + parent: 12 - uid: 3480 components: - type: Transform @@ -138432,24 +139174,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 12 - - uid: 5829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,64.5 - parent: 12 - uid: 5832 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-5.5 parent: 12 - - uid: 5834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,65.5 - parent: 12 - uid: 5878 components: - type: Transform @@ -138761,29 +139491,11 @@ entities: - type: Transform pos: 29.5,-52.5 parent: 12 - - uid: 6185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-67.5 - parent: 12 - - uid: 6188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-68.5 - parent: 12 - uid: 6208 components: - type: Transform pos: 7.5,75.5 parent: 12 - - uid: 6211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,75.5 - parent: 12 - uid: 6246 components: - type: Transform @@ -140150,12 +140862,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,26.5 parent: 12 - - uid: 11301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,75.5 - parent: 12 - uid: 11311 components: - type: Transform @@ -140178,6 +140884,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 12 + - uid: 11366 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 12 - uid: 11420 components: - type: Transform @@ -140291,6 +141002,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 12 + - uid: 11603 + components: + - type: Transform + pos: -45.5,76.5 + parent: 12 - uid: 11616 components: - type: Transform @@ -140612,6 +141328,11 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 12033 + components: + - type: Transform + pos: -45.5,75.5 + parent: 12 - uid: 12055 components: - type: Transform @@ -140999,6 +141720,11 @@ entities: - type: Transform pos: 49.5,42.5 parent: 12 + - uid: 12645 + components: + - type: Transform + pos: -53.5,76.5 + parent: 12 - uid: 12676 components: - type: Transform @@ -141027,6 +141753,11 @@ entities: rot: 3.141592653589793 rad pos: -34.5,61.5 parent: 12 + - uid: 13210 + components: + - type: Transform + pos: -54.5,75.5 + parent: 12 - uid: 13991 components: - type: Transform @@ -142358,6 +143089,11 @@ entities: - type: Transform pos: -59.5,35.5 parent: 12 + - uid: 17811 + components: + - type: Transform + pos: -54.5,76.5 + parent: 12 - uid: 17832 components: - type: Transform @@ -142370,36 +143106,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 12 - - uid: 17842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,73.5 - parent: 12 - - uid: 17858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,75.5 - parent: 12 - - uid: 17917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,75.5 - parent: 12 - - uid: 17921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,75.5 - parent: 12 - - uid: 17922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,75.5 - parent: 12 - uid: 17936 components: - type: Transform @@ -142780,18 +143486,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,58.5 parent: 12 - - uid: 20049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,75.5 - parent: 12 - - uid: 20527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,75.5 - parent: 12 - uid: 20958 components: - type: Transform @@ -142887,30 +143581,6 @@ entities: - type: Transform pos: -3.5,-5.5 parent: 12 - - uid: 22026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,67.5 - parent: 12 - - uid: 22029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,75.5 - parent: 12 - - uid: 22031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,75.5 - parent: 12 - - uid: 22033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,73.5 - parent: 12 - uid: 22051 components: - type: Transform @@ -142924,14 +143594,7 @@ entities: - uid: 22193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,75.5 - parent: 12 - - uid: 22194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,75.5 + pos: -38.5,80.5 parent: 12 - uid: 22276 components: @@ -142953,23 +143616,10 @@ entities: - type: Transform pos: 46.5,15.5 parent: 12 - - uid: 22323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,61.5 - parent: 12 - - uid: 22325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,58.5 - parent: 12 - - uid: 22337 + - uid: 22320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,75.5 + pos: -40.5,78.5 parent: 12 - uid: 22686 components: @@ -142999,18 +143649,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-11.5 parent: 12 - - uid: 22860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,75.5 - parent: 12 - - uid: 22952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,75.5 - parent: 12 - uid: 22963 components: - type: Transform @@ -143039,11 +143677,10 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 12 - - uid: 23759 + - uid: 23716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,61.5 + pos: -56.5,56.5 parent: 12 - uid: 23924 components: @@ -143062,12 +143699,6 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 24664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,73.5 - parent: 12 - uid: 25089 components: - type: Transform @@ -143089,12 +143720,6 @@ entities: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 25399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,66.5 - parent: 12 - uid: 25447 components: - type: Transform @@ -143110,8 +143735,7 @@ entities: - uid: 25450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,75.5 + pos: -26.5,74.5 parent: 12 - uid: 25452 components: @@ -143119,12 +143743,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,62.5 parent: 12 - - uid: 25454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,73.5 - parent: 12 - uid: 25489 components: - type: Transform @@ -143753,12 +144371,6 @@ entities: - type: Transform pos: -57.5,-11.5 parent: 12 - - uid: 27161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,75.5 - parent: 12 - uid: 27169 components: - type: Transform @@ -143869,12 +144481,6 @@ entities: - type: Transform pos: -59.5,-36.5 parent: 12 - - uid: 27502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-62.5 - parent: 12 - uid: 27603 components: - type: Transform @@ -143892,18 +144498,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-70.5 parent: 12 - - uid: 27714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-63.5 - parent: 12 - - uid: 27716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-65.5 - parent: 12 - uid: 27720 components: - type: Transform @@ -144159,21 +144753,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-70.5 parent: 12 - - uid: 28071 - components: - - type: Transform - pos: -40.5,-57.5 - parent: 12 - - uid: 28075 - components: - - type: Transform - pos: -40.5,-58.5 - parent: 12 - - uid: 28117 - components: - - type: Transform - pos: -40.5,-59.5 - parent: 12 - uid: 28157 components: - type: Transform @@ -144319,6 +144898,68 @@ entities: - type: Transform pos: 6.5,82.5 parent: 12 + - uid: 28786 + components: + - type: Transform + pos: -49.5,77.5 + parent: 12 + - uid: 28787 + components: + - type: Transform + pos: -54.5,67.5 + parent: 12 + - uid: 28788 + components: + - type: Transform + pos: -53.5,67.5 + parent: 12 + - uid: 29061 + components: + - type: Transform + pos: -50.5,77.5 + parent: 12 + - uid: 29062 + components: + - type: Transform + pos: -55.5,72.5 + parent: 12 + - uid: 29063 + components: + - type: Transform + pos: -46.5,76.5 + parent: 12 + - uid: 29069 + components: + - type: Transform + pos: -36.5,80.5 + parent: 12 + - uid: 29072 + components: + - type: Transform + pos: -57.5,56.5 + parent: 12 + - uid: 29098 + components: + - type: Transform + pos: -55.5,71.5 + parent: 12 + - uid: 29147 + components: + - type: Transform + pos: -57.5,60.5 + parent: 12 + - uid: 29150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,74.5 + parent: 12 + - uid: 29151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,74.5 + parent: 12 - uid: 29210 components: - type: Transform @@ -144351,185 +144992,100 @@ entities: - type: Transform pos: -54.5,-48.5 parent: 12 - - uid: 29421 + - uid: 29346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,67.5 + pos: -57.5,61.5 parent: 12 - uid: 29422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,68.5 - parent: 12 - - uid: 29423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,69.5 - parent: 12 - - uid: 29424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,70.5 - parent: 12 - - uid: 29425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,71.5 + pos: -54.5,68.5 parent: 12 - - uid: 29426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,71.5 - parent: 12 - - uid: 29427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,72.5 - parent: 12 - - uid: 29428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,72.5 - parent: 12 - - uid: 29429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,73.5 - parent: 12 - - uid: 29430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,73.5 - parent: 12 - - uid: 29431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,73.5 - parent: 12 - - uid: 29432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,73.5 - parent: 12 - - uid: 29433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,73.5 - parent: 12 - - uid: 29434 + - uid: 29457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,73.5 + pos: -41.5,-70.5 parent: 12 - - uid: 29435 + - uid: 29459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,73.5 + pos: -42.5,-68.5 parent: 12 - - uid: 29451 + - uid: 29460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,69.5 + pos: -42.5,-70.5 parent: 12 - - uid: 29452 + - uid: 29461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,70.5 + pos: -42.5,-67.5 parent: 12 - - uid: 29453 + - uid: 29462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,71.5 + pos: -42.5,-66.5 parent: 12 - - uid: 29454 + - uid: 29463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,72.5 + pos: -42.5,-63.5 parent: 12 - - uid: 29455 + - uid: 29464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,73.5 + pos: -42.5,-62.5 parent: 12 - - uid: 29456 + - uid: 29465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,73.5 + pos: -42.5,-61.5 parent: 12 - - uid: 29457 + - uid: 29467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,74.5 + pos: -42.5,-60.5 parent: 12 - - uid: 29458 + - uid: 29468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,75.5 + pos: -41.5,-60.5 parent: 12 - - uid: 29459 + - uid: 29509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,75.5 + pos: -34.5,78.5 parent: 12 - - uid: 29460 + - uid: 29601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,75.5 + pos: -29.5,80.5 parent: 12 - - uid: 29461 + - uid: 29602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,75.5 + pos: -28.5,80.5 parent: 12 - - uid: 29462 + - uid: 29604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,75.5 + pos: -27.5,80.5 parent: 12 - - uid: 29463 + - uid: 29605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,75.5 + pos: -25.5,77.5 parent: 12 - - uid: 29464 + - uid: 29606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,75.5 + pos: -25.5,78.5 parent: 12 - - uid: 29465 + - uid: 29822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,74.5 + pos: -43.5,70.5 parent: 12 - uid: 29861 components: @@ -144872,6 +145428,11 @@ entities: - type: Transform pos: -69.5,51.5 parent: 12 + - uid: 30117 + components: + - type: Transform + pos: -35.5,74.5 + parent: 12 - uid: 30118 components: - type: Transform @@ -144882,11 +145443,6 @@ entities: - type: Transform pos: -69.5,54.5 parent: 12 - - uid: 30121 - components: - - type: Transform - pos: -58.5,56.5 - parent: 12 - uid: 30122 components: - type: Transform @@ -145856,31 +146412,16 @@ entities: - type: Transform pos: -30.5,-70.5 parent: 12 - - uid: 27708 - components: - - type: Transform - pos: -40.5,-69.5 - parent: 12 - uid: 27709 components: - type: Transform pos: -31.5,-70.5 parent: 12 - - uid: 27823 - components: - - type: Transform - pos: -40.5,-64.5 - parent: 12 - uid: 27914 components: - type: Transform pos: -29.5,-70.5 parent: 12 - - uid: 27973 - components: - - type: Transform - pos: -40.5,-61.5 - parent: 12 - uid: 27975 components: - type: Transform @@ -145896,6 +146437,21 @@ entities: - type: Transform pos: -23.5,-71.5 parent: 12 + - uid: 29000 + components: + - type: Transform + pos: -42.5,-69.5 + parent: 12 + - uid: 29456 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 12 + - uid: 29458 + components: + - type: Transform + pos: -42.5,-65.5 + parent: 12 - proto: GroundCannabis entities: - uid: 12239 @@ -145908,6 +146464,12 @@ entities: - type: Transform pos: 62.002953,47.83639 parent: 12 + - uid: 30035 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.61752,54.792152 + parent: 12 - proto: GunSafeDisabler entities: - uid: 20857 @@ -146265,31 +146827,22 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,57.5 parent: 12 - - uid: 31374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 - parent: 12 - - uid: 31379 + - uid: 29071 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-59.5 parent: 12 - - uid: 31381 + - uid: 29477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-61.5 + pos: 5.5,-62.5 parent: 12 - proto: HydroponicsToolClippers entities: - uid: 4211 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.5417747,-62.782024 + pos: 6.46257,-60.240547 parent: 12 - uid: 21230 components: @@ -146313,8 +146866,7 @@ entities: - uid: 503 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.6667747,-62.64999 + pos: 4.365348,-59.534256 parent: 12 - uid: 21358 components: @@ -146927,15 +147479,15 @@ entities: parent: 12 - proto: Jukebox entities: - - uid: 13725 + - uid: 509 components: - type: Transform - pos: 21.5,26.5 + pos: -51.5,76.5 parent: 12 - - uid: 29654 + - uid: 13725 components: - type: Transform - pos: -43.5,68.5 + pos: 21.5,26.5 parent: 12 - uid: 29655 components: @@ -147237,6 +147789,11 @@ entities: rot: 3.141592653589793 rad pos: -32.44526,29.851074 parent: 12 + - uid: 29186 + components: + - type: Transform + pos: -55.46656,61.910522 + parent: 12 - uid: 30347 components: - type: Transform @@ -148580,10 +149137,10 @@ entities: - type: Transform pos: 53.5,25.5 parent: 12 - - uid: 32144 + - uid: 29064 components: - type: Transform - pos: -61.5,-52.5 + pos: -62.5,-54.5 parent: 12 - proto: MagazinePistolSubMachineGunTopMounted entities: @@ -148780,6 +149337,26 @@ entities: - type: Transform pos: 35.5,-44.5 parent: 12 + - uid: 29622 + components: + - type: Transform + pos: -27.5,77.5 + parent: 12 + - uid: 29623 + components: + - type: Transform + pos: -29.5,75.5 + parent: 12 + - uid: 29784 + components: + - type: Transform + pos: -43.5,73.5 + parent: 12 + - uid: 29872 + components: + - type: Transform + pos: -52.5,49.5 + parent: 12 - uid: 31676 components: - type: Transform @@ -148817,6 +149394,11 @@ entities: - type: Transform pos: -3.5,17.5 parent: 12 + - uid: 17850 + components: + - type: Transform + pos: -33.5,74.5 + parent: 12 - uid: 18562 components: - type: Transform @@ -148872,6 +149454,16 @@ entities: - type: Transform pos: 44.5,-42.5 parent: 12 + - uid: 29827 + components: + - type: Transform + pos: -30.5,73.5 + parent: 12 + - uid: 29869 + components: + - type: Transform + pos: -51.5,60.5 + parent: 12 - uid: 30520 components: - type: Transform @@ -149024,6 +149616,41 @@ entities: - type: Transform pos: 42.5,-42.5 parent: 12 + - uid: 29620 + components: + - type: Transform + pos: -28.5,79.5 + parent: 12 + - uid: 29621 + components: + - type: Transform + pos: -29.5,79.5 + parent: 12 + - uid: 29624 + components: + - type: Transform + pos: -29.5,77.5 + parent: 12 + - uid: 29636 + components: + - type: Transform + pos: -46.5,66.5 + parent: 12 + - uid: 29646 + components: + - type: Transform + pos: -26.5,79.5 + parent: 12 + - uid: 29870 + components: + - type: Transform + pos: -51.5,56.5 + parent: 12 + - uid: 30120 + components: + - type: Transform + pos: -34.5,74.5 + parent: 12 - uid: 31567 components: - type: Transform @@ -149046,6 +149673,11 @@ entities: - type: Transform pos: 36.5,-48.5 parent: 12 + - uid: 29619 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 - uid: 30508 components: - type: Transform @@ -149111,6 +149743,18 @@ entities: rot: -6.283185307179586 rad pos: -13.621389,-0.07474756 parent: 12 +- proto: Mattress + entities: + - uid: 29008 + components: + - type: Transform + pos: -61.5,-52.5 + parent: 12 + - uid: 29146 + components: + - type: Transform + pos: -53.5,57.5 + parent: 12 - proto: MechEquipmentGrabberSmall entities: - uid: 30401 @@ -149347,6 +149991,14 @@ entities: - type: Transform pos: 34.209034,45.799026 parent: 12 +- proto: MinimoogInstrument + entities: + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,76.5 + parent: 12 - proto: MiningDrill entities: - uid: 32188 @@ -149741,15 +150393,20 @@ entities: - type: Transform pos: 34.5,-52.5 parent: 12 - - uid: 28788 + - uid: 29291 components: - type: Transform - pos: 6.5,-54.5 + pos: -27.5,60.5 parent: 12 - - uid: 29291 + - uid: 29429 components: - type: Transform - pos: -27.5,60.5 + pos: 4.5,-52.5 + parent: 12 + - uid: 29990 + components: + - type: Transform + pos: -48.5,52.5 parent: 12 - uid: 30706 components: @@ -149920,10 +150577,10 @@ entities: parent: 12 - proto: NuclearBombKeg entities: - - uid: 30426 + - uid: 29046 components: - type: Transform - pos: -48.5,69.5 + pos: -54.5,70.5 parent: 12 - proto: NutimovCircuitBoard entities: @@ -150101,15 +150758,20 @@ entities: - type: Transform pos: -59.5,-32.5 parent: 12 - - uid: 28787 + - uid: 29290 components: - type: Transform - pos: 7.5,-54.5 + pos: -27.5,61.5 parent: 12 - - uid: 29290 + - uid: 29427 components: - type: Transform - pos: -27.5,61.5 + pos: 4.5,-51.5 + parent: 12 + - uid: 29991 + components: + - type: Transform + pos: -51.5,59.5 parent: 12 - uid: 30707 components: @@ -150269,6 +150931,21 @@ entities: - Make sure the emitters are not shooting at the tesla coils or grounding rods - [bold]WEAR INSULATED GLOVES WHEN WORKING ON THE TESLA!!![/bold] + - uid: 29006 + components: + - type: Transform + pos: -45.5,61.5 + parent: 12 + - uid: 29070 + components: + - type: Transform + pos: -42.5,61.5 + parent: 12 + - uid: 29486 + components: + - type: Transform + pos: -48.5,61.5 + parent: 12 - uid: 29970 components: - type: Transform @@ -151131,6 +151808,17 @@ entities: - type: Transform pos: -23.507654,-58.359375 parent: 12 + - uid: 30032 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.225544,54.748913 + parent: 12 + - uid: 30033 + components: + - type: Transform + pos: -53.67503,54.401253 + parent: 12 - proto: PillTricordrazine entities: - uid: 3197 @@ -151285,6 +151973,16 @@ entities: - type: Transform pos: 35.5,16.5 parent: 12 + - uid: 29629 + components: + - type: Transform + pos: -29.5,76.5 + parent: 12 + - uid: 29630 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 - proto: PlayerStationAi entities: - uid: 9471 @@ -151503,10 +152201,10 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 28790 + - uid: 29345 components: - type: Transform - pos: 5.5,-54.5 + pos: 3.5,-47.5 parent: 12 - uid: 32132 components: @@ -151736,6 +152434,13 @@ entities: - type: Transform pos: -51.5,-14.5 parent: 12 +- proto: PosterContrabandGreyTide + entities: + - uid: 29627 + components: + - type: Transform + pos: -37.5,80.5 + parent: 12 - proto: PosterContrabandHackingGuide entities: - uid: 28717 @@ -151743,6 +152448,11 @@ entities: - type: Transform pos: 59.5,0.5 parent: 12 + - uid: 29139 + components: + - type: Transform + pos: -35.5,79.5 + parent: 12 - proto: PosterContrabandHighEffectEngineering entities: - uid: 16356 @@ -151772,6 +152482,16 @@ entities: - type: Transform pos: -26.5,-14.5 parent: 12 + - uid: 29066 + components: + - type: Transform + pos: -52.5,59.5 + parent: 12 + - uid: 29140 + components: + - type: Transform + pos: -38.5,75.5 + parent: 12 - proto: PosterContrabandMissingSpacepen entities: - uid: 393 @@ -151801,6 +152521,13 @@ entities: - type: Transform pos: -0.5,-64.5 parent: 12 +- proto: PosterContrabandRise + entities: + - uid: 27714 + components: + - type: Transform + pos: -39.5,79.5 + parent: 12 - proto: PosterContrabandSpaceUp entities: - uid: 30228 @@ -151808,6 +152535,13 @@ entities: - type: Transform pos: -17.5,59.5 parent: 12 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 29036 + components: + - type: Transform + pos: -28.5,76.5 + parent: 12 - proto: PosterContrabandTools entities: - uid: 8873 @@ -151822,6 +152556,11 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,46.5 parent: 12 + - uid: 29310 + components: + - type: Transform + pos: -36.5,75.5 + parent: 12 - proto: PosterContrabandWehWatches entities: - uid: 11523 @@ -151849,6 +152588,13 @@ entities: - type: Transform pos: -14.5,57.5 parent: 12 +- proto: PosterLegitDickGumshue + entities: + - uid: 25412 + components: + - type: Transform + pos: -56.5,63.5 + parent: 12 - proto: PosterLegitFoamForceAd entities: - uid: 30231 @@ -152013,17 +152759,18 @@ entities: - uid: 31468 components: - type: Transform - pos: 6.5,-61.5 + pos: 6.5320144,-61.325264 parent: 12 - uid: 31469 components: - type: Transform - pos: 6.5,-60.5 + pos: 5.5015607,-62.495205 parent: 12 - uid: 31470 components: - type: Transform - pos: 6.5,-59.5 + rot: 4.440892098500626E-16 rad + pos: 6.508507,-59.615746 parent: 12 - proto: PottedPlant1 entities: @@ -154892,11 +155639,10 @@ entities: parent: 12 - proto: PoweredlightCyan entities: - - uid: 29615 + - uid: 28985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,67.5 + pos: -47.5,75.5 parent: 12 - proto: PoweredlightEmpty entities: @@ -154914,19 +155660,19 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,62.5 parent: 12 - - uid: 29610 + - uid: 20049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,70.5 + rot: 3.141592653589793 rad + pos: -52.5,68.5 parent: 12 - proto: PoweredlightPink entities: - - uid: 29602 + - uid: 19378 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,69.5 + pos: -53.5,74.5 parent: 12 - proto: PoweredLightPostSmall entities: @@ -154946,12 +155692,18 @@ entities: - type: Transform pos: 26.5,90.5 parent: 12 + - uid: 30029 + components: + - type: Transform + pos: -20.5,76.5 + parent: 12 - proto: PoweredlightRed entities: - - uid: 29616 + - uid: 9555 components: - type: Transform - pos: -46.5,72.5 + rot: -1.5707963267948966 rad + pos: -46.5,69.5 parent: 12 - uid: 31339 components: @@ -155507,17 +156259,11 @@ entities: rot: 3.141592653589793 rad pos: 51.5,29.5 parent: 12 - - uid: 17850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,42.5 - parent: 12 - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,46.5 + pos: -46.5,37.5 parent: 12 - uid: 17971 components: @@ -155559,6 +156305,12 @@ entities: - type: Transform pos: -26.5,51.5 parent: 12 + - uid: 19514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,79.5 + parent: 12 - uid: 19660 components: - type: Transform @@ -155886,6 +156638,18 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,64.5 parent: 12 + - uid: 29626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,61.5 + parent: 12 + - uid: 29643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,65.5 + parent: 12 - uid: 29656 components: - type: Transform @@ -155909,6 +156673,11 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-39.5 parent: 12 + - uid: 30133 + components: + - type: Transform + pos: -28.5,75.5 + parent: 12 - uid: 30269 components: - type: Transform @@ -155968,6 +156737,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-23.5 parent: 12 + - uid: 28973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,57.5 + parent: 12 - uid: 31337 components: - type: Transform @@ -156066,11 +156841,6 @@ entities: - type: Transform pos: -8.5,-45.5 parent: 12 - - uid: 3064 - components: - - type: Transform - pos: 6.5,-62.5 - parent: 12 - uid: 3619 components: - type: Transform @@ -156113,6 +156883,11 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 12 + - uid: 5817 + components: + - type: Transform + pos: -45.5,73.5 + parent: 12 - uid: 5890 components: - type: Transform @@ -156332,11 +157107,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,38.5 parent: 12 - - uid: 17841 - components: - - type: Transform - pos: -43.5,69.5 - parent: 12 - uid: 18159 components: - type: Transform @@ -156452,6 +157222,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-32.5 parent: 12 + - uid: 24666 + components: + - type: Transform + pos: -46.5,66.5 + parent: 12 - uid: 24673 components: - type: Transform @@ -156681,6 +157456,11 @@ entities: - type: Transform pos: -43.5,-16.5 parent: 12 + - uid: 27708 + components: + - type: Transform + pos: -51.5,56.5 + parent: 12 - uid: 27853 components: - type: Transform @@ -156724,10 +157504,30 @@ entities: - type: Transform pos: 35.5,-44.5 parent: 12 - - uid: 29596 + - uid: 29607 components: - type: Transform - pos: -43.5,70.5 + pos: -29.5,79.5 + parent: 12 + - uid: 29608 + components: + - type: Transform + pos: -28.5,79.5 + parent: 12 + - uid: 29783 + components: + - type: Transform + pos: -43.5,73.5 + parent: 12 + - uid: 29972 + components: + - type: Transform + pos: -52.5,49.5 + parent: 12 + - uid: 29987 + components: + - type: Transform + pos: -34.5,74.5 parent: 12 - uid: 30529 components: @@ -156885,6 +157685,18 @@ entities: - type: Transform pos: -10.5,-15.5 parent: 12 + - uid: 6185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,73.5 + parent: 12 + - uid: 6188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,74.5 + parent: 12 - uid: 10301 components: - type: Transform @@ -157066,6 +157878,33 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,68.5 parent: 12 + - uid: 28140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,74.5 + parent: 12 + - uid: 28146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,74.5 + parent: 12 + - uid: 28163 + components: + - type: Transform + pos: -48.5,69.5 + parent: 12 + - uid: 28166 + components: + - type: Transform + pos: -51.5,69.5 + parent: 12 + - uid: 28191 + components: + - type: Transform + pos: -49.5,69.5 + parent: 12 - uid: 28614 components: - type: Transform @@ -157115,47 +157954,40 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-2.5 parent: 12 - - uid: 28789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-54.5 - parent: 12 - uid: 28872 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-43.5 parent: 12 - - uid: 29605 + - uid: 29010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,71.5 + rot: -1.5707963267948966 rad + pos: -52.5,70.5 parent: 12 - - uid: 29606 + - uid: 29044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,70.5 + rot: 3.141592653589793 rad + pos: -49.5,74.5 parent: 12 - - uid: 29607 + - uid: 29045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,69.5 + pos: -47.5,73.5 parent: 12 - - uid: 29608 + - uid: 29052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,68.5 + pos: -47.5,70.5 parent: 12 - - uid: 29609 + - uid: 29058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,67.5 + pos: -50.5,69.5 parent: 12 - uid: 30544 components: @@ -157221,6 +158053,29 @@ entities: parent: 12 - proto: RailingCorner entities: + - uid: 6211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,69.5 + parent: 12 + - uid: 9514 + components: + - type: Transform + pos: -47.5,69.5 + parent: 12 + - uid: 9534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,74.5 + parent: 12 + - uid: 9537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,74.5 + parent: 12 - uid: 22603 components: - type: Transform @@ -157410,6 +158265,11 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 12 + - uid: 29107 + components: + - type: Transform + pos: -45.5,71.5 + parent: 12 - proto: RandomFoodMeal entities: - uid: 23547 @@ -157444,6 +158304,11 @@ entities: - type: Transform pos: 21.5,50.5 parent: 12 + - uid: 29020 + components: + - type: Transform + pos: -54.5,72.5 + parent: 12 - proto: RandomPainting entities: - uid: 6984 @@ -157600,6 +158465,11 @@ entities: - type: Transform pos: -3.5,36.5 parent: 12 + - uid: 22860 + components: + - type: Transform + pos: -17.5,69.5 + parent: 12 - uid: 24323 components: - type: Transform @@ -157670,12 +158540,57 @@ entities: - type: Transform pos: 37.5,-20.5 parent: 12 + - uid: 28998 + components: + - type: Transform + pos: -52.5,56.5 + parent: 12 + - uid: 29021 + components: + - type: Transform + pos: -44.5,66.5 + parent: 12 + - uid: 29108 + components: + - type: Transform + pos: -32.5,75.5 + parent: 12 - uid: 29354 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-6.5 parent: 12 + - uid: 29634 + components: + - type: Transform + pos: -40.5,73.5 + parent: 12 + - uid: 29637 + components: + - type: Transform + pos: -51.5,52.5 + parent: 12 + - uid: 29642 + components: + - type: Transform + pos: -40.5,65.5 + parent: 12 + - uid: 29988 + components: + - type: Transform + pos: -53.5,53.5 + parent: 12 + - uid: 30121 + components: + - type: Transform + pos: -30.5,79.5 + parent: 12 + - uid: 30127 + components: + - type: Transform + pos: -26.5,73.5 + parent: 12 - uid: 31717 components: - type: Transform @@ -158159,16 +159074,6 @@ entities: - type: Transform pos: -44.5,58.5 parent: 12 - - uid: 23721 - components: - - type: Transform - pos: -56.5,62.5 - parent: 12 - - uid: 23722 - components: - - type: Transform - pos: -52.5,60.5 - parent: 12 - uid: 24221 components: - type: Transform @@ -159468,12 +160373,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,0.5 parent: 12 - - uid: 510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,56.5 - parent: 12 - uid: 519 components: - type: Transform @@ -161068,6 +161967,11 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,4.5 parent: 12 + - uid: 9134 + components: + - type: Transform + pos: -53.5,76.5 + parent: 12 - uid: 9172 components: - type: Transform @@ -161125,6 +162029,16 @@ entities: rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 12 + - uid: 9545 + components: + - type: Transform + pos: -50.5,77.5 + parent: 12 + - uid: 9546 + components: + - type: Transform + pos: -46.5,76.5 + parent: 12 - uid: 9571 components: - type: Transform @@ -162211,6 +163125,11 @@ entities: - type: Transform pos: 59.5,38.5 parent: 12 + - uid: 11941 + components: + - type: Transform + pos: -54.5,67.5 + parent: 12 - uid: 11946 components: - type: Transform @@ -163410,6 +164329,21 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 12 + - uid: 17842 + components: + - type: Transform + pos: -55.5,72.5 + parent: 12 + - uid: 17858 + components: + - type: Transform + pos: -55.5,71.5 + parent: 12 + - uid: 17917 + components: + - type: Transform + pos: -53.5,67.5 + parent: 12 - uid: 18642 components: - type: Transform @@ -163812,11 +164746,15 @@ entities: - type: Transform pos: 43.5,15.5 parent: 12 + - uid: 22324 + components: + - type: Transform + pos: -38.5,80.5 + parent: 12 - uid: 22326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,58.5 + pos: -36.5,80.5 parent: 12 - uid: 22400 components: @@ -163862,18 +164800,6 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 12 - - uid: 23710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,61.5 - parent: 12 - - uid: 23896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,61.5 - parent: 12 - uid: 24192 components: - type: Transform @@ -163929,6 +164855,11 @@ entities: - type: Transform pos: -1.5,-29.5 parent: 12 + - uid: 24340 + components: + - type: Transform + pos: -54.5,75.5 + parent: 12 - uid: 24655 components: - type: Transform @@ -164131,6 +165062,11 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-27.5 parent: 12 + - uid: 27713 + components: + - type: Transform + pos: -26.5,74.5 + parent: 12 - uid: 27854 components: - type: Transform @@ -164222,153 +165158,121 @@ entities: - type: Transform pos: 37.5,-46.5 parent: 12 - - uid: 29219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,68.5 - parent: 12 - - uid: 29231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,34.5 - parent: 12 - - uid: 29249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,34.5 - parent: 12 - - uid: 29250 + - uid: 28981 components: - type: Transform - pos: -27.5,62.5 + pos: -49.5,77.5 parent: 12 - - uid: 29251 + - uid: 28983 components: - type: Transform - pos: -25.5,62.5 + pos: -45.5,76.5 parent: 12 - - uid: 29256 + - uid: 28984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,66.5 + pos: -45.5,75.5 parent: 12 - - uid: 29303 + - uid: 29004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,73.5 + pos: -57.5,60.5 parent: 12 - - uid: 29319 + - uid: 29013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,73.5 + pos: -54.5,76.5 parent: 12 - - uid: 29320 + - uid: 29030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,73.5 + pos: -57.5,61.5 parent: 12 - - uid: 29321 + - uid: 29068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,73.5 + pos: -54.5,68.5 parent: 12 - - uid: 29436 + - uid: 29137 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,67.5 + pos: -41.5,74.5 parent: 12 - - uid: 29437 + - uid: 29153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,68.5 + pos: -40.5,78.5 parent: 12 - - uid: 29438 + - uid: 29219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,69.5 + rot: 1.5707963267948966 rad + pos: -25.5,68.5 parent: 12 - - uid: 29439 + - uid: 29231 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,70.5 + pos: 12.5,34.5 parent: 12 - - uid: 29440 + - uid: 29249 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,71.5 + pos: 13.5,34.5 parent: 12 - - uid: 29441 + - uid: 29250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,71.5 + pos: -27.5,62.5 parent: 12 - - uid: 29442 + - uid: 29251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,72.5 + pos: -25.5,62.5 parent: 12 - - uid: 29443 + - uid: 29256 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,72.5 + pos: -22.5,66.5 parent: 12 - - uid: 29444 + - uid: 29313 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,73.5 + pos: -42.5,74.5 parent: 12 - - uid: 29445 + - uid: 29510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,73.5 + pos: -34.5,78.5 parent: 12 - - uid: 29446 + - uid: 29610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,73.5 + pos: -25.5,77.5 parent: 12 - - uid: 29447 + - uid: 29614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,73.5 + pos: -25.5,78.5 parent: 12 - - uid: 29448 + - uid: 29615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,73.5 + pos: -27.5,80.5 parent: 12 - - uid: 29449 + - uid: 29616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,73.5 + pos: -28.5,80.5 parent: 12 - - uid: 29450 + - uid: 29617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,73.5 + pos: -29.5,80.5 parent: 12 - uid: 29722 components: @@ -165245,11 +166149,6 @@ entities: - type: Transform pos: 71.5,50.5 parent: 12 - - uid: 31471 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 12 - proto: ShardGlass entities: - uid: 3520 @@ -165541,8 +166440,7 @@ entities: - uid: 504 components: - type: Transform - rot: -18.84955592153876 rad - pos: 5.6112194,-61.82998 + pos: 5.886181,-62.15094 parent: 12 - uid: 12121 components: @@ -165924,6 +166822,11 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-23.5 parent: 12 + - uid: 27184 + components: + - type: Transform + pos: -54.5,58.5 + parent: 12 - proto: ShuttersWindowOpen entities: - uid: 18849 @@ -166467,6 +167370,16 @@ entities: - Pressed: Open 2548: - Pressed: Open + - uid: 29314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,58.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 27184: + - Pressed: Toggle - uid: 29834 components: - type: Transform @@ -166940,12 +167853,6 @@ entities: parent: 12 - proto: SignElectricalMed entities: - - uid: 2261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 - parent: 12 - uid: 7522 components: - type: Transform @@ -166972,29 +167879,11 @@ entities: - type: Transform pos: -55.5,13.5 parent: 12 - - uid: 20523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,68.5 - parent: 12 - uid: 22153 components: - type: Transform pos: 63.5,1.5 parent: 12 - - uid: 25392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,55.5 - parent: 12 - - uid: 25490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,75.5 - parent: 12 - uid: 27155 components: - type: Transform @@ -167036,10 +167925,10 @@ entities: parent: 12 - proto: SignEscapePods entities: - - uid: 31266 + - uid: 29003 components: - type: Transform - pos: -17.5,-66.5 + pos: -17.5,-65.5 parent: 12 - proto: SignEVA entities: @@ -167431,6 +168320,11 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-20.5 parent: 12 + - uid: 30002 + components: + - type: Transform + pos: -37.5,73.5 + parent: 12 - proto: SignSmoking entities: - uid: 2047 @@ -167546,12 +168440,6 @@ entities: parent: 12 - proto: SinkWide entities: - - uid: 288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-60.5 - parent: 12 - uid: 936 components: - type: Transform @@ -167646,32 +168534,6 @@ entities: - type: Transform pos: 54.49004,14.54105 parent: 12 -- proto: SmallLight - entities: - - uid: 13210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,57.5 - parent: 12 - - uid: 24254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,61.5 - parent: 12 - - uid: 25412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,65.5 - parent: 12 - - uid: 27184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,72.5 - parent: 12 - proto: SmartFridge entities: - uid: 8300 @@ -168486,6 +169348,12 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-58.5 parent: 12 + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-68.5 + parent: 12 - uid: 13967 components: - type: Transform @@ -169072,17 +169940,17 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-66.5 parent: 12 - - uid: 27326 + - uid: 24456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-66.5 + pos: -39.5,-68.5 parent: 12 - - uid: 27329 + - uid: 24642 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-66.5 + pos: -39.5,-62.5 parent: 12 - uid: 27495 components: @@ -169102,12 +169970,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-64.5 parent: 12 - - uid: 27498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-68.5 - parent: 12 - uid: 27500 components: - type: Transform @@ -169132,12 +169994,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-68.5 parent: 12 - - uid: 27713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-68.5 - parent: 12 - uid: 27717 components: - type: Transform @@ -169160,7 +170016,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-64.5 + pos: -39.5,-64.5 parent: 12 - uid: 27725 components: @@ -169184,7 +170040,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-64.5 + pos: -40.5,-66.5 parent: 12 - uid: 27813 components: @@ -169216,11 +170072,11 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-62.5 parent: 12 - - uid: 27824 + - uid: 27823 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-62.5 + pos: -39.5,-66.5 parent: 12 - uid: 27826 components: @@ -169258,6 +170114,12 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-68.5 parent: 12 + - uid: 29001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-62.5 + parent: 12 - uid: 31009 components: - type: Transform @@ -169322,15 +170184,15 @@ entities: - type: Transform pos: -38.5,-66.5 parent: 12 - - uid: 27704 + - uid: 24256 components: - type: Transform - pos: -29.5,-64.5 + pos: -40.5,-64.5 parent: 12 - - uid: 27711 + - uid: 27704 components: - type: Transform - pos: -35.5,-62.5 + pos: -29.5,-64.5 parent: 12 - uid: 27825 components: @@ -169447,6 +170309,11 @@ entities: parent: 12 - proto: SolidSecretDoor entities: + - uid: 3147 + components: + - type: Transform + pos: -53.5,55.5 + parent: 12 - uid: 28266 components: - type: Transform @@ -170497,8 +171364,7 @@ entities: - uid: 32143 components: - type: Transform - rot: -131.94689145077115 rad - pos: -62.016247,-54.02513 + pos: -62.424545,-53.537132 parent: 12 - proto: Spoon entities: @@ -171480,6 +172346,36 @@ entities: rot: 3.141592653589793 rad pos: 8.585284,67.665504 parent: 12 + - uid: 25391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,76.5 + parent: 12 + - uid: 25392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,77.5 + parent: 12 + - uid: 25393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,77.5 + parent: 12 + - uid: 25399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,76.5 + parent: 12 + - uid: 25403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,76.5 + parent: 12 - uid: 26069 components: - type: Transform @@ -171503,6 +172399,23 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,35.5 parent: 12 + - uid: 29014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,76.5 + parent: 12 + - uid: 29034 + components: + - type: Transform + pos: -54.5,62.5 + parent: 12 + - uid: 29319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,76.5 + parent: 12 - uid: 31117 components: - type: Transform @@ -171589,6 +172502,11 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,48.5 parent: 12 + - uid: 24196 + components: + - type: Transform + pos: -54.5,73.5 + parent: 12 - uid: 26503 components: - type: Transform @@ -171607,6 +172525,23 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 12 + - uid: 29007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,71.5 + parent: 12 + - uid: 29503 + components: + - type: Transform + pos: -45.5,72.5 + parent: 12 + - uid: 29504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,70.5 + parent: 12 - proto: StorageCanister entities: - uid: 240 @@ -171689,11 +172624,6 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 12 - - uid: 3143 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - uid: 3225 components: - type: Transform @@ -171794,6 +172724,11 @@ entities: - type: Transform pos: -47.5,-43.5 parent: 12 + - uid: 29430 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 12 - uid: 30495 components: - type: Transform @@ -172582,16 +173517,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway north A - - uid: 3031 - components: - - type: Transform - pos: -47.5,67.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Roller rink - uid: 3061 components: - type: Transform @@ -172937,17 +173862,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Gorilla and penguin enclosures - - uid: 31751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,61.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Northwest maint dock - uid: 32105 components: - type: Transform @@ -173399,59 +174313,39 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Detective's office - - uid: 29287 + - uid: 28790 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,66.5 + pos: -48.5,58.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Shooting range - - uid: 29289 + id: Brig 2 + - uid: 29287 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,64.5 + pos: -29.5,66.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Security evac pod and airlock - - uid: 31752 + id: Shooting range + - uid: 29289 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,72.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior maints - - uid: 31753 - components: - - type: Transform - pos: -41.5,74.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior space - - uid: 31754 - components: - - type: Transform - pos: -30.5,74.5 + pos: -23.5,64.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Armory exterior space two + id: Security evac pod and airlock - proto: SurveillanceCameraService entities: - uid: 10 @@ -173865,7 +174759,8 @@ entities: - uid: 29598 components: - type: Transform - pos: -43.46191,71.58315 + rot: -6.283185307179586 rad + pos: -50.39034,76.4461 parent: 12 - proto: Syringe entities: @@ -174018,11 +174913,6 @@ entities: - type: Transform pos: -42.5,-41.5 parent: 12 - - uid: 2112 - components: - - type: Transform - pos: -43.5,72.5 - parent: 12 - uid: 2118 components: - type: Transform @@ -175754,15 +176644,40 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 12 + - uid: 29015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,72.5 + parent: 12 + - uid: 29023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,67.5 + parent: 12 - uid: 29180 components: - type: Transform pos: 54.5,60.5 parent: 12 - - uid: 29597 + - uid: 29425 components: - type: Transform - pos: -43.5,71.5 + rot: 3.141592653589793 rad + pos: -50.5,67.5 + parent: 12 + - uid: 29505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,71.5 + parent: 12 + - uid: 29506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,76.5 parent: 12 - uid: 29967 components: @@ -176771,6 +177686,12 @@ entities: parent: 12 - proto: TableWood entities: + - uid: 1880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,59.5 + parent: 12 - uid: 1995 components: - type: Transform @@ -176799,6 +177720,11 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-60.5 parent: 12 + - uid: 3064 + components: + - type: Transform + pos: -53.5,61.5 + parent: 12 - uid: 3792 components: - type: Transform @@ -177380,12 +178306,32 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-12.5 parent: 12 + - uid: 27502 + components: + - type: Transform + pos: -54.5,61.5 + parent: 12 - uid: 28203 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-14.5 parent: 12 + - uid: 29178 + components: + - type: Transform + pos: -55.5,61.5 + parent: 12 + - uid: 29179 + components: + - type: Transform + pos: -53.5,63.5 + parent: 12 + - uid: 30034 + components: + - type: Transform + pos: -53.5,54.5 + parent: 12 - uid: 30285 components: - type: Transform @@ -177960,6 +178906,11 @@ entities: - type: Transform pos: -25.567787,56.37359 parent: 12 + - uid: 29501 + components: + - type: Transform + pos: -39.568047,77.519104 + parent: 12 - proto: ToolboxGoldFilled entities: - uid: 15844 @@ -178952,6 +179903,45 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 29625 + components: + - type: Transform + pos: -26.5,77.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 27716: + - Left: Forward + - Right: Reverse + - Middle: Off + 23177: + - Left: Forward + - Right: Reverse + - Middle: Off + 27498: + - Left: Forward + - Right: Reverse + - Middle: Off + 27040: + - Left: Forward + - Right: Reverse + - Middle: Off + 23122: + - Left: Forward + - Right: Reverse + - Middle: Off + 23700: + - Left: Forward + - Right: Reverse + - Middle: Off + 22952: + - Left: Forward + - Right: Reverse + - Middle: Off + 27329: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 2699 @@ -179572,6 +180562,11 @@ entities: - type: Transform pos: -28.5,50.5 parent: 12 + - uid: 29019 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 12 - proto: VendingMachineSnack entities: - uid: 14990 @@ -181080,8 +182075,7 @@ entities: - uid: 1877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,73.5 + pos: -57.5,62.5 parent: 12 - uid: 1966 components: @@ -181104,12 +182098,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 12 - - uid: 2032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,73.5 - parent: 12 - uid: 2051 components: - type: Transform @@ -181121,18 +182109,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,11.5 parent: 12 - - uid: 2078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,73.5 - parent: 12 - - uid: 2148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,73.5 - parent: 12 - uid: 2151 components: - type: Transform @@ -181178,6 +182154,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 12 + - uid: 2261 + components: + - type: Transform + pos: -54.5,64.5 + parent: 12 - uid: 2267 components: - type: Transform @@ -181213,12 +182194,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,73.5 - parent: 12 - uid: 2328 components: - type: Transform @@ -181350,6 +182325,11 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 12 + - uid: 2891 + components: + - type: Transform + pos: -55.5,64.5 + parent: 12 - uid: 2935 components: - type: Transform @@ -181422,11 +182402,28 @@ entities: - type: Transform pos: -49.5,-52.5 parent: 12 + - uid: 3122 + components: + - type: Transform + pos: -57.5,58.5 + parent: 12 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,56.5 + parent: 12 - uid: 3158 components: - type: Transform pos: -10.5,3.5 parent: 12 + - uid: 3199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,57.5 + parent: 12 - uid: 3469 components: - type: Transform @@ -181711,6 +182708,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,8.5 parent: 12 + - uid: 4959 + components: + - type: Transform + pos: -55.5,70.5 + parent: 12 - uid: 4960 components: - type: Transform @@ -183266,35 +184268,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,19.5 parent: 12 - - uid: 9514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,63.5 - parent: 12 - - uid: 9525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,56.5 - parent: 12 - uid: 9533 components: - type: Transform pos: 62.5,8.5 parent: 12 - - uid: 9534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,60.5 - parent: 12 - - uid: 9545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,50.5 - parent: 12 - uid: 9552 components: - type: Transform @@ -183305,18 +184283,6 @@ entities: - type: Transform pos: 56.5,10.5 parent: 12 - - uid: 9589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,54.5 - parent: 12 - - uid: 9624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,58.5 - parent: 12 - uid: 9638 components: - type: Transform @@ -183335,12 +184301,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 12 - - uid: 9652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,65.5 - parent: 12 - uid: 9669 components: - type: Transform @@ -184053,24 +185013,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,4.5 parent: 12 - - uid: 10953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,66.5 - parent: 12 - - uid: 10954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,59.5 - parent: 12 - - uid: 10955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,73.5 - parent: 12 - uid: 10980 components: - type: Transform @@ -184453,12 +185395,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 12 - - uid: 11389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,73.5 - parent: 12 - uid: 11404 components: - type: Transform @@ -184929,6 +185865,11 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-40.5 parent: 12 + - uid: 12640 + components: + - type: Transform + pos: -48.5,77.5 + parent: 12 - uid: 12641 components: - type: Transform @@ -185192,6 +186133,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,69.5 parent: 12 + - uid: 14555 + components: + - type: Transform + pos: -54.5,74.5 + parent: 12 - uid: 14639 components: - type: Transform @@ -186113,12 +187059,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,48.5 parent: 12 - - uid: 17811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,48.5 - parent: 12 - uid: 17812 components: - type: Transform @@ -186221,23 +187161,16 @@ entities: rot: 3.141592653589793 rad pos: -43.5,47.5 parent: 12 - - uid: 17835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,73.5 - parent: 12 - uid: 17836 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,71.5 parent: 12 - - uid: 17920 + - uid: 17841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,68.5 + pos: -52.5,76.5 parent: 12 - uid: 17972 components: @@ -186570,12 +187503,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,9.5 parent: 12 - - uid: 19179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,53.5 - parent: 12 - uid: 19180 components: - type: Transform @@ -187194,24 +188121,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-0.5 parent: 12 - - uid: 20097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 - parent: 12 - uid: 20268 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,66.5 parent: 12 - - uid: 20521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,75.5 - parent: 12 - uid: 20541 components: - type: Transform @@ -187313,6 +188228,11 @@ entities: - type: Transform pos: -30.5,69.5 parent: 12 + - uid: 22033 + components: + - type: Transform + pos: -45.5,74.5 + parent: 12 - uid: 22035 components: - type: Transform @@ -187430,6 +188350,11 @@ entities: - type: Transform pos: -30.5,63.5 parent: 12 + - uid: 22194 + components: + - type: Transform + pos: -40.5,76.5 + parent: 12 - uid: 22216 components: - type: Transform @@ -187471,17 +188396,27 @@ entities: - type: Transform pos: 42.5,13.5 parent: 12 - - uid: 22324 + - uid: 22321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,59.5 + pos: -37.5,80.5 + parent: 12 + - uid: 22323 + components: + - type: Transform + pos: -34.5,76.5 parent: 12 - uid: 22327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,55.5 + rot: 3.141592653589793 rad + pos: -32.5,76.5 + parent: 12 + - uid: 22338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,75.5 parent: 12 - uid: 22532 components: @@ -187558,52 +188493,21 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 12 - - uid: 23177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,63.5 - parent: 12 - uid: 23598 components: - type: Transform pos: 46.5,-6.5 parent: 12 - - uid: 23700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,59.5 - parent: 12 - uid: 23701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,59.5 - parent: 12 - - uid: 23703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,63.5 - parent: 12 - - uid: 23704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,59.5 - parent: 12 - - uid: 23709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,59.5 + pos: -32.5,79.5 parent: 12 - - uid: 23719 + - uid: 23709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,63.5 + pos: -52.5,77.5 parent: 12 - uid: 23895 components: @@ -187652,6 +188556,11 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,1.5 parent: 12 + - uid: 24300 + components: + - type: Transform + pos: -47.5,77.5 + parent: 12 - uid: 24302 components: - type: Transform @@ -187679,16 +188588,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-57.5 parent: 12 - - uid: 24663 - components: - - type: Transform - pos: -54.5,63.5 - parent: 12 - - uid: 24666 - components: - - type: Transform - pos: -52.5,63.5 - parent: 12 - uid: 25037 components: - type: Transform @@ -187745,17 +188644,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,56.5 parent: 12 - - uid: 25391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,55.5 - parent: 12 - - uid: 25393 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - uid: 25418 components: - type: Transform @@ -187869,6 +188757,12 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 + - uid: 25454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,75.5 + parent: 12 - uid: 25526 components: - type: Transform @@ -188307,12 +189201,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-26.5 parent: 12 - - uid: 27844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,73.5 - parent: 12 - uid: 27863 components: - type: Transform @@ -188504,6 +189392,43 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 12 + - uid: 28974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,75.5 + parent: 12 + - uid: 29009 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 12 + - uid: 29012 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 12 + - uid: 29060 + components: + - type: Transform + pos: -55.5,73.5 + parent: 12 + - uid: 29073 + components: + - type: Transform + pos: -57.5,59.5 + parent: 12 + - uid: 29103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,75.5 + parent: 12 + - uid: 29144 + components: + - type: Transform + pos: -35.5,80.5 + parent: 12 - uid: 29163 components: - type: Transform @@ -188516,6 +189441,11 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,60.5 parent: 12 + - uid: 29165 + components: + - type: Transform + pos: -32.5,77.5 + parent: 12 - uid: 29209 components: - type: Transform @@ -188539,6 +189469,62 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,64.5 parent: 12 + - uid: 29316 + components: + - type: Transform + pos: -39.5,80.5 + parent: 12 + - uid: 29317 + components: + - type: Transform + pos: -40.5,79.5 + parent: 12 + - uid: 29322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,74.5 + parent: 12 + - uid: 29347 + components: + - type: Transform + pos: -54.5,69.5 + parent: 12 + - uid: 29371 + components: + - type: Transform + pos: -52.5,66.5 + parent: 12 + - uid: 29423 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 12 + - uid: 29488 + components: + - type: Transform + pos: -53.5,49.5 + parent: 12 + - uid: 29491 + components: + - type: Transform + pos: -54.5,51.5 + parent: 12 + - uid: 29492 + components: + - type: Transform + pos: -54.5,52.5 + parent: 12 + - uid: 29494 + components: + - type: Transform + pos: -54.5,54.5 + parent: 12 + - uid: 29597 + components: + - type: Transform + pos: -25.5,80.5 + parent: 12 - uid: 29657 components: - type: Transform @@ -188755,15 +189741,20 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-6.5 parent: 12 - - uid: 1172 + - uid: 1061 components: - type: Transform - pos: -17.5,-70.5 + pos: -56.5,63.5 parent: 12 - - uid: 1880 + - uid: 1065 components: - type: Transform - pos: -34.5,73.5 + pos: -56.5,64.5 + parent: 12 + - uid: 1172 + components: + - type: Transform + pos: -17.5,-70.5 parent: 12 - uid: 2498 components: @@ -188771,6 +189762,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,30.5 parent: 12 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,55.5 + parent: 12 - uid: 3624 components: - type: Transform @@ -188800,7 +189797,7 @@ entities: - uid: 4956 components: - type: Transform - pos: -51.5,49.5 + pos: -55.5,69.5 parent: 12 - uid: 5048 components: @@ -188814,11 +189811,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,1.5 parent: 12 - - uid: 5095 - components: - - type: Transform - pos: -37.5,73.5 - parent: 12 - uid: 5247 components: - type: Transform @@ -188882,31 +189874,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-55.5 parent: 12 - - uid: 9531 - components: - - type: Transform - pos: -51.5,57.5 - parent: 12 - - uid: 9537 - components: - - type: Transform - pos: -51.5,61.5 - parent: 12 - - uid: 9546 - components: - - type: Transform - pos: -51.5,51.5 - parent: 12 - - uid: 9555 - components: - - type: Transform - pos: -51.5,52.5 - parent: 12 - - uid: 9568 - components: - - type: Transform - pos: -51.5,53.5 - parent: 12 - uid: 9579 components: - type: Transform @@ -188925,11 +189892,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-54.5 parent: 12 - - uid: 9644 - components: - - type: Transform - pos: -51.5,55.5 - parent: 12 - uid: 9672 components: - type: Transform @@ -188988,11 +189950,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-49.5 parent: 12 - - uid: 11030 - components: - - type: Transform - pos: -41.5,73.5 - parent: 12 - uid: 11131 components: - type: Transform @@ -189017,11 +189974,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-3.5 parent: 12 - - uid: 11278 - components: - - type: Transform - pos: -42.5,73.5 - parent: 12 - uid: 11361 components: - type: Transform @@ -189183,11 +190135,10 @@ entities: - type: Transform pos: -50.5,-28.5 parent: 12 - - uid: 11941 + - uid: 12113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,69.5 + pos: -44.5,74.5 parent: 12 - uid: 12308 components: @@ -189212,12 +190163,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,71.5 parent: 12 - - uid: 14555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 12 - uid: 14625 components: - type: Transform @@ -189229,6 +190174,11 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 12 + - uid: 17835 + components: + - type: Transform + pos: -47.5,76.5 + parent: 12 - uid: 19295 components: - type: Transform @@ -189262,6 +190212,24 @@ entities: - type: Transform pos: -50.5,-20.5 parent: 12 + - uid: 22277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,77.5 + parent: 12 + - uid: 22322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,77.5 + parent: 12 + - uid: 22325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,79.5 + parent: 12 - uid: 22878 components: - type: Transform @@ -189278,15 +190246,35 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-6.5 parent: 12 + - uid: 23703 + components: + - type: Transform + pos: -32.5,75.5 + parent: 12 + - uid: 23710 + components: + - type: Transform + pos: -51.5,77.5 + parent: 12 + - uid: 23719 + components: + - type: Transform + pos: -55.5,58.5 + parent: 12 - uid: 23898 components: - type: Transform pos: -57.5,-24.5 parent: 12 - - uid: 25403 + - uid: 24254 components: - type: Transform - pos: -51.5,64.5 + pos: -52.5,64.5 + parent: 12 + - uid: 25490 + components: + - type: Transform + pos: -26.5,73.5 parent: 12 - uid: 25596 components: @@ -189507,6 +190495,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 + - uid: 27973 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 12 - uid: 27974 components: - type: Transform @@ -189631,6 +190624,11 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-50.5 parent: 12 + - uid: 28789 + components: + - type: Transform + pos: -55.5,74.5 + parent: 12 - uid: 28793 components: - type: Transform @@ -189656,12 +190654,142 @@ entities: - type: Transform pos: 32.5,6.5 parent: 12 + - uid: 28999 + components: + - type: Transform + pos: -53.5,64.5 + parent: 12 + - uid: 29011 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 12 + - uid: 29028 + components: + - type: Transform + pos: -56.5,58.5 + parent: 12 + - uid: 29031 + components: + - type: Transform + pos: -52.5,65.5 + parent: 12 + - uid: 29032 + components: + - type: Transform + pos: -57.5,63.5 + parent: 12 + - uid: 29065 + components: + - type: Transform + pos: -26.5,76.5 + parent: 12 + - uid: 29074 + components: + - type: Transform + pos: -25.5,76.5 + parent: 12 - uid: 29123 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,6.5 parent: 12 + - uid: 29148 + components: + - type: Transform + pos: -52.5,67.5 + parent: 12 + - uid: 29152 + components: + - type: Transform + pos: -52.5,48.5 + parent: 12 + - uid: 29159 + components: + - type: Transform + pos: -49.5,53.5 + parent: 12 + - uid: 29312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,79.5 + parent: 12 + - uid: 29321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,74.5 + parent: 12 + - uid: 29375 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 12 + - uid: 29395 + components: + - type: Transform + pos: -17.5,-66.5 + parent: 12 + - uid: 29487 + components: + - type: Transform + pos: -54.5,55.5 + parent: 12 + - uid: 29489 + components: + - type: Transform + pos: -53.5,50.5 + parent: 12 + - uid: 29490 + components: + - type: Transform + pos: -54.5,50.5 + parent: 12 + - uid: 29493 + components: + - type: Transform + pos: -54.5,53.5 + parent: 12 + - uid: 29495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,79.5 + parent: 12 + - uid: 29496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,79.5 + parent: 12 + - uid: 29507 + components: + - type: Transform + pos: -30.5,79.5 + parent: 12 + - uid: 29508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,78.5 + parent: 12 + - uid: 29511 + components: + - type: Transform + pos: -30.5,80.5 + parent: 12 + - uid: 29595 + components: + - type: Transform + pos: -26.5,80.5 + parent: 12 + - uid: 29596 + components: + - type: Transform + pos: -25.5,79.5 + parent: 12 - uid: 30020 components: - type: Transform @@ -190559,16 +191687,23 @@ entities: - type: Transform pos: 49.5,60.5 parent: 12 + - uid: 2032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,71.5 + parent: 12 - uid: 2040 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-15.5 parent: 12 - - uid: 2044 + - uid: 2112 components: - type: Transform - pos: -49.5,66.5 + rot: 3.141592653589793 rad + pos: -44.5,69.5 parent: 12 - uid: 2293 components: @@ -190700,12 +191835,6 @@ entities: - type: Transform pos: 48.5,61.5 parent: 12 - - uid: 2467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-48.5 - parent: 12 - uid: 2468 components: - type: Transform @@ -191122,12 +192251,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-22.5 parent: 12 - - uid: 3122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 12 - uid: 3194 components: - type: Transform @@ -191365,11 +192488,6 @@ entities: - type: Transform pos: 46.5,60.5 parent: 12 - - uid: 4959 - components: - - type: Transform - pos: -42.5,69.5 - parent: 12 - uid: 4981 components: - type: Transform @@ -192149,11 +193267,6 @@ entities: - type: Transform pos: -44.5,66.5 parent: 12 - - uid: 9134 - components: - - type: Transform - pos: -42.5,71.5 - parent: 12 - uid: 9180 components: - type: Transform @@ -192556,21 +193669,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,32.5 parent: 12 - - uid: 11277 - components: - - type: Transform - pos: -50.5,66.5 - parent: 12 - - uid: 11299 - components: - - type: Transform - pos: -46.5,66.5 - parent: 12 - - uid: 11300 - components: - - type: Transform - pos: -47.5,66.5 - parent: 12 - uid: 11308 components: - type: Transform @@ -192611,6 +193709,12 @@ entities: - type: Transform pos: -35.5,-56.5 parent: 12 + - uid: 11400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,66.5 + parent: 12 - uid: 11405 components: - type: Transform @@ -196305,6 +197409,12 @@ entities: - type: Transform pos: -1.5,-60.5 parent: 12 + - uid: 22337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,76.5 + parent: 12 - uid: 22391 components: - type: Transform @@ -196454,6 +197564,12 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 12 + - uid: 23712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,66.5 + parent: 12 - uid: 23779 components: - type: Transform @@ -196484,6 +197600,12 @@ entities: - type: Transform pos: 10.5,-30.5 parent: 12 + - uid: 23896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,70.5 + parent: 12 - uid: 23897 components: - type: Transform @@ -196571,6 +197693,12 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,59.5 parent: 12 + - uid: 24255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,75.5 + parent: 12 - uid: 24371 components: - type: Transform @@ -196668,6 +197796,12 @@ entities: - type: Transform pos: -17.5,-59.5 parent: 12 + - uid: 24664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,75.5 + parent: 12 - uid: 24698 components: - type: Transform @@ -196744,7 +197878,8 @@ entities: - uid: 25402 components: - type: Transform - pos: -45.5,66.5 + rot: 1.5707963267948966 rad + pos: -52.5,50.5 parent: 12 - uid: 25465 components: @@ -197168,11 +198303,6 @@ entities: - type: Transform pos: 31.5,-30.5 parent: 12 - - uid: 27040 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 12 - uid: 27042 components: - type: Transform @@ -197299,10 +198429,17 @@ entities: - type: Transform pos: -57.5,-19.5 parent: 12 + - uid: 27326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,58.5 + parent: 12 - uid: 27353 components: - type: Transform - pos: 7.5,-53.5 + rot: 1.5707963267948966 rad + pos: -52.5,53.5 parent: 12 - uid: 27398 components: @@ -197543,22 +198680,73 @@ entities: rot: 3.141592653589793 rad pos: 53.5,11.5 parent: 12 + - uid: 29022 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 12 + - uid: 29025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,66.5 + parent: 12 + - uid: 29037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,52.5 + parent: 12 - uid: 29117 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-15.5 parent: 12 + - uid: 29149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,60.5 + parent: 12 - uid: 29208 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,48.5 parent: 12 - - uid: 29594 + - uid: 29303 components: - type: Transform - pos: -42.5,70.5 + pos: -52.5,63.5 + parent: 12 + - uid: 29308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,58.5 + parent: 12 + - uid: 29320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,56.5 + parent: 12 + - uid: 29351 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 12 + - uid: 29355 + components: + - type: Transform + pos: -51.5,66.5 + parent: 12 + - uid: 29376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,67.5 parent: 12 - uid: 30000 components: @@ -197583,11 +198771,6 @@ entities: - type: Transform pos: -26.5,-59.5 parent: 12 - - uid: 30537 - components: - - type: Transform - pos: -17.5,-66.5 - parent: 12 - uid: 30567 components: - type: Transform @@ -197654,11 +198837,6 @@ entities: - type: Transform pos: -34.5,-13.5 parent: 12 - - uid: 31385 - components: - - type: Transform - pos: 4.5,-61.5 - parent: 12 - uid: 31387 components: - type: Transform @@ -197728,11 +198906,6 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 12 - - uid: 1878 - components: - - type: Transform - pos: -42.5,68.5 - parent: 12 - uid: 1965 components: - type: Transform @@ -197819,6 +198992,17 @@ entities: - type: Transform pos: -6.5,-16.5 parent: 12 + - uid: 5095 + components: + - type: Transform + pos: -44.5,73.5 + parent: 12 + - uid: 5829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,67.5 + parent: 12 - uid: 6256 components: - type: Transform @@ -197873,6 +199057,12 @@ entities: - type: Transform pos: -54.5,-17.5 parent: 12 + - uid: 9568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,69.5 + parent: 12 - uid: 9631 components: - type: Transform @@ -197899,11 +199089,6 @@ entities: - type: Transform pos: -59.5,-56.5 parent: 12 - - uid: 11297 - components: - - type: Transform - pos: -48.5,66.5 - parent: 12 - uid: 11332 components: - type: Transform @@ -198272,6 +199457,12 @@ entities: - type: Transform pos: 36.5,16.5 parent: 12 + - uid: 22328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,76.5 + parent: 12 - uid: 22855 components: - type: Transform @@ -198289,6 +199480,11 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-9.5 parent: 12 + - uid: 23713 + components: + - type: Transform + pos: -49.5,66.5 + parent: 12 - uid: 24333 components: - type: Transform @@ -198320,6 +199516,12 @@ entities: - type: Transform pos: 31.5,19.5 parent: 12 + - uid: 24663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,75.5 + parent: 12 - uid: 24701 components: - type: Transform @@ -198660,6 +199862,12 @@ entities: - type: Transform pos: 11.5,-50.5 parent: 12 + - uid: 27161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,75.5 + parent: 12 - uid: 27172 components: - type: Transform @@ -198863,32 +200071,136 @@ entities: rot: 3.141592653589793 rad pos: 51.5,9.5 parent: 12 - - uid: 28786 + - uid: 28942 + components: + - type: Transform + pos: 49.5,9.5 + parent: 12 + - uid: 29029 + components: + - type: Transform + pos: -52.5,55.5 + parent: 12 + - uid: 29092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,72.5 + parent: 12 + - uid: 29141 + components: + - type: Transform + pos: -51.5,63.5 + parent: 12 + - uid: 29142 + components: + - type: Transform + pos: -53.5,58.5 + parent: 12 + - uid: 29143 + components: + - type: Transform + pos: -51.5,61.5 + parent: 12 + - uid: 29162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-54.5 + pos: -53.5,53.5 parent: 12 - - uid: 28942 + - uid: 29177 components: - type: Transform - pos: 49.5,9.5 + pos: -52.5,57.5 parent: 12 - - uid: 29595 + - uid: 29190 + components: + - type: Transform + pos: -52.5,61.5 + parent: 12 + - uid: 29315 + components: + - type: Transform + pos: -52.5,59.5 + parent: 12 + - uid: 29344 + components: + - type: Transform + pos: -16.5,69.5 + parent: 12 + - uid: 29348 components: - type: Transform - pos: -42.5,72.5 + pos: 2.5,-48.5 + parent: 12 + - uid: 29352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,67.5 + parent: 12 + - uid: 29353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,67.5 + parent: 12 + - uid: 29374 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 12 + - uid: 29512 + components: + - type: Transform + pos: -32.5,74.5 parent: 12 - uid: 29603 components: - type: Transform pos: -42.5,66.5 parent: 12 + - uid: 29628 + components: + - type: Transform + pos: -30.5,77.5 + parent: 12 + - uid: 29631 + components: + - type: Transform + pos: -32.5,73.5 + parent: 12 + - uid: 29632 + components: + - type: Transform + pos: -34.5,73.5 + parent: 12 + - uid: 29633 + components: + - type: Transform + pos: -37.5,73.5 + parent: 12 - uid: 29720 components: - type: Transform pos: -49.5,48.5 parent: 12 + - uid: 29820 + components: + - type: Transform + pos: -42.5,70.5 + parent: 12 + - uid: 29826 + components: + - type: Transform + pos: -40.5,73.5 + parent: 12 + - uid: 29980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,54.5 + parent: 12 - uid: 30200 components: - type: Transform @@ -199438,6 +200750,11 @@ entities: - type: Transform pos: 55.5,11.5 parent: 12 + - uid: 9652 + components: + - type: Transform + pos: -51.5,50.5 + parent: 12 - uid: 10397 components: - type: Transform @@ -199503,6 +200820,11 @@ entities: - type: Transform pos: 29.5,12.5 parent: 12 + - uid: 29644 + components: + - type: Transform + pos: -36.5,73.5 + parent: 12 - uid: 31370 components: - type: Transform @@ -199911,6 +201233,16 @@ entities: - type: Transform pos: 29.5,11.5 parent: 12 + - uid: 29974 + components: + - type: Transform + pos: -51.5,54.5 + parent: 12 + - uid: 29997 + components: + - type: Transform + pos: -35.5,73.5 + parent: 12 - uid: 30402 components: - type: Transform @@ -200074,12 +201406,6 @@ entities: - type: Transform pos: -5.5,55.5 parent: 12 - - uid: 29642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,72.5 - parent: 12 - uid: 30332 components: - type: Transform @@ -201520,6 +202846,29 @@ entities: rot: 3.141592653589793 rad pos: 53.5,54.5 parent: 12 + - uid: 29115 + components: + - type: Transform + pos: -37.5,79.5 + parent: 12 + - uid: 29497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,78.5 + parent: 12 + - uid: 29498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,77.5 + parent: 12 + - uid: 29499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,78.5 + parent: 12 - uid: 30322 components: - type: Transform @@ -202672,6 +204021,11 @@ entities: - type: Transform pos: -23.775642,-15.327034 parent: 12 + - uid: 30137 + components: + - type: Transform + pos: -42.562584,42.448437 + parent: 12 - proto: Zipties entities: - uid: 13512 diff --git a/Resources/Maps/corvax_astra.yml b/Resources/Maps/corvax_astra.yml index 5eb40d631ca..95e5bf44c80 100644 --- a/Resources/Maps/corvax_astra.yml +++ b/Resources/Maps/corvax_astra.yml @@ -69,6 +69,7 @@ tilemap: 76: FloorPlanetGrass 77: FloorPlastic 78: FloorRGlass + 94: FloorRedCircuit 79: FloorReinforced 80: FloorReinforcedHardened 81: FloorRockVault @@ -160,7 +161,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAANAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAADwAAAAABfgAAAAAAOgAAAAABfgAAAAAAMgAAAAABfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAUQAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAABMgAAAAAAMgAAAAADfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAMgAAAAACfgAAAAAAMgAAAAABMgAAAAABUQAAAAAAOgAAAAAAOgAAAAADOgAAAAACUQAAAAAAMgAAAAADMgAAAAAAMgAAAAAAUQAAAAAAfgAAAAAAHwAAAAABUQAAAAAAUQAAAAAAMgAAAAAAMgAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD + tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAANAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAADwAAAAABfgAAAAAAOgAAAAABfgAAAAAAMgAAAAABfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAUQAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAABMgAAAAAAMgAAAAADfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAMgAAAAACfgAAAAAAMgAAAAABMgAAAAABUQAAAAAAOgAAAAAAOgAAAAADOgAAAAACUQAAAAAAMgAAAAADMgAAAAAAMgAAAAAAUQAAAAAAfgAAAAAAHwAAAAABUQAAAAAAUQAAAAAAMgAAAAAAMgAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD version: 6 -1,1: ind: -1,1 @@ -168,7 +169,7 @@ entities: version: 6 0,1: ind: 0,1 - tiles: XQAAAAABXQAAAAAAHwAAAAAAXQAAAAAAXwAAAAACTQAAAAACfgAAAAAAQAAAAAAAegAAAAADegAAAAADegAAAAACfAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATgAAAAACTQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAATQAAAAACXQAAAAABfgAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAACXQAAAAABHwAAAAAAHwAAAAACHwAAAAACOAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADHwAAAAABKAAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAXQAAAAACTQAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADEQAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAKAAAAAADHwAAAAADHwAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABKAAAAAABHwAAAAABHwAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADTQAAAAADTQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAAAHwAAAAAAXQAAAAAAXwAAAAACTQAAAAACfgAAAAAAQAAAAAAAegAAAAADegAAAAADegAAAAACfAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATgAAAAACTQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAATQAAAAACXQAAAAABfgAAAAAAHwAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAACXQAAAAABHwAAAAAAHwAAAAACHwAAAAACBgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADHwAAAAABKAAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAXgAAAAAAXgAAAAAAXQAAAAACTQAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADXgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAKAAAAAADHwAAAAADHwAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABKAAAAAABHwAAAAABHwAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADTQAAAAADTQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 @@ -180,7 +181,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: QAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACHwAAAAABEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAAAQAAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKgAAAAACfgAAAAAAKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAfgAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAKgAAAAABegAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAABfgAAAAAAKgAAAAADegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: QAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACXgAAAAAAXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAbAAAAAAABgAAAAAABgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACHwAAAAABXgAAAAAAXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAAAQAAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKgAAAAACfgAAAAAAKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAfgAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAKgAAAAABegAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAABfgAAAAAAKgAAAAADegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,0: ind: 2,0 @@ -376,7 +377,7 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAACHwAAAAACHwAAAAADHwAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADHwAAAAAAXQAAAAACfgAAAAAAcAAAAAAAcAAAAAAAOAAAAAAAcAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADHwAAAAACXQAAAAACXQAAAAACHwAAAAADHwAAAAAAHwAAAAABXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABHwAAAAACXQAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAHwAAAAACXQAAAAAAHwAAAAADXQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAADXQAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAHwAAAAADXQAAAAADHwAAAAADXQAAAAACTwAAAAAAOAAAAAAATwAAAAAATwAAAAAAXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAABXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADIAAAAAADHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABIAAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAACHwAAAAACHwAAAAADHwAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADHwAAAAAAXQAAAAACfgAAAAAAcAAAAAAAcAAAAAAAOAAAAAAAcAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADHwAAAAACXQAAAAACXQAAAAACHwAAAAADHwAAAAAAHwAAAAABXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABHwAAAAACXQAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAHwAAAAACXQAAAAAAHwAAAAAAXQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAADXQAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAAAXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAHwAAAAADXQAAAAADHwAAAAAAXQAAAAACTwAAAAAAXgAAAAAATwAAAAAATwAAAAAAXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAABXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADIAAAAAADHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABIAAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAAD version: 6 -4,-4: ind: -4,-4 @@ -488,7 +489,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAALAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABggAAAAACgQAAAAAAggAAAAABHwAAAAADHwAAAAAAfgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAACgQAAAAAAggAAAAABggAAAAAAgQAAAAAAHwAAAAADHwAAAAABfgAAAAAASAAAAAACSAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAABSAAAAAABSAAAAAADSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAAAFQAAAAABFQAAAAAFFQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAABSwAAAAABfgAAAAAASwAAAAADSwAAAAABfgAAAAAASwAAAAADSwAAAAABFQAAAAAGFQAAAAAGFQAAAAACfgAAAAAAUwAAAAAAHwAAAAACfgAAAAAASAAAAAAASAAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACfgAAAAAASwAAAAABSwAAAAABFQAAAAABFQAAAAACFQAAAAAGFQAAAAADUwAAAAAAUwAAAAAAfgAAAAAASAAAAAABSAAAAAAASwAAAAADSwAAAAAAfQAAAAAASwAAAAACSwAAAAABfgAAAAAAfQAAAAAAFQAAAAAFFQAAAAADFQAAAAABfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAAASAAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABfQAAAAAASwAAAAAASwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAACSAAAAAADSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAABFQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADSAAAAAACSAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAAASwAAAAABSwAAAAACfgAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAQgAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAA + tiles: fgAAAAAAfgAAAAAALAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABggAAAAACgQAAAAAAggAAAAABHwAAAAADHwAAAAAAfgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAACgQAAAAAAggAAAAABggAAAAAAgQAAAAAAHwAAAAADHwAAAAABfgAAAAAASAAAAAACSAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAABSAAAAAABSAAAAAADSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAAAFQAAAAABFQAAAAAFFQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAABSwAAAAABfgAAAAAASwAAAAADSwAAAAABfgAAAAAASwAAAAADSwAAAAABFQAAAAAGFQAAAAAGFQAAAAACfgAAAAAAUwAAAAAAHwAAAAACfgAAAAAASAAAAAAASAAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACfgAAAAAASwAAAAABSwAAAAABFQAAAAABFQAAAAACFQAAAAAGFQAAAAADUwAAAAAAUwAAAAAAfgAAAAAASAAAAAABSAAAAAAASwAAAAADSwAAAAAAfQAAAAAASwAAAAACSwAAAAABfgAAAAAAfQAAAAAAFQAAAAAFFQAAAAADFQAAAAABfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAAASAAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABfQAAAAAASwAAAAAASwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAACSAAAAAADSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAABFQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADSAAAAAACSAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAAASwAAAAABSwAAAAACfgAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAQgAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -711,6 +712,13 @@ entities: id: Basalt9 decals: 9724: -8.7937765,-23.892101 + - node: + color: '#8BDA8EFF' + id: Bot + decals: + 12354: 88,-6 + 12355: 88,-7 + 12356: 88,-8 - node: color: '#9FED58CD' id: Bot @@ -892,15 +900,15 @@ entities: 12325: 57,-18 12328: 57,-22 12329: 55,-18 + 12375: 72,-1 + 12376: 73,-1 + 12377: 74,-1 + 12378: 75,-1 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 10951: 72,-1 - 10952: 73,-1 - 10953: 74,-1 - 10954: 75,-1 11000: 85,-10 - node: zIndex: 1 @@ -916,13 +924,8 @@ entities: 1639: 51,-82 1643: 53,-82 1644: 54,-79 - - node: - cleanable: True - color: '#FFFFFFFF' - id: BotLeft - decals: - 10955: 72,-5 - 10956: 73,-5 + 12379: 74,-5 + 12380: 75,-5 - node: color: '#FFFFFFFF' id: BotRight @@ -931,13 +934,8 @@ entities: 1640: 48,-82 1645: 54,-82 1646: 53,-79 - - node: - cleanable: True - color: '#FFFFFFFF' - id: BotRight - decals: - 10957: 74,-5 - 10958: 75,-5 + 12381: 73,-5 + 12382: 72,-5 - node: color: '#FFFFFFFF' id: Box @@ -1008,45 +1006,6 @@ entities: id: BoxGreyscale decals: 11035: 79,-4 - - node: - cleanable: True - color: '#AE6716FF' - id: BrickCornerOverlayNE - decals: - 10965: 87,1 - 10966: 83,1 - 10967: 79,1 - - node: - cleanable: True - color: '#AE6716FF' - id: BrickCornerOverlayNW - decals: - 10968: 77,1 - 10970: 81,1 - 10971: 85,1 - - node: - cleanable: True - color: '#AE6716FF' - id: BrickCornerOverlaySE - decals: - 10975: 79,0 - 10983: 83,0 - - node: - cleanable: True - color: '#AE6716FF' - id: BrickCornerOverlaySW - decals: - 10972: 77,0 - 10973: 81,0 - 10974: 85,0 - - node: - cleanable: True - color: '#AE6716FF' - id: BrickLineOverlayN - decals: - 10977: 78,1 - 10978: 86,1 - 10979: 82,1 - node: angle: -0.6981317007977318 rad color: '#D4D4D496' @@ -1515,12 +1474,6 @@ entities: decals: 7414: 38,13 7420: 34,15 - - node: - cleanable: True - color: '#C6FF91FF' - id: BrickTileSteelCornerNe - decals: - 10987: 89,-4 - node: color: '#FF5C5C99' id: BrickTileSteelCornerNe @@ -1540,12 +1493,6 @@ entities: id: BrickTileSteelCornerNe decals: 11105: 54,7 - - node: - cleanable: True - color: '#C6FF91FF' - id: BrickTileSteelCornerNw - decals: - 10991: 87,-4 - node: color: '#FF5C5C99' id: BrickTileSteelCornerNw @@ -1572,12 +1519,6 @@ entities: id: BrickTileSteelCornerSe decals: 7411: 38,9 - - node: - cleanable: True - color: '#C6FF91FF' - id: BrickTileSteelCornerSe - decals: - 10988: 89,-8 - node: color: '#FF5C5C99' id: BrickTileSteelCornerSe @@ -1596,12 +1537,6 @@ entities: 6268: 63,-39 12048: 54,2 12237: 89,-11 - - node: - cleanable: True - color: '#C6FF91FF' - id: BrickTileSteelCornerSw - decals: - 10992: 87,-8 - node: color: '#FF5C5C99' id: BrickTileSteelCornerSw @@ -1713,14 +1648,6 @@ entities: 7412: 38,10 7413: 38,14 7416: 34,14 - - node: - cleanable: True - color: '#C6FF91FF' - id: BrickTileSteelLineE - decals: - 10984: 89,-7 - 10985: 89,-6 - 10986: 89,-5 - node: color: '#FF5C5C99' id: BrickTileSteelLineE @@ -1776,12 +1703,6 @@ entities: 11106: 54,6 11107: 54,5 11108: 54,4 - - node: - cleanable: True - color: '#C6FF91FF' - id: BrickTileSteelLineN - decals: - 10990: 88,-4 - node: color: '#FF5C5C99' id: BrickTileSteelLineN @@ -1852,12 +1773,6 @@ entities: 7402: 35,9 7403: 36,9 7404: 37,9 - - node: - cleanable: True - color: '#C6FF91FF' - id: BrickTileSteelLineS - decals: - 10989: 88,-8 - node: color: '#FF5C5C99' id: BrickTileSteelLineS @@ -2008,6 +1923,11 @@ entities: id: BrickTileWhiteCornerNe decals: 10282: -58,-24 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerNe + decals: + 12342: 89,-4 - node: color: '#951710FF' id: BrickTileWhiteCornerNe @@ -2028,14 +1948,6 @@ entities: 10820: 65,5 12189: 75,-2 12205: 75,-2 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteCornerNe - decals: - 11013: 79,1 - 11014: 83,1 - 11015: 87,1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -2065,6 +1977,11 @@ entities: id: BrickTileWhiteCornerNw decals: 10277: -60,-24 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerNw + decals: + 12350: 87,-4 - node: color: '#951710FF' id: BrickTileWhiteCornerNw @@ -2086,14 +2003,6 @@ entities: 10746: 56,15 12188: 72,-2 12204: 72,-2 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteCornerNw - decals: - 11016: 85,1 - 11017: 81,1 - 11018: 77,1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw @@ -2121,6 +2030,11 @@ entities: id: BrickTileWhiteCornerSe decals: 10281: -58,-26 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerSe + decals: + 12346: 89,-8 - node: color: '#951710FF' id: BrickTileWhiteCornerSe @@ -2147,14 +2061,6 @@ entities: 11932: 57,3 12191: 75,-4 12202: 75,-4 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteCornerSe - decals: - 11007: 87,0 - 11008: 83,0 - 11009: 79,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -2182,6 +2088,11 @@ entities: id: BrickTileWhiteCornerSw decals: 10278: -60,-26 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteCornerSw + decals: + 12348: 87,-8 - node: color: '#951710FF' id: BrickTileWhiteCornerSw @@ -2207,14 +2118,6 @@ entities: 10756: 61,13 12190: 72,-4 12203: 72,-4 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteCornerSw - decals: - 11010: 77,0 - 11011: 81,0 - 11012: 85,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw @@ -2301,14 +2204,6 @@ entities: id: BrickTileWhiteInnerSe decals: 10273: 0,-73 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteInnerSe - decals: - 11031: 78,0 - 11032: 82,0 - 11033: 86,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe @@ -2329,14 +2224,6 @@ entities: id: BrickTileWhiteInnerSw decals: 11923: 42,-6 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteInnerSw - decals: - 11028: 78,0 - 11029: 82,0 - 11030: 86,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw @@ -2352,6 +2239,13 @@ entities: id: BrickTileWhiteLineE decals: 10299: -13,18 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineE + decals: + 12343: 89,-5 + 12344: 89,-6 + 12345: 89,-7 - node: color: '#951710FF' id: BrickTileWhiteLineE @@ -2373,14 +2267,6 @@ entities: 10406: 61,10 10407: 61,9 10408: 61,8 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteLineE - decals: - 11025: 78,-1 - 11026: 82,-1 - 11027: 86,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -2410,6 +2296,11 @@ entities: 12291: 62,-12 12292: 63,-12 12293: 64,-12 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineN + decals: + 12351: 88,-4 - node: color: '#951710FF' id: BrickTileWhiteLineN @@ -2437,14 +2328,6 @@ entities: 12197: 74,-2 12198: 74,-2 12199: 73,-2 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteLineN - decals: - 11019: 78,1 - 11020: 82,1 - 11021: 86,1 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -2479,6 +2362,11 @@ entities: id: BrickTileWhiteLineS decals: 10280: -59,-26 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineS + decals: + 12347: 88,-8 - node: color: '#951710FF' id: BrickTileWhiteLineS @@ -2543,6 +2431,11 @@ entities: id: BrickTileWhiteLineW decals: 10279: -60,-25 + - node: + color: '#8BDA8EFF' + id: BrickTileWhiteLineW + decals: + 12349: 87,-7 - node: color: '#951710FF' id: BrickTileWhiteLineW @@ -2571,14 +2464,6 @@ entities: 10531: 59,9 10752: 56,14 11999: 77,5 - - node: - cleanable: True - color: '#FF9821FF' - id: BrickTileWhiteLineW - decals: - 11022: 78,-1 - 11023: 82,-1 - 11024: 86,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -2733,13 +2618,6 @@ entities: 9596: 1.9963236,-28.532742 9597: 1.9181986,-28.892117 9598: 3.1994486,-28.063992 - - node: - color: '#9C2020FF' - id: Bushi2 - decals: - 9830: 4.978717,-59.257614 - 9831: 4.994342,-58.77324 - 9832: 5.588092,-59.05449 - node: color: '#FED83DFF' id: Bushi2 @@ -2843,11 +2721,6 @@ entities: 3400: -79.681145,-42.44266 5020: -27,-69 7109: -84,2 - - node: - color: '#9C2020FF' - id: Bushn1 - decals: - 9824: 9.913091,-53.8693 - node: color: '#FED83DFF' id: Bushn1 @@ -3167,6 +3040,13 @@ entities: id: ConcreteTrimCornerNe decals: 11522: 75,7 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerNe + decals: + 12363: 87,1 + 12364: 79,1 + 12371: 83,1 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe @@ -3196,6 +3076,13 @@ entities: id: ConcreteTrimCornerNw decals: 11520: 73,7 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerNw + decals: + 12357: 81,1 + 12361: 77,1 + 12362: 85,1 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw @@ -3221,6 +3108,13 @@ entities: id: ConcreteTrimCornerSe decals: 11521: 75,3 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerSe + decals: + 12358: 83,0 + 12359: 87,0 + 12360: 79,0 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe @@ -3250,6 +3144,13 @@ entities: id: ConcreteTrimCornerSw decals: 11523: 73,3 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerSw + decals: + 12368: 85,0 + 12369: 81,0 + 12370: 77,0 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw @@ -3475,6 +3376,13 @@ entities: decals: 11341: 78,6 11524: 74,7 + - node: + color: '#EFB34196' + id: ConcreteTrimLineN + decals: + 12365: 78,1 + 12366: 82,1 + 12367: 86,1 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN @@ -3578,11 +3486,11 @@ entities: decals: 9801: -12,-41 - node: - color: '#9C2020FF' - id: Damaged + cleanable: True + color: '#DE3A3A96' + id: Cyber decals: - 9823: 9.959966,-53.9943 - 9834: 13.935783,-62.00091 + 12440: -38.221886,-54.105633 - node: angle: -0.17453292519943295 rad color: '#D4D4D496' @@ -3821,14 +3729,6 @@ entities: id: Delivery decals: 8242: 39,20 - - node: - cleanable: True - color: '#C6FF91FF' - id: DeliveryGreyscale - decals: - 10993: 88,-8 - 10994: 88,-7 - 10995: 88,-6 - node: color: '#FFFFFFFF' id: DerelictSignBottom1 @@ -4175,7 +4075,6 @@ entities: id: Dirt decals: 3120: 85,-10 - 3121: 74,-5 - node: cleanable: True color: '#FFFFFF5D' @@ -4187,9 +4086,6 @@ entities: 3155: 71,-2 3158: 77,-12 3161: 88,-11 - 3162: 88,-7 - 3163: 89,-5 - 3164: 87,-4 3295: -28,-93 3296: -27,-93 3297: -26,-92 @@ -5433,8 +5329,6 @@ entities: 10260: -9,-48 10261: -9,-49 10262: -9,-49 - 10898: 88,-6 - 10899: 88,-7 10909: 72,-13 10910: 72,-12 10924: 87,-10 @@ -5472,7 +5366,6 @@ entities: decals: 125: 8,-100 128: 3,-79 - 3146: 89,-7 4029: -50,-88 4039: -12,14 4043: -9,15 @@ -5578,10 +5471,8 @@ entities: 122: 8,-93 126: 6,-96 129: 3,-85 - 3142: 79,0 3143: 77,-6 3144: 85,-10 - 3145: 88,-4 4026: -48,-88 4035: -46,-93 4053: -64,-35 @@ -6347,11 +6238,6 @@ entities: 7211: 92,-73 7212: 93,-73 7213: 94,-73 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 4878: -38,-40 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -6391,16 +6277,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 1628: -4,19 - 2251: -42,-40 - 2252: -42,-40 - 4896: -41,-40 - 4897: -40,-40 - 4898: -39,-40 - 4899: -38,-40 - 4900: -38,-40 - 4901: -39,-40 - 4902: -40,-40 - 4903: -41,-40 - node: color: '#52DDE993' id: HalfTileOverlayGreyscale180 @@ -6454,11 +6330,23 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 4873: -37,-39 - 4874: -38,-39 - 4875: -38,-38 7209: 92,-72 7210: 102,-72 + 12540: -43,-38 + 12541: -43,-39 + 12542: -43,-40 + 12543: -41,-39 + 12544: -41,-38 + 12545: -39,-40 + 12546: -39,-39 + 12547: -39,-38 + 12548: -37,-40 + 12549: -37,-39 + 12550: -37,-38 + 12569: -41,-40 + 12570: -38,-40 + 12571: -38,-39 + 12572: -38,-38 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -6503,16 +6391,6 @@ entities: 3907: -5,23 7192: 104,-68 7203: 94,-68 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 4879: -40,-39 - 4880: -40,-38 - 4885: -41,-39 - 4886: -43,-38 - 4887: -43,-39 - 7906: -41,-38 - node: color: '#52DDE993' id: HalfTileOverlayGreyscale90 @@ -6573,6 +6451,11 @@ entities: id: MarkupSquare decals: 12086: 49,21 + - node: + color: '#52B4E996' + id: MarkupSquareQuater + decals: + 12573: -39,-39 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay @@ -11340,16 +11223,16 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 4882: -39,-40 - 4883: -39,-39 - 4884: -39,-38 - 4888: -42,-39 - 4893: -41,-39 12057: 62,-2 12058: 62,-3 12059: 62,-4 12060: 62,-5 12061: 62,-6 + 12555: -42,-39 + 12556: -42,-40 + 12561: -36,-40 + 12562: -36,-39 + 12565: -40,-38 - node: color: '#66ED5393' id: QuarterTileOverlayGreyscale @@ -11414,9 +11297,6 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 4892: -42,-39 - 4894: -43,-40 - 4895: -43,-40 12070: 62,-6 12071: 63,-6 12072: 64,-6 @@ -11425,6 +11305,10 @@ entities: 12075: 65,-4 12076: 65,-3 12077: 65,-2 + 12554: -43,-40 + 12560: -37,-40 + 12567: -41,-39 + 12568: -41,-40 - node: color: '#66ED5393' id: QuarterTileOverlayGreyscale180 @@ -11503,11 +11387,14 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 4876: -37,-38 - 4904: -37,-40 - 4905: -37,-40 - 7907: -41,-38 - 7908: -42,-38 + 12552: -42,-38 + 12553: -42,-39 + 12557: -40,-40 + 12558: -36,-39 + 12559: -36,-38 + 12566: -40,-39 + 12575: -42,-40 + 12576: -36,-40 - node: color: '#52DDE993' id: QuarterTileOverlayGreyscale270 @@ -11587,11 +11474,10 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 4877: -38,-38 - 4881: -40,-40 - 4889: -41,-40 - 4890: -43,-40 - 4891: -42,-39 + 12551: -43,-38 + 12563: -37,-38 + 12564: -41,-38 + 12574: -39,-38 - node: color: '#52DDE993' id: QuarterTileOverlayGreyscale90 @@ -12023,6 +11909,13 @@ entities: 9904: 25,-31 9948: -28,-42 9949: -27,-42 + - node: + color: '#EFB34196' + id: WarnFullGreyscale + decals: + 12372: 78,-1 + 12373: 82,-1 + 12374: 86,-1 - node: color: '#FFFFFFFF' id: WarnLineE @@ -12097,6 +11990,12 @@ entities: id: WarnLineGreyscaleE decals: 1749: 46,-87 + - node: + color: '#8BDA8EFF' + id: WarnLineGreyscaleE + decals: + 12352: 86,-5 + 12353: 86,-6 - node: color: '#9FED5896' id: WarnLineGreyscaleE @@ -12125,13 +12024,6 @@ entities: id: WarnLineGreyscaleE decals: 9556: 29,-37 - - node: - cleanable: True - color: '#C6FF91FF' - id: WarnLineGreyscaleE - decals: - 10996: 86,-6 - 10997: 86,-5 - node: color: '#D381C996' id: WarnLineGreyscaleE @@ -13804,11 +13696,115 @@ entities: decals: 9141: 50.35831,-37.718464 9149: 58.777966,-43.123447 + - node: + cleanable: True + color: '#FF0000FF' + id: bushsnowa1 + decals: + 12666: 14.146553,-62.193375 + 12667: 5.128832,-59.290485 - node: color: '#FED83DFF' id: bushsnowa2 decals: 9140: 46.905186,-42.76534 + - node: + cleanable: True + color: '#FF0000FF' + id: bushsnowa3 + decals: + 12655: 13.741725,-61.71254 + 12657: 14.19485,-61.99379 + - node: + cleanable: True + color: '#FF0000FF' + id: bushsnowb1 + decals: + 12656: 13.69485,-62.165665 + - node: + cleanable: True + color: '#FF0000FF' + id: bushsnowb3 + decals: + 12660: 9.768258,-54.19167 + 12661: 10.283883,-54.113544 + 12662: 9.940133,-53.738544 + 12663: 4.7677217,-59.207294 + 12664: 5.2677217,-59.19167 + 12665: 5.0333467,-58.801044 + - node: + cleanable: True + color: '#32CD32FF' + id: dot + decals: + 12519: -37.21662,-29.268173 + 12520: -37.12693,-29.423096 + 12521: -37.11878,-29.545399 + 12522: -37.10247,-29.602474 + 12523: -36.963856,-29.520939 + 12524: -37.029087,-29.333403 + 12525: -37.045395,-29.276327 + 12526: -36.914932,-29.504631 + 12527: -36.923088,-29.594322 + 12528: -36.980164,-29.626938 + 12529: -37.094315,-29.63509 + 12530: -37.135086,-29.716629 + 12531: -37.10247,-29.504631 + 12532: -37.004623,-29.300789 + 12533: -36.923088,-29.284481 + 12534: -36.866013,-29.34971 + 12535: -36.80078,-29.382324 + 12536: -36.784473,-29.398632 + 12537: -37.03724,-29.317095 + 12538: -37.167698,-29.34971 + 12539: -37.33893,-29.382324 + - node: + cleanable: True + color: '#61A00379' + id: dot + decals: + 12482: -37.671436,-30.138626 + 12483: -37.712204,-30.04078 + 12484: -37.777435,-29.91032 + 12485: -37.540977,-30.073395 + 12486: -37.540977,-30.073395 + 12487: -37.22298,-29.282482 + 12488: -37.28821,-29.135715 + 12489: -37.076214,-29.249868 + 12490: -37.076214,-29.176485 + 12491: -36.99468,-29.119408 + 12492: -36.986523,-29.33956 + 12493: -36.87237,-29.258022 + 12494: -36.790833,-29.200947 + 12495: -36.70114,-29.152023 + 12496: -36.70114,-29.160177 + 12497: -36.79899,-29.315098 + 12498: -36.921295,-29.372173 + 12499: -36.962063,-29.429249 + 12500: -36.962063,-29.502632 + 12501: -37.035446,-29.355867 + 12502: -37.09252,-29.192791 + 12503: -37.100677,-29.103102 + 12504: -36.91314,-29.160177 + 12505: -37.271904,-28.907412 + 12506: -37.377903,-29.258022 + 12507: -37.255596,-29.347713 + 12508: -37.141445,-29.51894 + 12509: -37.13329,-29.584171 + - node: + cleanable: True + color: '#71A457FF' + id: dot + decals: + 12510: -37.263752,-29.184639 + 12511: -37.157753,-29.347713 + 12512: -37.13329,-29.461864 + 12513: -37.06806,-29.665707 + 12514: -37.059906,-29.755398 + 12515: -36.84791,-29.347713 + 12516: -37.010986,-29.290636 + 12517: -37.051754,-29.57602 + 12518: -37.0436,-29.771706 - node: color: '#7C0000FF' id: dot @@ -13822,6 +13818,72 @@ entities: 7174: 101.5349,-49.733192 7175: 100.89427,-50.233192 7176: 100.56615,-49.592567 + - node: + cleanable: True + color: '#951710FF' + id: e + decals: + 12643: 42.17253,-0.9192984 + 12650: 73.2103,-3.1683846 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#DE3A3A96' + id: footprint + decals: + 12398: -53.63488,-21.629107 + 12399: -55.283012,-20.832811 + 12400: -54.90141,-21.180033 + 12401: -54.706966,-21.763367 + 12402: -53.261013,-22.35133 + 12403: -55.16365,-20.397625 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#DE3A3A96' + id: footprint + decals: + 12578: -50.22609,-28.141068 + 12579: -50.710464,-28.344193 + 12580: -51.19484,-28.156693 + 12581: -51.66359,-28.375443 + 12582: -52.034176,-28.125443 + 12583: -52.409176,-28.406693 + 12584: -52.940426,-28.094193 + 12588: -54.773598,-28.797318 + 12589: -55.132973,-29.219193 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#DE3A3A96' + id: footprint + decals: + 12585: -53.242348,-28.531693 + 12586: -53.929848,-28.406693 + 12587: -54.070473,-28.937943 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#DE3A3A96' + id: footprint + decals: + 12590: -55.632973,-29.044178 + 12591: -55.882973,-29.622303 + 12592: -56.398598,-29.512928 + 12593: -56.539223,-30.106678 + - node: + cleanable: True + angle: 2.2689280275926285 rad + color: '#DE3A3A96' + id: footprint + decals: + 12594: -57.023598,-30.137928 + - node: + cleanable: True + color: '#951710FF' + id: g + decals: + 12642: 41.852383,-0.76582384 - node: color: '#2D7230FF' id: grasssnow @@ -13969,36 +14031,28 @@ entities: decals: 9697: -7.1601906,-26.035517 9702: -8.981459,-25.941767 - - node: - color: '#9C2020FF' - id: grasssnowa3 - decals: - 9837: 14.115234,-61.40716 - node: color: '#FFFFFFFF' id: grasssnowa3 decals: 9700: -7.950208,-27.879267 - - node: - color: '#9C2020FF' - id: grasssnowb3 - decals: - 9836: 14.912109,-61.90716 - node: color: '#FFFFFFFF' id: grasssnowb3 decals: 9701: -8.918959,-26.863642 - - node: - color: '#9C2020FF' - id: grasssnowc1 - decals: - 9835: 13.951408,-61.985287 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: 9699: -8.872084,-27.863642 + - node: + cleanable: True + color: '#951710FF' + id: h + decals: + 12648: 72.79364,-3.1579676 + 12649: 72.81447,-3.147551 - node: color: '#FFFFFFFF' id: heart @@ -14009,11 +14063,35 @@ entities: id: i decals: 9224: 84.58303,-65.14355 + - node: + cleanable: True + color: '#951710FF' + id: l + decals: + 12651: 73.61655,-3.1579676 - node: color: '#FFFFFFFF' id: n decals: 6938: -57,-100 + - node: + cleanable: True + color: '#951710FF' + id: o + decals: + 12645: 42.984436,-1.3255484 + - node: + cleanable: True + color: '#9FED5896' + id: o + decals: + 12441: -37.364815,-29.908596 + - node: + cleanable: True + color: '#951710FF' + id: p + decals: + 12652: 73.97072,-3.147551 - node: cleanable: True color: '#A020F0FF' @@ -14033,24 +14111,58 @@ entities: id: rune1 decals: 8104: -85,-27 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#DE3A3A96' + id: rune1 + decals: + 12436: -36.00174,-53.02812 + 12439: -39.236115,-52.418743 - node: cleanable: True color: '#A91409CC' id: rune2 decals: 8105: -86,-28 + - node: + cleanable: True + color: '#FA750096' + id: rune2 + decals: + 12577: -42.050926,-34.121315 - node: cleanable: True color: '#A91409CC' id: rune3 decals: 8106: -86,-26 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#DE3A3A96' + id: rune5 + decals: + 12438: -39.986115,-55.199993 - node: cleanable: True color: '#A91409CC' id: rune6 decals: 8107: -87,-27 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#DE3A3A96' + id: rune6 + decals: + 12437: -39.97049,-53.043743 + - node: + cleanable: True + color: '#FFFFFFFF' + id: safe + decals: + 12384: 1.9940939,-52.00569 - node: cleanable: True color: '#A91409CC' @@ -14062,6 +14174,56 @@ entities: id: skull decals: 6937: -55,-102 + - node: + cleanable: True + color: '#32CD3279' + id: smallbrush + decals: + 12442: -37.454506,-29.98198 + 12443: -37.226204,-29.737366 + 12444: -36.85113,-29.729214 + 12445: -36.728825,-29.76183 + 12446: -36.65544,-29.884132 + 12447: -36.64729,-29.941212 + 12448: -36.663597,-30.030903 + 12449: -36.704365,-30.104286 + 12450: -36.82667,-30.136898 + 12451: -37.324047,-30.055363 + 12452: -37.37297,-30.136898 + 12453: -37.37297,-30.17767 + 12454: -37.381123,-30.193977 + 12455: -37.38928,-30.234745 + 12456: -36.769592,-30.20213 + - node: + cleanable: True + color: '#61A00379' + id: smallbrush + decals: + 12457: -37.315895,-30.066578 + 12458: -36.712517,-29.870892 + 12459: -37.364815,-33.840252 + 12460: -37.381123,-33.823944 + 12461: -37.38928,-34.109325 + 12462: -37.315895,-34.19086 + 12463: -37.26697,-34.239784 + 12464: -37.15282,-33.70979 + 12465: -37.136513,-33.68533 + 12466: -36.85113,-33.68533 + 12467: -36.73698,-33.717945 + 12468: -36.720673,-33.76687 + 12469: -36.73698,-34.003326 + 12470: -36.728825,-34.10117 + 12471: -36.76144,-34.239784 + 12472: -36.834824,-34.2724 + 12473: -37.128357,-34.313168 + 12474: -37.17728,-34.345783 + 12475: -37.185432,-34.370243 + 12476: -37.079437,-34.38655 + 12477: -36.95713,-34.394703 + 12478: -36.82667,-34.394703 + 12479: -36.720673,-34.378395 + 12480: -36.622826,-34.223476 + 12481: -36.63098,-33.717945 - node: cleanable: True color: '#0000000C' @@ -14119,6 +14281,63 @@ entities: 7023: -70.96783,-1.3289509 7024: -70.986176,-1.7509065 7025: -71.022865,-1.9527112 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#79150096' + id: splatter + decals: + 12409: -55.35599,-40.821285 + 12410: -54.66849,-40.883785 + 12411: -55.840366,-41.30566 + 12412: -54.41849,-40.290035 + 12413: -55.527866,-40.21191 + 12414: -54.98099,-40.415035 + 12415: -55.82474,-40.99316 + 12416: -54.26224,-41.227535 + 12417: -45.539043,-24.025991 + 12418: -45.007793,-24.057241 + 12419: -45.375,-22.041616 + 12420: -45.359375,-19.070707 + 12430: -35.66167,-56.09848 + 12431: -35.208546,-55.989105 + 12432: -35.09917,-55.97348 + 12433: -34.927296,-56.082855 + 12434: -35.16167,-56.34848 + - node: + cleanable: True + color: '#79150096' + id: splatter + decals: + 12396: -55.849,-20.130264 + - node: + cleanable: True + angle: 2.2689280275926285 rad + color: '#79150096' + id: splatter + decals: + 12609: -49.091892,-27.454807 + 12610: -48.935642,-27.048557 + 12611: -49.091892,-26.720432 + 12612: -49.279392,-27.001682 + 12613: -49.341892,-27.236057 + 12614: -49.357517,-27.486057 + 12615: -48.779392,-27.111057 + 12627: 42.117886,9.871019 + 12628: 42.16476,10.199144 + 12629: 42.274136,10.277269 + 12630: 42.28976,9.777269 + 12631: 41.97726,10.027269 + 12632: 41.91476,9.824144 + 12633: 66.17969,9.993607 + 12634: 66.14844,9.493607 + 12635: 66.39844,7.8686066 + 12636: 66.42969,9.259232 + 12637: 66.53906,7.9779816 + 12638: 66.71094,7.5092316 + 12639: 66.50781,8.665482 + 12640: 66.50781,8.946732 + 12641: 66.71094,10.368607 - node: cleanable: True color: '#7C0000FF' @@ -14168,6 +14387,64 @@ entities: 8174: -81.97885,-26.694208 8175: -82.21323,-24.647333 8176: -84.33823,-26.846998 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#DE3A3A96' + id: splatter + decals: + 12404: -55.121616,-41.077972 + 12405: -55.54349,-40.687347 + 12406: -54.777866,-40.687347 + 12407: -55.090366,-40.99316 + 12408: -55.090366,-40.540035 + 12421: -44.953125,-19.039457 + 12422: -45.234375,-26.109701 + 12423: -45.046875,-25.172201 + 12424: -35.84917,-56.020355 + 12425: -35.271046,-55.832855 + 12426: -34.88042,-55.75473 + 12427: -35.427296,-56.207855 + 12428: -36.083546,-56.16098 + 12429: -35.53667,-55.582855 + 12435: -35.84353,-55.719116 + - node: + cleanable: True + color: '#DE3A3A96' + id: splatter + decals: + 12385: -55.49577,-20.024687 + 12386: -55.605145,-20.337187 + 12387: -56.167645,-19.962187 + 12388: -55.83952,-19.977812 + 12389: -56.18327,-20.446562 + 12390: -55.636395,-20.337187 + 12391: -55.105145,-20.884062 + 12392: -54.90202,-21.305937 + 12393: -53.261395,-22.055937 + 12394: -54.33952,-21.837187 + 12395: -52.917645,-22.227812 + 12397: -53.114624,-22.58339 + - node: + cleanable: True + angle: 2.2689280275926285 rad + color: '#DE3A3A96' + id: splatter + decals: + 12595: -57.107517,-30.751682 + 12596: -56.826267,-30.704807 + 12597: -56.748142,-30.689182 + 12598: -56.826267,-30.720432 + 12599: -56.951267,-30.782932 + 12600: -57.201267,-30.720432 + 12601: -57.170017,-31.329807 + 12602: -57.013767,-31.423557 + 12603: -56.795017,-31.501682 + 12604: -49.045017,-27.642307 + 12605: -49.404392,-27.923557 + 12606: -48.716892,-27.470432 + 12607: -49.279392,-26.548557 + 12608: -48.748142,-26.470432 - node: color: '#FF0000FF' id: splatter @@ -14181,11 +14458,24 @@ entities: decals: 6983: -68.91736,-7.389276 6984: -68.60486,-6.889276 + - node: + cleanable: True + color: '#951710FF' + id: t + decals: + 12644: 42.44277,-0.97138166 + 12647: 43.651104,-1.4817982 - node: color: '#FFFFFFFF' id: t decals: 9225: 84.98928,-65.1748 + - node: + cleanable: True + color: '#951710FF' + id: u + decals: + 12646: 43.359436,-1.4192982 - node: color: '#FFFFFFFF' id: w @@ -14230,7 +14520,8 @@ entities: 0: 58880 1: 15 2,0: - 0: 64187 + 0: 64185 + 2: 2 2,1: 0: 47887 2,2: @@ -14262,7 +14553,8 @@ entities: 4,2: 0: 12475 4,3: - 0: 48947 + 0: 48945 + 3: 2 0,-4: 0: 35983 0,-5: @@ -14295,7 +14587,7 @@ entities: 0: 26471 2,-4: 0: 60159 - 2: 1024 + 4: 1024 2,-3: 1: 35056 0: 12288 @@ -14473,7 +14765,8 @@ entities: 3,5: 0: 3822 4,4: - 0: 65283 + 5: 1 + 0: 65282 4,5: 0: 4095 4,6: @@ -14522,7 +14815,7 @@ entities: 0: 65535 8,-4: 0: 65315 - 3: 4 + 2: 4 8,-3: 0: 65535 8,-2: @@ -14533,19 +14826,19 @@ entities: 0: 56733 5,2: 0: 12767 - 4: 32768 + 6: 32768 5,3: 0: 8743 - 4: 2184 + 6: 2184 5,4: 0: 26190 6,1: 0: 56783 6,2: 0: 35037 - 4: 12288 + 6: 12288 6,3: - 4: 819 + 6: 819 0: 2248 6,4: 0: 61695 @@ -14560,7 +14853,8 @@ entities: 8,0: 0: 65535 8,1: - 0: 65535 + 0: 61439 + 7: 4096 8,2: 0: 65522 8,3: @@ -14671,7 +14965,7 @@ entities: 1: 11948 12,4: 0: 12043 - 5: 4 + 8: 4 12,5: 0: 65535 12,6: @@ -14723,7 +15017,9 @@ entities: 4,-6: 0: 11002 3,-6: - 0: 7645 + 0: 1501 + 8: 4096 + 2: 2048 5,-8: 0: 7448 1: 32768 @@ -14800,7 +15096,8 @@ entities: 13,3: 0: 21969 13,-1: - 0: 56783 + 0: 52687 + 5: 4096 13,4: 0: 1861 14,0: @@ -14811,7 +15108,7 @@ entities: 0: 49087 14,3: 0: 32754 - 5: 32768 + 8: 32768 14,-1: 0: 65535 15,0: @@ -15458,7 +15755,7 @@ entities: 0: 65399 13,-20: 0: 12543 - 5: 32768 + 8: 32768 13,-19: 0: 65343 13,-18: @@ -15610,7 +15907,8 @@ entities: 3,-15: 0: 65535 4,-14: - 0: 28671 + 0: 26623 + 7: 2048 3,-14: 0: 4095 5,-15: @@ -15635,44 +15933,44 @@ entities: 0: 30471 22,-19: 1: 9143 - 4: 32768 + 6: 32768 22,-17: 1: 45858 - 4: 136 + 6: 136 22,-20: 1: 30583 - 4: 8 + 6: 8 22,-21: 1: 30448 22,-16: 1: 6635 22,-18: 1: 8738 - 4: 34952 + 6: 34952 23,-20: - 4: 223 + 6: 223 1: 12288 23,-19: 1: 115 - 4: 61440 + 6: 61440 23,-18: - 4: 65535 + 6: 65535 23,-17: - 4: 255 + 6: 255 1: 8192 23,-21: - 4: 53384 + 6: 53384 1: 51 23,-16: 1: 25383 24,-20: - 4: 61695 + 6: 61695 24,-19: - 4: 57599 + 6: 57599 24,-18: - 4: 61167 + 6: 61167 24,-17: - 4: 64239 + 6: 64239 21,-15: 0: 1911 21,-14: @@ -15686,7 +15984,7 @@ entities: 23,-14: 0: 61164 24,-16: - 4: 3839 + 6: 3839 24,-15: 1: 3918 24,-14: @@ -15740,28 +16038,28 @@ entities: 16,-22: 1: 30169 8,-24: - 6: 1 - 7: 4352 + 9: 1 + 10: 4352 1: 17476 8,-25: - 6: 4096 + 9: 4096 1: 17476 - 8: 17 + 11: 17 7,-24: - 6: 12 - 7: 52224 + 9: 12 + 10: 52224 1: 4369 8,-23: - 6: 272 + 9: 272 1: 17476 7,-23: - 6: 3264 + 9: 3264 1: 4369 8,-22: - 6: 17 + 9: 17 1: 21572 7,-22: - 6: 204 + 9: 204 1: 61713 9,-24: 0: 65535 @@ -15810,8 +16108,8 @@ entities: 1: 34952 7,-25: 1: 4369 - 6: 49152 - 8: 204 + 9: 49152 + 11: 204 0,-24: 0: 52509 0,-25: @@ -15819,7 +16117,8 @@ entities: -1,-24: 0: 20479 0,-23: - 0: 65535 + 0: 65531 + 5: 4 -1,-23: 0: 36590 0,-22: @@ -15835,7 +16134,8 @@ entities: 1,-24: 0: 65518 1,-23: - 0: 65535 + 0: 65279 + 7: 256 1,-22: 0: 62207 1,-21: @@ -15853,7 +16153,8 @@ entities: 2,-21: 0: 61182 2,-25: - 0: 65535 + 0: 61311 + 7: 4224 2,-20: 0: 61679 3,-25: @@ -15876,7 +16177,8 @@ entities: 0: 63496 1: 1 0,-16: - 0: 65523 + 0: 65395 + 8: 128 1,-19: 0: 47615 1,-18: @@ -16015,7 +16317,9 @@ entities: -2,-24: 0: 6007 -2,-23: - 0: 65535 + 0: 63351 + 8: 2056 + 2: 128 -2,-22: 0: 46079 -2,-25: @@ -16162,7 +16466,7 @@ entities: 0: 36590 -9,-19: 0: 34952 - 4: 13104 + 6: 13104 -8,-18: 0: 56797 -9,-18: @@ -16294,7 +16598,7 @@ entities: 0: 15291 -10,-19: 0: 14128 - 4: 34944 + 6: 34944 -10,-18: 0: 63344 -10,-17: @@ -16544,7 +16848,8 @@ entities: -10,-11: 0: 64767 -10,-10: - 0: 65535 + 0: 57343 + 7: 8192 -10,-9: 0: 61152 -10,-8: @@ -16747,7 +17052,7 @@ entities: 0: 65535 -13,-6: 0: 56525 - 9: 256 + 12: 256 -12,-5: 0: 61695 -13,-5: @@ -16907,7 +17212,8 @@ entities: -11,0: 0: 30295 -10,-3: - 0: 63679 + 0: 63647 + 3: 32 -10,-2: 0: 30479 -10,-1: @@ -17117,7 +17423,8 @@ entities: -4,-8: 0: 63235 -4,-7: - 0: 63367 + 0: 63363 + 5: 4 -4,-6: 0: 22519 -8,-3: @@ -17206,7 +17513,7 @@ entities: 0: 65512 -3,-14: 0: 4368 - 10: 3264 + 13: 3264 -3,-13: 0: 56593 -3,-12: @@ -17224,7 +17531,7 @@ entities: -1,-15: 0: 65278 -1,-14: - 8: 816 + 11: 816 0: 2184 -1,-13: 0: 30583 @@ -17305,7 +17612,8 @@ entities: 1,-14: 0: 28671 2,-15: - 0: 65535 + 0: 65531 + 14: 4 2,-14: 0: 4095 0,-7: @@ -17321,13 +17629,16 @@ entities: 1,-6: 0: 25702 2,-7: - 0: 65295 + 0: 65039 + 8: 256 2,-6: - 0: 65535 + 0: 61439 + 2: 4096 -3,-8: 0: 16368 -3,-7: - 0: 15291 + 0: 14747 + 5: 544 -3,-6: 0: 3003 -2,-7: @@ -17375,10 +17686,10 @@ entities: 7,-27: 1: 65527 8,-26: - 10: 272 + 13: 272 1: 17476 7,-26: - 10: 3264 + 13: 3264 1: 4369 9,-28: 0: 30464 @@ -17686,7 +17997,7 @@ entities: -6,-30: 1: 8753 25,-16: - 4: 17 + 6: 17 1: 18572 25,-15: 1: 806 @@ -17694,7 +18005,7 @@ entities: 1: 7 0: 65280 25,-17: - 4: 4335 + 6: 4335 1: 32768 26,-16: 1: 1003 @@ -17704,7 +18015,7 @@ entities: 0: 30495 26,-17: 1: 43144 - 4: 51 + 6: 51 27,-16: 1: 3634 27,-15: @@ -17719,25 +18030,25 @@ entities: 28,-13: 1: 21847 24,-21: - 4: 61535 + 6: 61535 25,-20: - 4: 4215 + 6: 4215 1: 32768 25,-19: - 4: 57361 + 6: 57361 1: 200 25,-18: - 4: 61167 + 6: 61167 25,-21: - 4: 28723 + 6: 28723 1: 136 26,-20: 1: 63901 26,-19: 1: 35001 - 4: 12288 + 6: 12288 26,-18: - 4: 13107 + 6: 13107 1: 34952 26,-21: 1: 22001 @@ -17756,19 +18067,19 @@ entities: 23,-24: 1: 996 24,-23: - 4: 65534 + 6: 65534 23,-23: - 4: 51328 + 6: 51328 24,-22: - 4: 20735 + 6: 20735 23,-22: - 4: 32972 + 6: 32972 25,-24: 1: 2277 25,-23: - 4: 29488 + 6: 29488 25,-22: - 4: 12407 + 6: 12407 25,-25: 1: 28928 26,-24: @@ -17845,6 +18156,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.1495 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 5000 moles: @@ -17861,10 +18202,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 293.14975 moles: - - 21.813705 - - 82.06108 + - 20.078888 + - 75.53487 - 0 - 0 - 0 @@ -17890,6 +18231,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: @@ -17980,6 +18336,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.43119 + - 88.145905 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -19382,6 +19753,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 2038 + - uid: 25523 + components: + - type: Transform + parent: 24754 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 24754 - proto: ActionToggleJetpack entities: - uid: 18 @@ -25246,20 +25624,40 @@ entities: - type: Transform pos: 6.5,-21.5 parent: 2 -- proto: AirlockMiningGlassLocked + - uid: 40940 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 +- proto: AirlockMiningGlass entities: - uid: 1159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-48.5 + pos: 0.5,-45.5 parent: 2 - uid: 1161 components: - type: Transform - rot: 1.5707963267948966 rad + pos: -4.5,-48.5 + parent: 2 + - uid: 11629 + components: + - type: Transform pos: -2.5,-45.5 parent: 2 + - uid: 26267 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 26439 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 +- proto: AirlockMiningGlassLocked + entities: - uid: 5916 components: - type: Transform @@ -25282,29 +25680,16 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-42.5 parent: 2 - - uid: 30855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-43.5 - parent: 2 - - uid: 39084 - components: - - type: Transform - pos: -1.5,-43.5 - parent: 2 - - uid: 39085 + - uid: 29064 components: - type: Transform - pos: -9.5,-44.5 + pos: 17.5,-33.5 parent: 2 -- proto: AirlockMiningLocked - entities: - - uid: 11629 + - uid: 30855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-45.5 + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 parent: 2 - proto: AirlockQuartermasterLocked entities: @@ -27019,6 +27404,16 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-4.5 parent: 2 +- proto: AltarSatana + entities: + - uid: 40977 + components: + - type: MetaData + name: робототехнический алтарь + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-51.5 + parent: 2 - proto: AltarSpawner entities: - uid: 946 @@ -28290,11 +28685,6 @@ entities: - type: Transform pos: -62.5,-15.5 parent: 2 - - uid: 27383 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 2 - uid: 30156 components: - type: Transform @@ -28410,6 +28800,11 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-50.5 parent: 2 + - uid: 39809 + components: + - type: Transform + pos: 74.5,0.5 + parent: 2 - uid: 40217 components: - type: Transform @@ -28428,6 +28823,12 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,11.5 parent: 2 + - uid: 40936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-3.5 + parent: 2 - proto: APCConstructed entities: - uid: 1120 @@ -30723,7 +31124,7 @@ entities: parent: 2 - proto: AtmosFixInstantPlasmaFireMarker entities: - - uid: 26267 + - uid: 40948 components: - type: Transform pos: 10.5,-13.5 @@ -30995,7 +31396,7 @@ entities: - uid: 1539 components: - type: Transform - pos: -41.5,-32.5 + pos: -41.51891,-32.48011 parent: 2 - uid: 1540 components: @@ -31485,6 +31886,21 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 + - uid: 41058 + components: + - type: Transform + pos: 83.5,-0.5 + parent: 2 + - uid: 41059 + components: + - type: Transform + pos: 81.5,-0.5 + parent: 2 + - uid: 41060 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 - proto: BarricadeDirectional entities: - uid: 1640 @@ -31907,11 +32323,6 @@ entities: parent: 2 - proto: Bed entities: - - uid: 1695 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - uid: 1696 components: - type: Transform @@ -31922,11 +32333,6 @@ entities: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 1698 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 2 - uid: 1699 components: - type: Transform @@ -32152,7 +32558,7 @@ entities: - uid: 1729 components: - type: Transform - pos: -38.5,-10.5 + pos: -38.513878,-10.466177 parent: 2 - proto: BedsheetCosmos entities: @@ -32166,6 +32572,14 @@ entities: - type: Transform pos: 14.5,-21.5 parent: 2 +- proto: BedsheetGreen + entities: + - uid: 1751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 - proto: BedsheetHOP entities: - uid: 1733 @@ -32352,11 +32766,6 @@ entities: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 1751 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 2 - uid: 1752 components: - type: Transform @@ -33577,6 +33986,38 @@ entities: rot: 3.141592653589793 rad pos: -53.650185,-19.32859 parent: 2 + - uid: 15590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.506329,15.86167 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: -34.294956,-8.284834 + parent: 2 + - uid: 24001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.443829,15.627295 + parent: 2 + - uid: 41037 + components: + - type: Transform + pos: -34.31058,-8.441084 + parent: 2 + - uid: 41049 + components: + - type: Transform + pos: 13.628463,15.884217 + parent: 2 + - uid: 41050 + components: + - type: Transform + pos: 13.722213,15.806092 + parent: 2 - proto: BlueprintFulton entities: - uid: 34265 @@ -33589,10 +34030,8 @@ entities: - uid: 5963 components: - type: Transform - parent: 26551 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 8.548469,-17.454145 + parent: 2 - proto: BluespaceBeaker entities: - uid: 37918 @@ -34480,6 +34919,11 @@ entities: - type: Transform pos: 1.5257382,-72.23268 parent: 2 + - uid: 41178 + components: + - type: Transform + pos: -8.054919,-96.357735 + parent: 2 - proto: BoxFlashbang entities: - uid: 37924 @@ -34788,6 +35232,13 @@ entities: parent: 2 - proto: BoxLethalshot entities: + - uid: 33561 + components: + - type: Transform + parent: 11053 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 40500 components: - type: Transform @@ -35148,6 +35599,11 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,3.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19525: + - Timer: Open + - Timer: AutoClose - uid: 18774 components: - type: Transform @@ -35160,18 +35616,39 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,4.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 815: + - Timer: Open + - Timer: AutoClose - uid: 19546 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15533: + - Timer: Open + - Timer: AutoClose + 2820: + - Timer: Open + - Timer: AutoClose - uid: 19627 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,0.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11078: + - Timer: Open + - Timer: AutoClose + 11080: + - Timer: Open + - Timer: AutoClose - uid: 36098 components: - type: Transform @@ -35324,6 +35801,11 @@ entities: - type: Transform pos: -17.529854,-32.515293 parent: 2 + - uid: 40954 + components: + - type: Transform + pos: -15.613848,-38.614536 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 29002 @@ -57841,6 +58323,26 @@ entities: - type: Transform pos: 77.5,-8.5 parent: 2 + - uid: 24698 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 - uid: 24783 components: - type: Transform @@ -58016,6 +58518,11 @@ entities: - type: Transform pos: 77.5,-9.5 parent: 2 + - uid: 27383 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 2 - uid: 27430 components: - type: Transform @@ -58171,6 +58678,11 @@ entities: - type: Transform pos: 59.5,-12.5 parent: 2 + - uid: 30415 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 - uid: 31431 components: - type: Transform @@ -58401,6 +58913,16 @@ entities: - type: Transform pos: 87.5,-9.5 parent: 2 + - uid: 31515 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 2 + - uid: 31517 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 2 - uid: 32762 components: - type: Transform @@ -84334,61 +84856,16 @@ entities: - type: Transform pos: -57.5,-24.5 parent: 2 - - uid: 31088 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 2 - uid: 31353 components: - type: Transform pos: -56.5,-24.5 parent: 2 - - uid: 31515 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 2 - - uid: 31517 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 2 - - uid: 31520 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 2 - - uid: 31521 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 2 - - uid: 31522 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 2 - - uid: 31523 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 2 - - uid: 31524 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 2 - uid: 31527 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 31528 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 2 - uid: 31529 components: - type: Transform @@ -85719,6 +86196,16 @@ entities: - type: Transform pos: 49.5,-2.5 parent: 2 + - uid: 40937 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 40938 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 - proto: CableMVStack entities: - uid: 11581 @@ -86004,6 +86491,26 @@ entities: parent: 2 - proto: CandleBlackInfinite entities: + - uid: 18500 + components: + - type: Transform + pos: 14.246059,12.862975 + parent: 2 + - uid: 18539 + components: + - type: Transform + pos: 16.324184,14.1911 + parent: 2 + - uid: 21038 + components: + - type: Transform + pos: 10.766112,17.050476 + parent: 2 + - uid: 29411 + components: + - type: Transform + pos: 9.761757,13.6286 + parent: 2 - uid: 37363 components: - type: Transform @@ -86069,6 +86576,46 @@ entities: - type: Transform pos: -3.6000676,5.371558 parent: 2 + - uid: 40971 + components: + - type: Transform + pos: 13.797782,16.316013 + parent: 2 + - uid: 41026 + components: + - type: Transform + pos: 13.235282,16.331638 + parent: 2 + - uid: 41033 + components: + - type: Transform + pos: 7.168007,14.112975 + parent: 2 + - uid: 41035 + components: + - type: Transform + pos: 17.007788,16.639935 + parent: 2 + - uid: 41068 + components: + - type: Transform + pos: 34.39454,-3.4751449 + parent: 2 + - uid: 41070 + components: + - type: Transform + pos: 36.472664,-3.2876449 + parent: 2 + - uid: 41071 + components: + - type: Transform + pos: 34.11329,-3.3188949 + parent: 2 + - uid: 41085 + components: + - type: Transform + pos: -31.205826,5.134735 + parent: 2 - proto: CandleBlackSmall entities: - uid: 40855 @@ -86095,6 +86642,28 @@ entities: - type: Transform pos: -5.0531926,5.465308 parent: 2 + - uid: 41134 + components: + - type: Transform + pos: 28.29879,1.4194047 + parent: 2 +- proto: CandleBlue + entities: + - uid: 41086 + components: + - type: Transform + pos: -30.830826,2.49411 + parent: 2 + - uid: 41087 + components: + - type: Transform + pos: -26.22145,1.6972351 + parent: 2 + - uid: 41088 + components: + - type: Transform + pos: -26.549576,1.7441101 + parent: 2 - proto: CandleBlueInfinite entities: - uid: 11635 @@ -86114,6 +86683,28 @@ entities: - type: Transform pos: -41.6622,-100.18897 parent: 2 + - uid: 41143 + components: + - type: Transform + pos: 37.845623,-0.5735898 + parent: 2 + - uid: 41144 + components: + - type: Transform + pos: 37.892498,1.5357852 + parent: 2 +- proto: CandleBlueSmall + entities: + - uid: 41089 + components: + - type: Transform + pos: -26.424576,1.5722351 + parent: 2 + - uid: 41090 + components: + - type: Transform + pos: -26.7527,1.7753601 + parent: 2 - proto: CandleBlueSmallInfinite entities: - uid: 11636 @@ -86123,6 +86714,38 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 41091 + components: + - type: Transform + pos: -33.018326,3.103485 + parent: 2 + - uid: 41093 + components: + - type: Transform + pos: -32.487076,8.49411 + parent: 2 +- proto: CandleGreenSmallInfinite + entities: + - uid: 41139 + components: + - type: Transform + pos: 33.15175,0.7545352 + parent: 2 + - uid: 41140 + components: + - type: Transform + pos: 33.511124,0.0670352 + parent: 2 + - uid: 41141 + components: + - type: Transform + pos: 36.423748,1.4732852 + parent: 2 + - uid: 41142 + components: + - type: Transform + pos: 36.423748,-0.6360898 + parent: 2 - proto: CandleInfinite entities: - uid: 39058 @@ -86140,6 +86763,45 @@ entities: - type: Transform pos: 33.968185,-63.183113 parent: 2 +- proto: CandlePurpleInfinite + entities: + - uid: 40965 + components: + - type: Transform + pos: -36.361115,-53.62187 + parent: 2 + - uid: 40966 + components: + - type: Transform + pos: -34.704865,-53.62187 + parent: 2 + - uid: 41072 + components: + - type: Transform + pos: 32.125046,6.9690967 + parent: 2 + - uid: 41136 + components: + - type: Transform + pos: 36.323624,3.6139102 + parent: 2 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 40962 + components: + - type: Transform + pos: -40.18924,-52.71562 + parent: 2 + - uid: 40963 + components: + - type: Transform + pos: -36.34549,-51.30937 + parent: 2 + - uid: 40964 + components: + - type: Transform + pos: -34.59549,-51.231243 + parent: 2 - proto: CandleRedInfinite entities: - uid: 39060 @@ -86152,6 +86814,23 @@ entities: - type: Transform pos: 33.702988,-64.57374 parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 40967 + components: + - type: Transform + pos: -39.767365,-55.668743 + parent: 2 + - uid: 41069 + components: + - type: Transform + pos: 31.188614,5.6395993 + parent: 2 + - uid: 41074 + components: + - type: Transform + pos: 31.813614,4.5770993 + parent: 2 - proto: CandyBucket entities: - uid: 1586 @@ -86286,6 +86965,16 @@ entities: - type: Transform pos: 12.504614,-24.44699 parent: 2 + - uid: 40944 + components: + - type: Transform + pos: 12.501594,-24.445663 + parent: 2 + - uid: 40945 + components: + - type: Transform + pos: 12.501594,-24.445663 + parent: 2 - proto: CannonBallGrapeshot entities: - uid: 26497 @@ -86426,11 +87115,26 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,15.5 parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 - uid: 9686 components: - type: Transform pos: 52.5,-22.5 parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 - uid: 11687 components: - type: Transform @@ -86540,6 +87244,51 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 + - uid: 11834 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 - uid: 14734 components: - type: Transform @@ -87275,11 +88024,10 @@ entities: parent: 2 - proto: CarpetSBlue entities: - - uid: 4599 + - uid: 9346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,16.5 + pos: 11.5,15.5 parent: 2 - uid: 10220 components: @@ -87287,46 +88035,11 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,20.5 parent: 2 - - uid: 11834 - components: - - type: Transform - pos: 11.5,15.5 - parent: 2 - uid: 11835 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 11836 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - - uid: 11837 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - - uid: 11838 - components: - - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 11839 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 11840 - components: - - type: Transform - pos: 16.5,12.5 - parent: 2 - - uid: 11841 - components: - - type: Transform - pos: 16.5,13.5 - parent: 2 - uid: 11842 components: - type: Transform @@ -87417,21 +88130,6 @@ entities: - type: Transform pos: 2.5,27.5 parent: 2 - - uid: 11865 - components: - - type: Transform - pos: 13.5,15.5 - parent: 2 - - uid: 11867 - components: - - type: Transform - pos: 15.5,15.5 - parent: 2 - - uid: 11868 - components: - - type: Transform - pos: 14.5,15.5 - parent: 2 - uid: 11869 components: - type: Transform @@ -87598,18 +88296,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 - - uid: 29410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,16.5 - parent: 2 - - uid: 29411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,16.5 - parent: 2 - proto: CarpStatue entities: - uid: 33540 @@ -87656,6 +88342,51 @@ entities: - type: Transform pos: 69.371826,-36.578964 parent: 2 + - uid: 41032 + components: + - type: Transform + pos: 16.80856,14.40985 + parent: 2 + - uid: 41098 + components: + - type: Transform + pos: 89.637054,-6.710886 + parent: 2 + - uid: 41101 + components: + - type: Transform + pos: 80.941284,-1.0818706 + parent: 2 + - uid: 41105 + components: + - type: Transform + pos: 44.46273,-22.347826 + parent: 2 + - uid: 41113 + components: + - type: Transform + pos: 27.332561,-68.25086 + parent: 2 + - uid: 41155 + components: + - type: Transform + pos: 52.505486,-75.47058 + parent: 2 + - uid: 41158 + components: + - type: Transform + pos: 41.071697,-99.183914 + parent: 2 + - uid: 41159 + components: + - type: Transform + pos: 42.759197,-99.26204 + parent: 2 + - uid: 41181 + components: + - type: Transform + pos: 4.434094,-84.40862 + parent: 2 - proto: CarvedPumpkinLarge entities: - uid: 36688 @@ -87678,6 +88409,31 @@ entities: - type: Transform pos: 56.51484,1.6501288 parent: 2 + - uid: 41082 + components: + - type: Transform + pos: -25.467855,1.7669611 + parent: 2 + - uid: 41095 + components: + - type: Transform + pos: 41.47654,-1.3758259 + parent: 2 + - uid: 41107 + components: + - type: Transform + pos: 47.56566,-13.303312 + parent: 2 + - uid: 41111 + components: + - type: Transform + pos: 27.582561,-76.36847 + parent: 2 + - uid: 41163 + components: + - type: Transform + pos: 10.900659,-96.23715 + parent: 2 - proto: CarvedPumpkinSmall entities: - uid: 1658 @@ -87685,6 +88441,21 @@ entities: - type: Transform pos: -29.479185,13.676671 parent: 2 + - uid: 1698 + components: + - type: Transform + pos: -73.48247,-40.40774 + parent: 2 + - uid: 24591 + components: + - type: Transform + pos: -79.81763,-43.343742 + parent: 2 + - uid: 25510 + components: + - type: Transform + pos: -77.66138,-42.812492 + parent: 2 - uid: 33867 components: - type: Transform @@ -87820,6 +88591,116 @@ entities: - type: Transform pos: -5.4281926,5.527808 parent: 2 + - uid: 40978 + components: + - type: Transform + pos: 33.48439,-57.56116 + parent: 2 + - uid: 40979 + components: + - type: Transform + pos: 35.477978,-58.551838 + parent: 2 + - uid: 40988 + components: + - type: Transform + pos: 34.121334,-58.02281 + parent: 2 + - uid: 40989 + components: + - type: Transform + pos: 34.69617,-58.04727 + parent: 2 + - uid: 40996 + components: + - type: Transform + pos: -37.764503,-28.224033 + parent: 2 + - uid: 40999 + components: + - type: Transform + pos: -55.72875,-27.16272 + parent: 2 + - uid: 41029 + components: + - type: Transform + pos: 10.308559,13.362975 + parent: 2 + - uid: 41030 + components: + - type: Transform + pos: 14.230434,12.644225 + parent: 2 + - uid: 41031 + components: + - type: Transform + pos: 14.574184,12.97235 + parent: 2 + - uid: 41046 + components: + - type: Transform + pos: -7.2295427,9.295349 + parent: 2 + - uid: 41048 + components: + - type: Transform + pos: -8.248118,9.326599 + parent: 2 + - uid: 41067 + components: + - type: Transform + pos: 42.22654,7.18626 + parent: 2 + - uid: 41094 + components: + - type: Transform + pos: 42.304665,3.3112602 + parent: 2 + - uid: 41096 + components: + - type: Transform + pos: 81.37645,-10.623384 + parent: 2 + - uid: 41097 + components: + - type: Transform + pos: 89.517075,-9.623384 + parent: 2 + - uid: 41099 + components: + - type: Transform + pos: 89.77768,-6.273386 + parent: 2 + - uid: 41100 + components: + - type: Transform + pos: 80.253784,-1.0818706 + parent: 2 + - uid: 41109 + components: + - type: Transform + pos: 28.379436,-76.61847 + parent: 2 + - uid: 41133 + components: + - type: Transform + pos: 46.449802,-47.1934 + parent: 2 + - uid: 41160 + components: + - type: Transform + pos: 41.149822,-99.777664 + parent: 2 + - uid: 41161 + components: + - type: Transform + pos: 42.632545,-99.94954 + parent: 2 + - uid: 41162 + components: + - type: Transform + pos: 9.900659,-96.3934 + parent: 2 - proto: Catwalk entities: - uid: 1547 @@ -98882,6 +99763,15 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 38722 +- proto: Chainsaw + entities: + - uid: 23982 + components: + - type: Transform + parent: 16230 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Chair entities: - uid: 7707 @@ -100396,12 +101286,6 @@ entities: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 14094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-19.5 - parent: 2 - uid: 14095 components: - type: Transform @@ -100807,6 +101691,14 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-24.5 parent: 2 +- proto: ChairWeb + entities: + - uid: 41012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.531506,-19.654182 + parent: 2 - proto: ChairWood entities: - uid: 4602 @@ -101088,11 +101980,6 @@ entities: parent: 2 - proto: CheapRollerBed entities: - - uid: 9346 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - uid: 14191 components: - type: Transform @@ -101118,11 +102005,6 @@ entities: - type: Transform pos: -46.5,-29.5 parent: 2 - - uid: 18539 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 2 - proto: CheckerBoard entities: - uid: 40760 @@ -102531,8 +103413,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -102550,6 +103432,14 @@ entities: occludes: True ents: - 14399 + - 6044 + - 11854 + - 14774 + - 14815 + - 25396 + - 25397 + - 25399 + - 25630 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -103369,6 +104259,24 @@ entities: - type: Transform pos: -10.5,-25.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 39462 components: - type: Transform @@ -103688,6 +104596,15 @@ entities: priority: 0 component: ClothingSpeedModifier title: null +- proto: ClothingBackpackDuffelCaptain + entities: + - uid: 37762 + components: + - type: Transform + parent: 33761 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingBackpackDuffelSalvage entities: - uid: 14563 @@ -103783,6 +104700,13 @@ entities: - type: Transform pos: 9.508253,-1.3463131 parent: 2 +- proto: ClothingBeltMercWebbing + entities: + - uid: 27921 + components: + - type: Transform + pos: 10.473449,-22.354832 + parent: 2 - proto: ClothingBeltPlant entities: - uid: 40797 @@ -103945,6 +104869,13 @@ entities: - type: Transform pos: 65.59738,13.374831 parent: 2 +- proto: ClothingEyesGlassesOutlawGlasses + entities: + - uid: 41083 + components: + - type: Transform + pos: -23.1363,6.3886566 + parent: 2 - proto: ClothingEyesHudDiagnostic entities: - uid: 14602 @@ -104650,6 +105581,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 41084 + components: + - type: Transform + pos: -23.089424,6.6230316 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 41177 + components: + - type: Transform + pos: 11.48207,-98.4845 + parent: 2 - proto: ClothingHeadHatPumpkin entities: - uid: 6175 @@ -104738,6 +105683,11 @@ entities: - type: Physics canCollide: False - type: ActionsContainer + - uid: 41080 + components: + - type: Transform + pos: 33.49948,-4.2889094 + parent: 2 - proto: ClothingHeadHatPwig entities: - uid: 14699 @@ -104789,6 +105739,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingHeadHatTophat + entities: + - uid: 41038 + components: + - type: Transform + pos: 16.506329,17.033545 + parent: 2 - proto: ClothingHeadHatTrucker entities: - uid: 14713 @@ -104863,6 +105820,12 @@ entities: - type: Transform pos: 17.635115,9.626244 parent: 2 + - uid: 25705 + components: + - type: Transform + parent: 41053 + - type: Physics + canCollide: False - proto: ClothingHeadHatWitch entities: - uid: 9 @@ -105132,6 +106095,21 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingMaskBat + entities: + - uid: 41044 + components: + - type: Transform + pos: 8.601946,13.464597 + parent: 2 +- proto: ClothingMaskBear + entities: + - uid: 41062 + components: + - type: Transform + parent: 41056 + - type: Physics + canCollide: False - proto: ClothingMaskBreath entities: - uid: 14785 @@ -105290,6 +106268,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingMaskJackal + entities: + - uid: 41064 + components: + - type: Transform + parent: 41057 + - type: Physics + canCollide: False - proto: ClothingMaskMuzzle entities: - uid: 14418 @@ -105310,6 +106296,14 @@ entities: - type: Transform pos: 80.31598,3.37646 parent: 2 +- proto: ClothingMaskRat + entities: + - uid: 41061 + components: + - type: Transform + parent: 41055 + - type: Physics + canCollide: False - proto: ClothingMaskRaven entities: - uid: 17540 @@ -105400,7 +106394,7 @@ entities: - uid: 1085 components: - type: Transform - pos: 10.4807,-22.383314 + pos: 10.469885,-22.367643 parent: 2 - proto: ClothingNeckCloakTrans entities: @@ -105440,7 +106434,7 @@ entities: - uid: 14750 components: - type: Transform - pos: 3.5384512,-62.515625 + pos: 3.4997048,-62.58889 parent: 2 - uid: 14776 components: @@ -105582,8 +106576,10 @@ entities: - uid: 14846 components: - type: Transform - pos: 10.753314,16.138332 - parent: 2 + parent: 16742 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 14847 components: - type: Transform @@ -105889,6 +106885,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 41063 + components: + - type: Transform + parent: 41056 + - type: Physics + canCollide: False - proto: ClothingOuterCoatDetective entities: - uid: 16733 @@ -105928,6 +106930,22 @@ entities: - type: Transform pos: -16.754519,-29.489569 parent: 2 +- proto: ClothingOuterDogi + entities: + - uid: 41065 + components: + - type: Transform + parent: 41057 + - type: Physics + canCollide: False +- proto: ClothingOuterFlannelRed + entities: + - uid: 25653 + components: + - type: Transform + parent: 41053 + - type: Physics + canCollide: False - proto: ClothingOuterGhostSheet entities: - uid: 1983 @@ -105936,6 +106954,11 @@ entities: parent: 5 - type: Physics canCollide: False + - uid: 2301 + components: + - type: Transform + pos: -3.4677386,11.795349 + parent: 2 - uid: 4802 components: - type: Transform @@ -106232,6 +107255,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterHoodieBlack + entities: + - uid: 25812 + components: + - type: Transform + parent: 41055 + - type: Physics + canCollide: False - proto: ClothingOuterHospitalGown entities: - uid: 14889 @@ -106824,6 +107855,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 41176 + components: + - type: Transform + pos: 4.497743,-89.515396 + parent: 2 - proto: ClothingUniformJumpsuitRecruitNT entities: - uid: 14929 @@ -106979,6 +108017,46 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-45.5 parent: 2 + - uid: 41000 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 41001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 2 + - uid: 41002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-25.5 + parent: 2 + - uid: 41008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-24.5 + parent: 2 + - uid: 41011 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 41022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-36.5 + parent: 2 + - uid: 41023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 2 - proto: Cobweb2 entities: - uid: 26106 @@ -107020,6 +108098,97 @@ entities: rot: 3.141592653589793 rad pos: -35.5,19.5 parent: 2 + - uid: 41003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 2 + - uid: 41004 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 41005 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 41006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-20.5 + parent: 2 + - uid: 41007 + components: + - type: Transform + pos: -44.5,-22.5 + parent: 2 + - uid: 41009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-23.5 + parent: 2 + - uid: 41010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-22.5 + parent: 2 + - uid: 41013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - uid: 41014 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 41015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-13.5 + parent: 2 + - uid: 41016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-10.5 + parent: 2 + - uid: 41017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + - uid: 41018 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 2 + - uid: 41019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-12.5 + parent: 2 + - uid: 41020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 41021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-36.5 + parent: 2 - proto: CockroachTimedSpawner entities: - uid: 14956 @@ -108673,6 +109842,42 @@ entities: parent: 2 - proto: CrateCoffin entities: + - uid: 13005 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 14094 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 - uid: 14820 components: - type: Transform @@ -108791,6 +109996,32 @@ entities: - type: Transform pos: 32.5,7.5 parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - uid: 40081 components: - type: Transform @@ -108816,6 +110047,68 @@ entities: - type: Transform pos: -73.5,-41.5 parent: 2 + - uid: 41045 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41051 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - proto: CrateContrabandStorageSecure entities: - uid: 2590 @@ -109396,8 +110689,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -109414,6 +110707,7 @@ entities: showEnts: False occludes: True ents: + - 28869 - 9347 paper_label: !type:ContainerSlot showEnts: False @@ -109501,16 +110795,34 @@ entities: - type: Transform pos: -13.5,-27.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 15615 - - 15616 - - 15621 - 4821 + - 15621 + - 15616 + - 15615 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -109782,80 +111094,124 @@ entities: showEnts: False occludes: True ent: null -- proto: CratePlastic - entities: - - uid: 1786 + - uid: 41164 components: - type: Transform - pos: 35.5,7.5 + pos: 8.5,-96.5 parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1801 - - 1812 - - 1799 - - 1798 - - 1809 - - 1790 - - 1788 - - 1787 - - 1789 - - 1797 - - 1808 - - 1810 - - 1807 - - 1811 - - 1806 - - 1803 - - 1805 - - 1802 - - 1800 - - 1804 - - 1796 - - 1795 - - 1794 - - 1793 - - 1792 - - 1791 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2083 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41165 components: - type: Transform - anchored: True - pos: -19.5,18.5 + pos: 10.5,-100.5 + parent: 2 + - uid: 41166 + components: + - type: Transform + pos: 9.5,-98.5 + parent: 2 + - uid: 41167 + components: + - type: Transform + pos: 8.5,-100.5 + parent: 2 + - uid: 41168 + components: + - type: Transform + pos: 11.5,-98.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41174 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41175 + components: + - type: Transform + pos: 2.5,-91.5 parent: 2 - - type: Physics - bodyType: Static - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14755 + temperature: 293.14673 moles: - 1.7459903 - 6.568249 @@ -109869,28 +111225,115 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2085 - - 2084 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 2086 +- proto: CratePlastic + entities: + - uid: 1786 components: - type: Transform - anchored: True - pos: -19.5,17.5 + pos: 35.5,7.5 parent: 2 - - type: Physics - bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1801 + - 1812 + - 1799 + - 1798 + - 1809 + - 1790 + - 1788 + - 1787 + - 1789 + - 1797 + - 1808 + - 1810 + - 1807 + - 1811 + - 1806 + - 1803 + - 1805 + - 1802 + - 1800 + - 1804 + - 1796 + - 1795 + - 1794 + - 1793 + - 1792 + - 1791 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2083 + components: + - type: Transform + anchored: True + pos: -19.5,18.5 + parent: 2 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2085 + - 2084 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True + - uid: 2086 + components: + - type: Transform + anchored: True + pos: -19.5,17.5 + parent: 2 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -110542,8 +111985,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -110613,14 +112056,35 @@ entities: - type: Transform pos: 10.5,-59.5 parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.1462 moles: - - 1.606311 - - 6.042789 - 0 - 0 - 0 @@ -110631,26 +112095,66 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - uid: 28076 components: - type: Transform pos: 14.5,-62.5 parent: 2 + - type: Lock + locked: False - uid: 28082 components: - type: Transform pos: 19.5,-53.5 parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - uid: 28095 components: - type: Transform pos: 15.5,-56.5 parent: 2 + - type: Lock + locked: False - uid: 28112 components: - type: Transform pos: 14.5,-56.5 parent: 2 + - type: Lock + locked: False - uid: 28113 components: - type: Transform @@ -110890,6 +112394,13 @@ entities: - type: Transform pos: -51.312763,-0.015726864 parent: 2 + - uid: 28869 + components: + - type: Transform + parent: 920 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CrowbarRed entities: - uid: 15320 @@ -111197,6 +112708,11 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-118.5 parent: 2 + - uid: 29513 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 - uid: 34350 components: - type: Transform @@ -111211,6 +112727,16 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-117.5 parent: 2 + - uid: 41027 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 41028 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 - proto: CurtainsBlueOpen entities: - uid: 15366 @@ -123515,6 +125041,13 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-8.5 parent: 2 +- proto: DisposalPipeBroken + entities: + - uid: 39085 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 - proto: DisposalRouter entities: - uid: 17356 @@ -124625,11 +126158,17 @@ entities: parent: 37887 - uid: 39556 components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт - type: Transform pos: -27.5,-39.5 parent: 2 - uid: 39557 components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт - type: Transform pos: -26.5,-39.5 parent: 2 @@ -124858,6 +126397,12 @@ entities: 9035: position: 6,1 _rotation: South + 274: + position: 0,3 + _rotation: East + 1695: + position: 2,3 + _rotation: East - type: ContainerContainer containers: storagebase: !type:Container @@ -124872,6 +126417,8 @@ entities: - 13 - 1983 - 9035 + - 274 + - 1695 - uid: 24339 components: - type: Transform @@ -125417,11 +126964,6 @@ entities: parent: 2 - proto: DrinkMugOne entities: - - uid: 17655 - components: - - type: Transform - pos: 13.686022,15.880593 - parent: 2 - uid: 17656 components: - type: Transform @@ -125705,7 +127247,7 @@ entities: - uid: 17708 components: - type: Transform - pos: 36.443604,-63.328476 + pos: 36.258347,-63.162224 parent: 2 - proto: Dropper entities: @@ -126309,6 +127851,15 @@ entities: parent: 2 - type: SpawnOnTrigger proto: MobSkeletonPirate + - uid: 41180 + components: + - type: MetaData + name: одноразовый маркер спавна дополнительного боеприпаса по сигналу + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - type: SpawnOnTrigger + proto: CannonBall - proto: ERTSpawnerEngineering entities: - uid: 38218 @@ -126327,6 +127878,15 @@ entities: parent: 2 - type: SpawnOnTrigger proto: ClothingOuterHardsuitMaxim + - uid: 40955 + components: + - type: MetaData + name: не слишком ли много спавнеров обр? хммммммммммм? + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - type: SpawnOnTrigger + proto: SpaceMedipen - proto: ERTSpawnerLeader entities: - uid: 38219 @@ -132100,6 +133660,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 41112 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FloorTileItemAstroIce entities: - uid: 32426 @@ -132605,11 +134172,6 @@ entities: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 28011 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 2 - uid: 28012 components: - type: Transform @@ -132620,11 +134182,6 @@ entities: - type: Transform pos: 16.5,-33.5 parent: 2 - - uid: 28014 - components: - - type: Transform - pos: 17.5,-32.5 - parent: 2 - uid: 28826 components: - type: Transform @@ -132670,6 +134227,16 @@ entities: - type: Transform pos: 14.5,-32.5 parent: 2 + - uid: 39084 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 39735 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 - uid: 40105 components: - type: Transform @@ -132739,6 +134306,13 @@ entities: - type: Transform pos: -48.668762,-112.47488 parent: 2 +- proto: FoodBloodTomato + entities: + - uid: 41036 + components: + - type: Transform + pos: 17.672169,13.422743 + parent: 2 - proto: FoodBoxDonkpocketCarp entities: - uid: 18573 @@ -133245,6 +134819,30 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodGarlic + entities: + - uid: 274 + components: + - type: Transform + parent: 5 + - type: Physics + canCollide: False + - uid: 1695 + components: + - type: Transform + parent: 5 + - type: Physics + canCollide: False + - uid: 41041 + components: + - type: Transform + pos: 33.243034,-63.491364 + parent: 2 + - uid: 41042 + components: + - type: Transform + pos: 33.180534,-63.710114 + parent: 2 - proto: FoodMealFriesCarrot entities: - uid: 19349 @@ -133279,6 +134877,49 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodMeatSpiderCutlet + entities: + - uid: 40995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.48296,-34.28454 + parent: 2 +- proto: FoodMeatSpiderCutletCooked + entities: + - uid: 40993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.246502,-34.505142 + parent: 2 + - uid: 40994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.29542,-34.358376 + parent: 2 +- proto: FoodMeatSpiderLeg + entities: + - uid: 11868 + components: + - type: Transform + pos: -49.52587,-20.02515 + parent: 2 + - uid: 40992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.591293,-28.739933 + parent: 2 +- proto: FoodMeatSpiderlegCooked + entities: + - uid: 40991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.357746,-34.60782 + parent: 2 - proto: FoodMeatXeno entities: - uid: 18622 @@ -166844,6 +168485,8 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 + - type: Gateway + enabled: True - proto: Gauze entities: - uid: 32513 @@ -176179,8 +177822,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -176197,6 +177840,7 @@ entities: showEnts: False occludes: True ents: + - 33561 - 26494 paper_label: !type:ContainerSlot showEnts: False @@ -176307,8 +177951,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -176325,7 +177969,10 @@ entities: showEnts: False occludes: True ents: - - 5963 + - 562 + - 783 + - 471 + - 28011 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -177033,16 +178680,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-25.5 parent: 2 - - uid: 23981 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 23982 - components: - - type: Transform - pos: 16.5,13.5 - parent: 2 - uid: 23983 components: - type: Transform @@ -177115,11 +178752,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-8.5 parent: 2 - - uid: 24001 - components: - - type: Transform - pos: 16.5,12.5 - parent: 2 - uid: 24002 components: - type: Transform @@ -178709,6 +180341,21 @@ entities: ents: - 24776 - type: ActionsContainer + - uid: 41078 + components: + - type: Transform + pos: 31.44489,4.8107767 + parent: 2 + - uid: 41102 + components: + - type: Transform + pos: 85.73772,-2.8218112 + parent: 2 + - uid: 41104 + components: + - type: Transform + pos: 88.292786,-10.185124 + parent: 2 - proto: LanternFlash entities: - uid: 25 @@ -178897,21 +180544,6 @@ entities: - type: Transform pos: 65.5,-50.5 parent: 2 -- proto: LeftFootMoth - entities: - - uid: 24226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 107.40406,-71.27681 - parent: 2 - - uid: 40791 - components: - - type: Transform - pos: 102.55585,-78.03824 - parent: 2 - - type: Stealth - - type: Emag - proto: LeftFootSkeleton entities: - uid: 24227 @@ -179040,8 +180672,10 @@ entities: - uid: 24241 components: - type: Transform - pos: 8.601826,13.614818 - parent: 2 + parent: 16742 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 24243 components: - type: Transform @@ -179060,6 +180694,11 @@ entities: - type: Transform pos: -16.486774,-45.63583 parent: 2 + - uid: 40968 + components: + - type: Transform + pos: -35.486115,-52.43437 + parent: 2 - proto: LightReplacer entities: - uid: 24244 @@ -179071,8 +180710,7 @@ entities: - uid: 24245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.70501,-66.38782 + pos: 42.816086,-66.03279 parent: 2 - proto: LightTube entities: @@ -179084,6 +180722,34 @@ entities: parent: 2 - proto: LightTubeCrystalRed entities: + - uid: 6044 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11854 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14774 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14815 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 24936 components: - type: Transform @@ -179101,6 +180767,42 @@ entities: lightEnergy: 1 - type: Physics canCollide: False + - uid: 25396 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25397 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25399 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25630 + components: + - type: Transform + parent: 14397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25643 + components: + - type: Transform + parent: 25641 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False - uid: 25803 components: - type: Transform @@ -179110,6 +180812,15 @@ entities: lightEnergy: 1 - type: Physics canCollide: False + - uid: 25839 + components: + - type: Transform + parent: 25652 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False - uid: 25854 components: - type: Transform @@ -179223,6 +180934,23 @@ entities: lightEnergy: 1 - type: Physics canCollide: False + - uid: 30602 + components: + - type: Transform + parent: 30133 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 30646 + components: + - type: Transform + parent: 30633 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False - uid: 36923 components: - type: Transform @@ -179348,6 +181076,112 @@ entities: lightEnergy: 1 - type: Physics canCollide: False + - uid: 41077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.6080236,-72.40456 + parent: 2 + - uid: 41115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5142736,-72.46706 + parent: 2 + - uid: 41116 + components: + - type: Transform + pos: -6.5298986,-72.35768 + parent: 2 + - uid: 41117 + components: + - type: Transform + pos: -6.6236486,-72.38893 + parent: 2 + - uid: 41118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5611486,-72.48268 + parent: 2 + - uid: 41119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.560574,-53.845654 + parent: 2 + - uid: 41120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.6387,-53.845654 + parent: 2 + - uid: 41121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.466824,-53.86128 + parent: 2 + - uid: 41122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.29495,-53.908154 + parent: 2 + - uid: 41123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5137,-53.92378 + parent: 2 + - uid: 41124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.61296,-66.298416 + parent: 2 + - uid: 41125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.58171,-66.392166 + parent: 2 + - uid: 41127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.48796,-66.548416 + parent: 2 + - uid: 41128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.48796,-66.56404 + parent: 2 + - uid: 41129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.534836,-66.40779 + parent: 2 + - uid: 41130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.597336,-66.34529 + parent: 2 + - uid: 41131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.64421,-66.34529 + parent: 2 + - uid: 41132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.628586,-66.392166 + parent: 2 - proto: LiquidNitrogenCanister entities: - uid: 24249 @@ -179561,6 +181395,22 @@ entities: - Pressed: Toggle 28286: - Pressed: Toggle + - uid: 40990 + components: + - type: MetaData + name: свет + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-66.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 40981: + - Pressed: Toggle + 40980: + - Pressed: Toggle + 40982: + - Pressed: Toggle - proto: LockableButtonChemistry entities: - uid: 24257 @@ -179645,6 +181495,8 @@ entities: linkedPorts: 37909: - Pressed: Open + 31037: + - Pressed: On - proto: LockableButtonSalvage entities: - uid: 34261 @@ -179655,6 +181507,10 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-51.5 parent: 2 + - type: AccessReader + access: + - - NuclearOperative + - - Salvage - type: DeviceLinkSource linkedPorts: 34357: @@ -179662,7 +181518,7 @@ entities: - uid: 34368 components: - type: MetaData - name: активация портала + name: начать синхронизацию - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-23.5 @@ -179763,6 +181619,30 @@ entities: - Pressed: Toggle 40642: - Pressed: Toggle +- proto: LockableButtonService + entities: + - uid: 41152 + components: + - type: MetaData + name: свет в зале + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 41146: + - Pressed: Toggle + 41147: + - Pressed: Toggle + 41150: + - Pressed: Toggle + 41148: + - Pressed: Toggle + 41149: + - Pressed: Toggle + 41151: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 14644 @@ -179946,6 +181826,24 @@ entities: - type: Transform pos: -10.5,-26.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerBrigmedic entities: - uid: 16246 @@ -179991,6 +181889,37 @@ entities: - type: Transform pos: 16.5,16.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14846 + - 28647 + - 24241 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerChemistryFilled entities: - uid: 24267 @@ -180434,6 +182363,35 @@ entities: - type: Transform pos: 52.5,-0.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23982 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 16669 components: - type: Transform @@ -181230,8 +183188,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -181242,17 +183200,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 471 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 24315 components: - type: Transform @@ -181264,8 +183211,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -181276,17 +183223,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 562 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 24316 components: - type: Transform @@ -181298,8 +183234,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -181310,17 +183246,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 783 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerScienceFilled entities: - uid: 24317 @@ -181540,8 +183465,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -181552,6 +183477,17 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 37762 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerWallMedical entities: - uid: 37919 @@ -182261,12 +184197,10 @@ entities: - type: Transform pos: 64.55751,-19.446735 parent: 2 -- proto: MagazineBoxPistolPractice - entities: - - uid: 26439 + - uid: 28014 components: - type: Transform - pos: 8.491989,-22.413038 + pos: 8.563635,-22.442852 parent: 2 - proto: MagazineBoxRifle entities: @@ -183204,7 +185138,8 @@ entities: - uid: 40924 components: - type: Transform - pos: -41.5,-28.5 + anchored: True + pos: -41.5,-33.5 parent: 2 - type: ContainerContainer containers: @@ -183240,6 +185175,171 @@ entities: showEnts: False occludes: False ent: null + - type: Physics + bodyType: Static + - type: Pullable + prevFixedRotation: True + - uid: 41053 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 25653 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 25705 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 41054 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 41055 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 25812 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41061 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 41056 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41063 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41062 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 41057 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41065 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41064 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - proto: MaterialBones1 entities: - uid: 24563 @@ -183294,8 +185394,26 @@ entities: rot: 3.141592653589793 rad pos: 8.707739,-28.657364 parent: 2 + - uid: 41039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.12713,13.48667 + parent: 2 + - uid: 41040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.361505,13.54917 + parent: 2 - proto: MaterialToothSpaceCarp1 entities: + - uid: 23981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.615704,13.752295 + parent: 2 - uid: 26557 components: - type: Transform @@ -183329,6 +185447,12 @@ entities: rot: 1.5707963267948966 rad pos: 8.488989,-28.579239 parent: 2 + - uid: 40970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.615704,13.627295 + parent: 2 - proto: MaterialWoodPlank entities: - uid: 24570 @@ -183337,6 +185461,11 @@ entities: rot: 1.5707963267948966 rad pos: -17.53313,-101.38195 parent: 2 + - uid: 41024 + components: + - type: Transform + pos: -53.40009,-15.54376 + parent: 2 - proto: MaterialWoodPlank1 entities: - uid: 24571 @@ -183428,13 +185557,6 @@ entities: - type: Transform pos: -20.424871,-61.475033 parent: 2 -- proto: MedalCase - entities: - - uid: 24591 - components: - - type: Transform - pos: 10.543274,15.729935 - parent: 2 - proto: MedicalBed entities: - uid: 5635 @@ -183606,7 +185728,7 @@ entities: - uid: 2061 components: - type: Transform - pos: 80.502365,-9.5784445 + pos: 80.531784,-9.406601 parent: 2 - uid: 9347 components: @@ -183733,7 +185855,7 @@ entities: - uid: 2065 components: - type: Transform - pos: 80.47644,-10.177777 + pos: 80.51616,-9.922226 parent: 2 - uid: 14551 components: @@ -183993,6 +186115,12 @@ entities: - type: Transform pos: 74.5,-9.5 parent: 2 + - uid: 41043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 - proto: MirrorShield entities: - uid: 24661 @@ -184257,36 +186385,16 @@ entities: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 24698 - components: - - type: Transform - pos: -48.5,9.5 - parent: 2 - uid: 24699 components: - type: Transform pos: -33.5,-16.5 parent: 2 - - uid: 24700 - components: - - type: Transform - pos: -61.5,-53.5 - parent: 2 - uid: 24701 components: - type: Transform pos: -49.5,-93.5 parent: 2 - - uid: 24702 - components: - - type: Transform - pos: 29.5,-82.5 - parent: 2 - - uid: 24703 - components: - - type: Transform - pos: 68.5,-18.5 - parent: 2 - uid: 24704 components: - type: Transform @@ -184661,9 +186769,16 @@ entities: - uid: 24754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.479095,-19.584072 + pos: -53.436836,-19.588264 parent: 2 + - type: GasTank + toggleActionEntity: 25523 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 25523 - uid: 24755 components: - type: Transform @@ -186213,6 +188328,17 @@ entities: rot: -1.5707963267948966 rad pos: 7.63809,13.955755 parent: 2 + - uid: 40939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.340697,-22.686184 + parent: 2 + - uid: 40953 + components: + - type: Transform + pos: 14.434447,-22.451809 + parent: 2 - proto: PaperCargoInvoice entities: - uid: 6313 @@ -186386,7 +188512,7 @@ entities: - uid: 32968 components: - type: Transform - pos: 20.451714,-17.492172 + pos: 13.322789,-61.353043 parent: 2 - type: Paper content: >- @@ -187103,17 +189229,29 @@ entities: - type: Transform pos: 3.5,-52.5 parent: 2 + - type: Door + secondsUntilStateChange: -12657.478 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 36706 components: - type: Transform pos: 2.5,-52.5 parent: 2 + - type: Door + secondsUntilStateChange: -12658.211 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - proto: PinpointerNuclear entities: - uid: 25047 components: - type: Transform - pos: 8.972797,13.591203 + pos: 9.053204,13.627295 parent: 2 - proto: PirateFlag entities: @@ -187127,6 +189265,38 @@ entities: - type: Transform pos: 12.5,-13.5 parent: 2 + - uid: 41169 + components: + - type: Transform + pos: 11.5,-104.5 + parent: 2 + - uid: 41170 + components: + - type: Transform + pos: 9.5,-85.5 + parent: 2 + - uid: 41171 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 2 + - uid: 41172 + components: + - type: Transform + pos: -2.5,-88.5 + parent: 2 +- proto: PirateHandyFlag + entities: + - uid: 39803 + components: + - type: Transform + pos: 10.70426,-24.148893 + parent: 2 + - uid: 41173 + components: + - type: Transform + pos: 3.7105489,-89.444496 + parent: 2 - proto: PlasmaCanister entities: - uid: 1615 @@ -187558,6 +189728,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 41108 + components: + - type: Transform + pos: 35.585835,3.5678856 + parent: 2 + - uid: 41114 + components: + - type: Transform + pos: 37.523335,3.5835106 + parent: 2 - proto: PlushieHampter entities: - uid: 25107 @@ -189304,6 +191484,11 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-25.5 parent: 2 + - uid: 41103 + components: + - type: Transform + pos: 80.5,-10.5 + parent: 2 - proto: PowerCellSmall entities: - uid: 25370 @@ -189356,14 +191541,19 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 274 + - uid: 41153 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,7.5 + pos: -16.5,-19.5 parent: 2 + - uid: 41154 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 +- proto: Poweredlight + entities: - uid: 2092 components: - type: Transform @@ -189375,44 +191565,17 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,0.5 parent: 2 - - uid: 6044 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 2 - - uid: 9703 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - uid: 9717 components: - type: Transform pos: 56.5,15.5 parent: 2 - - uid: 10927 - components: - - type: Transform - pos: 67.5,11.5 - parent: 2 - - uid: 13005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,7.5 - parent: 2 - uid: 14560 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-19.5 parent: 2 - - uid: 14815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,7.5 - parent: 2 - uid: 14858 components: - type: Transform @@ -189430,11 +191593,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-8.5 parent: 2 - - uid: 15590 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - uid: 15827 components: - type: Transform @@ -189451,12 +191609,6 @@ entities: - type: Transform pos: 54.5,-17.5 parent: 2 - - uid: 18500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,7.5 - parent: 2 - uid: 19113 components: - type: Transform @@ -189515,11 +191667,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,3.5 parent: 2 - - uid: 21038 - components: - - type: Transform - pos: 78.5,1.5 - parent: 2 - uid: 22998 components: - type: Transform @@ -189532,11 +191679,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-1.5 parent: 2 - - uid: 24170 - components: - - type: Transform - pos: 86.5,1.5 - parent: 2 - uid: 24300 components: - type: Transform @@ -189668,30 +191810,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-79.5 parent: 2 - - uid: 25396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 2 - - uid: 25397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-6.5 - parent: 2 - uid: 25398 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,7.5 parent: 2 - - uid: 25399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,2.5 - parent: 2 - uid: 25401 components: - type: Transform @@ -190103,17 +192227,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-94.5 parent: 2 - - uid: 25492 - components: - - type: Transform - pos: 34.5,-57.5 - parent: 2 - - uid: 25493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-63.5 - parent: 2 - uid: 25495 components: - type: Transform @@ -190194,17 +192307,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,15.5 parent: 2 - - uid: 25510 - components: - - type: Transform - pos: 9.5,17.5 - parent: 2 - - uid: 25511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 2 - uid: 25512 components: - type: Transform @@ -190263,11 +192365,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-30.5 parent: 2 - - uid: 25523 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 2 - uid: 25524 components: - type: Transform @@ -190321,12 +192418,6 @@ entities: - type: Transform pos: -42.5,-1.5 parent: 2 - - uid: 25533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-2.5 - parent: 2 - uid: 25534 components: - type: Transform @@ -190366,12 +192457,6 @@ entities: - type: Transform pos: -37.5,-57.5 parent: 2 - - uid: 25541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-55.5 - parent: 2 - uid: 25542 components: - type: Transform @@ -190846,12 +192931,6 @@ entities: rot: 3.141592653589793 rad pos: -70.5,-78.5 parent: 2 - - uid: 25630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-5.5 - parent: 2 - uid: 25633 components: - type: Transform @@ -190891,18 +192970,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,-75.5 parent: 2 - - uid: 25641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - uid: 25643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 2 - uid: 25644 components: - type: Transform @@ -190948,17 +193015,6 @@ entities: - type: Transform pos: 55.5,-86.5 parent: 2 - - uid: 25652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-65.5 - parent: 2 - - uid: 25653 - components: - - type: Transform - pos: 32.5,7.5 - parent: 2 - uid: 25656 components: - type: Transform @@ -191107,24 +193163,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-91.5 parent: 2 - - uid: 25693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-35.5 - parent: 2 - - uid: 25694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-40.5 - parent: 2 - - uid: 25695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-32.5 - parent: 2 - uid: 25697 components: - type: Transform @@ -191151,12 +193189,6 @@ entities: - type: Transform pos: -40.5,-97.5 parent: 2 - - uid: 25812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 2 - uid: 26132 components: - type: Transform @@ -191190,28 +193222,12 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-24.5 parent: 2 - - uid: 27800 - components: - - type: Transform - pos: 82.5,1.5 - parent: 2 - uid: 27838 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-9.5 parent: 2 - - uid: 30602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-4.5 - parent: 2 - - uid: 30633 - components: - - type: Transform - pos: 75.5,-6.5 - parent: 2 - uid: 30635 components: - type: Transform @@ -191223,23 +193239,6 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-12.5 parent: 2 - - uid: 30646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-9.5 - parent: 2 - - uid: 30649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-10.5 - parent: 2 - - uid: 30654 - components: - - type: Transform - pos: 89.5,-0.5 - parent: 2 - uid: 30868 components: - type: Transform @@ -191461,12 +193460,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,-52.5 parent: 2 - - uid: 39577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 2 - uid: 39578 components: - type: Transform @@ -191496,6 +193489,76 @@ entities: - type: Transform pos: 41.5,-3.5 parent: 2 + - uid: 40980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-63.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 40981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-65.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 40982 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 41146 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 41147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 41148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 41149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 41150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 41151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,5.5 + parent: 2 + - type: PoweredLight + on: False - proto: PoweredlightBlue entities: - uid: 38414 @@ -191546,24 +193609,20 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-13.5 parent: 2 - - uid: 28869 + - uid: 40951 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-16.5 parent: 2 -- proto: PoweredlightEmpty - entities: - - uid: 2107 + - uid: 41183 components: - type: Transform - pos: 6.5,-50.5 - parent: 2 - - uid: 2668 - components: - - type: Transform - pos: 3.5,-50.5 + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 parent: 2 +- proto: PoweredlightEmpty + entities: - uid: 2686 components: - type: Transform @@ -191767,6 +193826,42 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-42.5 parent: 2 + - uid: 25641 + components: + - type: Transform + pos: 86.5,1.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 25643 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 25652 + components: + - type: Transform + pos: 82.5,1.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 25839 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 25693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-55.5 + parent: 2 - uid: 25703 components: - type: Transform @@ -191998,6 +194093,37 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False + - uid: 30133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-6.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 30602 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 30633 + components: + - type: Transform + pos: 78.5,1.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 30646 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False - uid: 32756 components: - type: Transform @@ -192302,6 +194428,11 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False + - uid: 40956 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 - proto: PoweredlightExterior entities: - uid: 40816 @@ -192346,12 +194477,6 @@ entities: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 25705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - proto: PoweredlightOrange entities: - uid: 25707 @@ -192543,6 +194668,33 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-17.5 parent: 2 + - uid: 24170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,7.5 + parent: 2 + - uid: 25511 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 25533 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-40.5 + parent: 2 - uid: 25752 components: - type: Transform @@ -192551,6 +194703,12 @@ entities: parent: 2 - type: PoweredLight on: False + - uid: 25779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-32.5 + parent: 2 - uid: 26455 components: - type: Transform @@ -192562,18 +194720,66 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-25.5 parent: 2 + - uid: 29514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - uid: 30131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + - uid: 30649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-9.5 + parent: 2 + - uid: 30654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-3.5 + parent: 2 - uid: 31037 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,13.5 parent: 2 + - type: PoweredLight + on: False - uid: 38415 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 37887 + - uid: 39577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 40969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 41066 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 41073 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 - proto: PoweredSmallLight entities: - uid: 2109 @@ -192604,12 +194810,6 @@ entities: - type: Transform pos: 51.5,16.5 parent: 2 - - uid: 11854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 2 - uid: 13002 components: - type: Transform @@ -192621,12 +194821,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,1.5 parent: 2 - - uid: 14774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 - parent: 2 - uid: 14777 components: - type: Transform @@ -192798,11 +194992,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,19.5 parent: 2 - - uid: 25779 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - uid: 25780 components: - type: Transform @@ -193039,12 +195228,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,6.5 parent: 2 - - uid: 25839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 2 - uid: 25840 components: - type: Transform @@ -194248,8 +196431,31 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-71.5 parent: 2 + - uid: 40950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,9.5 + parent: 2 + - uid: 41075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,0.5 + parent: 2 + - uid: 41092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,3.5 + parent: 2 - proto: PoweredSmallLightEmpty entities: + - uid: 2107 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 - uid: 26113 components: - type: Transform @@ -194450,6 +196656,11 @@ entities: parent: 2 - proto: PumpkinLantern entities: + - uid: 25493 + components: + - type: Transform + pos: -77.8645,-43.328117 + parent: 2 - uid: 27607 components: - type: Transform @@ -194520,6 +196731,21 @@ entities: - type: Transform pos: 101.50751,-42.43947 parent: 2 + - uid: 40983 + components: + - type: Transform + pos: 36.588573,-63.62699 + parent: 2 + - uid: 40984 + components: + - type: Transform + pos: 35.00285,-65.543816 + parent: 2 + - uid: 41145 + components: + - type: Transform + pos: 30.428085,-3.415341 + parent: 2 - proto: PumpkinLanternLarge entities: - uid: 6194 @@ -194537,6 +196763,11 @@ entities: - type: Transform pos: 51.696487,-36.039314 parent: 2 + - uid: 27800 + components: + - type: Transform + pos: 34.52399,-57.30887 + parent: 2 - uid: 33863 components: - type: Transform @@ -194562,6 +196793,26 @@ entities: - type: Transform pos: 101.49568,-20.383839 parent: 2 + - uid: 40998 + components: + - type: Transform + pos: -56.51,-27.290165 + parent: 2 + - uid: 41157 + components: + - type: Transform + pos: 41.931072,-99.433914 + parent: 2 + - uid: 41179 + components: + - type: Transform + pos: 2.5381908,-87.24696 + parent: 2 + - uid: 41182 + components: + - type: Transform + pos: 6.543469,-84.37737 + parent: 2 - proto: PumpkinLanternSmall entities: - uid: 10801 @@ -194574,6 +196825,21 @@ entities: - type: Transform pos: 27.342222,27.475954 parent: 2 + - uid: 25492 + components: + - type: Transform + pos: -80.27075,-43.031242 + parent: 2 + - uid: 29410 + components: + - type: Transform + pos: 38.666378,-61.408768 + parent: 2 + - uid: 30132 + components: + - type: Transform + pos: 38.678608,-62.367165 + parent: 2 - uid: 33862 components: - type: Transform @@ -194659,6 +196925,91 @@ entities: - type: Transform pos: 65.37312,-26.855219 parent: 2 + - uid: 40985 + components: + - type: Transform + pos: 37.45147,-58.56365 + parent: 2 + - uid: 40986 + components: + - type: Transform + pos: 32.502995,-60.504467 + parent: 2 + - uid: 40987 + components: + - type: Transform + pos: 35.47011,-60.506695 + parent: 2 + - uid: 40997 + components: + - type: Transform + pos: -40.077003,-25.195251 + parent: 2 + - uid: 41034 + components: + - type: Transform + pos: 9.355507,17.847351 + parent: 2 + - uid: 41047 + components: + - type: Transform + pos: -4.5107927,11.873474 + parent: 2 + - uid: 41052 + components: + - type: Transform + pos: -73.48247,-36.485867 + parent: 2 + - uid: 41076 + components: + - type: Transform + pos: 44.742165,5.326885 + parent: 2 + - uid: 41079 + components: + - type: Transform + pos: 28.499481,4.618205 + parent: 2 + - uid: 41081 + components: + - type: Transform + pos: -31.48348,8.141961 + parent: 2 + - uid: 41106 + components: + - type: Transform + pos: 44.21273,-22.832611 + parent: 2 + - uid: 41110 + components: + - type: Transform + pos: 27.363811,-73.227844 + parent: 2 + - uid: 41126 + components: + - type: Transform + pos: 41.527927,-47.334026 + parent: 2 + - uid: 41135 + components: + - type: Transform + pos: 28.51754,0.52877975 + parent: 2 + - uid: 41137 + components: + - type: Transform + pos: 35.549934,4.618095 + parent: 2 + - uid: 41138 + components: + - type: Transform + pos: 37.360012,4.60247 + parent: 2 + - uid: 41156 + components: + - type: Transform + pos: 52.692986,-75.00183 + parent: 2 - proto: Rack entities: - uid: 1112 @@ -200407,10 +202758,10 @@ entities: - type: Transform pos: -5.5,-35.5 parent: 2 - - uid: 39735 + - uid: 40941 components: - type: Transform - pos: -4.5,-41.5 + pos: -4.5,-39.5 parent: 2 - proto: Recycler entities: @@ -204334,23 +206685,8 @@ entities: - type: Transform pos: 15.5,-25.5 parent: 2 - - uid: 29064 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - proto: SalvageMobSpawner75 entities: - - uid: 39803 - components: - - type: Transform - pos: 6.5,-29.5 - parent: 2 - - uid: 39804 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 2 - uid: 39805 components: - type: Transform @@ -204366,16 +206702,6 @@ entities: - type: Transform pos: 6.5,-14.5 parent: 2 - - uid: 39809 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 2 - - uid: 40115 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 2 - proto: SalvageSpawnerEquipment entities: - uid: 39621 @@ -204711,6 +207037,21 @@ entities: - type: Transform pos: -5.5,-28.5 parent: 2 + - uid: 40943 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 40946 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 40947 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 - proto: SalvageSpawnerScrapValuable entities: - uid: 39641 @@ -204834,6 +207175,18 @@ entities: parent: 2 - proto: SalvageSpawnerTreasureValuable entities: + - uid: 2668 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 + - type: EntityTableSpawner + table: !type:NestedSelector + prob: 1 + weight: 1 + rolls: !type:ConstantNumberSelector + value: 1 + tableId: SalvageTreasureSpawnerValuable - uid: 26240 components: - type: Transform @@ -204874,6 +207227,13 @@ entities: - type: Transform pos: 19.5,-35.5 parent: 2 + - type: EntityTableSpawner + table: !type:NestedSelector + prob: 1 + weight: 1 + rolls: !type:ConstantNumberSelector + value: 1 + tableId: SalvageTreasureSpawnerValuable - uid: 39643 components: - type: Transform @@ -205660,21 +208020,21 @@ entities: - uid: 471 components: - type: Transform - parent: 24314 + parent: 26551 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 562 components: - type: Transform - parent: 24315 + parent: 26551 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 783 components: - type: Transform - parent: 24316 + parent: 26551 - type: Physics canCollide: False - type: InsideEntityStorage @@ -206187,7 +208547,7 @@ entities: - uid: 28077 components: - type: Transform - pos: -38.38237,-34.389435 + pos: -38.540035,-34.379513 parent: 2 - uid: 37922 components: @@ -206639,15 +208999,15 @@ entities: - type: Transform pos: 10.5,-61.5 parent: 2 - - uid: 27921 + - uid: 27922 components: - type: Transform - pos: 18.5,-61.5 + pos: 18.5,-59.5 parent: 2 - - uid: 27922 + - uid: 40952 components: - type: Transform - pos: 18.5,-59.5 + pos: 18.5,-60.5 parent: 2 - proto: ShippingContainerConarex entities: @@ -206855,6 +209215,11 @@ entities: parent: 2 - proto: ShuttersNormal entities: + - uid: 25541 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 - uid: 28139 components: - type: Transform @@ -206938,6 +209303,31 @@ entities: - type: Transform pos: -47.5,-70.5 parent: 2 + - uid: 40957 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 40958 + components: + - type: Transform + pos: -41.5,-54.5 + parent: 2 + - uid: 40959 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 40960 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 40961 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 - proto: ShuttersNormalOpen entities: - uid: 484 @@ -208223,6 +210613,8 @@ entities: entities: - uid: 11902 components: + - type: MetaData + name: старт тира - type: Transform rot: -1.5707963267948966 rad pos: 61.5,8.5 @@ -208624,11 +211016,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28156: + 40958: + - Pressed: Toggle + 40957: + - Pressed: Toggle + 25541: - Pressed: Toggle - 28155: + 40959: - Pressed: Toggle - 28154: + 40960: + - Pressed: Toggle + 40961: - Pressed: Toggle - uid: 28354 components: @@ -209052,6 +211450,34 @@ entities: - Pressed: Toggle 21242: - Pressed: Toggle + - uid: 39802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.810246,8.501156 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14078: + - Pressed: Off + 2889: + - Pressed: Off + 15176: + - Pressed: Off + 9728: + - Pressed: Off + 16244: + - Pressed: Off + 17414: + - Pressed: Off + 17426: + - Pressed: Off + 14063: + - Pressed: Off + 14233: + - Pressed: Off + 9937: + - Pressed: Off - uid: 40637 components: - type: MetaData @@ -209078,6 +211504,8 @@ entities: linkedPorts: 34359: - Timer: Trigger + 40955: + - Timer: Trigger - type: DeviceLinkSink invokeCounter: 1 missingComponents: @@ -209130,6 +211558,8 @@ entities: linkedPorts: 39738: - Timer: Trigger + 41180: + - Timer: Trigger - type: DeviceLinkSink invokeCounter: 1 missingComponents: @@ -210976,9 +213406,10 @@ entities: - uid: 28647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.242451,13.583568 - parent: 2 + parent: 16742 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Soap entities: - uid: 2702 @@ -212067,12 +214498,6 @@ entities: parent: 2 - proto: SolidSecretDoor entities: - - uid: 33561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-46.5 - parent: 2 - uid: 40103 components: - type: MetaData @@ -212323,13 +214748,23 @@ entities: - type: Transform pos: -2.5,-27.5 parent: 2 -- proto: SpawnMobCarpHolo - entities: - - uid: 30415 + - uid: 39804 components: - type: Transform - pos: -14.5,-12.5 + pos: 12.5,-33.5 + parent: 2 + - uid: 40115 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 40949 + components: + - type: Transform + pos: 17.5,-16.5 parent: 2 +- proto: SpawnMobCarpHolo + entities: - uid: 40120 components: - type: Transform @@ -212342,11 +214777,6 @@ entities: - type: Transform pos: -22.5,-47.5 parent: 2 - - uid: 39802 - components: - - type: Transform - pos: -16.5,-49.5 - parent: 2 - proto: SpawnMobCatFloppa entities: - uid: 28855 @@ -212410,11 +214840,6 @@ entities: parent: 2 - proto: SpawnMobKangaroo entities: - - uid: 30435 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 2 - uid: 30480 components: - type: Transform @@ -212458,6 +214883,50 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 31088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-53.5 + parent: 2 + - uid: 31520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,9.5 + parent: 2 + - uid: 31521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-82.5 + parent: 2 + - uid: 31522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-18.5 + parent: 2 + - uid: 31523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - uid: 31524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,18.5 + parent: 2 + - uid: 31528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-19.5 + parent: 2 - proto: SpawnMobOreCrab entities: - uid: 28867 @@ -212607,10 +215076,10 @@ entities: parent: 2 - proto: SpawnPointCaptain entities: - - uid: 2301 + - uid: 41025 components: - type: Transform - pos: 19.5,14.5 + pos: 16.5,12.5 parent: 2 - proto: SpawnPointCargoTechnician entities: @@ -218197,16 +220666,6 @@ entities: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 29513 - components: - - type: Transform - pos: -49.5,-24.5 - parent: 2 - - uid: 29514 - components: - - type: Transform - pos: -49.5,-23.5 - parent: 2 - uid: 29515 components: - type: Transform @@ -219702,6 +222161,21 @@ entities: - type: Transform pos: -31.5,-118.5 parent: 2 + - uid: 40974 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 40975 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 40976 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 - proto: TableFancyGreen entities: - uid: 39476 @@ -221471,6 +223945,20 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 37887 +- proto: TableWeb + entities: + - uid: 40972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-24.5 + parent: 2 + - uid: 40973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 2 - proto: TableWood entities: - uid: 4600 @@ -221845,21 +224333,6 @@ entities: - type: Transform pos: 10.5,10.5 parent: 2 - - uid: 30131 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 30132 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 30133 - components: - - type: Transform - pos: 10.5,15.5 - parent: 2 - uid: 30134 components: - type: Transform @@ -223896,7 +226369,7 @@ entities: - uid: 40133 components: - type: Transform - pos: 9.525852,1.1365409 + pos: 9.4890995,1.1184733 parent: 2 - proto: ToyFigurineLawyer entities: @@ -225302,9 +227775,12 @@ entities: entities: - uid: 30554 components: + - type: MetaData + desc: Хэллоуинский ассортимент! - type: Transform pos: 37.5,-69.5 parent: 2 + - type: Emagged - proto: VendingMachineChefDrobe entities: - uid: 30555 @@ -230983,6 +233459,11 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,18.5 parent: 2 + - uid: 30435 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 - uid: 30679 components: - type: Transform @@ -258954,11 +261435,12 @@ entities: parent: 6311 - type: Physics canCollide: False + - type: StaticPrice + price: 10500 - type: InsideEntityStorage missingComponents: - Gun - BallisticAmmoProvider - - StaticPrice - DamageExaminable - Contraband - proto: WeaponPistolFlintlock @@ -259059,6 +261541,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: WeaponShotgunEnforcer + entities: + - uid: 28011 + components: + - type: Transform + parent: 26551 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponShotgunImprovised entities: - uid: 36915 @@ -259180,11 +261671,6 @@ entities: - type: Transform pos: 14.5,-27.5 parent: 2 - - uid: 37762 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - uid: 38658 components: - type: Transform @@ -259326,6 +261812,11 @@ entities: - type: Transform pos: -54.5,-70.5 parent: 2 + - uid: 40942 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 - proto: WeaponWaterBlaster entities: - uid: 26441 @@ -259342,7 +261833,7 @@ entities: - type: MetaData name: ' супер-бластер' - type: Transform - pos: 12.459019,-19.686338 + pos: 12.61051,-18.631842 parent: 2 - proto: WeaponWaterPistol entities: @@ -259351,7 +261842,7 @@ entities: - type: MetaData name: импульсный пистолет - type: Transform - pos: 8.464001,-17.498634 + pos: 12.470344,-15.756947 parent: 2 - proto: WelderIndustrial entities: @@ -260472,6 +262963,9 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 + - type: AccessReader + access: + - - Medical - proto: WindoorSecureArmoryLocked entities: - uid: 3103 diff --git a/Resources/Maps/corvax_avrite.yml b/Resources/Maps/corvax_avrite.yml index 1ac0790275b..2a4c7d30430 100644 --- a/Resources/Maps/corvax_avrite.yml +++ b/Resources/Maps/corvax_avrite.yml @@ -117,6 +117,7 @@ tilemap: 119: FloorWoodChessDark 118: FloorWoodDark 4: FloorWoodLarge + 120: FloorWoodLargeDark 117: FloorWoodParquet 5: FloorWoodTile 128: Lattice @@ -154,203 +155,203 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YAAAAAADYAAAAAABLQAAAAACYAAAAAAAYAAAAAAAYAAAAAADLQAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAADYAAAAAACYAAAAAAALQAAAAADYAAAAAADYAAAAAACYAAAAAADLQAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAQgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAANAAAAAACQgAAAAAAQgAAAAADQgAAAAABYAAAAAACFgAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAANAAAAAADQgAAAAACLQAAAAADQgAAAAADYAAAAAABFgAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAAARAAAAAACgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAANAAAAAADQgAAAAADQgAAAAAAQgAAAAABYAAAAAABFgAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAADRAAAAAAGgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAANAAAAAAAQgAAAAADQgAAAAAAQgAAAAADYAAAAAAAFgAAAAACgQAAAAAAcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAQQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAABMAAAAAACMAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAQQAAAAADQQAAAAABQQAAAAABQQAAAAABQQAAAAACQQAAAAABQQAAAAACQQAAAAACcwAAAAACcwAAAAABgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAQQAAAAABQQAAAAAAQQAAAAAAQQAAAAADQQAAAAADQQAAAAAAQQAAAAACQQAAAAAAcwAAAAACcwAAAAADRAAAAAAGgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAADMAAAAAACcwAAAAADcwAAAAABcwAAAAADRAAAAAAIgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAAAMAAAAAADcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAARAAAAAAERAAAAAACRAAAAAABRAAAAAAIRAAAAAAIgQAAAAAARAAAAAAGRAAAAAADRAAAAAAJgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: YAAAAAABYAAAAAABLQAAAAABYAAAAAACYAAAAAABYAAAAAABLQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADdwAAAAADMAAAAAABMAAAAAACMAAAAAAAYAAAAAAAYAAAAAAALQAAAAAAYAAAAAABYAAAAAADYAAAAAADLQAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACdwAAAAADdwAAAAABMAAAAAACdwAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAADgQAAAAAAgQAAAAAAQgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAACdwAAAAACdwAAAAAANAAAAAACQgAAAAABQgAAAAABQgAAAAACYAAAAAAAFgAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAAAMAAAAAABdwAAAAADNAAAAAABQgAAAAADLQAAAAADQgAAAAAAYAAAAAADFgAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABRAAAAAAIgAAAAAAAgQAAAAAAdwAAAAADMAAAAAADdwAAAAADNAAAAAAAQgAAAAACQgAAAAADQgAAAAADYAAAAAADFgAAAAABgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAARAAAAAAAgAAAAAAAgQAAAAAAdwAAAAACMAAAAAABdwAAAAAANAAAAAABQgAAAAACQgAAAAAAQgAAAAACYAAAAAABFgAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAACdwAAAAADdwAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAACMAAAAAADMAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAADYwAAAAAAdwAAAAACQQAAAAADQQAAAAACQQAAAAACQQAAAAADQQAAAAAAQQAAAAADQQAAAAAAQQAAAAABcwAAAAABcwAAAAADgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAABYwAAAAAAdwAAAAACQQAAAAACQQAAAAABQQAAAAABQQAAAAAAQQAAAAADQQAAAAAAQQAAAAAAQQAAAAACcwAAAAADcwAAAAAARAAAAAAGgAAAAAAAgQAAAAAAdwAAAAAAYwAAAAAAdwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAADMAAAAAAAcwAAAAADcwAAAAABcwAAAAAARAAAAAAHgAAAAAAAgQAAAAAAdwAAAAAAdwAAAAABdwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAADMAAAAAAAcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAACMAAAAAADdwAAAAAAgQAAAAAARAAAAAADRAAAAAAHRAAAAAAERAAAAAAERAAAAAAAgQAAAAAARAAAAAAFRAAAAAAHRAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAADMAAAAAAAdwAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAdwAAAAACMAAAAAACdwAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAdwAAAAACdwAAAAADdwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: YwAAAAAAMAAAAAAAMAAAAAACMAAAAAADYwAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAALQAAAAACYAAAAAABYAAAAAABYAAAAAABLQAAAAADYAAAAAADYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAALQAAAAADYAAAAAAAYAAAAAABYAAAAAAALQAAAAACYAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAABgQAAAAAADAAAAAABYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAFgAAAAADYAAAAAAAQgAAAAAAQgAAAAABQgAAAAADDAAAAAADYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAIcwAAAAABcwAAAAADcwAAAAADgQAAAAAAFgAAAAADYAAAAAADQgAAAAACLQAAAAADQgAAAAABDAAAAAACYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgAAAAAAARAAAAAABcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAFgAAAAAAYAAAAAADQgAAAAADQgAAAAAAQgAAAAADKAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAFgAAAAADYAAAAAABQQAAAAADQQAAAAACQQAAAAADKAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAMAAAAAACMAAAAAABQQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAACgQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAABcwAAAAACQQAAAAADQQAAAAADQQAAAAAAQQAAAAADQQAAAAABQQAAAAABQQAAAAABKAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAARAAAAAADcwAAAAABcwAAAAACQQAAAAAAQQAAAAAAQQAAAAABQQAAAAADQQAAAAADQQAAAAACQQAAAAACKAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAJcwAAAAAAcwAAAAAAcwAAAAADMAAAAAABcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAABDAAAAAADYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACMAAAAAADcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAADDAAAAAADYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAARAAAAAAHRAAAAAAARAAAAAABgQAAAAAARAAAAAAFRAAAAAAARAAAAAAARAAAAAACRAAAAAAFDAAAAAACYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA + tiles: dwAAAAAAMAAAAAADMAAAAAADMAAAAAABdwAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACLQAAAAAAYAAAAAADYAAAAAADYAAAAAAALQAAAAADYAAAAAABdwAAAAADdwAAAAACMAAAAAABdwAAAAAAdwAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACLQAAAAABYAAAAAAAYAAAAAACYAAAAAACLQAAAAABYAAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAADdwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAdwAAAAABdwAAAAAAdwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAABgQAAAAAADAAAAAADdwAAAAABMAAAAAAAdwAAAAACgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAFgAAAAADYAAAAAACQgAAAAAAQgAAAAACQgAAAAABDAAAAAABdwAAAAADMAAAAAADdwAAAAAAgQAAAAAAgAAAAAAARAAAAAAAcwAAAAADcwAAAAADcwAAAAACgQAAAAAAFgAAAAAAYAAAAAABQgAAAAABLQAAAAADQgAAAAACDAAAAAABdwAAAAABMAAAAAADdwAAAAACgQAAAAAAgAAAAAAARAAAAAADcwAAAAADcwAAAAABcwAAAAADgQAAAAAAFgAAAAABYAAAAAABQgAAAAACQgAAAAADQgAAAAABKAAAAAAAdwAAAAACdwAAAAADdwAAAAACgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAFgAAAAACYAAAAAAAQQAAAAACQQAAAAAAQQAAAAAAKAAAAAABdwAAAAABYwAAAAAAdwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAACgQAAAAAAMAAAAAAAdwAAAAADYwAAAAAAdwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAQQAAAAACQQAAAAACQQAAAAACQQAAAAABQQAAAAACQQAAAAAAQQAAAAADKAAAAAADdwAAAAABYwAAAAAAdwAAAAACgQAAAAAAgAAAAAAARAAAAAADcwAAAAACcwAAAAAAQQAAAAACQQAAAAADQQAAAAABQQAAAAAAQQAAAAADQQAAAAACQQAAAAADKAAAAAACdwAAAAACdwAAAAACdwAAAAACgQAAAAAAgAAAAAAARAAAAAAGcwAAAAABcwAAAAABcwAAAAADMAAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAACcwAAAAABDAAAAAACdwAAAAABMAAAAAABdwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAADMAAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAAAcwAAAAADDAAAAAAAdwAAAAAAMAAAAAACdwAAAAADgQAAAAAAgAAAAAAAgQAAAAAARAAAAAACRAAAAAADRAAAAAAGgQAAAAAARAAAAAAERAAAAAAGRAAAAAAIRAAAAAAIRAAAAAABDAAAAAAAdwAAAAACMAAAAAACdwAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAdwAAAAADdwAAAAADdwAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAADYAAAAAAAgQAAAAAABQAAAAACBQAAAAADgQAAAAAAAwAAAAABAwAAAAADIgAAAAADIgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAABYAAAAAABgQAAAAAABQAAAAACBQAAAAABgQAAAAAAAwAAAAABAwAAAAAAIgAAAAAACAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAABYAAAAAADgQAAAAAAfQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAALQAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABBQAAAAACBQAAAAAABQAAAAACBQAAAAABMAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAADgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADBQAAAAABBQAAAAAABQAAAAABMAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAJAAAAAAABQAAAAADBQAAAAADBQAAAAADMAAAAAACgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAYAAAAAADYAAAAAACgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACBQAAAAADBQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAARgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACawAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAADYAAAAAACLQAAAAABYAAAAAACawAAAAAAYAAAAAACLQAAAAACYAAAAAADYAAAAAABawAAAAADYAAAAAADYAAAAAADYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAA + tiles: dwAAAAACdwAAAAAAdwAAAAABdwAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAACdwAAAAADdwAAAAADYwAAAAAAdwAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAABdwAAAAABdwAAAAADdwAAAAAAdwAAAAADdwAAAAACEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAAAMAAAAAABdwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAABfQAAAAADfQAAAAADfQAAAAADgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAACMAAAAAACdwAAAAADEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAACMAAAAAAAdwAAAAACEwAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAAAdwAAAAABdwAAAAACYAAAAAADYAAAAAABgQAAAAAABQAAAAABBQAAAAADgQAAAAAAAwAAAAAAAwAAAAADIgAAAAAAIgAAAAABgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAADYwAAAAAAdwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAABQAAAAABBQAAAAADgQAAAAAAAwAAAAACAwAAAAADIgAAAAAACAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAADYwAAAAAAdwAAAAADYAAAAAADYAAAAAAAgQAAAAAAfQAAAAADGgAAAAACgQAAAAAAgQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAABYwAAAAAAdwAAAAAALQAAAAABYAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAADMAAAAAAAgAAAAAAAgQAAAAAAdwAAAAADdwAAAAADdwAAAAAAYAAAAAABYAAAAAADgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADBQAAAAADBQAAAAAABQAAAAACMAAAAAAAgAAAAAAAgQAAAAAAdwAAAAABMAAAAAACdwAAAAAAYAAAAAADYAAAAAACgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAJAAAAAAABQAAAAADBQAAAAAABQAAAAABMAAAAAAAgAAAAAAAgQAAAAAAdwAAAAACMAAAAAADdwAAAAADYAAAAAABYAAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAAABQAAAAADBQAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAdwAAAAAAMAAAAAACdwAAAAACRgAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAADdwAAAAAAdwAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABawAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAADYAAAAAACYAAAAAACLQAAAAAAYAAAAAAAawAAAAADYAAAAAACLQAAAAADYAAAAAABYAAAAAAAawAAAAACYAAAAAABYAAAAAABdwAAAAACdwAAAAAAMAAAAAADdwAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: bwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAADAAAAAADYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgAAAAAAARAAAAAABRAAAAAACfQAAAAAAGgAAAAACOAAAAAAAOAAAAAABGgAAAAAAfQAAAAADgQAAAAAAgQAAAAAAKAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAGBQAAAAACfQAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAACfQAAAAABgQAAAAAAgQAAAAAAKAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAHBQAAAAACfQAAAAAAGgAAAAAAOAAAAAADOAAAAAADGgAAAAABfQAAAAACgQAAAAAAYAAAAAACMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAABQAAAAADfQAAAAABGgAAAAABOAAAAAABOAAAAAABGgAAAAADfQAAAAAAgQAAAAAAYAAAAAAAKAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAGBQAAAAACfQAAAAADGgAAAAACOAAAAAAAOAAAAAACGgAAAAABfQAAAAADgQAAAAAAYAAAAAABKAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAIBQAAAAADfQAAAAABGgAAAAABOAAAAAAAOAAAAAAAGgAAAAAAfQAAAAADBQAAAAACYAAAAAACDAAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAGBQAAAAAAfQAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADfQAAAAADgQAAAAAAYAAAAAAADAAAAAACYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgAAAAAAARAAAAAAGRAAAAAAEfQAAAAAAGgAAAAAAOAAAAAABOAAAAAABGgAAAAABfQAAAAABgQAAAAAAYAAAAAAADAAAAAACYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAADgQAAAAAAYAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAawAAAAABYAAAAAABYAAAAAACYAAAAAADYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAABawAAAAADYAAAAAAAYAAAAAACLQAAAAACYAAAAAAAawAAAAACYAAAAAAALQAAAAACYAAAAAAD + tiles: bwAAAAAAdwAAAAACYwAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAABdwAAAAACdwAAAAABdwAAAAABgQAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAABdwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADdwAAAAAAMAAAAAADdwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACdwAAAAAAMAAAAAACdwAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAADfQAAAAADgQAAAAAAgQAAAAAADAAAAAACdwAAAAADMAAAAAAAdwAAAAABgQAAAAAAgAAAAAAARAAAAAAJRAAAAAAEfQAAAAADGgAAAAABOAAAAAAAOAAAAAACGgAAAAABfQAAAAADgQAAAAAAgQAAAAAAKAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAgQAAAAAAgAAAAAAARAAAAAACBQAAAAAAfQAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAACfQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACdwAAAAABYwAAAAAAdwAAAAABgQAAAAAAgAAAAAAARAAAAAAGBQAAAAABfQAAAAADGgAAAAABOAAAAAABOAAAAAADGgAAAAAAfQAAAAACgQAAAAAAYAAAAAACMAAAAAAAdwAAAAAAYwAAAAAAdwAAAAAAgQAAAAAAgAAAAAAARAAAAAAJBQAAAAACfQAAAAABGgAAAAACOAAAAAABOAAAAAAAGgAAAAABfQAAAAABgQAAAAAAYAAAAAADKAAAAAAAdwAAAAACYwAAAAAAdwAAAAABgQAAAAAAgAAAAAAARAAAAAAJBQAAAAAAfQAAAAADGgAAAAAAOAAAAAAAOAAAAAABGgAAAAACfQAAAAADgQAAAAAAYAAAAAADKAAAAAABdwAAAAADdwAAAAAAdwAAAAADgQAAAAAAgAAAAAAARAAAAAACBQAAAAABfQAAAAAAGgAAAAACOAAAAAACOAAAAAADGgAAAAADfQAAAAABBQAAAAAAYAAAAAADDAAAAAABdwAAAAADMAAAAAACdwAAAAAAgQAAAAAAgAAAAAAARAAAAAADBQAAAAABfQAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADfQAAAAAAgQAAAAAAYAAAAAAADAAAAAADdwAAAAADMAAAAAABdwAAAAAAgQAAAAAAgAAAAAAARAAAAAADRAAAAAAFfQAAAAAAGgAAAAABOAAAAAAAOAAAAAADGgAAAAACfQAAAAAAgQAAAAAAYAAAAAACDAAAAAACdwAAAAAAMAAAAAACdwAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAYAAAAAAAgQAAAAAAdwAAAAADdwAAAAAAdwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABdwAAAAABdwAAAAAAdwAAAAADdwAAAAAAdwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACawAAAAADYAAAAAACYAAAAAAAYAAAAAABdwAAAAAAdwAAAAABMAAAAAACdwAAAAADdwAAAAAAYAAAAAACYAAAAAACawAAAAAAYAAAAAAAYAAAAAACLQAAAAABYAAAAAAAawAAAAADYAAAAAAALQAAAAAAYAAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: YwAAAAAAYwAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAACfQAAAAAADgAAAAAADgAAAAAADQAAAAAAMAAAAAACYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAABDgAAAAAADgAAAAACDgAAAAAAMAAAAAABYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABDgAAAAAADgAAAAACDgAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAABMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACPwAAAAAAPwAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAABgQAAAAAAEwAAAAAAMAAAAAAAYwAAAAAAMAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAADFgAAAAACgQAAAAAAUAAAAAAAMAAAAAAAYwAAAAAAMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAACgQAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAABgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAA + tiles: YwAAAAAAYwAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAACDgAAAAAADgAAAAAADQAAAAAAMAAAAAACYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACDgAAAAAGDgAAAAAADgAAAAAAMAAAAAADYwAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAfQAAAAACfQAAAAADfQAAAAABDgAAAAAADgAAAAALDgAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABDgAAAAAADgAAAAAADgAAAAADYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACPwAAAAAAPwAAAAACJgAAAAADJgAAAAADJgAAAAABgQAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAADgQAAAAAAEwAAAAAAMAAAAAABYwAAAAAAMAAAAAADPwAAAAAAPwAAAAABPwAAAAABJgAAAAAAJgAAAAABgQAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAABgQAAAAAAUAAAAAAAMAAAAAADYwAAAAAAMAAAAAADPwAAAAABPwAAAAADPwAAAAACPwAAAAABPwAAAAADgQAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAACgQAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAABPwAAAAAAPwAAAAACPwAAAAABgQAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADgQAAAAAAgQAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAABMAAAAAABMAAAAAADMAAAAAABMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAABdwAAAAAAdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAABdwAAAAACdwAAAAABdwAAAAABgQAAAAAAMAAAAAADMAAAAAABdwAAAAABdwAAAAABMAAAAAACMAAAAAADMAAAAAADdwAAAAABYwAAAAAAdwAAAAAAMAAAAAAAMAAAAAADMAAAAAABdwAAAAABdwAAAAACdwAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACYwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACYwAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADYwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAADwAAAAABIAAAAAAADwAAAAAAgQAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAAADAAAAAADMAAAAAACYwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAAADAAAAAABMAAAAAABYwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAACMAAAAAABYwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAADgQAAAAAADwAAAAADIAAAAAACIAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAAAMAAAAAACMAAAAAADMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAMAAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAADgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAABYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADYwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAABYwAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABYwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAADwAAAAACIAAAAAADDwAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAAAMAAAAAADYwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAABDAAAAAADMAAAAAABYwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAADIAAAAAABIAAAAAADIAAAAAACgQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAAAMAAAAAADYwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAADwAAAAABIAAAAAADIAAAAAACgQAAAAAADAAAAAABDAAAAAAADAAAAAABMAAAAAABMAAAAAADMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAABMAAAAAACMAAAAAABdwAAAAAAdwAAAAADdwAAAAABgQAAAAAAgQAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAABdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAABdwAAAAADdwAAAAABgQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAMAAAAAACMAAAAAABMAAAAAABdwAAAAACYwAAAAAAdwAAAAABMAAAAAAAMAAAAAACMAAAAAAAdwAAAAAAdwAAAAADMAAAAAAD version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABYwAAAAAAYwAAAAAAMAAAAAABMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAACDQAAAAAADQAAAAAADQAAAAAAgQAAAAAAGgAAAAADKQAAAAACGgAAAAACKQAAAAABGgAAAAABgQAAAAAAgQAAAAAAMAAAAAABYwAAAAAAMAAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAACKQAAAAABGgAAAAADKQAAAAACGgAAAAADgQAAAAAAbwAAAAAAMAAAAAABYwAAAAAAMAAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAAAKQAAAAACGgAAAAAAKQAAAAABGgAAAAAAKQAAAAABGgAAAAABYwAAAAAAYwAAAAAAMAAAAAACDQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAAAKQAAAAADGgAAAAACKQAAAAABGgAAAAADKQAAAAAAGgAAAAADYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAACKQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAACMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABKQAAAAAC + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAABdwAAAAACYwAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAADdwAAAAAAMAAAAAADMAAAAAADdwAAAAADdwAAAAADMAAAAAACMAAAAAACMAAAAAABdwAAAAACYwAAAAAAdwAAAAACMAAAAAABMAAAAAABMAAAAAACdwAAAAABdwAAAAABgQAAAAAAMAAAAAACdwAAAAACdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAADdwAAAAAAdwAAAAAAdwAAAAACgQAAAAAAgQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAMAAAAAABMAAAAAABMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAABdwAAAAACMAAAAAAAMAAAAAAAMAAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAGgAAAAABKQAAAAAAGgAAAAADKQAAAAADGgAAAAAAgQAAAAAAgQAAAAAAMAAAAAABdwAAAAAAMAAAAAABDQAAAAAADQAAAAAADQAAAAAADgAAAAAEDgAAAAAKgQAAAAAAGgAAAAACKQAAAAADGgAAAAADKQAAAAADGgAAAAAAgQAAAAAAbwAAAAAAMAAAAAADdwAAAAAAMAAAAAACDQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAABKQAAAAACGgAAAAACKQAAAAAAGgAAAAADKQAAAAADGgAAAAACdwAAAAAAdwAAAAABMAAAAAABDQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAAAKQAAAAAAGgAAAAADKQAAAAAAGgAAAAAAKQAAAAABGgAAAAABYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAACKQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAACYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAABMAAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAAD version: 6 -1,1: ind: -1,1 - tiles: bwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAAAMwAAAAACgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMwAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAQwAAAAACQwAAAAAEQwAAAAAEMAAAAAABMAAAAAACMAAAAAADYwAAAAAAMwAAAAADgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAQwAAAAAFQwAAAAAFQwAAAAAFQwAAAAADQwAAAAAAMAAAAAAAYwAAAAAAMwAAAAACgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAXwAAAAAAQwAAAAACQwAAAAAFQwAAAAACQwAAAAADMAAAAAADYwAAAAAAMwAAAAABgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAQwAAAAAEQwAAAAACMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAMAAAAAADMAAAAAACMAAAAAACMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAAAYwAAAAAAYwAAAAAADAAAAAACgQAAAAAAgQAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAABMAAAAAABMAAAAAABgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAADCQAAAAACCQAAAAABfQAAAAADfQAAAAABCQAAAAADCQAAAAABCQAAAAADgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAACCQAAAAAACQAAAAABfQAAAAACfQAAAAACCQAAAAADCQAAAAAACQAAAAABgQAAAAAAYwAAAAAA + tiles: bwAAAAAAdwAAAAABYwAAAAAAdwAAAAADdwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAADdwAAAAADdwAAAAADdwAAAAABdwAAAAABdwAAAAABdwAAAAADdwAAAAADdwAAAAACdwAAAAABdwAAAAABgQAAAAAAgQAAAAAAdwAAAAADdwAAAAABMAAAAAAAMAAAAAACMAAAAAADdwAAAAABYwAAAAAAdwAAAAACMAAAAAAAMAAAAAACMAAAAAACdwAAAAAAdwAAAAACMAAAAAADMwAAAAACgQAAAAAAgQAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAACdwAAAAADdwAAAAACdwAAAAADdwAAAAABdwAAAAABdwAAAAABdwAAAAADdwAAAAADMwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAADMAAAAAABMAAAAAAAdwAAAAAAdwAAAAABdwAAAAACMwAAAAADgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAQwAAAAADQwAAAAACQwAAAAAFMAAAAAADMAAAAAABMAAAAAACdwAAAAAAMwAAAAADgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAQwAAAAACQwAAAAAAQwAAAAADQwAAAAAEQwAAAAAEMAAAAAACdwAAAAACMwAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAXwAAAAAAQwAAAAADQwAAAAADQwAAAAADQwAAAAABMAAAAAAAdwAAAAADMwAAAAACgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAQwAAAAAAQwAAAAAEMAAAAAABdwAAAAADgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAADYwAAAAAAYwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAACMAAAAAABMAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAADCQAAAAACCQAAAAAAfQAAAAABfQAAAAACCQAAAAADCQAAAAABCQAAAAACgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAADCQAAAAAACQAAAAADfQAAAAADfQAAAAADCQAAAAACCQAAAAABCQAAAAADgQAAAAAAYwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: UAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADAAAAAACAwAAAAACAwAAAAAABgAAAAAABgAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgQAAAAAAAwAAAAAABgAAAAACCAAAAAAAgQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABgQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAACgQAAAAAADAAAAAADgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABgQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAAAgQAAAAAAKAAAAAADBAAAAAABfQAAAAACgQAAAAAAfQAAAAACfQAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACgQAAAAAACQAAAAAACgAAAAACCgAAAAABCQAAAAAAgQAAAAAAKAAAAAADBAAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAACfQAAAAABKAAAAAABBAAAAAACfQAAAAACgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAAAgQAAAAAAKAAAAAACBQAAAAABfQAAAAABgQAAAAAABQAAAAABBQAAAAABBQAAAAAAfQAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAADgQAAAAAABQAAAAAABQAAAAADgQAAAAAAKAAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAAABQAAAAABfQAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABgQAAAAAABQAAAAABBQAAAAACgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAGwAAAAAGgQAAAAAAgQAAAAAAYwAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAGwAAAAACGwAAAAAAgQAAAAAAgQAAAAAAGwAAAAAEgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAACGwAAAAACgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: UAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADAAAAAACAwAAAAADAwAAAAADBgAAAAAABgAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACgQAAAAAAAwAAAAAABgAAAAABCAAAAAAAgQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACgQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAAgQAAAAAADAAAAAACgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAACgQAAAAAAKAAAAAADBAAAAAACfQAAAAADgQAAAAAAfQAAAAABfQAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACgQAAAAAACQAAAAAACgAAAAABCgAAAAABCQAAAAADgQAAAAAAKAAAAAADBAAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAABKAAAAAACBAAAAAACfQAAAAACgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAKAAAAAADBQAAAAABfQAAAAADgQAAAAAABQAAAAADBQAAAAADBQAAAAACfQAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADgQAAAAAABQAAAAABBQAAAAADgQAAAAAAKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADgQAAAAAABQAAAAACBQAAAAADgQAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAABgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACGwAAAAAEgQAAAAAAgQAAAAAAYwAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAGwAAAAAFGwAAAAAEgQAAAAAAgQAAAAAAGwAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAACGwAAAAABgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: MAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAABGwAAAAABgQAAAAAAgQAAAAAAGwAAAAAFgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAADGwAAAAAGgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADDwAAAAAADwAAAAAADwAAAAADgQAAAAAADAAAAAACIAAAAAAAYAAAAAAAOgAAAAAADwAAAAAAIQAAAAAADwAAAAAAIQAAAAAADwAAAAADIQAAAAAADwAAAAAAOgAAAAAADwAAAAABDwAAAAADDwAAAAAAgQAAAAAADAAAAAADIAAAAAAAYAAAAAACOgAAAAAADwAAAAADIQAAAAAADwAAAAADIQAAAAAADwAAAAABIQAAAAAADwAAAAACOgAAAAAADwAAAAADDwAAAAAADwAAAAACgQAAAAAAKAAAAAADIAAAAAAAYAAAAAACOgAAAAAADwAAAAAAIQAAAAAADwAAAAAAIQAAAAAADwAAAAAAIQAAAAAADwAAAAACOgAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAKAAAAAACIAAAAAAAYAAAAAACOgAAAAAADwAAAAABIQAAAAAADwAAAAACIQAAAAAADwAAAAADIQAAAAAADwAAAAACOgAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAYAAAAAACKAAAAAABIAAAAAAAYAAAAAABOgAAAAAADwAAAAACIQAAAAAADwAAAAACIQAAAAAADwAAAAACIQAAAAAADwAAAAADOgAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAKAAAAAACIAAAAAAAYAAAAAAAOgAAAAAADwAAAAACIQAAAAAADwAAAAABIQAAAAAADwAAAAAAIQAAAAAADwAAAAABOgAAAAAADwAAAAADDwAAAAAADwAAAAACgQAAAAAAKAAAAAADIAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADDwAAAAADDwAAAAADDwAAAAAAgQAAAAAADAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAAAIAAAAAAADwAAAAADDwAAAAACDwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAA + tiles: MAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGwAAAAAGgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAAFGwAAAAAGgQAAAAAAgQAAAAAAGwAAAAAGgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAADGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIQAAAAABIQAAAAAAIQAAAAACIQAAAAADIQAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADIAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACDwAAAAAADwAAAAAADwAAAAABgQAAAAAADAAAAAACIAAAAAAAYAAAAAACOgAAAAABDwAAAAAAIQAAAAAADwAAAAADIQAAAAACDwAAAAAAIQAAAAACDwAAAAACOgAAAAAADwAAAAABDwAAAAADDwAAAAABgQAAAAAADAAAAAABIAAAAAABYAAAAAABOgAAAAAADwAAAAADIQAAAAADDwAAAAADIQAAAAADDwAAAAABIQAAAAACDwAAAAACOgAAAAABDwAAAAABDwAAAAABDwAAAAACgQAAAAAAKAAAAAAAIAAAAAADYAAAAAABOgAAAAAADwAAAAABIQAAAAACDwAAAAACIQAAAAACDwAAAAACIQAAAAAADwAAAAADOgAAAAABYAAAAAACIAAAAAABYAAAAAAAgQAAAAAAKAAAAAAAIAAAAAABYAAAAAAAOgAAAAABDwAAAAABIQAAAAABDwAAAAAAIQAAAAACDwAAAAADIQAAAAADDwAAAAACOgAAAAADYAAAAAAAIAAAAAADYAAAAAACYAAAAAAAKAAAAAABIAAAAAABYAAAAAABOgAAAAAADwAAAAAAIQAAAAACDwAAAAACIQAAAAAADwAAAAAAIQAAAAAADwAAAAAAOgAAAAAAYAAAAAADIAAAAAABYAAAAAAAgQAAAAAAKAAAAAAAIAAAAAAAYAAAAAAAOgAAAAACDwAAAAABIQAAAAAADwAAAAACIQAAAAAADwAAAAABIQAAAAACDwAAAAADOgAAAAACDwAAAAADDwAAAAACDwAAAAAAgQAAAAAAKAAAAAADIAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACDwAAAAADDwAAAAADDwAAAAABgQAAAAAADAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAACIQAAAAABIAAAAAACIAAAAAAADwAAAAABDwAAAAADDwAAAAACgQAAAAAADAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: bwAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAHwAAAAAGHwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADAAAAAABDAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAZwAAAAAAMAAAAAAAKAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACEAAAAAAAIAAAAAACEAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAKAAAAAABKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAKAAAAAABKAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAADAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACDAAAAAACDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABIAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAOgAAAAADOgAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: bwAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAHwAAAAADHwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAADAAAAAACDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADAAAAAADDAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKAAAAAABKAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAZwAAAAAAMAAAAAACKAAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAABEAAAAAAAIAAAAAAAEAAAAAAAIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAKAAAAAACKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAKAAAAAACKAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAADAAAAAADDAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABDAAAAAACDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAIAAAAAACdwAAAAABgQAAAAAAgQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAABgQAAAAAAgQAAAAAAOgAAAAABOgAAAAADdwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 1,0: ind: 1,0 - tiles: YwAAAAAAYwAAAAAAMAAAAAABMAAAAAACMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAADAAAAAACDAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAADAAAAAABDAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABgQAAAAAAAAAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAKAAAAAABKAAAAAADgQAAAAAAgAAAAAAAgQAAAAAATAAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAACTAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAAgQAAAAAAMAAAAAABKAAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADTAAAAAAATAAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAKAAAAAACKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAAgQAAAAAAKAAAAAADKAAAAAADgQAAAAAAgAAAAAAAgQAAAAAATAAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAATAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAABgQAAAAAAAAAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAADAAAAAACDAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAADAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAA + tiles: dwAAAAADYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAdwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAdwAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAADAAAAAACDAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAADAAAAAAADAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAKAAAAAABKAAAAAABgQAAAAAAgAAAAAAAgQAAAAAATAAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAABTAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAADgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAAgQAAAAAAMAAAAAACKAAAAAADTAAAAAAATAAAAAAATAAAAAAATAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADTAAAAAAATAAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAAgQAAAAAAKAAAAAAAKAAAAAACgQAAAAAAgAAAAAAAgQAAAAAATAAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAABTAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAADAAAAAACDAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAADAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: DQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAEAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAACQAAAAAADgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAACgQAAAAAACQAAAAACMAAAAAABMAAAAAADMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABdAAAAAAAdAAAAAADdAAAAAACYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAgQAAAAAAYAAAAAAAZwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACgQAAAAAADAAAAAACZwAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADgQAAAAAADAAAAAABbwAAAAAAgQAAAAAAEQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAEQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAEwAAAAAADAAAAAAAgQAAAAAAEQAAAAAAgQAAAAAADAAAAAABEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAUgAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAbwAAAAAADAAAAAABgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAA + tiles: DQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAEAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADgQAAAAAACQAAAAACDgAAAAAGDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAgQAAAAAACQAAAAACMAAAAAACMAAAAAABMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAYwAAAAAAYwAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADdAAAAAACdAAAAAABdAAAAAAAYAAAAAADYAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADbwAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAEwAAAAAAUAAAAAAAgQAAAAAAYAAAAAACZwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAADAAAAAABZwAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAABgQAAAAAADAAAAAAAbwAAAAAAgQAAAAAAEQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAEQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAEwAAAAAADAAAAAABgQAAAAAAEQAAAAAAgQAAAAAADAAAAAACEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAUgAAAAABgQAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAbwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAA version: 6 1,1: ind: 1,1 - tiles: bwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAAgAAAAAAEgAAAAAAEgAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAADgQAAAAAAKQAAAAABGgAAAAAAKQAAAAADAgAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAKQAAAAADGgAAAAADKQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAADMAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAMwAAAAABIgAAAAACgQAAAAAAIgAAAAADMwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAACbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAKAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAMwAAAAACIgAAAAACIgAAAAABIgAAAAADMwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAADMwAAAAABMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAADGgAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAACAgAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAA + tiles: bwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAADAAAAAABZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAAgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAADgQAAAAAAKQAAAAADGgAAAAABKQAAAAADAgAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAKQAAAAACGgAAAAADKQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAADMwAAAAAAgQAAAAAAgQAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAMwAAAAACIgAAAAABgQAAAAAAIgAAAAAAMwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAACbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAKAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAMwAAAAACIgAAAAADIgAAAAADIgAAAAACMwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAABMwAAAAABMwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAADGgAAAAACGgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAADAgAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: FAAAAAADFAAAAAAAMAAAAAABMAAAAAAAMAAAAAADFAAAAAAAFAAAAAADIAAAAAACIAAAAAABIAAAAAAAbwAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAADAAAAAABYAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAABDwAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAUAAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAbwAAAAAAZwAAAAAAUAAAAAAAgQAAAAAABAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACgQAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAABAAAAAAAKgAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAABAAAAAACfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAUAAAAAAAgQAAAAAADAAAAAABgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAAAgQAAAAAADAAAAAACgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAARwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAZwAAAAAAgQAAAAAADAAAAAACgQAAAAAAgQAAAAAAdAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARwAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: FAAAAAAAFAAAAAADMAAAAAADMAAAAAABMAAAAAACFAAAAAACFAAAAAABIAAAAAABIAAAAAACIAAAAAAAbwAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAABIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAADAAAAAACYAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAABDwAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAUAAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAAwAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACgQAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAbwAAAAAAZwAAAAAAUAAAAAAAgQAAAAAABAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAABAAAAAADKgAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAABAAAAAAAfQAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAUAAAAAAAgQAAAAAADAAAAAABgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAADgQAAAAAADAAAAAABgQAAAAAADAAAAAADgQAAAAAAgQAAAAAARwAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAZwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAdAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAGwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAAFYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: MAAAAAADMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAAADAAAAAACYAAAAAAAMAAAAAAAMAAAAAABgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAGwAAAAAGYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAADMAAAAAAAYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADMAAAAAABYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACDAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAFgAAAAABFgAAAAABFgAAAAABYAAAAAABYAAAAAADYAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAABFgAAAAACFgAAAAADYAAAAAAAYAAAAAADYAAAAAADMAAAAAABYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAADAAAAAAAbwAAAAAAgQAAAAAAFgAAAAABFgAAAAADFgAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAADAAAAAAAEwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAA + tiles: MAAAAAADMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAABDAAAAAAAYAAAAAAAMAAAAAADMAAAAAACgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAAFYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAGwAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAMAAAAAACYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADMAAAAAADYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADDAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAFgAAAAAAFgAAAAADFgAAAAABYAAAAAABYAAAAAABYAAAAAADMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAABFgAAAAACFgAAAAAAYAAAAAADYAAAAAAAYAAAAAAAMAAAAAABYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAADAAAAAABbwAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAADAAAAAADEwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: gQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAZwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAACAAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAACgAAAAABYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAFAAAAAADFAAAAAABFAAAAAABgQAAAAAAYwAAAAAACgAAAAADYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFAAAAAABFAAAAAADFAAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAACAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAACOgAAAAADOgAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: gQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUgAAAAACZwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAACAAAAAACDAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAACgAAAAAAYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAFAAAAAACFAAAAAAAFAAAAAAAgQAAAAAAYwAAAAAACgAAAAACYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFAAAAAAAFAAAAAABFAAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAACAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAADgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAADOgAAAAADOgAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 2,0: ind: 2,0 - tiles: MAAAAAAAMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAACYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAADAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADbwAAAAAAAAAAAAAAgQAAAAAADAAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgAAAAAAAgQAAAAAADAAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAAA + tiles: MAAAAAADMAAAAAACMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAADAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAbwAAAAAAAAAAAAAAgQAAAAAADAAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAADAAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAKAAAAAACbwAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAACbwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAACbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAAC version: 6 -3,-2: ind: -3,-2 - tiles: IAAAAAACgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAIAAAAAABFAAAAAADFAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAFAAAAAABFAAAAAAAIAAAAAADIAAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAgQAAAAAADwAAAAACIAAAAAACFAAAAAABFAAAAAABIAAAAAACDwAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAADwAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAABDwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAADgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACMAAAAAACMAAAAAABMAAAAAADKQAAAAADgQAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABMAAAAAADMAAAAAAAMAAAAAAAKQAAAAADgQAAAAAAIAAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAAAMAAAAAACMAAAAAACMAAAAAACKQAAAAAAgQAAAAAAIAAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAADwAAAAACgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABYAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAADMAAAAAACMAAAAAAAMAAAAAAAFAAAAAAAFAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAA + tiles: IAAAAAABgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAABFAAAAAADFAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACFAAAAAACFAAAAAADIAAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAADwAAAAADIAAAAAAAFAAAAAAAFAAAAAACIAAAAAABDwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAADwAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAACDwAAAAACgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAAAgQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAABIAAAAAADeAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAeAAAAAAAIAAAAAAAMAAAAAABMAAAAAABMAAAAAABKQAAAAABgQAAAAAAeAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAeAAAAAAAIAAAAAAAMAAAAAABMAAAAAAAMAAAAAABKQAAAAABgQAAAAAAeAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIAAAAAACMAAAAAAAMAAAAAABMAAAAAAAKQAAAAAAgQAAAAAAeAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAeAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABIAAAAAADeAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAeAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACgQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAADDwAAAAACgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAACYAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAADMAAAAAABMAAAAAACMAAAAAAAFAAAAAACFAAAAAABIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAARwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASAAAAAAASAAAAAADSAAAAAABRwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAADwAAAAACSQAAAAADSQAAAAAASQAAAAAAgQAAAAAAcwAAAAACgQAAAAAASAAAAAADSAAAAAABSAAAAAAARwAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAADwAAAAADSQAAAAACSQAAAAADSQAAAAABgQAAAAAAcwAAAAABgQAAAAAASAAAAAABSAAAAAABSAAAAAABRwAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAADwAAAAABSQAAAAADSQAAAAABSQAAAAABgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAgQAAAAAADAAAAAADEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAARwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASAAAAAACSAAAAAADSAAAAAABRwAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAADwAAAAAASQAAAAABSQAAAAACSQAAAAACgQAAAAAAcwAAAAAAgQAAAAAASAAAAAAASAAAAAADSAAAAAABRwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAADwAAAAACSQAAAAADSQAAAAABSQAAAAADgQAAAAAAcwAAAAADgQAAAAAASAAAAAADSAAAAAAASAAAAAAARwAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAADwAAAAAASQAAAAABSQAAAAACSQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAgQAAAAAADAAAAAACEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAAfQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAABgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAASgAAAAACgQAAAAAAgQAAAAAAMAAAAAACMAAAAAACMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABYwAAAAAAYwAAAAAAMAAAAAABMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAMAAAAAACMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAABFgAAAAADFgAAAAAAfQAAAAAABAAAAAABBAAAAAACBAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfQAAAAABBAAAAAABBAAAAAABBAAAAAADgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAFQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAACfQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAABgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAASgAAAAADgQAAAAAAgQAAAAAAMAAAAAADMAAAAAADMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACMAAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAABFgAAAAACFgAAAAABfQAAAAAABAAAAAAABAAAAAADBAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAFgAAAAADFgAAAAAAFgAAAAADfQAAAAAABAAAAAACBAAAAAADBAAAAAABgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAFQAAAAACIQAAAAAAIQAAAAACIQAAAAACIQAAAAACFgAAAAADFgAAAAACFgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAADFwAAAAACFwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAMAAAAAABYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAABFwAAAAAAFwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAACFwAAAAABFwAAAAADFwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAFwAAAAACFwAAAAACFwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAABMAAAAAABgQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAMAAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAABfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAABgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAADfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAADgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAMAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAADMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAMAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAACgAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAADfQAAAAABLQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAAAfQAAAAAAGQAAAAAAMAAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAABfQAAAAAALQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAABFwAAAAACFwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAMAAAAAABYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAABFwAAAAABFwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAACFwAAAAACFwAAAAABFwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAFwAAAAABFwAAAAAAFwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADMAAAAAAAgQAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAMAAAAAACfQAAAAACfQAAAAAAfQAAAAADfQAAAAACfQAAAAACGAAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAAAfQAAAAACGAAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAMAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAACfQAAAAACGAAAAAAAgQAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAABMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAADMAAAAAABYwAAAAAAYwAAAAAAMAAAAAABMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABCgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAgQAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAABBAAAAAAAfQAAAAADLQAAAAADfQAAAAABfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAACGQAAAAAAMAAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAGgAAAAABfQAAAAAALQAAAAACfQAAAAADMAAAAAACMAAAAAAAMAAAAAAAfQAAAAAAHwAAAAAEfQAAAAAC version: 6 -1,2: ind: -1,2 - tiles: gQAAAAAAMAAAAAACKAAAAAAAKAAAAAADMAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAACKAAAAAAAKQAAAAADKAAAAAABKQAAAAADFgAAAAABFgAAAAADKAAAAAAAFgAAAAADKAAAAAABKAAAAAADKQAAAAACFgAAAAABgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAABFgAAAAADKAAAAAADfQAAAAADfQAAAAACfQAAAAADgQAAAAAAfQAAAAAAKAAAAAABKAAAAAACfQAAAAABfQAAAAABfQAAAAADgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAADFgAAAAACKAAAAAACKQAAAAABKAAAAAABFgAAAAACKAAAAAADKQAAAAABKAAAAAAAKQAAAAABKAAAAAADKQAAAAADKAAAAAACgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAABKAAAAAAAKAAAAAADfQAAAAADgQAAAAAAfQAAAAACfQAAAAACfQAAAAACFgAAAAABKAAAAAADfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAADKAAAAAADKAAAAAABKQAAAAAAKAAAAAAAFgAAAAAAKAAAAAABKQAAAAABKAAAAAADFgAAAAAAFgAAAAADKAAAAAABfQAAAAADgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAADFgAAAAADKAAAAAACKAAAAAADFgAAAAACKAAAAAADKQAAAAABKAAAAAAAKAAAAAACKAAAAAADKAAAAAACKQAAAAAAfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAADKAAAAAADFgAAAAAAKAAAAAABKAAAAAAAKAAAAAACKAAAAAAAFgAAAAADKAAAAAAAKQAAAAACKQAAAAACKAAAAAACfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAAAgQAAAAAAFgAAAAACgQAAAAAAgQAAAAAAFgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAACKQAAAAAAgQAAAAAAfQAAAAACKAAAAAACKAAAAAABKAAAAAAAFgAAAAAAKQAAAAADfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAAKAAAAAABgQAAAAAAfQAAAAADKAAAAAABKQAAAAABKQAAAAAAKQAAAAACKAAAAAADfQAAAAADgQAAAAAAYwAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAACFgAAAAAAgQAAAAAAfQAAAAACKQAAAAAAfQAAAAACfQAAAAADfQAAAAACKAAAAAADfQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAACKAAAAAAAgQAAAAAAfQAAAAAAKAAAAAACfQAAAAABfQAAAAADfQAAAAAAKQAAAAADfQAAAAABgQAAAAAAYwAAAAAAgQAAAAAABAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABFgAAAAADfQAAAAADfQAAAAADfQAAAAACKAAAAAABfQAAAAADgQAAAAAAYwAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAfQAAAAABfQAAAAADfQAAAAAAKAAAAAADfQAAAAABgQAAAAAAYwAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADKQAAAAACKQAAAAACKQAAAAACKQAAAAABFgAAAAAAfQAAAAACgQAAAAAAYwAAAAAA + tiles: gQAAAAAAMAAAAAABKAAAAAACKAAAAAADMAAAAAACgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAKAAAAAAAKQAAAAACKAAAAAAAKQAAAAAAFgAAAAADFgAAAAAAKAAAAAADFgAAAAACKAAAAAADKAAAAAABKQAAAAADFgAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAFgAAAAABKAAAAAACfQAAAAACfQAAAAACfQAAAAABgQAAAAAAfQAAAAADKAAAAAAAKAAAAAADfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAABFgAAAAADKAAAAAAAKQAAAAADKAAAAAABFgAAAAABKAAAAAAAKQAAAAABKAAAAAABKQAAAAACKAAAAAABKQAAAAABKAAAAAACgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAACKAAAAAAAKAAAAAACfQAAAAACgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABFgAAAAAAKAAAAAABfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAADKAAAAAADKAAAAAACKQAAAAACKAAAAAACFgAAAAAAKAAAAAADKQAAAAAAKAAAAAADFgAAAAABFgAAAAADKAAAAAACfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAABFgAAAAADKAAAAAAAKAAAAAADFgAAAAABKAAAAAABKQAAAAADKAAAAAADKAAAAAAAKAAAAAAAKAAAAAADKQAAAAAAfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAKAAAAAACFgAAAAADKAAAAAABKAAAAAADKAAAAAACKAAAAAAAFgAAAAADKAAAAAAAKQAAAAADKQAAAAAAKAAAAAABfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAAAgQAAAAAAFgAAAAADgQAAAAAAgQAAAAAAFgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAABKQAAAAABgQAAAAAAfQAAAAABKAAAAAADKAAAAAAAKAAAAAADFgAAAAACKQAAAAAAfQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAACKAAAAAACgQAAAAAAfQAAAAACKAAAAAACKQAAAAADKQAAAAAAKQAAAAABKAAAAAACfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAAAFgAAAAAAgQAAAAAAfQAAAAACKQAAAAACfQAAAAAAfQAAAAADfQAAAAADKAAAAAAAfQAAAAACgQAAAAAAYwAAAAAAgQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABKAAAAAACgQAAAAAAfQAAAAACKAAAAAADfQAAAAACfQAAAAAAfQAAAAAAKQAAAAACfQAAAAADgQAAAAAAYwAAAAAAgQAAAAAABAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAACFgAAAAADfQAAAAADfQAAAAADfQAAAAAAKAAAAAABfQAAAAAAgQAAAAAAYwAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAACFgAAAAADfQAAAAAAfQAAAAACfQAAAAACKAAAAAABfQAAAAADgQAAAAAAYwAAAAAAfQAAAAACfQAAAAABfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADFgAAAAACfQAAAAACgQAAAAAAYwAAAAAA version: 6 0,2: ind: 0,2 - tiles: MAAAAAACYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADMAAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAADKQAAAAAAKQAAAAABKQAAAAACMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABYwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABFAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABFAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAFAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABFAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAgQAAAAAA + tiles: MAAAAAABYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABMAAAAAABYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAABKQAAAAACKQAAAAABKQAAAAABMAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAABYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAADAAAAAACgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYAAAAAADYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAADYwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABFAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABFAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAADgQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAFAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADFAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAdAAAAAACcwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAABfQAAAAABgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAACfQAAAAACfQAAAAADfQAAAAADgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAwAAAAABAwAAAAADcwAAAAABcwAAAAABcwAAAAADdAAAAAACGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAIAAAAAAAMAAAAAABIAAAAAADMAAAAAABgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAADMAAAAAACcwAAAAADGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABMAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAABMAAAAAAAcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAAAMAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABIAAAAAACMAAAAAADIAAAAAAAMAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAAAYAAAAAABYAAAAAADYAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABcwAAAAACcwAAAAABdAAAAAABdAAAAAADdAAAAAAAcwAAAAADcwAAAAACdAAAAAACYAAAAAADYAAAAAAAYAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAcwAAAAADcwAAAAACdAAAAAACdAAAAAADdAAAAAAAcwAAAAAAcwAAAAAAdAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABdAAAAAACcwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAfQAAAAABfQAAAAADfQAAAAABgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADAwAAAAABAwAAAAADcwAAAAABcwAAAAADcwAAAAADdAAAAAABGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAMAAAAAABIAAAAAABMAAAAAACIAAAAAACMAAAAAADgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAAAMAAAAAACcwAAAAADGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAAAMAAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAABMAAAAAABcwAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAACMAAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAIAAAAAACMAAAAAAAIAAAAAABMAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAeAAAAAADeAAAAAABeAAAAAAAeAAAAAAAeAAAAAABeAAAAAAAeAAAAAAAeAAAAAADYAAAAAACYAAAAAADYAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABeAAAAAABdgAAAAABRQAAAAACRQAAAAACRQAAAAADdgAAAAABdgAAAAACRQAAAAACYAAAAAAAYAAAAAABYAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAeAAAAAAAdgAAAAADRQAAAAADRQAAAAACRQAAAAABdgAAAAADdgAAAAAARQAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAcwAAAAADdAAAAAABcwAAAAACgQAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABAwAAAAACcwAAAAAAgQAAAAAAOAAAAAAAOAAAAAADVQAAAAAAIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdAAAAAAAdAAAAAACcwAAAAABcwAAAAABcwAAAAABAwAAAAADAwAAAAAAcwAAAAADMAAAAAADOAAAAAAAOAAAAAACVQAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAAAMAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAKAAAAAADgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAMAAAAAABcwAAAAABcwAAAAACMAAAAAADgQAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAFgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAMAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAVQAAAAAAIwAAAAAAVQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAKQAAAAABAwAAAAADAwAAAAACcwAAAAACcwAAAAABOwAAAAAADAAAAAABDAAAAAACOwAAAAAAcwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAPAAAAAAAAwAAAAADAwAAAAAAcwAAAAABcwAAAAAAOwAAAAAADAAAAAACDAAAAAAAOwAAAAAAcwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAPAAAAAAAcwAAAAABcwAAAAADcwAAAAAAMAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAPAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADcwAAAAABcwAAAAABMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAdAAAAAADdAAAAAADcwAAAAAAcwAAAAABdAAAAAAAdAAAAAADdAAAAAADcwAAAAACcwAAAAABMAAAAAACDgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAdAAAAAABdAAAAAAAcwAAAAACcwAAAAADdAAAAAACdAAAAAAAdAAAAAACcwAAAAADcwAAAAADMAAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAABcwAAAAACMAAAAAABDgAAAAAJDgAAAAAADgAAAAAADgAAAAADDQAAAAAADQAAAAAAMAAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAFDgAAAAAADQAAAAAADQAAAAAA + tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAcwAAAAADdAAAAAABcwAAAAAAgQAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADAwAAAAADcwAAAAACgQAAAAAAOAAAAAAAOAAAAAABVQAAAAAAIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdAAAAAACdAAAAAACcwAAAAACcwAAAAACcwAAAAADAwAAAAADAwAAAAADcwAAAAADMAAAAAACOAAAAAADOAAAAAAAVQAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADMAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAKAAAAAACgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAMAAAAAACcwAAAAADcwAAAAADMAAAAAABgQAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAFgAAAAACcwAAAAACcwAAAAACcwAAAAACMAAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAVQAAAAAAIwAAAAAAVQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAKQAAAAADAwAAAAABAwAAAAACcwAAAAACcwAAAAACOwAAAAAADAAAAAABDAAAAAADOwAAAAAAcwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAPAAAAAAAAwAAAAADAwAAAAADcwAAAAADcwAAAAADOwAAAAAADAAAAAADDAAAAAADOwAAAAAAcwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAPAAAAAAAcwAAAAABcwAAAAADcwAAAAACMAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAPAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADcwAAAAABcwAAAAABMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAADgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAARQAAAAADRQAAAAACdgAAAAADdgAAAAAARQAAAAAARQAAAAACRQAAAAABdgAAAAABeAAAAAACMAAAAAABDgAAAAAEDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAARQAAAAACRQAAAAADdgAAAAAAdgAAAAADRQAAAAAARQAAAAACRQAAAAADdgAAAAABeAAAAAAAMAAAAAAADgAAAAAFDgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAeAAAAAABeAAAAAABeAAAAAACeAAAAAABeAAAAAAAeAAAAAAAeAAAAAABeAAAAAADeAAAAAADMAAAAAACDgAAAAAFDgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAAMAAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAFDQAAAAAADQAAAAAA version: 6 2,1: ind: 2,1 - tiles: DAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACMwAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAAAAgAAAAAAMwAAAAABMwAAAAAAMAAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAADbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAABQAAAAADBQAAAAAABQAAAAADHwAAAAACfQAAAAABfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABQAAAAAABQAAAAADBQAAAAADfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAIgAAAAAAbwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAACHwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAACIgAAAAADMwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAIgAAAAAAIgAAAAAALQAAAAAAIgAAAAAAIgAAAAADbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAADIgAAAAAAMwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAIgAAAAADbwAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAAAIgAAAAAAIgAAAAABIgAAAAABIgAAAAACIgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAAC + tiles: DAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAADYAAAAAACYAAAAAADYAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAAAYAAAAAADYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAYAAAAAACYAAAAAADYAAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAADAgAAAAAAMwAAAAADMwAAAAAAMAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAABbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAACbwAAAAAABQAAAAACBQAAAAABBQAAAAAAHwAAAAABfQAAAAAAfQAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABQAAAAAABQAAAAABBQAAAAADfQAAAAACfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAIgAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAADfQAAAAABHwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAAAIgAAAAADMwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAIgAAAAAAIgAAAAAALQAAAAABIgAAAAABIgAAAAACbwAAAAAAKAAAAAACgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAABIgAAAAADMwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAIgAAAAABbwAAAAAAIgAAAAACIgAAAAADIgAAAAABIgAAAAABIgAAAAAAIgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAADIgAAAAACIgAAAAABIgAAAAADIgAAAAAAIgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAIgAAAAADIgAAAAACIgAAAAABIgAAAAADIgAAAAABIgAAAAAD version: 6 -4,0: ind: -4,0 - tiles: MAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAABMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAADDAAAAAADDAAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYAAAAAAARQAAAAAARQAAAAAARQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACHQAAAAAAHQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAYAAAAAAARQAAAAAAYAAAAAAARQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAARQAAAAAARQAAAAAARQAAAAAAYAAAAAAAgQAAAAAAFgAAAAADFgAAAAABFgAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAFgAAAAABFgAAAAAAFgAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAFgAAAAAAFgAAAAACFgAAAAACYAAAAAABYAAAAAADYAAAAAABbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAFgAAAAADFgAAAAAAFgAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACFgAAAAABFgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAZwAAAAAADAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAACHgAAAAAAHgAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACFgAAAAADFgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAFgAAAAACFgAAAAAD + tiles: MAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABMAAAAAACMAAAAAABMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAACMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYAAAAAADRQAAAAAARQAAAAADRQAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAYAAAAAABRQAAAAACYAAAAAAARQAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABRQAAAAADRQAAAAADRQAAAAACYAAAAAABgQAAAAAAFgAAAAABFgAAAAABFgAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAFgAAAAABFgAAAAADFgAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAFgAAAAACFgAAAAABFgAAAAAAYAAAAAADYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAFgAAAAAAFgAAAAADFgAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAABFgAAAAABFgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACFgAAAAACFgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAZwAAAAAADAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAADHgAAAAAAHgAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAFgAAAAABFgAAAAAD version: 6 -4,-1: ind: -4,-1 - tiles: IAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABgQAAAAAAPQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAACgQAAAAAAPQAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAPQAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAABfQAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAABfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADKAAAAAACKAAAAAAAKAAAAAAAKAAAAAADgQAAAAAAKAAAAAACKAAAAAABKAAAAAACKAAAAAACKAAAAAACKAAAAAACfQAAAAACJAAAAAAAfQAAAAABfQAAAAAAfQAAAAADKAAAAAADKAAAAAAAKAAAAAAAKAAAAAABgQAAAAAAKAAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAKAAAAAADfQAAAAAAJAAAAAAAfQAAAAACfQAAAAADfQAAAAACKAAAAAACKAAAAAAAKAAAAAADKAAAAAADgQAAAAAAKAAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAACKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADfQAAAAADfQAAAAABfQAAAAACfQAAAAADKAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAACHwAAAAAAgQAAAAAAKAAAAAACfQAAAAABfQAAAAADfQAAAAABfQAAAAAAKAAAAAABdAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAABfQAAAAABfQAAAAADgQAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAABKAAAAAADKAAAAAAARwAAAAABDAAAAAADDAAAAAADDAAAAAABDAAAAAACgQAAAAAAgQAAAAAAHwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKAAAAAACBQAAAAACKAAAAAACgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: IAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAPQAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAPQAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAPQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAABfQAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAADfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACKAAAAAADKAAAAAACKAAAAAABKAAAAAABgQAAAAAAKAAAAAADKAAAAAADKAAAAAABKAAAAAADKAAAAAAAKAAAAAABfQAAAAABJAAAAAAAfQAAAAABfQAAAAADfQAAAAAAKAAAAAAAKAAAAAADKAAAAAABKAAAAAAAgQAAAAAAKAAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAKAAAAAACfQAAAAABJAAAAAAAfQAAAAACfQAAAAACfQAAAAADKAAAAAADKAAAAAADKAAAAAADKAAAAAABgQAAAAAAKAAAAAACfQAAAAADfQAAAAABfQAAAAABfQAAAAABKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACfQAAAAAAfQAAAAAAfQAAAAACfQAAAAADKAAAAAAARwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAEgQAAAAAAKAAAAAACfQAAAAAAfQAAAAACfQAAAAACfQAAAAADKAAAAAAAdAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAACfQAAAAADfQAAAAABgQAAAAAAKAAAAAACKAAAAAAAKAAAAAACKAAAAAABKAAAAAACKAAAAAACRwAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAABgQAAAAAAgQAAAAAAHwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKAAAAAACBQAAAAADKAAAAAABgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: gQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKQAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAfQAAAAADLAAAAAAALAAAAAAALAAAAAAAgQAAAAAAKQAAAAACHgAAAAAAHgAAAAAABQAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAAALAAAAAAALAAAAAAALAAAAAAABQAAAAAAKQAAAAADBQAAAAADBQAAAAACBQAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAABQAAAAADBQAAAAADfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAABQAAAAAABQAAAAAAfQAAAAACfQAAAAACHgAAAAAABQAAAAADgQAAAAAAKQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAADgQAAAAAABQAAAAABBQAAAAACfQAAAAADfQAAAAAAHgAAAAAABQAAAAADgQAAAAAAKQAAAAACbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAACgQAAAAAAUwAAAAACgQAAAAAAPQAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAPQAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAAD + tiles: gQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAfQAAAAADLAAAAAAALAAAAAAALAAAAAAAgQAAAAAAKQAAAAACHgAAAAAAHgAAAAAABQAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAALAAAAAAALAAAAAAALAAAAAAABQAAAAAAKQAAAAABBQAAAAABBQAAAAAABQAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAABQAAAAACBQAAAAADfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAABgQAAAAAABQAAAAADBQAAAAAAfQAAAAAAfQAAAAADHgAAAAAABQAAAAADgQAAAAAAKQAAAAADbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAACgQAAAAAABQAAAAABBQAAAAACfQAAAAADfQAAAAADHgAAAAAABQAAAAABgQAAAAAAKQAAAAABbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAACgQAAAAAAUwAAAAADgQAAAAAAPQAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAPQAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAC version: 6 -4,1: ind: -4,1 - tiles: gQAAAAAADAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAABAAAAAADBAAAAAACIgAAAAADIgAAAAADIgAAAAADIgAAAAABBAAAAAAABAAAAAACgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAACFwAAAAACgQAAAAAABAAAAAABBAAAAAAAIgAAAAAAIgAAAAAAIgAAAAACIgAAAAABBAAAAAAABAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAACFwAAAAACgQAAAAAABAAAAAADBAAAAAABIgAAAAAAIgAAAAADIgAAAAAAIgAAAAACBAAAAAAABAAAAAACgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAADFwAAAAACgQAAAAAABAAAAAABBAAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAABBAAAAAAABAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAMAAAAAACGAAAAAAAgQAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACDAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADAAAAAABDAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAACDAAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAGAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAABDAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABMAAAAAAAMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: gQAAAAAADAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAACFwAAAAADgQAAAAAABAAAAAADBAAAAAADIgAAAAAAIgAAAAADIgAAAAACIgAAAAABBAAAAAABBAAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAACFwAAAAAAgQAAAAAABAAAAAABBAAAAAAAIgAAAAAAIgAAAAACIgAAAAADIgAAAAABBAAAAAAABAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAADFwAAAAADgQAAAAAABAAAAAABBAAAAAADIgAAAAADIgAAAAAAIgAAAAABIgAAAAADBAAAAAABBAAAAAADgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFwAAAAAAFwAAAAACgQAAAAAABAAAAAABBAAAAAADIgAAAAACIgAAAAAAIgAAAAACIgAAAAABBAAAAAAABAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAMAAAAAAAGAAAAAAAgQAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADDAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAACBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADAAAAAADDAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAABDAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAGAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAACMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAACMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAADDAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAACDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABMAAAAAACMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAABQAAAAACHgAAAAAABQAAAAADHgAAAAAACAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACAAAAAADfQAAAAABfQAAAAABBQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAABCAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACAAAAAADfQAAAAADfQAAAAADfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAABfQAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAABQAAAAADHgAAAAAABQAAAAAAHgAAAAAACAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACAAAAAAAfQAAAAAAfQAAAAADBQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAAACAAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACAAAAAACfQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: EwAAAAAAbwAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAACCAAAAAABUgAAAAABEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAABgQAAAAAAawAAAAAAawAAAAABIAAAAAABIAAAAAADgQAAAAAAIAAAAAABIAAAAAADIAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAAAawAAAAABawAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAADawAAAAABIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAfQAAAAABfQAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAawAAAAAAawAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABfQAAAAACfQAAAAACfQAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAawAAAAACawAAAAACIAAAAAAAIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAfQAAAAADfQAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAawAAAAADawAAAAAAIAAAAAACIAAAAAADgQAAAAAAIAAAAAADIAAAAAACIAAAAAADgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAAAgQAAAAAAawAAAAADawAAAAABIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACfQAAAAADfQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAADwAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAABDwAAAAADgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAABgQAAAAAADwAAAAABIAAAAAABFAAAAAAAFAAAAAAAIAAAAAAADwAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADFAAAAAABFAAAAAAAIAAAAAABIAAAAAABgQAAAAAA + tiles: EwAAAAAAbwAAAAAACAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAABCAAAAAACUgAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAIAAAAAACgQAAAAAAawAAAAABawAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAACawAAAAACawAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAACawAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAfQAAAAACfQAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAawAAAAACawAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAABfQAAAAACfQAAAAADfQAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAACgQAAAAAAawAAAAAAawAAAAADIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAfQAAAAAAfQAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAADgQAAAAAAawAAAAABawAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAawAAAAACawAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAfQAAAAADfQAAAAACIAAAAAACgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAADwAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAAADwAAAAACgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAAAgQAAAAAADwAAAAAAIAAAAAABFAAAAAACFAAAAAACIAAAAAACDwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABFAAAAAADFAAAAAAAIAAAAAABIAAAAAADgQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: gQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAbwAAAAAAUgAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAADfQAAAAADgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAACAAAAAABUAAAAAAAEwAAAAAAbwAAAAAAUgAAAAABBQAAAAABfQAAAAACfQAAAAADBQAAAAACgQAAAAAAbwAAAAAAEwAAAAAAUgAAAAABEwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAEwAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAACawAAAAAAawAAAAADawAAAAABawAAAAAAawAAAAABawAAAAAAfQAAAAACfQAAAAABHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAADawAAAAADawAAAAACawAAAAABawAAAAADawAAAAADawAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAACawAAAAABawAAAAABawAAAAABawAAAAAAawAAAAADawAAAAABBQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAAAawAAAAAAawAAAAADawAAAAABawAAAAACawAAAAADawAAAAADBQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAABawAAAAADawAAAAAAawAAAAADawAAAAAAawAAAAACawAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAABawAAAAAAawAAAAADawAAAAAAawAAAAAAawAAAAADawAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAawAAAAABawAAAAADawAAAAACawAAAAABawAAAAABawAAAAABawAAAAACgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAB + tiles: gQAAAAAAfQAAAAABgQAAAAAAfQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAbwAAAAAAUgAAAAACbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAACfQAAAAACgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAACAAAAAAAUAAAAAAAEwAAAAAAbwAAAAAAUgAAAAAABQAAAAADfQAAAAADfQAAAAADBQAAAAACgQAAAAAAbwAAAAAAEwAAAAAAUgAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAEwAAAAAAfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAADawAAAAAAawAAAAAAawAAAAADawAAAAABawAAAAADawAAAAAAfQAAAAADfQAAAAADHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAACawAAAAAAawAAAAACawAAAAAAawAAAAAAawAAAAABawAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAAAawAAAAABawAAAAADawAAAAABawAAAAABawAAAAAAawAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAADawAAAAABawAAAAAAawAAAAABawAAAAABawAAAAAAawAAAAAABQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAACawAAAAADawAAAAABawAAAAADawAAAAACawAAAAABawAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAABawAAAAABawAAAAAAawAAAAADawAAAAAAawAAAAACawAAAAADbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAawAAAAABawAAAAACawAAAAACawAAAAAAawAAAAACawAAAAACawAAAAABgQAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAD version: 6 -5,-1: ind: -5,-1 - tiles: BAAAAAADBAAAAAACBAAAAAAABAAAAAADfQAAAAACgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABfQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAIAAAAAABIAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACfQAAAAACgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAZwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAMgAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAZwAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAaAAAAAAAJwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAACUgAAAAABZwAAAAAAgQAAAAAABwAAAAAAMwAAAAAAMwAAAAAABwAAAAAAgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: BAAAAAADBAAAAAADBAAAAAAABAAAAAADfQAAAAABgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAABfQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADfQAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAABgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADgQAAAAAAZwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAfQAAAAABfQAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAABfQAAAAACIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAACfQAAAAACIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAMgAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAaAAAAAAAJwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAADUgAAAAABZwAAAAAAgQAAAAAABwAAAAAAMwAAAAACMwAAAAABBwAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: PAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAACAAAAAABgQAAAAAAgAAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAUgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACfQAAAAABgQAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAAfQAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAAB + tiles: PAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAACAAAAAABgQAAAAAAgAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAACIAAAAAACIAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAADIAAAAAACIAAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAUgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAfQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACfQAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAAC version: 6 -5,-3: ind: -5,-3 - tiles: gQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAAgQAAAAAABQAAAAABfQAAAAABfQAAAAABfQAAAAABfQAAAAADBQAAAAABBQAAAAAAfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADgQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAABQAAAAADBQAAAAACfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAABQAAAAACBQAAAAADfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAfQAAAAABfQAAAAADfQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAUgAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAACAAAAAADgQAAAAAAgAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAA + tiles: gQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAACgQAAAAAABQAAAAADfQAAAAAAfQAAAAADfQAAAAADfQAAAAADBQAAAAADBQAAAAADfQAAAAABfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAAABQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABgQAAAAAABQAAAAAABQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACgQAAAAAABQAAAAACBQAAAAADfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABfQAAAAACfQAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACfQAAAAAAfQAAAAACbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAUgAAAAABgQAAAAAAgQAAAAAABQAAAAACgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAADgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAACAAAAAADgQAAAAAAgAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: cwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAcwAAAAADcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAACAAAAAAAcwAAAAADIwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACUgAAAAABYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAUAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADUgAAAAABgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUgAAAAACCAAAAAADCAAAAAADEwAAAAAACAAAAAADUAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAADEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAACAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUgAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAACEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAACAAAAAACgQAAAAAAEwAAAAAAbwAAAAAAUgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAA + tiles: cwAAAAACcwAAAAACcwAAAAABcwAAAAACgQAAAAAAcwAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAACAAAAAACcwAAAAABIwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAUgAAAAAAYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAUAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADUgAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUgAAAAABCAAAAAABCAAAAAAAEwAAAAAACAAAAAACUAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAADEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAACAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUgAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAUgAAAAACbwAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADcwAAAAABcwAAAAABcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAcwAAAAABcwAAAAADEwAAAAAAEwAAAAAAgQAAAAAAfQAAAAACfQAAAAACcwAAAAADgQAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAALQAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAACUgAAAAABUAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABLQAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAABUgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAABNAAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAANAAAAAAANAAAAAABbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAUgAAAAACUgAAAAABgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAADLQAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAACLQAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAbwAAAAAAUgAAAAABEwAAAAAAEwAAAAAAUgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAKwAAAAAAEwAAAAAAKwAAAAABKwAAAAAAUAAAAAAAKwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAAUgAAAAAAbwAAAAAAKwAAAAABKwAAAAADKwAAAAACUgAAAAACEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAADKwAAAAADKwAAAAAAbwAAAAAAKwAAAAADbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAACUgAAAAABBQAAAAADgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAKwAAAAADKwAAAAABKwAAAAACKwAAAAABKwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACBQAAAAACfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAACAAAAAACgQAAAAAAgQAAAAAACAAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAcwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAcwAAAAACcwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAfQAAAAADfQAAAAADcwAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAADLQAAAAABcwAAAAACcwAAAAADcwAAAAABcwAAAAADUgAAAAAAUAAAAAAAgQAAAAAAfQAAAAAAfQAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAABLQAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAADUgAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAACNAAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAANAAAAAAANAAAAAABbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAUgAAAAAAUgAAAAACgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAAALQAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAABbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAABLQAAAAADcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcwAAAAACcwAAAAACgQAAAAAAcwAAAAACcwAAAAABcwAAAAACgQAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAbwAAAAAAUgAAAAACEwAAAAAAEwAAAAAAUgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAKwAAAAADEwAAAAAAKwAAAAACKwAAAAADUAAAAAAAKwAAAAACEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAABgQAAAAAAUgAAAAAAbwAAAAAAKwAAAAABKwAAAAACKwAAAAACUgAAAAABEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAKwAAAAABKwAAAAAAKwAAAAACKwAAAAAAbwAAAAAAKwAAAAADbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAABUgAAAAACBQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAABKwAAAAAAKwAAAAABKwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABBQAAAAADfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAACAAAAAABgQAAAAAAgQAAAAAACAAAAAAD version: 6 -5,-4: ind: -5,-4 - tiles: gQAAAAAAgQAAAAAAUgAAAAAAEwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUgAAAAABEwAAAAAAEwAAAAAAKwAAAAACEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUgAAAAABKwAAAAAAEwAAAAAAKwAAAAADgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABUgAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAUgAAAAABEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUgAAAAACUgAAAAACEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUgAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKwAAAAACKwAAAAADKwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUgAAAAACKwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAKwAAAAAAKwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAKwAAAAABgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADfQAAAAADfQAAAAADBQAAAAAAgQAAAAAABQAAAAADgQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAABQAAAAADfQAAAAACfQAAAAAABQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAABQAAAAACfQAAAAABfQAAAAAABQAAAAADgQAAAAAABQAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADBQAAAAABgQAAAAAAAgAAAAAABQAAAAADBQAAAAAAgQAAAAAABQAAAAAAfQAAAAADfQAAAAAABQAAAAACgQAAAAAABQAAAAABfQAAAAADfQAAAAAAfQAAAAACfQAAAAAABQAAAAACgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAA + tiles: gQAAAAAAgQAAAAAAUgAAAAACEwAAAAAAUgAAAAACUgAAAAACUAAAAAAAUAAAAAAAUgAAAAABEwAAAAAAEwAAAAAAKwAAAAADEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAKwAAAAABEwAAAAAAKwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABUgAAAAACEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUgAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAUgAAAAACEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUgAAAAABUgAAAAABEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUgAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKwAAAAAAKwAAAAADKwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUgAAAAAAKwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAKwAAAAADKwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAKwAAAAACgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADfQAAAAAAfQAAAAABBQAAAAAAgQAAAAAABQAAAAADgQAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABgQAAAAAABQAAAAABfQAAAAABfQAAAAABBQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAgQAAAAAABQAAAAAAfQAAAAADfQAAAAAABQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACBQAAAAABgQAAAAAAAgAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAABfQAAAAAAfQAAAAABBQAAAAADgQAAAAAABQAAAAACfQAAAAADfQAAAAAAfQAAAAADfQAAAAABBQAAAAACgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAD version: 6 -5,0: ind: -5,0 - tiles: gQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAMwAAAAAAMwAAAAAABwAAAAAABwAAAAAAYwAAAAAAMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABZwAAAAAAUAAAAAAAgQAAAAAABwAAAAAAMwAAAAAAMwAAAAAABwAAAAAAMAAAAAADYwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADDAAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABBAAAAAADBAAAAAADfQAAAAABBAAAAAAAfQAAAAACBAAAAAACHQAAAAAAHQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAABfQAAAAABfQAAAAAAfQAAAAADBAAAAAABgQAAAAAAHQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAABAAAAAADBAAAAAABfQAAAAAAMwAAAAADIgAAAAABMwAAAAACfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIgAAAAAAMwAAAAACIgAAAAAAfQAAAAACfQAAAAADfQAAAAACgQAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAMwAAAAAAIgAAAAABMwAAAAACfQAAAAACfQAAAAABfQAAAAABMAAAAAACYAAAAAABfQAAAAACBQAAAAABfQAAAAAAfQAAAAAADAAAAAABfQAAAAACfQAAAAACfQAAAAADMAAAAAAAMAAAAAAAMAAAAAADBAAAAAABBAAAAAAAfQAAAAADYAAAAAAAYAAAAAACfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAACMwAAAAAAIgAAAAADMwAAAAAAfQAAAAABBAAAAAADBAAAAAACMAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABBAAAAAADfQAAAAAAIgAAAAACMwAAAAADIgAAAAABfQAAAAAAfQAAAAADfQAAAAABgQAAAAAAYAAAAAADgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAADBAAAAAACfQAAAAABMwAAAAADIgAAAAABMwAAAAACfQAAAAABfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAABfQAAAAADfQAAAAAABAAAAAABBAAAAAAAfQAAAAAAfQAAAAACfQAAAAAABAAAAAABgQAAAAAAHgAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAABAAAAAACBAAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAAABAAAAAADBAAAAAADHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAADAAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAMwAAAAABMwAAAAADBwAAAAAABwAAAAAAYwAAAAAAMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABZwAAAAAAUAAAAAAAgQAAAAAABwAAAAAAMwAAAAACMwAAAAADBwAAAAAAMAAAAAADYwAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACDAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABBAAAAAAABAAAAAABfQAAAAADBAAAAAACfQAAAAADBAAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAABAAAAAACgQAAAAAAHQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAABAAAAAADBAAAAAABfQAAAAABMwAAAAACIgAAAAADMwAAAAACfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADIgAAAAAAMwAAAAADIgAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAYAAAAAADfQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAABfQAAAAACMwAAAAACIgAAAAACMwAAAAADfQAAAAABfQAAAAAAfQAAAAAAMAAAAAABYAAAAAABfQAAAAAABQAAAAABfQAAAAADfQAAAAACDAAAAAAAfQAAAAABfQAAAAAAfQAAAAADMAAAAAADMAAAAAADMAAAAAAABAAAAAADBAAAAAACfQAAAAABYAAAAAADYAAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABMwAAAAABIgAAAAACMwAAAAABfQAAAAABBAAAAAADBAAAAAADMAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAABfQAAAAADIgAAAAABMwAAAAADIgAAAAADfQAAAAADfQAAAAADfQAAAAABgQAAAAAAYAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfQAAAAAABAAAAAAAfQAAAAADMwAAAAADIgAAAAACMwAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAADfQAAAAABfQAAAAADBAAAAAABBAAAAAAAfQAAAAACfQAAAAACfQAAAAADBAAAAAADgQAAAAAAHgAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAABAAAAAADBAAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAACfQAAAAABBAAAAAADBAAAAAABHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACDAAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKwAAAAACUAAAAAAAKwAAAAABKwAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKwAAAAACKwAAAAABKwAAAAABKwAAAAACUgAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKwAAAAAAKwAAAAAAKwAAAAABUgAAAAABKwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKwAAAAADEwAAAAAAKwAAAAAAKwAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAACgQAAAAAAgQAAAAAAUgAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAADgQAAAAAAIgAAAAACgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAMwAAAAABMwAAAAAAgQAAAAAAMwAAAAABMwAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAABMwAAAAAAgQAAAAAAMwAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAaQAAAAABgQAAAAAAgQAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAaQAAAAAAgQAAAAAAaQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAUAAAAAAAKwAAAAACKwAAAAACKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKwAAAAADKwAAAAADKwAAAAABKwAAAAACUgAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKwAAAAACKwAAAAADKwAAAAAAUgAAAAACKwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAEwAAAAAAKwAAAAABKwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIgAAAAADIgAAAAAAIgAAAAACgQAAAAAAgQAAAAAAUgAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAADgQAAAAAAIgAAAAABgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAMwAAAAACMwAAAAABgQAAAAAAMwAAAAACMwAAAAACMwAAAAAAgQAAAAAAMwAAAAAAMwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAACMwAAAAABgQAAAAAAMwAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAaQAAAAACgQAAAAAAgQAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAaQAAAAACgQAAAAAAaQAAAAABMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: gQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAaQAAAAADaQAAAAABaQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAMwAAAAABMwAAAAADgQAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAMwAAAAACMwAAAAABMwAAAAAAgQAAAAAAMwAAAAAAMwAAAAABMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAA + tiles: gQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAaQAAAAABaQAAAAACaQAAAAABMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAMwAAAAADMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAMwAAAAADMwAAAAABMwAAAAADgQAAAAAAMwAAAAABMwAAAAABMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAMAAAAAAAMAAAAAABKwAAAAADKwAAAAADfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAgQAAAAAAMAAAAAADMAAAAAACMAAAAAADMAAAAAACfQAAAAABfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAgQAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAADfQAAAAADfQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAMAAAAAACMAAAAAADKwAAAAABKwAAAAADfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAgQAAAAAAMAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABgQAAAAAAMAAAAAAAMAAAAAACMAAAAAABMAAAAAAAfQAAAAABfQAAAAAC version: 6 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAgQAAAAAAMAAAAAACMAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAgQAAAAAAMAAAAAACMAAAAAABMAAAAAACMAAAAAACfQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAgQAAAAAAMAAAAAABMAAAAAAAMAAAAAADMAAAAAAAfQAAAAABfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAMAAAAAAAMAAAAAACKwAAAAACKwAAAAADfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACgQAAAAAAMAAAAAABMAAAAAABKwAAAAADKwAAAAADKwAAAAAAfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABgQAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAADfQAAAAACfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADgQAAAAAAMAAAAAABMAAAAAACMAAAAAABMAAAAAAAfQAAAAABfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAMAAAAAABMAAAAAABKwAAAAAAKwAAAAAAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAYAAAAAADgQAAAAAAEwAAAAAAEwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAA version: 6 -6,0: ind: -6,0 - tiles: gAAAAAAAAAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAUgAAAAABbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAQwAAAAAAQwAAAAADQwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQwAAAAACQwAAAAABQwAAAAADgQAAAAAAYAAAAAADEwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAQwAAAAABQwAAAAAFgQAAAAAAZwAAAAAAYAAAAAACbwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAFgAAAAAAKAAAAAAAKAAAAAADFgAAAAABFgAAAAABKAAAAAADfQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAADfQAAAAAABQAAAAADBQAAAAADBQAAAAAAfQAAAAADFgAAAAABKAAAAAADFgAAAAADKAAAAAADKQAAAAADFgAAAAADDAAAAAAAfQAAAAABfQAAAAAABQAAAAABfQAAAAABBQAAAAAABQAAAAABgQAAAAAABQAAAAADBQAAAAABFgAAAAAAKQAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABBQAAAAAABQAAAAADBQAAAAAAfQAAAAABDAAAAAAADAAAAAACDAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAACMAAAAAABRwAAAAADMAAAAAADMAAAAAAAgQAAAAAAgQAAAAAALAAAAAAABAAAAAADfQAAAAABDAAAAAACgQAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAASwAAAAAASwAAAAAASwAAAAADSwAAAAADSwAAAAADgQAAAAAALAAAAAAALAAAAAAABAAAAAAABAAAAAABBAAAAAABgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASwAAAAABSwAAAAABMAAAAAAASwAAAAAASwAAAAAAgQAAAAAALAAAAAAALAAAAAAAfQAAAAADBAAAAAAAfQAAAAABgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAASwAAAAADSwAAAAABSwAAAAABSwAAAAABSwAAAAACgQAAAAAALAAAAAAALAAAAAAABAAAAAADfQAAAAABBAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gAAAAAAAAAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAUgAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAQwAAAAAFQwAAAAAFQwAAAAADgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQwAAAAABQwAAAAADQwAAAAACgQAAAAAAYAAAAAABEwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAQwAAAAAFQwAAAAABgQAAAAAAZwAAAAAAYAAAAAACbwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAFgAAAAACKAAAAAAAKAAAAAACFgAAAAADFgAAAAACKAAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAABfQAAAAACBQAAAAABBQAAAAABBQAAAAAAfQAAAAABFgAAAAAAKAAAAAABFgAAAAAAKAAAAAABKQAAAAADFgAAAAABDAAAAAABfQAAAAADfQAAAAAABQAAAAADfQAAAAABBQAAAAADBQAAAAACgQAAAAAABQAAAAADBQAAAAAAFgAAAAAAKQAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAAABQAAAAAABQAAAAACBQAAAAACfQAAAAADDAAAAAABDAAAAAACDAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAARwAAAAABMAAAAAABMAAAAAAAgQAAAAAAgQAAAAAALAAAAAAABAAAAAABfQAAAAADDAAAAAADgQAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAASwAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAACgQAAAAAALAAAAAAALAAAAAAABAAAAAAABAAAAAABBAAAAAABgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASwAAAAABSwAAAAAAMAAAAAACSwAAAAAASwAAAAACgQAAAAAALAAAAAAALAAAAAAAfQAAAAACBAAAAAAAfQAAAAABgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAASwAAAAADSwAAAAADSwAAAAADSwAAAAAASwAAAAAAgQAAAAAALAAAAAAALAAAAAAABAAAAAACfQAAAAABBAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAAAdAAAAAADcwAAAAACgQAAAAAAgQAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAACGQAAAAAAGQAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAACgQAAAAAAcwAAAAAAdAAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAACGQAAAAAAGQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAABMAAAAAABcwAAAAACdAAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADGQAAAAAAGQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACBQAAAAADcwAAAAACdAAAAAABcwAAAAACgQAAAAAAfQAAAAACgQAAAAAABQAAAAABBQAAAAAABQAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAfQAAAAADMAAAAAADcwAAAAAAdAAAAAABcwAAAAAAgQAAAAAAfQAAAAACgQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAADBQAAAAABHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABdAAAAAACcwAAAAACgQAAAAAAfQAAAAACgQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAACYQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAABgQAAAAAAcwAAAAAAAwAAAAADcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAcwAAAAACAwAAAAABAwAAAAABcwAAAAABdAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAAAEwAAAAAACAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAACAAAAAAAbwAAAAAAEwAAAAAAUgAAAAAACAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAABEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAACAAAAAABgQAAAAAAbwAAAAAACAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAUgAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAABGQAAAAAAGQAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAADgQAAAAAAcwAAAAAAdAAAAAAAcwAAAAACgQAAAAAAgQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAACGQAAAAAAGQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAADdAAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAABBQAAAAACGQAAAAAAGQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAACMAAAAAABcwAAAAABdAAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAGQAAAAAAGQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACBQAAAAAAcwAAAAACdAAAAAAAcwAAAAACgQAAAAAAfQAAAAADgQAAAAAABQAAAAADBQAAAAAABQAAAAADgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAfQAAAAACMAAAAAACcwAAAAADdAAAAAABcwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAADHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADdAAAAAADcwAAAAACgQAAAAAAfQAAAAABgQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABYQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAABgQAAAAAAcwAAAAADAwAAAAACcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAcwAAAAAAAwAAAAACAwAAAAABcwAAAAABdAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAEwAAAAAACAAAAAACgQAAAAAAgQAAAAAAbwAAAAAACAAAAAADbwAAAAAAEwAAAAAAUgAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAACAAAAAAAgQAAAAAAbwAAAAAACAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAUgAAAAABEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAASwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAHgAAAAAAfQAAAAADgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAdAAAAAABdAAAAAADdAAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAcwAAAAABdAAAAAACcwAAAAAAgQAAAAAAdAAAAAABdAAAAAABdAAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAcwAAAAAAdAAAAAACcwAAAAABgQAAAAAAdAAAAAADdAAAAAACdAAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAABfQAAAAABfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAcwAAAAACdAAAAAADcwAAAAACgQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAMAAAAAACMAAAAAAAMAAAAAACgQAAAAAAMAAAAAADfQAAAAADMAAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAMAAAAAAAcwAAAAAAAwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAABdAAAAAACdAAAAAADdAAAAAABdAAAAAAAdAAAAAADdAAAAAABdAAAAAADdAAAAAADRwAAAAAAAwAAAAAAAwAAAAADcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAdAAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADMAAAAAAAcwAAAAAAAwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcwAAAAAAcwAAAAADZwAAAAAAcwAAAAACcwAAAAACgQAAAAAAcwAAAAABdAAAAAADcwAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAcwAAAAADdAAAAAACcwAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcwAAAAACcwAAAAADZwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAAAdAAAAAADcwAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAACdAAAAAAAcwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAASwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAHgAAAAAAfQAAAAADgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAABgQAAAAAAdAAAAAAAdAAAAAACdAAAAAACBQAAAAABBQAAAAADBQAAAAACBQAAAAABfQAAAAACfQAAAAADfQAAAAACfQAAAAABgQAAAAAAcwAAAAACdAAAAAACcwAAAAABgQAAAAAAdAAAAAADdAAAAAACdAAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAABgQAAAAAAcwAAAAADdAAAAAABcwAAAAABgQAAAAAAdAAAAAACdAAAAAABdAAAAAABBQAAAAACBQAAAAAABQAAAAABBQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAcwAAAAABdAAAAAACcwAAAAADgQAAAAAAdAAAAAABdAAAAAADdAAAAAADMAAAAAADMAAAAAADMAAAAAAAgQAAAAAAMAAAAAABfQAAAAADMAAAAAADgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAABMAAAAAAAcwAAAAABAwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAABdAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAAARwAAAAADAwAAAAABAwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADdAAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADMAAAAAACcwAAAAAAAwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcwAAAAABcwAAAAACZwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABdAAAAAADcwAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAcwAAAAADdAAAAAAAcwAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcwAAAAABcwAAAAACZwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACdAAAAAADcwAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAABdAAAAAACcwAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: fQAAAAABfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAgQAAAAAABgAAAAADBgAAAAADBgAAAAADMAAAAAAAWQAAAAABWQAAAAAAWQAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAADdAAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAMAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAcwAAAAADdAAAAAACcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAARwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADgQAAAAAAcwAAAAACdAAAAAADcwAAAAACOwAAAAAALQAAAAADLQAAAAADOwAAAAAAcwAAAAADOwAAAAAALQAAAAACLQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABAwAAAAABcwAAAAADgQAAAAAAcwAAAAACcwAAAAABcwAAAAABMAAAAAACGAAAAAAAGAAAAAAAMAAAAAADdAAAAAAAdAAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACAwAAAAACcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAMAAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAADAwAAAAADcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAAAdAAAAAACcwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAACdAAAAAAAcwAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAADdAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAcwAAAAADdAAAAAAAcwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAA + tiles: fQAAAAAAfQAAAAABfQAAAAABfQAAAAACgQAAAAAAcwAAAAACcwAAAAABcwAAAAAAgQAAAAAABgAAAAAABgAAAAACBgAAAAACMAAAAAACWQAAAAACWQAAAAABWQAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAABMAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAACgQAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAdAAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAABMAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAABgQAAAAAAcwAAAAACdAAAAAAAcwAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAARwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADdAAAAAABcwAAAAADOwAAAAAALQAAAAADLQAAAAADOwAAAAAAcwAAAAACOwAAAAAALQAAAAADLQAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAADAwAAAAADcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAMAAAAAABGAAAAAAAGAAAAAAAMAAAAAADdAAAAAAAdAAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAAwAAAAADcwAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAABMAAAAAAAGAAAAAAAGAAAAAAAMAAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAwAAAAADcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABMAAAAAACGAAAAAAAGAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAADdAAAAAABcwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAABdAAAAAADcwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAADdAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAcwAAAAAAdAAAAAABcwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAACCgAAAAAACgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAACCgAAAAADCgAAAAABCgAAAAAACgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAADCgAAAAAACgAAAAACCgAAAAACCgAAAAABAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAADCgAAAAADCgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAACCgAAAAAACgAAAAADCgAAAAACCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAADCgAAAAACCgAAAAABCgAAAAACAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-3: ind: -7,-3 @@ -358,123 +359,123 @@ entities: version: 6 -5,1: ind: -5,1 - tiles: LQAAAAABLQAAAAAAgQAAAAAABAAAAAACfQAAAAADBQAAAAAABQAAAAAABQAAAAADfQAAAAAABAAAAAADfQAAAAADBAAAAAABfQAAAAACBQAAAAACBQAAAAACBQAAAAABMAAAAAACLQAAAAABfQAAAAADfQAAAAABBAAAAAACfQAAAAADfQAAAAADfQAAAAADfQAAAAACBAAAAAADfQAAAAAAfQAAAAAABAAAAAACfQAAAAAAfQAAAAAABAAAAAACMAAAAAACLQAAAAADgQAAAAAABQAAAAABBQAAAAABBQAAAAABBAAAAAAABAAAAAACfQAAAAADfQAAAAABfQAAAAACBQAAAAADBQAAAAADBQAAAAADBAAAAAADfQAAAAACMAAAAAABLQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAALQAAAAADgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAMAAAAAADfQAAAAABMAAAAAAAgQAAAAAAYAAAAAAAIgAAAAACcwAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAALwAAAAAAcwAAAAACLwAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfQAAAAACfQAAAAABfQAAAAADYAAAAAAALwAAAAAAcwAAAAAALwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAABgQAAAAAALwAAAAAAcwAAAAACLwAAAAAAYAAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAIgAAAAADIgAAAAADLwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAABQAAAAABHwAAAAACHwAAAAADHwAAAAAFfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA + tiles: LQAAAAAALQAAAAACgQAAAAAABAAAAAAAfQAAAAABBQAAAAAABQAAAAACBQAAAAABfQAAAAADBAAAAAABfQAAAAACBAAAAAABfQAAAAABBQAAAAACBQAAAAABBQAAAAAAMAAAAAACLQAAAAACfQAAAAAAfQAAAAABBAAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAADBAAAAAAAfQAAAAABfQAAAAAABAAAAAADfQAAAAABfQAAAAACBAAAAAACMAAAAAAALQAAAAAAgQAAAAAABQAAAAADBQAAAAAABQAAAAADBAAAAAADBAAAAAACfQAAAAACfQAAAAACfQAAAAADBQAAAAADBQAAAAAABQAAAAAABAAAAAACfQAAAAACMAAAAAAALQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAADLQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAMAAAAAACfQAAAAACMAAAAAABgQAAAAAAYAAAAAACIgAAAAABcwAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADgQAAAAAALwAAAAAAcwAAAAACLwAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfQAAAAAAfQAAAAAAfQAAAAACYAAAAAACLwAAAAAAcwAAAAACLwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAALwAAAAAAcwAAAAADLwAAAAAAYAAAAAACZwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACgQAAAAAAIgAAAAADIgAAAAADLwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAQQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAQQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAACBQAAAAABHwAAAAAEHwAAAAAGHwAAAAADfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA version: 6 -6,1: ind: -6,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAALQAAAAAALQAAAAAALQAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAALQAAAAABMAAAAAADMAAAAAADgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAALQAAAAACMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAABEwAAAAAAgQAAAAAALQAAAAACMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAALQAAAAAALQAAAAACLQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAUQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUQAAAAABUwAAAAADUQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAUgAAAAABUQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAABFAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAADFAAAAAAAFAAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAACFAAAAAABFAAAAAABMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAADFAAAAAACFAAAAAABgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAADFAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAALQAAAAACLQAAAAAALQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAALQAAAAADMAAAAAAAMAAAAAADgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAALQAAAAACMAAAAAADMAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAABEwAAAAAAgQAAAAAALQAAAAACMAAAAAAAMAAAAAADAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAALQAAAAACLQAAAAACLQAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAUQAAAAABUgAAAAABAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUQAAAAAAUwAAAAAEUQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAUgAAAAAAUQAAAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAADFAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAADFAAAAAABFAAAAAADMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAACFAAAAAAAFAAAAAABgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -7,0: ind: -7,0 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAFgAAAAACKAAAAAACKQAAAAABKAAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACKQAAAAACFgAAAAABFgAAAAABKQAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAACFgAAAAADFgAAAAADKAAAAAAAFgAAAAABFgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAQwAAAAAFDAAAAAADDAAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAACFgAAAAABFgAAAAADFgAAAAACKAAAAAABFgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAAAFgAAAAABFgAAAAABFgAAAAACKAAAAAACFgAAAAADKQAAAAACKAAAAAAAFgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAADDAAAAAABDAAAAAABFgAAAAACKAAAAAACFgAAAAADKAAAAAAAKQAAAAACFgAAAAABFgAAAAACFgAAAAABKAAAAAABFgAAAAADJwAAAAAAJwAAAAAAJwAAAAAADAAAAAACDAAAAAAAFgAAAAABFgAAAAADFgAAAAADKQAAAAABFgAAAAABFgAAAAAAKAAAAAACFgAAAAADKQAAAAABFgAAAAACKQAAAAACFgAAAAACFgAAAAADJwAAAAAAKQAAAAABFgAAAAABFgAAAAACKQAAAAAAKAAAAAADFgAAAAACFgAAAAABDAAAAAADDAAAAAABDAAAAAADKAAAAAAAFgAAAAACFgAAAAADKAAAAAAAKAAAAAADKQAAAAAAFgAAAAADKAAAAAADKQAAAAADKAAAAAADKAAAAAABKQAAAAACDAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABKAAAAAABKQAAAAADKAAAAAACKAAAAAAAFgAAAAABFgAAAAABFgAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAADFgAAAAAAFgAAAAADKQAAAAABFgAAAAABFgAAAAADDAAAAAABDAAAAAADFgAAAAAAKQAAAAABFgAAAAACKAAAAAADDAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAACFgAAAAAAKAAAAAACFgAAAAABFgAAAAACKAAAAAABDAAAAAABDAAAAAAADAAAAAACFgAAAAAAFgAAAAADKQAAAAACFgAAAAADDAAAAAAADAAAAAABDAAAAAAAFgAAAAABKQAAAAAAFgAAAAAAFgAAAAABKAAAAAAAFgAAAAABDAAAAAAADAAAAAABDAAAAAABKAAAAAACFgAAAAADFgAAAAABFgAAAAACKQAAAAABFgAAAAABFgAAAAAAKAAAAAADFgAAAAADKQAAAAAAKAAAAAADKAAAAAACBAAAAAADDAAAAAABDAAAAAACDAAAAAAAFgAAAAACFgAAAAACKQAAAAAAFgAAAAACKAAAAAABFgAAAAACKQAAAAADKAAAAAAAFgAAAAABKAAAAAADMQAAAAADMQAAAAABfQAAAAACDAAAAAABDAAAAAABDAAAAAACDAAAAAACKAAAAAADFgAAAAADKQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAKQAAAAADFgAAAAABMQAAAAADMQAAAAABBAAAAAAB + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAFgAAAAAAKAAAAAADKQAAAAADKAAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACKQAAAAABFgAAAAACFgAAAAADKQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACFgAAAAABFgAAAAACKAAAAAAAFgAAAAADFgAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAQwAAAAAFDAAAAAACDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAAAFgAAAAACFgAAAAABFgAAAAACKAAAAAABFgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAABFgAAAAAAFgAAAAADFgAAAAACKAAAAAAAFgAAAAAAKQAAAAAAKAAAAAADFgAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAACDAAAAAACDAAAAAABFgAAAAAAKAAAAAAAFgAAAAACKAAAAAABKQAAAAABFgAAAAABFgAAAAADFgAAAAAAKAAAAAAAFgAAAAACJwAAAAAAJwAAAAAAJwAAAAAADAAAAAAADAAAAAABFgAAAAADFgAAAAADFgAAAAADKQAAAAACFgAAAAACFgAAAAADKAAAAAACFgAAAAAAKQAAAAADFgAAAAACKQAAAAAAFgAAAAAAFgAAAAADJwAAAAAAKQAAAAAAFgAAAAACFgAAAAAAKQAAAAABKAAAAAADFgAAAAADFgAAAAABDAAAAAABDAAAAAADDAAAAAAAKAAAAAADFgAAAAABFgAAAAAAKAAAAAACKAAAAAACKQAAAAABFgAAAAAAKAAAAAABKQAAAAACKAAAAAADKAAAAAADKQAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAADFgAAAAADFgAAAAAAFgAAAAACKAAAAAACKQAAAAADKAAAAAACKAAAAAADFgAAAAADFgAAAAADFgAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAACFgAAAAACFgAAAAABKQAAAAACFgAAAAAAFgAAAAADDAAAAAABDAAAAAAAFgAAAAACKQAAAAABFgAAAAADKAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAACDAAAAAABFgAAAAAAKAAAAAADFgAAAAABFgAAAAAAKAAAAAAADAAAAAABDAAAAAADDAAAAAAAFgAAAAAAFgAAAAABKQAAAAACFgAAAAADDAAAAAABDAAAAAAADAAAAAABFgAAAAADKQAAAAACFgAAAAAAFgAAAAABKAAAAAABFgAAAAADDAAAAAAADAAAAAACDAAAAAAAKAAAAAABFgAAAAADFgAAAAADFgAAAAACKQAAAAABFgAAAAAAFgAAAAABKAAAAAABFgAAAAADKQAAAAADKAAAAAACKAAAAAABBAAAAAADDAAAAAAADAAAAAAADAAAAAAAFgAAAAABFgAAAAAAKQAAAAADFgAAAAABKAAAAAADFgAAAAACKQAAAAABKAAAAAADFgAAAAADKAAAAAAAMQAAAAAAMQAAAAAAfQAAAAABDAAAAAABDAAAAAABDAAAAAABDAAAAAAAKAAAAAADFgAAAAACKQAAAAADfQAAAAABfQAAAAAAfQAAAAADfQAAAAADKQAAAAABFgAAAAABMQAAAAADMQAAAAABBAAAAAAD version: 6 -7,1: ind: -7,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAAAfQAAAAACfQAAAAAAFgAAAAABKAAAAAAAFgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACFgAAAAAAFgAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAACCgAAAAACCgAAAAAACgAAAAAACgAAAAADAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAADCgAAAAACCgAAAAACCgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAADCgAAAAABCgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAADfQAAAAADFgAAAAAAKAAAAAAAFgAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAADFgAAAAABFgAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAACCgAAAAACCgAAAAADCgAAAAADCgAAAAABAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAAACgAAAAADCgAAAAADCgAAAAABCgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAABCgAAAAACCgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: MgAAAAAAEAAAAAAAMgAAAAAAEAAAAAAAMgAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAADfQAAAAABgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAYAAAAAACgQAAAAAAgQAAAAAACQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAYAAAAAAACQAAAAACIQAAAAACIQAAAAAACQAAAAACCQAAAAADgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAYAAAAAACYAAAAAACCQAAAAABIQAAAAAAIQAAAAAACQAAAAACCQAAAAABgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACdAAAAAABdAAAAAABdAAAAAADYAAAAAADYAAAAAACYAAAAAADdAAAAAADdAAAAAADdAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAFAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADDAAAAAADDAAAAAADDAAAAAAADAAAAAABDAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADDAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADEQAAAAAAEQAAAAAAOgAAAAAAOgAAAAAAdAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdAAAAAADOgAAAAAANQAAAAAANQAAAAAAEQAAAAAAEQAAAAAAOgAAAAAAOgAAAAAAdAAAAAADdAAAAAABOgAAAAAAMAAAAAADMAAAAAACMAAAAAADOgAAAAAAdAAAAAACdAAAAAADOgAAAAAANQAAAAAANQAAAAAAEQAAAAAAEQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAACgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAADAAAAAABDAAAAAAAgQAAAAAAMwAAAAADMwAAAAABYAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAA + tiles: MgAAAAAAEAAAAAAAMgAAAAAAEAAAAAAAMgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAYAAAAAADgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAYAAAAAADCQAAAAAAIQAAAAABIQAAAAABCQAAAAABCQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAYAAAAAADYAAAAAAACQAAAAACIQAAAAABIQAAAAACCQAAAAACCQAAAAADgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADdAAAAAAAdAAAAAACdAAAAAABYAAAAAADYAAAAAABYAAAAAABdAAAAAABdAAAAAAAdAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAFAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABDAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADEQAAAAAAEQAAAAAAOgAAAAABOgAAAAAAdAAAAAABOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAADdAAAAAACOgAAAAACNQAAAAAANQAAAAAAEQAAAAAAEQAAAAAAOgAAAAAAOgAAAAADdAAAAAADdAAAAAAAOgAAAAAAMAAAAAACMAAAAAADMAAAAAADOgAAAAAAdAAAAAADdAAAAAACOgAAAAAANQAAAAAANQAAAAAAEQAAAAAAEQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAACMwAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAADAAAAAABDAAAAAACgQAAAAAAMwAAAAABMwAAAAABYAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADAAAAAADDAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADAAAAAABDAAAAAADDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACDAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAADHwAAAAADfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAHwAAAAADfQAAAAADfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADAAAAAAADAAAAAABDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADAAAAAAADAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADAAAAAACDAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADAAAAAADDAAAAAADDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADAAAAAADDAAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACDAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAACHwAAAAAEfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAHwAAAAAEfQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADAAAAAADDAAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADAAAAAABDAAAAAAD version: 6 -3,2: ind: -3,2 - tiles: GQAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAAALQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAADGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAACLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAADLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAMAAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAABLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAGQAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAABLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAABfQAAAAAALQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABBAAAAAABBAAAAAACBAAAAAABGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAARgAAAAAAYAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACMAAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAABNgAAAAADYAAAAAAAYAAAAAABYAAAAAACMAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAADMAAAAAACYAAAAAAAMAAAAAACYAAAAAABgQAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAMAAAAAABYAAAAAABMAAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADYAAAAAACMAAAAAABYAAAAAADMAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAMAAAAAADYAAAAAAAYAAAAAACYAAAAAAAMAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAANgAAAAACgQAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAANwAAAAACMAAAAAABDAAAAAABDAAAAAADKwAAAAACDAAAAAAAMAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAMAAAAAADDAAAAAADDAAAAAABKwAAAAADDAAAAAABMAAAAAACYAAAAAABMAAAAAAAYAAAAAAAIgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAABgQAAAAAA + tiles: GQAAAAAAMAAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAADGgAAAAADfQAAAAABLQAAAAAAfQAAAAAAcgAAAAACcgAAAAAAcgAAAAACfQAAAAACfQAAAAAAfQAAAAAAGQAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAABGgAAAAABfQAAAAABLQAAAAACHwAAAAAGMAAAAAACMAAAAAADMAAAAAADfQAAAAADMAAAAAABMAAAAAADGQAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAABGgAAAAABfQAAAAADLQAAAAADfQAAAAACcgAAAAABcgAAAAADcgAAAAABfQAAAAACfQAAAAAAfQAAAAADGQAAAAAAMAAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAAAGgAAAAAAfQAAAAADLQAAAAADfQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAACcgAAAAABcgAAAAAAGQAAAAAAMAAAAAACMwAAAAABMwAAAAADMwAAAAADMwAAAAACGgAAAAAAHwAAAAABLQAAAAAAfQAAAAABMAAAAAAAMAAAAAADMAAAAAABfQAAAAAAMAAAAAABMAAAAAADGQAAAAAAgQAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAAABAAAAAABfQAAAAADLQAAAAABfQAAAAAAfQAAAAADfQAAAAAAfQAAAAAABAAAAAACBAAAAAAABAAAAAACGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABRgAAAAAAYAAAAAACgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAACGQAAAAAAgQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACMAAAAAAAfQAAAAADHwAAAAAEfQAAAAADfQAAAAABfQAAAAABgQAAAAAAgQAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAAANgAAAAACYAAAAAADYAAAAAAAYAAAAAABMAAAAAAAcgAAAAADcgAAAAACcgAAAAACcgAAAAADcgAAAAABNgAAAAACNgAAAAAANgAAAAABNgAAAAADNgAAAAADNgAAAAACMAAAAAAAYAAAAAADMAAAAAACYAAAAAABgQAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAYAAAAAABMAAAAAAAYAAAAAADMAAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAABYAAAAAAAMAAAAAACYAAAAAAAMAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADNgAAAAACNgAAAAABNgAAAAAANgAAAAACNgAAAAABNgAAAAABMAAAAAABYAAAAAAAYAAAAAAAYAAAAAACMAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABNgAAAAABgQAAAAAANgAAAAACNgAAAAABNgAAAAADNgAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACNwAAAAAAMAAAAAAADAAAAAADDAAAAAABKwAAAAAADAAAAAABMAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAADMAAAAAABDAAAAAADDAAAAAADKwAAAAABDAAAAAACMAAAAAADYAAAAAABMAAAAAACYAAAAAABIgAAAAABIgAAAAACIgAAAAADIgAAAAAAIgAAAAADgQAAAAAA version: 6 -4,2: ind: -4,2 - tiles: bwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAGfQAAAAABgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAEHwAAAAAFBQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACfQAAAAACgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACHwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAABfQAAAAADgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAADgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAAgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAADZAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAABCgAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAZQAAAAAAZQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAABCgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAANgAAAAABNgAAAAABNgAAAAABNgAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAANwAAAAAANwAAAAACNwAAAAABNwAAAAAANwAAAAACgQAAAAAAgQAAAAAANwAAAAADgQAAAAAANgAAAAADbwAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADNwAAAAACNwAAAAACNwAAAAACNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + tiles: bwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAGfQAAAAADgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAABHwAAAAAGBQAAAAABEwAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACHwAAAAAEgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAGfQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAAgQAAAAAADwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAABcwAAAAAAAgAAAAAANgAAAAABNgAAAAACNgAAAAABNgAAAAADZAAAAAABgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABCgAAAAABcwAAAAACcwAAAAACcwAAAAAAcwAAAAADZQAAAAAAZQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAABCgAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAANgAAAAADNgAAAAAANgAAAAACNgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAANwAAAAABNwAAAAAANwAAAAABNwAAAAACNwAAAAAAgQAAAAAAgQAAAAAANwAAAAAAgQAAAAAANgAAAAACbwAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADNwAAAAADNwAAAAACNwAAAAAANwAAAAABNwAAAAAANwAAAAABNwAAAAAANwAAAAADNwAAAAACNwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAD version: 6 5,-3: ind: 5,-3 - tiles: gQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 - tiles: fQAAAAADfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAfQAAAAADfQAAAAABHwAAAAAFfQAAAAACgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAQQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADHwAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAACHwAAAAADgQAAAAAAHwAAAAAAfQAAAAADgQAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAHwAAAAAEfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAfQAAAAACBQAAAAACfQAAAAADfQAAAAADZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAfQAAAAAAHwAAAAAEfQAAAAACfQAAAAADgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAQQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAFHwAAAAAFKQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACMQAAAAABgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAZAAAAAAEgQAAAAAAfQAAAAAAfQAAAAADKQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAZQAAAAAAZAAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAZQAAAAAAZAAAAAACgQAAAAAAZAAAAAAFZAAAAAADIAAAAAACIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAZQAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAZAAAAAADgQAAAAAAgQAAAAAAZAAAAAAFgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAZAAAAAAGgQAAAAAAgQAAAAAAZQAAAAAAbwAAAAAABAAAAAADBAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACbwAAAAAAbwAAAAAAZQAAAAAAgQAAAAAAZAAAAAADgQAAAAAA + tiles: fQAAAAACfQAAAAABfQAAAAAAfQAAAAABfQAAAAADgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAADfQAAAAAAHwAAAAAGfQAAAAADgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAQQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAHwAAAAAEfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAADHwAAAAAFgQAAAAAAHwAAAAAEfQAAAAACgQAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACHwAAAAAEfQAAAAABfQAAAAADfQAAAAABgQAAAAAAfQAAAAAABQAAAAADfQAAAAABfQAAAAACZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAfQAAAAABHwAAAAACfQAAAAADfQAAAAACgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAQQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAADHwAAAAAEKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADMQAAAAABgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAZAAAAAAGgQAAAAAAfQAAAAACfQAAAAAAKQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAZQAAAAAAZAAAAAAGgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAZQAAAAAAZAAAAAAGgQAAAAAAZAAAAAAFZAAAAAAEIAAAAAABIAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAZQAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAZAAAAAABgQAAAAAAgQAAAAAAZAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACgQAAAAAAZAAAAAAGgQAAAAAAgQAAAAAAZQAAAAAAbwAAAAAABAAAAAACBAAAAAACgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADbwAAAAAAbwAAAAAAZQAAAAAAgQAAAAAAZAAAAAADgQAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAACAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAACAAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAABgQAAAAAAKAAAAAADKAAAAAADKAAAAAABgQAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAADIAAAAAAAKAAAAAABKAAAAAADKAAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAKAAAAAABKAAAAAACKAAAAAACgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKQAAAAABKQAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAKAAAAAAAKAAAAAAAKAAAAAABKQAAAAACKQAAAAADKQAAAAACKQAAAAABFgAAAAACKQAAAAADKQAAAAAAKQAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABDAAAAAADKAAAAAACKQAAAAADFgAAAAADKQAAAAABKQAAAAACKQAAAAADKAAAAAAAgQAAAAAAKAAAAAABKQAAAAADKQAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADKAAAAAADKQAAAAAAKQAAAAADKQAAAAABKQAAAAACKQAAAAABKQAAAAAAKQAAAAACFgAAAAACKQAAAAACKQAAAAADKQAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACDAAAAAABFgAAAAABKQAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAKAAAAAACgQAAAAAAKAAAAAACKQAAAAACKQAAAAAD + tiles: CAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAACAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAACgQAAAAAAbwAAAAAAgQAAAAAACAAAAAACEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAABIQAAAAADIAAAAAADgQAAAAAAKAAAAAAAKAAAAAACKAAAAAADgQAAAAAAIAAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAABIQAAAAACIAAAAAACIAAAAAADKAAAAAABKAAAAAADKAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAACgQAAAAAAKAAAAAABKAAAAAAAdwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKQAAAAAAdwAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAKAAAAAACKAAAAAADKAAAAAACKQAAAAADKQAAAAACKQAAAAAAKQAAAAADFgAAAAABKQAAAAAAKQAAAAADdwAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABDAAAAAABKAAAAAACKQAAAAADFgAAAAAAKQAAAAACKQAAAAACKQAAAAABKAAAAAACgQAAAAAAKAAAAAAAKQAAAAAAdwAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABKAAAAAACKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAAAFgAAAAABKQAAAAAAKQAAAAACdwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABDAAAAAADFgAAAAAAKQAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADKAAAAAAAgQAAAAAAKAAAAAACKQAAAAACdwAAAAAA version: 6 3,0: ind: 3,0 - tiles: YAAAAAABYAAAAAABYAAAAAAAYAAAAAABKAAAAAADKQAAAAABKQAAAAADKQAAAAACKQAAAAACKQAAAAAAKQAAAAADKQAAAAAAKAAAAAAAKAAAAAABKQAAAAADKQAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABDAAAAAABKAAAAAABFgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAACKAAAAAACgQAAAAAAKAAAAAAAKQAAAAABKQAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAKAAAAAADKAAAAAADKAAAAAACKAAAAAADKAAAAAAAKAAAAAADKAAAAAAAgQAAAAAAKAAAAAADKQAAAAACKQAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADgQAAAAAAgQAAAAAAKAAAAAABKQAAAAACKQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAAAKAAAAAACKAAAAAABKAAAAAABgQAAAAAAKAAAAAADKAAAAAABKAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAABKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAACKAAAAAAAKAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKQAAAAADKQAAAAADKQAAAAABKAAAAAADgQAAAAAAKAAAAAADKAAAAAABKAAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAKAAAAAACKQAAAAABKQAAAAADKQAAAAAAKAAAAAACgQAAAAAAKAAAAAABKAAAAAABKAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAABKAAAAAADKAAAAAABKAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAACKAAAAAADgQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAGgAAAAAAOAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAMwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA + tiles: YAAAAAACYAAAAAADYAAAAAADYAAAAAACKAAAAAACKQAAAAACKQAAAAABKQAAAAACKQAAAAACKQAAAAABKQAAAAADKQAAAAAAKAAAAAACKAAAAAACKQAAAAAAdwAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACDAAAAAABKAAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAADKAAAAAACgQAAAAAAKAAAAAABKQAAAAAAdwAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACgQAAAAAAKAAAAAADKAAAAAAAKAAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAABgQAAAAAAKAAAAAAAKQAAAAADdwAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACgQAAAAAAgQAAAAAAKAAAAAAAKQAAAAAAKQAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAAAKAAAAAACKAAAAAAAKAAAAAABgQAAAAAAKAAAAAAAKAAAAAACKAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAADKAAAAAACKAAAAAACKAAAAAADKAAAAAAAKAAAAAACKAAAAAAAKAAAAAABgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKQAAAAABKQAAAAACKQAAAAAAKAAAAAACgQAAAAAAKAAAAAABKAAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAKAAAAAACKQAAAAABKQAAAAACKQAAAAAAKAAAAAACgQAAAAAAKAAAAAADKAAAAAABKAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAABKAAAAAACKAAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAABKAAAAAACKAAAAAAAKAAAAAADgQAAAAAAOAAAAAADOAAAAAACOAAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACGgAAAAADOAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAOAAAAAABOAAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAMwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAEwAAAAAAgQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAKwAAAAAAEwAAAAAAbwAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAKwAAAAAAEwAAAAAAKwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAACKAAAAAABKAAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAABKQAAAAABKQAAAAACKQAAAAABKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKAAAAAADKAAAAAACKAAAAAACKAAAAAACKQAAAAABKAAAAAABKAAAAAACKAAAAAABKAAAAAABKAAAAAABKAAAAAABKAAAAAADKAAAAAADKAAAAAABKAAAAAABKAAAAAAAKAAAAAADKAAAAAACKAAAAAACKAAAAAACKQAAAAADKAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAABKQAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAABFgAAAAACKQAAAAADKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAABKQAAAAABKAAAAAAAKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAABKAAAAAAAKAAAAAADKAAAAAADKAAAAAAAKAAAAAAAKAAAAAACKAAAAAADKAAAAAACKAAAAAABKAAAAAAAKAAAAAACKAAAAAAAKAAAAAABKAAAAAADKAAAAAADKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKAAAAAAAKQAAAAACKQAAAAABKQAAAAABKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAACKAAAAAADKAAAAAABKAAAAAAAKAAAAAABKAAAAAACKAAAAAACKAAAAAABKAAAAAACKAAAAAACKAAAAAADKAAAAAAAKAAAAAADKAAAAAAAKAAAAAABKAAAAAAC + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAEwAAAAAAgQAAAAAACAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAKwAAAAACEwAAAAAAbwAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAKwAAAAABEwAAAAAAKwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAACKAAAAAACKAAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAABKQAAAAADKQAAAAAAKQAAAAACKAAAAAAAKAAAAAABKAAAAAABKAAAAAADKQAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAACKAAAAAACKAAAAAADKAAAAAADKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAAAFgAAAAADFgAAAAACKQAAAAACFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAdwAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAABFgAAAAAAKQAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAKAAAAAAAdwAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAADKQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAKAAAAAAAdwAAAAAAKAAAAAABKAAAAAABKAAAAAACKAAAAAADKAAAAAADKAAAAAACKQAAAAACeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAKAAAAAABdwAAAAAAKQAAAAADKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAABeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAKAAAAAADdwAAAAAAKAAAAAADKAAAAAADKAAAAAACKAAAAAADKAAAAAABKAAAAAAA version: 6 4,0: ind: 4,0 - tiles: KQAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAACKQAAAAABKQAAAAADKQAAAAAAKAAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAACKQAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAACFgAAAAACKQAAAAADFgAAAAABFgAAAAADFgAAAAADFgAAAAABKAAAAAADKAAAAAADKAAAAAABKAAAAAAAFgAAAAACKAAAAAADKAAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAAAKQAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAKAAAAAADgQAAAAAAgQAAAAAAMAAAAAABKAAAAAABKAAAAAABMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAAAKAAAAAABFgAAAAACKAAAAAAAKAAAAAADgQAAAAAASgAAAAAASgAAAAADagAAAAABSgAAAAADSgAAAAACMQAAAAAAMQAAAAAAMQAAAAACMQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMQAAAAAAMQAAAAADMQAAAAADagAAAAAAagAAAAADagAAAAADagAAAAABagAAAAACagAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAMQAAAAADMQAAAAACMQAAAAABagAAAAABagAAAAACagAAAAAAMQAAAAAAMAAAAAACMAAAAAADgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAMQAAAAAAMQAAAAAAMQAAAAADSgAAAAAASgAAAAACSgAAAAAAagAAAAADMAAAAAACMAAAAAACgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAAagAAAAACagAAAAADagAAAAABgQAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAABfQAAAAABBQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAABgQAAAAAASgAAAAABSgAAAAACSgAAAAADSgAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: KQAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAKAAAAAABdwAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAABKQAAAAABKQAAAAAAKQAAAAABFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAADFgAAAAADFgAAAAAAFgAAAAAAdwAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKQAAAAADFgAAAAACFgAAAAAAFgAAAAADFgAAAAADKAAAAAADgQAAAAAAgQAAAAAAMAAAAAABKAAAAAADKAAAAAADMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAACKAAAAAADFgAAAAABKAAAAAADKAAAAAAAgQAAAAAASgAAAAAASgAAAAABagAAAAADSgAAAAAASgAAAAADMQAAAAAAMQAAAAABMQAAAAADMQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMQAAAAABMQAAAAABMQAAAAACagAAAAADagAAAAABagAAAAABagAAAAACagAAAAABagAAAAADgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAMQAAAAADMQAAAAADMQAAAAACagAAAAAAagAAAAADagAAAAAAMQAAAAADMAAAAAAAMAAAAAABgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAMQAAAAABMQAAAAADMQAAAAACSgAAAAADSgAAAAAASgAAAAACagAAAAAAMAAAAAAAMAAAAAABgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAACagAAAAABagAAAAACagAAAAACgQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAAAfQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAAABQAAAAADgQAAAAAASgAAAAABSgAAAAAASgAAAAACSgAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAABfQAAAAABgQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAACgQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: bwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAKAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADYAAAAAAAYAAAAAAAKAAAAAAAgQAAAAAAKAAAAAABKAAAAAAAKAAAAAACKAAAAAABKAAAAAAAKAAAAAADKAAAAAADKAAAAAAAKAAAAAADgQAAAAAAgQAAAAAAKAAAAAADYAAAAAAAYAAAAAAAKAAAAAAAgQAAAAAAKAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADKAAAAAADgQAAAAAAgQAAAAAAKAAAAAACYAAAAAAAYAAAAAAAKAAAAAABOgAAAAACKAAAAAADIAAAAAADbwAAAAAAIAAAAAABgQAAAAAAIAAAAAABbwAAAAAAIAAAAAABKAAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAYAAAAAAAYAAAAAAAKAAAAAADgQAAAAAAKAAAAAADIAAAAAADbwAAAAAAIAAAAAACgQAAAAAAIAAAAAAAbwAAAAAAIAAAAAACKAAAAAABgQAAAAAAgQAAAAAAKAAAAAACYAAAAAAAYAAAAAAAKAAAAAACOgAAAAACKAAAAAAAIAAAAAADbwAAAAAAIAAAAAADgQAAAAAAIAAAAAABbwAAAAAAIAAAAAACKAAAAAADgQAAAAAAgQAAAAAAKAAAAAADYAAAAAAAYAAAAAAAKAAAAAADgQAAAAAAKAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAKAAAAAACgQAAAAAA + tiles: bwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAYAAAAAAAYAAAAAAAKAAAAAABgQAAAAAAKAAAAAACKAAAAAACKAAAAAADKAAAAAABKAAAAAAAKAAAAAACKAAAAAADKAAAAAACKAAAAAABgQAAAAAAgQAAAAAAKAAAAAAAYAAAAAABYAAAAAAAKAAAAAACgQAAAAAAKAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAADKAAAAAACgQAAAAAAgQAAAAAAKAAAAAABYAAAAAADYAAAAAACKAAAAAABOgAAAAADKAAAAAABIAAAAAADbwAAAAAAIAAAAAADgQAAAAAAIAAAAAADbwAAAAAAIAAAAAADKAAAAAACgQAAAAAAgQAAAAAAKAAAAAABYAAAAAADYAAAAAACKAAAAAADgQAAAAAAKAAAAAADIAAAAAABbwAAAAAAIAAAAAACgQAAAAAAIAAAAAADbwAAAAAAIAAAAAACKAAAAAADgQAAAAAAgQAAAAAAKAAAAAAAYAAAAAACYAAAAAAAKAAAAAABOgAAAAACKAAAAAAAIAAAAAABbwAAAAAAIAAAAAACgQAAAAAAIAAAAAAAbwAAAAAAIAAAAAACKAAAAAABgQAAAAAAgQAAAAAAKAAAAAACYAAAAAAAYAAAAAABKAAAAAADgQAAAAAAKAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADKAAAAAABgQAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAACYAAAAAACgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABYAAAAAADgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACgQAAAAAAQQAAAAADQQAAAAACQQAAAAACQQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACgQAAAAAAQQAAAAACQQAAAAADQQAAAAACQQAAAAABQQAAAAAAQQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAIAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAQQAAAAAAQQAAAAABQQAAAAACQQAAAAADQQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAgQAAAAAAQQAAAAABQQAAAAAAQQAAAAADQQAAAAACQQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKAAAAAABKQAAAAAAKQAAAAABKAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAADgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADYAAAAAADgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADgQAAAAAAQQAAAAADQQAAAAACQQAAAAADQQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAgQAAAAAAQQAAAAACQQAAAAACQQAAAAACQQAAAAACQQAAAAADQQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAIAAAAAADIAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAQQAAAAACQQAAAAADQQAAAAABQQAAAAACQQAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADgQAAAAAAQQAAAAACQQAAAAAAQQAAAAACQQAAAAACQQAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAACKQAAAAADKQAAAAADKAAAAAAAKQAAAAABKQAAAAABKAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: YAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABMAAAAAADMAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAACAAAAAABCAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADcwAAAAAAcwAAAAABYAAAAAABcwAAAAACcwAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAACAAAAAADCAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABcwAAAAABYAAAAAABcwAAAAAAYAAAAAABcwAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAACAAAAAADCAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABcwAAAAABcwAAAAADcwAAAAADYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYAAAAAAAcwAAAAADYAAAAAABcwAAAAAAYAAAAAAAcwAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAEwAAAAAAgQAAAAAAYAAAAAADcwAAAAAAcwAAAAADYAAAAAABcwAAAAADcwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAAAEwAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAUAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAAAdAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABdAAAAAAAdAAAAAADdAAAAAADdAAAAAABdAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAMAAAAAAAMAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAACAAAAAABCAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADcwAAAAADcwAAAAACYAAAAAADcwAAAAAAcwAAAAACYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAACAAAAAAACAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADcwAAAAADYAAAAAAAcwAAAAABYAAAAAACcwAAAAABYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAACAAAAAABCAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACcwAAAAACcwAAAAABcwAAAAADYAAAAAABYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYAAAAAABcwAAAAABYAAAAAAAcwAAAAADYAAAAAADcwAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAADEwAAAAAAgQAAAAAAYAAAAAADcwAAAAADcwAAAAABYAAAAAADcwAAAAABcwAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAADEwAAAAAAgQAAAAAACAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAUAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: EwAAAAAAgQAAAAAAKQAAAAAAKAAAAAACKAAAAAACKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKAAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAACgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKAAAAAAAKQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAABKAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKAAAAAAAKQAAAAADKAAAAAADKQAAAAABKQAAAAAAKAAAAAABKQAAAAADKQAAAAACKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAgQAAAAAAKQAAAAACKAAAAAADKQAAAAAAKAAAAAADKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAKQAAAAADKAAAAAACKQAAAAACKAAAAAAAKQAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKAAAAAABKQAAAAADKAAAAAACKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKAAAAAADKQAAAAABKAAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKAAAAAACKQAAAAADKAAAAAADKQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAACKAAAAAABKAAAAAABKAAAAAAAKQAAAAACKAAAAAABKQAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKAAAAAABKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKAAAAAABKQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKAAAAAABKAAAAAADKAAAAAABKAAAAAAAKAAAAAACKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAACKAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAACKAAAAAACgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAACKQAAAAACKAAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAACKAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: EwAAAAAAgQAAAAAAKQAAAAAAKAAAAAACKAAAAAAAKAAAAAABKAAAAAACKAAAAAADKAAAAAABKAAAAAACKAAAAAADKAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKAAAAAADKQAAAAADKQAAAAACKQAAAAACKQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKAAAAAADKQAAAAACKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAKAAAAAACKAAAAAACKAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKAAAAAADKQAAAAADKAAAAAABKQAAAAADKQAAAAADKAAAAAABKQAAAAADKQAAAAABKAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADgQAAAAAAKQAAAAADKAAAAAAAKQAAAAAAKAAAAAADKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAKQAAAAABKAAAAAACKQAAAAAAKAAAAAABKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKAAAAAACKQAAAAABKAAAAAABKQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKAAAAAACKQAAAAACKAAAAAACKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABKQAAAAADKAAAAAADKQAAAAADKAAAAAACKQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAABKQAAAAACKAAAAAAAKQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAKAAAAAAAKQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAACKAAAAAAAKQAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKAAAAAABKAAAAAABKAAAAAAAKAAAAAAAKAAAAAADKQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABKAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAADKAAAAAACgQAAAAAAgQAAAAAAMAAAAAADMAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAADKQAAAAADKAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAKAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: KQAAAAAAKAAAAAACMAAAAAAAGgAAAAADMAAAAAABMAAAAAADGgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAABKAAAAAAAMAAAAAAAGgAAAAAAMAAAAAADMAAAAAADGgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKAAAAAABKAAAAAAAgQAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMQAAAAAAMQAAAAADMQAAAAAAMQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAagAAAAACagAAAAAAagAAAAADagAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMAAAAAACMQAAAAAAMQAAAAADSgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMAAAAAAAagAAAAACagAAAAABagAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAagAAAAAAagAAAAABSgAAAAADSgAAAAADgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMQAAAAAAMQAAAAADMQAAAAADSgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: KQAAAAACKAAAAAADMAAAAAABGgAAAAAAMAAAAAABMAAAAAAAGgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKQAAAAACKAAAAAACMAAAAAABGgAAAAACMAAAAAADMAAAAAAAGgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAKAAAAAADKAAAAAADgQAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAABgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAagAAAAADagAAAAADagAAAAAAagAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMAAAAAABMQAAAAACMQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMAAAAAADagAAAAAAagAAAAACagAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAagAAAAACagAAAAAASgAAAAACSgAAAAABgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAMQAAAAADMQAAAAABMQAAAAACSgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: VQAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAASgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAADKQAAAAABKAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIgAAAAACIgAAAAADIgAAAAABIgAAAAABMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKAAAAAAAKAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAIgAAAAABgQAAAAAAIgAAAAADIgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAKAAAAAAAKAAAAAAAFgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADIgAAAAACIgAAAAACIgAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAPAAAAAAAPAAAAAAAKAAAAAABbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAPAAAAAAAPAAAAAAAFgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAKgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAADDgAAAAAMDgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAMgAAAAAA + tiles: VQAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAACKQAAAAABKAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAACIgAAAAADMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAAAKAAAAAADgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAIgAAAAAAgQAAAAAAIgAAAAABIgAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAKAAAAAABKAAAAAAAFgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABIgAAAAACIgAAAAABIgAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAPAAAAAAAPAAAAAAAKAAAAAABbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAKQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAPAAAAAAAPAAAAAAAFgAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAABDgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABgQAAAAAAMgAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAgQAAAAAAYAAAAAACKQAAAAACZwAAAAAAZwAAAAAAUAAAAAAAAgAAAAAAUAAAAAAAZwAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAKQAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAUAAAAAAAbwAAAAAAZwAAAAAAKQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAYAAAAAACYAAAAAABEwAAAAAAgQAAAAAAKQAAAAAAYAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAYAAAAAADZwAAAAAAAgAAAAAAYAAAAAADgQAAAAAAYAAAAAADAgAAAAAAUAAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAACbwAAAAAAUAAAAAAAZwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAKQAAAAADYAAAAAAAZwAAAAAAYAAAAAADEwAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAYAAAAAAAUAAAAAAAbwAAAAAAZwAAAAAAKQAAAAABbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAYAAAAAABZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAKQAAAAACAgAAAAAAgQAAAAAAYAAAAAADUAAAAAAAZwAAAAAAKQAAAAABbwAAAAAAgQAAAAAAYAAAAAACKQAAAAABUAAAAAAAZwAAAAAAKQAAAAADZwAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABYAAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAUAAAAAAAZwAAAAAAUAAAAAAAbwAAAAAAUAAAAAAAKQAAAAADZwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABUAAAAAAAKQAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACZwAAAAAAZwAAAAAAUAAAAAAAYAAAAAAAUAAAAAAAYAAAAAAAZwAAAAAAAgAAAAAAUAAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAKQAAAAAAAgAAAAAAZwAAAAAAYAAAAAAAgQAAAAAAYAAAAAADZwAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAZwAAAAAAYAAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAKQAAAAAAZwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADEAAAAAAAMgAAAAAAEAAAAAAAMgAAAAAAEAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAYAAAAAAD + tiles: gQAAAAAAgQAAAAAAYAAAAAADKQAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAAgAAAAAAUAAAAAAAZwAAAAAAYAAAAAABgQAAAAAAbwAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAKQAAAAACZwAAAAAAZwAAAAAAUAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAUAAAAAAAbwAAAAAAZwAAAAAAKQAAAAABgQAAAAAAUAAAAAAAbwAAAAAAYAAAAAACYAAAAAACEwAAAAAAgQAAAAAAKQAAAAADYAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAYAAAAAACZwAAAAAAAgAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAAgAAAAAAUAAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAKQAAAAABKQAAAAADbwAAAAAAUAAAAAAAZwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAKQAAAAAAYAAAAAABZwAAAAAAYAAAAAACEwAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAYAAAAAADUAAAAAAAbwAAAAAAZwAAAAAAKQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAYAAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAKQAAAAAAAgAAAAAAgQAAAAAAYAAAAAABUAAAAAAAZwAAAAAAKQAAAAACbwAAAAAAgQAAAAAAYAAAAAADKQAAAAAAUAAAAAAAZwAAAAAAKQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADYAAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAUAAAAAAAZwAAAAAAUAAAAAAAbwAAAAAAUAAAAAAAKQAAAAACZwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADUAAAAAAAKQAAAAADZwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAYAAAAAABUAAAAAAAYAAAAAABZwAAAAAAAgAAAAAAUAAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAKQAAAAADAgAAAAAAZwAAAAAAYAAAAAABgQAAAAAAYAAAAAABZwAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAZwAAAAAAYAAAAAADUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAKQAAAAABZwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAEAAAAAAAMgAAAAAAEAAAAAAAMgAAAAAAEAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACfQAAAAADgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAYAAAAAAC version: 6 3,-2: ind: 3,-2 - tiles: YAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABdAAAAAADdAAAAAADdAAAAAAAdAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABdAAAAAACdAAAAAABdAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAYAAAAAABYAAAAAACYAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAACYAAAAAADgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAEwAAAAAAFAAAAAACFAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAACAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAANQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAADDwAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAANQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAIAAAAAACDwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAANQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAIAAAAAABDwAAAAABIAAAAAACIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABdAAAAAAAdAAAAAADdAAAAAABdAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABdAAAAAACdAAAAAACdAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAYAAAAAACYAAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACYAAAAAACgQAAAAAAgQAAAAAACAAAAAADgQAAAAAAEwAAAAAAFAAAAAACFAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAACAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACgQAAAAAANQAAAAAAOgAAAAABOgAAAAADOgAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAADwAAAAABIAAAAAABIAAAAAAAIAAAAAACgQAAAAAANQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAIAAAAAADDwAAAAABIAAAAAABIAAAAAACIAAAAAABgQAAAAAANQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAIAAAAAAADwAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAADdAAAAAABdAAAAAAAdAAAAAAAdAAAAAADgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAADHwAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAKQAAAAADZwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAHwAAAAAGfQAAAAADgQAAAAAAIAAAAAABIAAAAAABKQAAAAADKQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAUAAAAAAAbwAAAAAAKQAAAAACKQAAAAABEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAYAAAAAADgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAABPAAAAAAANQAAAAAAPAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABHwAAAAAFgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAgQAAAAAAbwAAAAAAKQAAAAABZwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAHwAAAAADfQAAAAADgQAAAAAAIAAAAAABIAAAAAABKQAAAAACKQAAAAADUAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAUAAAAAAAbwAAAAAAKQAAAAACKQAAAAABEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAYAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAPAAAAAAANQAAAAAAPAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA version: 6 3,1: ind: 3,1 - tiles: MwAAAAACbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAMwAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgAAAAAAAMwAAAAABbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAMwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAgAAAAAAAMwAAAAADbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIgAAAAADgQAAAAAAbwAAAAAAKAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: MwAAAAACbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAMwAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgAAAAAAAMwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAMwAAAAADbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAgAAAAAAAMwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAACgQAAAAAAfQAAAAADgQAAAAAAfQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAKAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAGfQAAAAACfQAAAAADHwAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIgAAAAABgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: fQAAAAACBAAAAAAABAAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAMAAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcgAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAABAAAAAABBAAAAAAAdQAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAcgAAAAAAfQAAAAACcgAAAAAAfQAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADMwAAAAADMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAMwAAAAADMwAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAA + tiles: fQAAAAADBAAAAAABBAAAAAADBAAAAAABgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABFgAAAAACFgAAAAACFgAAAAADMAAAAAACCgAAAAACCgAAAAADCgAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAADdgAAAAAAdgAAAAABdgAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAdwAAAAADdwAAAAAAdwAAAAACcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAdQAAAAAAdQAAAAADdQAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAABAAAAAADBAAAAAABdQAAAAADBAAAAAADgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAcgAAAAABfQAAAAADcgAAAAAAfQAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAACgQAAAAAAMwAAAAADgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAABMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABMwAAAAADMwAAAAAAMwAAAAADMwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAACMwAAAAABMwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACMwAAAAABMwAAAAACfQAAAAADfQAAAAADfQAAAAACfQAAAAACgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAfQAAAAACfQAAAAACgQAAAAAAfQAAAAADfQAAAAACfQAAAAAA version: 6 1,2: ind: 1,2 - tiles: GgAAAAAAGgAAAAABGgAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAGgAAAAACGgAAAAAAGgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAACDAAAAAACDAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAACbwAAAAAAKAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAKAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAOgAAAAADOgAAAAACOgAAAAABOgAAAAABgQAAAAAAXQAAAAAAXQAAAAAALQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAOgAAAAADLQAAAAABLQAAAAACOgAAAAACOgAAAAACXQAAAAAALQAAAAACLQAAAAAALQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAOgAAAAADLQAAAAACOgAAAAADOgAAAAADgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAOgAAAAACOgAAAAABOgAAAAACOgAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAATAAAAAAATAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAOgAAAAADOgAAAAAAOgAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + tiles: GgAAAAACGgAAAAADGgAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAGgAAAAACGgAAAAABGgAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAACgQAAAAAAbwAAAAAAEwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKAAAAAADbwAAAAAAKAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADbwAAAAAAKAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAADAAAAAABgQAAAAAAOgAAAAACOgAAAAABOgAAAAABOgAAAAAAgQAAAAAAXQAAAAAAXQAAAAAALQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAOgAAAAADLQAAAAABLQAAAAAAOgAAAAADOgAAAAAAXQAAAAAALQAAAAACLQAAAAAALQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAOgAAAAACLQAAAAABOgAAAAACOgAAAAACgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAZwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAOgAAAAADOgAAAAADOgAAAAAAOgAAAAADgQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAATAAAAAAATAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAOgAAAAACOgAAAAABOgAAAAACgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA version: 6 3,2: ind: 3,2 - tiles: gQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAACbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAALQAAAAABLQAAAAABLQAAAAABbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAA + tiles: gQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAABDwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAALQAAAAACLQAAAAADLQAAAAACbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: YAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAIAAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABYAAAAAABdAAAAAABdAAAAAABdAAAAAABYAAAAAADdAAAAAAAdAAAAAAAYAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABdAAAAAACdAAAAAADdAAAAAACYAAAAAABdAAAAAACdAAAAAABYAAAAAAAYAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABdAAAAAACdAAAAAABYAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAdAAAAAABdAAAAAABYAAAAAACYAAAAAABIAAAAAAAEwAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADdAAAAAACdAAAAAACYAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAACgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAIAAAAAABgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAIAAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAABYAAAAAACdAAAAAAAdAAAAAADdAAAAAACYAAAAAADdAAAAAADdAAAAAABYAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAABdAAAAAACdAAAAAAAdAAAAAAAYAAAAAAAdAAAAAAAdAAAAAAAYAAAAAAAYAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABdAAAAAAAdAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADdAAAAAADdAAAAAACYAAAAAADYAAAAAAAIAAAAAAAEwAAAAAAgQAAAAAATAAAAAAATAAAAAAATAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADdAAAAAAAdAAAAAADYAAAAAADgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAIAAAAAABgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: ZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAADOgAAAAACOgAAAAACgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOgAAAAAALQAAAAACOgAAAAADgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAACXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAADAAAAAAAgQAAAAAAOgAAAAADLQAAAAACOgAAAAABgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAABXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAAALQAAAAAAOgAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAADAAAAAAAgQAAAAAAOgAAAAABOgAAAAABOgAAAAADgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAAOgAAAAACOgAAAAABOgAAAAACgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAOgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: ZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAACOgAAAAACOgAAAAADgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOgAAAAABLQAAAAADOgAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAADXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAADAAAAAACgQAAAAAAOgAAAAACLQAAAAAAOgAAAAACgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAABXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAABLQAAAAADOgAAAAABgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACgQAAAAAADAAAAAABgQAAAAAAOgAAAAAAOgAAAAABOgAAAAADgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACgQAAAAAAOgAAAAABOgAAAAAAOgAAAAACgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAADAAAAAACgQAAAAAAgQAAAAAAOgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAKAAAAAADKAAAAAABKAAAAAACKAAAAAADgQAAAAAAKAAAAAABKAAAAAAAKAAAAAADKAAAAAADKAAAAAACKAAAAAABKAAAAAADKAAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAAAgQAAAAAAKAAAAAADKAAAAAACKAAAAAABKAAAAAAAKAAAAAAAKAAAAAACKAAAAAABKAAAAAADKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -8,-1: ind: -8,-1 @@ -482,7 +483,7 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: EwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAABKAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAACAAAAAAACAAAAAABCAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKAAAAAAAIAAAAAADIAAAAAABFAAAAAAAFAAAAAADFAAAAAADIAAAAAADCAAAAAACCAAAAAACCAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAKAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAABCAAAAAADCAAAAAADCAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKAAAAAABIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAYAAAAAADUAAAAAAAYAAAAAACbwAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUgAAAAAANQAAAAAAbwAAAAAAUAAAAAAAZwAAAAAAKQAAAAAAgQAAAAAAYAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAXQAAAAAAUAAAAAAAbwAAAAAAUAAAAAAAKQAAAAACUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAZwAAAAAAZwAAAAAAgQAAAAAA + tiles: EwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAADKAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAACAAAAAADCAAAAAAACAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAKAAAAAACIAAAAAACIAAAAAAAFAAAAAACFAAAAAAAFAAAAAABIAAAAAADCAAAAAACCAAAAAABCAAAAAADgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAKAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADCAAAAAACCAAAAAAACAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAYAAAAAABUAAAAAAAYAAAAAABbwAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUgAAAAAANQAAAAAAbwAAAAAAUAAAAAAAZwAAAAAAKQAAAAAAgQAAAAAAYAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAXQAAAAAAUAAAAAAAbwAAAAAAUAAAAAAAKQAAAAACUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAUAAAAAAAZwAAAAAAZwAAAAAAgQAAAAAA version: 6 -8,1: ind: -8,1 @@ -490,135 +491,135 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: NwAAAAAANwAAAAABKwAAAAAAKwAAAAAAKwAAAAACDAAAAAACMAAAAAACYAAAAAADMAAAAAAAYAAAAAABgQAAAAAAIgAAAAABIgAAAAACIgAAAAADIgAAAAADgQAAAAAANwAAAAAAMAAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAAAMAAAAAADYAAAAAABMAAAAAABYAAAAAABgQAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIgAAAAACIgAAAAADIgAAAAADIgAAAAADgQAAAAAAgQAAAAAADAAAAAACYAAAAAADYAAAAAAAYAAAAAACDAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIgAAAAADIgAAAAADIgAAAAABIgAAAAAAgQAAAAAAgQAAAAAADAAAAAACYAAAAAADYAAAAAABYAAAAAAADAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIgAAAAACIgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADMAAAAAACYAAAAAACgQAAAAAAPQAAAAABPQAAAAAAPQAAAAAAPQAAAAADPQAAAAADYAAAAAAAMAAAAAAAMAAAAAABMAAAAAAAYAAAAAACYAAAAAACYAAAAAABMAAAAAAAMAAAAAABYAAAAAADgQAAAAAAPQAAAAADNwAAAAADNwAAAAACNwAAAAAANwAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAPQAAAAACNwAAAAACPgAAAAADPgAAAAADQAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALQAAAAAANwAAAAAAPgAAAAAAQAAAAAABQAAAAAAAMAAAAAABMAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAMAAAAAACMAAAAAABMAAAAAACgQAAAAAALQAAAAABNwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAALQAAAAAANwAAAAABQAAAAAAAQAAAAAAAQAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACgQAAAAAAPQAAAAACNwAAAAACQAAAAAAAQAAAAAAAQAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACgQAAAAAAPQAAAAABNwAAAAADNwAAAAABNwAAAAACNwAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACgQAAAAAAPQAAAAABNwAAAAADNwAAAAADNwAAAAAANwAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABgQAAAAAAPQAAAAACPQAAAAACPQAAAAABLQAAAAACLQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: NwAAAAAANwAAAAAAKwAAAAADKwAAAAADKwAAAAABDAAAAAAAMAAAAAADYAAAAAABMAAAAAACYAAAAAABgQAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAABgQAAAAAANwAAAAAAMAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAACMAAAAAABYAAAAAABMAAAAAACYAAAAAADgQAAAAAAIgAAAAABIgAAAAAAIgAAAAABIgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAIgAAAAACIgAAAAABIgAAAAAAIgAAAAABgQAAAAAAgQAAAAAADAAAAAABYAAAAAAAYAAAAAAAYAAAAAAADAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAIgAAAAABIgAAAAABIgAAAAABIgAAAAADgQAAAAAAgQAAAAAADAAAAAACYAAAAAAAYAAAAAABYAAAAAABDAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAMAAAAAABYAAAAAACgQAAAAAAPQAAAAAAPQAAAAACPQAAAAAAPQAAAAACPQAAAAACYAAAAAABMAAAAAADMAAAAAABMAAAAAAAYAAAAAACYAAAAAABYAAAAAABMAAAAAADMAAAAAACYAAAAAAAgQAAAAAAPQAAAAADNwAAAAACNwAAAAABNwAAAAABNwAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAPQAAAAADNwAAAAACPgAAAAADPgAAAAAAQAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAALQAAAAACNwAAAAABPgAAAAACQAAAAAADQAAAAAADMAAAAAACMAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAMAAAAAADMAAAAAABMAAAAAACgQAAAAAALQAAAAADNwAAAAACQAAAAAADQAAAAAABQAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAALQAAAAAANwAAAAAAQAAAAAADQAAAAAADQAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgQAAAAAAPQAAAAACNwAAAAADQAAAAAACQAAAAAABQAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABgQAAAAAAPQAAAAACNwAAAAAANwAAAAACNwAAAAABNwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgQAAAAAAPQAAAAABNwAAAAAANwAAAAAANwAAAAABNwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABgQAAAAAAPQAAAAADPQAAAAABPQAAAAACLQAAAAACLQAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,3: ind: -2,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADgQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAACfQAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAACPQAAAAADPQAAAAABPQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAABNwAAAAABNwAAAAAAPQAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAQAAAAAAAQAAAAAAANwAAAAABPQAAAAABgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAANwAAAAACLQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAANwAAAAAALQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAPgAAAAAANwAAAAABLQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAPgAAAAAAPgAAAAAANwAAAAACPQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACgQAAAAAAgQAAAAAANwAAAAABNwAAAAAANwAAAAACPQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAABfQAAAAAANwAAAAAANwAAAAADNwAAAAABPQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAALQAAAAACPQAAAAAAPQAAAAADPQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOQAAAAADOQAAAAADOQAAAAABOQAAAAADOQAAAAADFgAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAADgQAAAAAAfQAAAAACfQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAADfQAAAAADfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAABPQAAAAAAPQAAAAACPQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAADNwAAAAADNwAAAAAAPQAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAQAAAAAAAQAAAAAAANwAAAAACPQAAAAABgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACgQAAAAAAQAAAAAAAQAAAAAACNwAAAAADLQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABgQAAAAAAQAAAAAADQAAAAAACNwAAAAAALQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgQAAAAAAQAAAAAAAPgAAAAACNwAAAAADLQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgQAAAAAAPgAAAAAAPgAAAAABNwAAAAACPQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABgQAAAAAAgQAAAAAANwAAAAACNwAAAAABNwAAAAADPQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAANwAAAAACNwAAAAABNwAAAAACPQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAABfQAAAAACfQAAAAAALQAAAAABPQAAAAABPQAAAAAAPQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOQAAAAADOQAAAAAAOQAAAAAAOQAAAAACOQAAAAADFgAAAAAA version: 6 -4,3: ind: -4,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAYAAAAAAAYAAAAAAAGgAAAAABGgAAAAABGgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAZAAAAAAEZAAAAAADZAAAAAAGgQAAAAAAYAAAAAAAGgAAAAACGgAAAAABGgAAAAABYAAAAAAAYAAAAAAAGgAAAAADGgAAAAABGgAAAAAAYAAAAAAAgQAAAAAAZAAAAAAFZAAAAAADZAAAAAAAZAAAAAAEgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZAAAAAADgQAAAAAANwAAAAACNwAAAAACNwAAAAACNwAAAAADNwAAAAABNwAAAAAANwAAAAACNwAAAAADNwAAAAAANwAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACgAAAAABCgAAAAAACgAAAAADgQAAAAAANwAAAAADgQAAAAAACgAAAAADCgAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACMAAAAAABMAAAAAABMAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACMAAAAAACMAAAAAACMAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAEgAAAAAAMAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACEgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAAAHAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAMAAAAAACEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAABHAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAADHAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADEgAAAAAAEgAAAAAAIAAAAAADIAAAAAAAIAAAAAACHAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAAAHAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABgQAAAAAABAAAAAABEgAAAAAAEgAAAAAAIAAAAAADIAAAAAACIAAAAAACHAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAABfQAAAAADHwAAAAAFfQAAAAAAgQAAAAAABAAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADGgAAAAABGgAAAAAAGgAAAAAAYAAAAAACYAAAAAACGgAAAAACGgAAAAAAGgAAAAACYAAAAAACgQAAAAAAgQAAAAAAZAAAAAAEZAAAAAAAZAAAAAACgQAAAAAAYAAAAAACGgAAAAACGgAAAAABGgAAAAABYAAAAAACYAAAAAACGgAAAAADGgAAAAABGgAAAAAAYAAAAAACgQAAAAAAZAAAAAAGZAAAAAACZAAAAAAFZAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZAAAAAAGgQAAAAAANwAAAAAANwAAAAACNwAAAAACNwAAAAACNwAAAAABNwAAAAADNwAAAAAANwAAAAABNwAAAAADNwAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACgAAAAADCgAAAAABCgAAAAACgQAAAAAANwAAAAADgQAAAAAACgAAAAAACgAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABMAAAAAACMAAAAAACMAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACMAAAAAACMAAAAAAAMAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAEgAAAAAAMAAAAAACMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACEgAAAAAAEgAAAAAAIAAAAAADIAAAAAABIAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAMAAAAAABEgAAAAAAEgAAAAAAIAAAAAABIAAAAAADIAAAAAACHAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAABEgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAADHAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABAAAAAACEgAAAAAAEgAAAAAAIAAAAAADIAAAAAADIAAAAAADHAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAACEgAAAAAAEgAAAAAAIAAAAAADIAAAAAABIAAAAAACHAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAACgQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAABIAAAAAABHAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADgQAAAAAABAAAAAACEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAAAIAAAAAABHAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAfQAAAAABHwAAAAABfQAAAAAAgQAAAAAABAAAAAAC version: 6 -3,4: ind: -3,4 - tiles: BAAAAAAABAAAAAACfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACBAAAAAACBAAAAAADBAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAABfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAACfQAAAAABgQAAAAAABQAAAAADBQAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAABBQAAAAADBQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABBQAAAAAABQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAADBQAAAAABBQAAAAACgQAAAAAAEwAAAAAAbwAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAABQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: BAAAAAAABAAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAAAfQAAAAACBAAAAAABBAAAAAABBAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAACgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAABfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAABgQAAAAAABQAAAAACBQAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAABgQAAAAAAUAAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADBQAAAAABBQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAACBQAAAAACBQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAABfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAACBQAAAAADBQAAAAADgQAAAAAAEwAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAABQAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,4: ind: -2,4 - tiles: gQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOQAAAAACOQAAAAAAOQAAAAABOQAAAAAAOQAAAAACFgAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAADOQAAAAAAOQAAAAABOQAAAAAAFgAAAAADbwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAABOQAAAAABOQAAAAAAOQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAADOQAAAAABOQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAACgAAAAACCgAAAAABEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAACgAAAAAACgAAAAABCgAAAAABgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACgAAAAABCgAAAAABCgAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAACgAAAAADCgAAAAADCgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAABCgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOQAAAAABOQAAAAACOQAAAAAAOQAAAAADOQAAAAACFgAAAAADEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAACOQAAAAAAOQAAAAADOQAAAAAAOQAAAAACFgAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAADOQAAAAAAOQAAAAABOQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAACOQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAACgAAAAADCgAAAAABEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAACgAAAAAACgAAAAABCgAAAAABgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACgAAAAACCgAAAAADCgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAACgAAAAADCgAAAAACCgAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACgAAAAAACgAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: EgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAACHAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAHwAAAAAFfQAAAAACfQAAAAAAfQAAAAADgQAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAABIAAAAAABHAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAgQAAAAAAfQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAHwAAAAAFfQAAAAADBAAAAAADfQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAABfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAABgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAABQAAAAACBQAAAAADgQAAAAAAfQAAAAADVwAAAAAADAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABQAAAAADBQAAAAADWwAAAAAAgQAAAAAABQAAAAADgQAAAAAABQAAAAABBQAAAAAAfQAAAAADfQAAAAABDAAAAAACDAAAAAACDAAAAAADAQAAAAAAAQAAAAAAgQAAAAAABQAAAAADBQAAAAACWwAAAAAABQAAAAADBQAAAAABgQAAAAAABQAAAAABBQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAABAQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAABQAAAAAABQAAAAAAfQAAAAADfQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABQAAAAAABQAAAAAAWwAAAAAABQAAAAADBQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABAQAAAAAAVwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABQAAAAABBQAAAAAAWwAAAAAABQAAAAADBQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADAAAAAADVwAAAAAADAAAAAACAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAADAAAAAADVwAAAAAADAAAAAADAQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACfQAAAAAADAAAAAACfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAB + tiles: EgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAACHAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAABAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAACIAAAAAADHAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAfQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACHwAAAAADfQAAAAAABAAAAAACfQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAABQAAAAAABQAAAAACgQAAAAAAfQAAAAADVwAAAAABDAAAAAAAAQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAABQAAAAACBQAAAAACgQAAAAAAgQAAAAAAVwAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAgQAAAAAABQAAAAADBQAAAAADWwAAAAAAgQAAAAAABQAAAAADgQAAAAAABQAAAAACBQAAAAABfQAAAAADfQAAAAADDAAAAAABDAAAAAACDAAAAAAAAQAAAAABAQAAAAAAgQAAAAAABQAAAAADBQAAAAADWwAAAAAABQAAAAABBQAAAAAAgQAAAAAABQAAAAACBQAAAAACfQAAAAABfQAAAAAAAQAAAAABDAAAAAACDAAAAAACDAAAAAABAQAAAAACgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAABQAAAAAABQAAAAADfQAAAAABfQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAABAQAAAAABgQAAAAAABQAAAAADBQAAAAADWwAAAAAABQAAAAADBQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAAQAAAAACVwAAAAABAQAAAAAAAQAAAAAAAQAAAAABgQAAAAAABQAAAAABBQAAAAABWwAAAAAABQAAAAAABQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADAAAAAACVwAAAAACDAAAAAACAQAAAAAAAQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAADAAAAAACVwAAAAABDAAAAAADAQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAfQAAAAADDAAAAAADfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAB version: 6 -5,3: ind: -5,3 - tiles: BAAAAAACBAAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAABBAAAAAADBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZAAAAAAFgQAAAAAAgQAAAAAABAAAAAABBAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACLQAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABLQAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACMAAAAAAAMAAAAAABYAAAAAABYAAAAAABYAAAAAADMAAAAAABMAAAAAABMAAAAAADLQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAMAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADLQAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAADEgAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAHAAAAAAAIAAAAAACIAAAAAACIAAAAAABEgAAAAAABAAAAAACBAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAPAAAAAAAYAAAAAAAPAAAAAAAgQAAAAAAHAAAAAAAIAAAAAADIAAAAAACIAAAAAADEgAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAADIAAAAAACIAAAAAABEgAAAAAABAAAAAACBAAAAAADgQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAACfQAAAAADgQAAAAAAHAAAAAAAIAAAAAAAIAAAAAABIAAAAAABEgAAAAAABAAAAAABBAAAAAACgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAACIAAAAAABIAAAAAABEgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABgQAAAAAAHAAAAAAAIAAAAAABIAAAAAACIAAAAAAAEgAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAACIAAAAAABIAAAAAADIAAAAAABEgAAAAAA + tiles: BAAAAAACBAAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAAGBAAAAAADBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZAAAAAADgQAAAAAAgQAAAAAABAAAAAABBAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACLQAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAMAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAALQAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABMAAAAAABMAAAAAADYAAAAAAAYAAAAAADYAAAAAACMAAAAAABMAAAAAAAMAAAAAADLQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABMAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAALQAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAABEgAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAHAAAAAABIAAAAAABIAAAAAADIAAAAAACEgAAAAAABAAAAAAABAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAPAAAAAAAYAAAAAADPAAAAAAAgQAAAAAAHAAAAAACIAAAAAABIAAAAAADIAAAAAAAEgAAAAAABAAAAAABBAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAABIAAAAAADIAAAAAADEgAAAAAABAAAAAADBAAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAADfQAAAAADgQAAAAAAHAAAAAADIAAAAAABIAAAAAABIAAAAAACEgAAAAAABAAAAAAABAAAAAACgQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAACIAAAAAADIAAAAAACIAAAAAABEgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAACgQAAAAAAHAAAAAABIAAAAAADIAAAAAACIAAAAAADEgAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAACIAAAAAADIAAAAAAAIAAAAAABEgAAAAAA version: 6 -5,4: ind: -5,4 - tiles: gQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAVgAAAAAAgQAAAAAABQAAAAAAIAAAAAAAHAAAAAACIAAAAAABIAAAAAADIAAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAADIAAAAAADEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAHAAAAAABIAAAAAABIAAAAAADEgAAAAAAEgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAHAAAAAABIAAAAAAAIAAAAAABEgAAAAAAEgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAADAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAAQAAAAAADAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAAQAAAAAAgAAAAAAAgQAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAACgQAAAAAAgQAAAAAABQAAAAABfQAAAAAAfQAAAAACfQAAAAADBQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAACAAAAAABgQAAAAAAgQAAAAAACAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAB + tiles: gQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAVgAAAAAAgQAAAAAABQAAAAACIAAAAAABHAAAAAADIAAAAAADIAAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAADIAAAAAACIAAAAAADEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAHAAAAAADIAAAAAABIAAAAAADEgAAAAAAEgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAHAAAAAACIAAAAAAAIAAAAAADEgAAAAAAEgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAADAAAAAACgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAAQAAAAACDAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAACAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAQAAAAADgAAAAAAAgQAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABgQAAAAAAgQAAAAAABQAAAAACfQAAAAABfQAAAAABfQAAAAAABQAAAAABgQAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAACAAAAAACgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAAQAAAAABAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAB version: 6 -1,3: ind: -1,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAZwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAAAgQAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAADAAAAAAADAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAfQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAfQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAfQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAAABQAAAAACBQAAAAABBQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAADfQAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAAAHwAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAADfQAAAAADYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAZwAAAAAAgQAAAAAADAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADAAAAAADgQAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACDAAAAAABDAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAZwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAfQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAfQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAAAfQAAAAAABQAAAAADBQAAAAADBQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAADYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAABHwAAAAAFfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAABfQAAAAACfQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAfQAAAAADgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAADYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,3: ind: 0,3 - tiles: YwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADFAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIQAAAAAAIQAAAAABgQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACFAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIQAAAAAAIQAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACFAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIQAAAAAAIQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAACgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAIAAAAAACFAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAFAAAAAADIAAAAAABIQAAAAADIQAAAAABgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAABFAAAAAADFAAAAAADFAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIQAAAAABIQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAADgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAACIQAAAAACIQAAAAABgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADgQAAAAAADAAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAA + tiles: YwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAFAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAADIQAAAAACIQAAAAABgQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABFAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIQAAAAABIQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAFAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIQAAAAACIQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAIAAAAAABFAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAAAFAAAAAAAIAAAAAABIQAAAAAAIQAAAAADgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAFAAAAAABFAAAAAACFAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIQAAAAACIQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIQAAAAACIQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAgQAAAAAADAAAAAABZwAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADAAAAAAADAAAAAADEwAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: IQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAAIQAAAAABgQAAAAAADwAAAAAAgQAAAAAAYAAAAAADLQAAAAADYAAAAAADgQAAAAAADwAAAAAAIQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAACIQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABLQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIQAAAAABIQAAAAABIQAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAALQAAAAABYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACLQAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABLQAAAAABYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAYAAAAAADYAAAAAACYAAAAAAALQAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAD + tiles: IQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAAIQAAAAACgQAAAAAADwAAAAADgQAAAAAAYAAAAAADLQAAAAACYAAAAAACgQAAAAAADwAAAAADIQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAABIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACLQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABLQAAAAACYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAALQAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABLQAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAYAAAAAABYAAAAAABYAAAAAACLQAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAC version: 6 4,-4: ind: 4,-4 - tiles: gQAAAAAAIQAAAAACIQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAADDwAAAAABgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAIQAAAAADIQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAADDwAAAAABgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAEwAAAAAA + tiles: gQAAAAAAIQAAAAADIQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAABDwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAIQAAAAACIQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAADwAAAAABgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgAAAAAAAgQAAAAAAgQAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAEwAAAAAA version: 6 5,-4: ind: 5,-4 - tiles: YAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAHwAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAEwAAAAAAfQAAAAADfQAAAAADgQAAAAAAHwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAfQAAAAABgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAHwAAAAADfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAEwAAAAAAfQAAAAABfQAAAAAAgQAAAAAAHwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIQAAAAABIQAAAAAAIQAAAAABIQAAAAADIQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAIQAAAAADIQAAAAABIQAAAAADIQAAAAAAIQAAAAAAIQAAAAADIQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAIQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAIQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAADIQAAAAACgQAAAAAADwAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAADwAAAAAAIQAAAAABPAAAAAAAPAAAAAAADwAAAAACPAAAAAAAPAAAAAAAIQAAAAAAIQAAAAABDwAAAAACDwAAAAACDwAAAAACYAAAAAAALQAAAAADYAAAAAACDwAAAAABDwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIQAAAAABIQAAAAACIQAAAAABIQAAAAADIQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAIQAAAAAAIQAAAAABIQAAAAABIQAAAAADIQAAAAADIQAAAAABIQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAIQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAADIQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAIQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAADIQAAAAAAgQAAAAAADwAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAADwAAAAACIQAAAAABPAAAAAAAPAAAAAAADwAAAAADPAAAAAAAPAAAAAAAIQAAAAACIQAAAAAADwAAAAACDwAAAAADDwAAAAACYAAAAAACLQAAAAADYAAAAAABDwAAAAAADwAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAACIQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIQAAAAADIQAAAAABIQAAAAABIQAAAAABIQAAAAACIQAAAAACIQAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACIQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAADDwAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAIQAAAAABIQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAABDwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAADwAAAAABIQAAAAACIQAAAAABPAAAAAAAPAAAAAAADwAAAAACPAAAAAAAPAAAAAAAIQAAAAAADwAAAAADgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAADIQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAAAIQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAABIQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAADwAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAIQAAAAAAIQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACDwAAAAAAIQAAAAACIQAAAAACPAAAAAAAPAAAAAAADwAAAAADPAAAAAAAPAAAAAAAIQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAABEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAADbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAADEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAADwAAAAAD version: 6 -6,3: ind: -6,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADLQAAAAAAYAAAAAAABAAAAAAABAAAAAACgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAACLQAAAAAATQAAAAACTQAAAAABTQAAAAADLQAAAAAAYAAAAAADBAAAAAAABAAAAAADgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACLQAAAAAATQAAAAADTQAAAAADTQAAAAACLQAAAAAAYAAAAAADBAAAAAABBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACLQAAAAACLQAAAAADTQAAAAACTQAAAAACTQAAAAACLQAAAAAALQAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAABTQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAAAYAAAAAABLQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAADDAAAAAACDAAAAAABDAAAAAACTQAAAAADTQAAAAAATQAAAAAATQAAAAACLQAAAAAALQAAAAADLQAAAAADYAAAAAADLQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAABDAAAAAADDAAAAAAADAAAAAADTQAAAAABTQAAAAADTQAAAAABTQAAAAADLQAAAAADLQAAAAADLQAAAAABYAAAAAACLQAAAAADTQAAAAABTQAAAAABTQAAAAADTQAAAAACDAAAAAACDAAAAAADDAAAAAACTQAAAAABTQAAAAADTQAAAAADTQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAACTQAAAAACTQAAAAADTQAAAAAATQAAAAABTQAAAAAALQAAAAABLQAAAAABLQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAACLQAAAAABLQAAAAABTQAAAAACTQAAAAACTQAAAAAALQAAAAACLQAAAAADYAAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAABLQAAAAACTQAAAAACTQAAAAAATQAAAAACLQAAAAABYAAAAAADgQAAAAAABAAAAAACgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAAALQAAAAABTQAAAAAATQAAAAACTQAAAAAALQAAAAADYAAAAAABBAAAAAADBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAAAYAAAAAACBAAAAAACBAAAAAACgQAAAAAABAAAAAACBAAAAAADBAAAAAADBQAAAAADBQAAAAADBQAAAAABBQAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAABDQAAAAAABAAAAAADBAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAADBQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAAAYAAAAAADBAAAAAADBAAAAAABgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAABLQAAAAAATQAAAAABTQAAAAAATQAAAAACLQAAAAACYAAAAAADBAAAAAACBAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAACLQAAAAACTQAAAAABTQAAAAACTQAAAAAALQAAAAABYAAAAAAABAAAAAABBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAABLQAAAAAALQAAAAAATQAAAAACTQAAAAADTQAAAAABLQAAAAACLQAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAAATQAAAAACTQAAAAABTQAAAAAATQAAAAAATQAAAAACLQAAAAACLQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACYAAAAAACLQAAAAABTQAAAAADTQAAAAABTQAAAAACTQAAAAABDAAAAAAADAAAAAADDAAAAAAATQAAAAABTQAAAAACTQAAAAAATQAAAAAALQAAAAABLQAAAAAALQAAAAAAYAAAAAADLQAAAAADTQAAAAAATQAAAAABTQAAAAABTQAAAAADDAAAAAAADAAAAAACDAAAAAAATQAAAAABTQAAAAABTQAAAAABTQAAAAABLQAAAAADLQAAAAACLQAAAAAAYAAAAAACLQAAAAABTQAAAAAATQAAAAAATQAAAAACTQAAAAAADAAAAAABDAAAAAADDAAAAAACTQAAAAAATQAAAAADTQAAAAADTQAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABLQAAAAAALQAAAAACLQAAAAABLQAAAAADTQAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAADLQAAAAAALQAAAAADLQAAAAABgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAAALQAAAAADLQAAAAABTQAAAAACTQAAAAABTQAAAAADLQAAAAADLQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAADLQAAAAACTQAAAAACTQAAAAACTQAAAAACLQAAAAADYAAAAAACgQAAAAAABAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAABBQAAAAADLQAAAAADTQAAAAACTQAAAAADTQAAAAABLQAAAAABYAAAAAACBAAAAAABBAAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAADLQAAAAABLQAAAAADLQAAAAABLQAAAAADLQAAAAACYAAAAAAABAAAAAAABAAAAAACgQAAAAAABAAAAAABBAAAAAACBAAAAAABBQAAAAAABQAAAAACBQAAAAAABQAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAADQAAAAAABAAAAAAABAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA version: 6 -7,2: ind: -7,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAADDwAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABDwAAAAABMAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAABDwAAAAABgQAAAAAACgAAAAAACgAAAAADCgAAAAABCgAAAAACgQAAAAAADwAAAAABMAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAABgQAAAAAAMAAAAAADMAAAAAACMAAAAAADMAAAAAABgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAABMAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAABMAAAAAABEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAACMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAACMAAAAAADEQAAAAAAMAAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAACEQAAAAAACgAAAAADCgAAAAACEQAAAAAAMAAAAAABEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAABEQAAAAAAMAAAAAADEQAAAAAACgAAAAADCgAAAAABEQAAAAAAMAAAAAABEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAADMAAAAAAAgQAAAAAAEQAAAAAAMAAAAAADEQAAAAAACgAAAAACCgAAAAADEQAAAAAAMAAAAAACEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAACEQAAAAAAMAAAAAACEQAAAAAACgAAAAABCgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABMQAAAAABgQAAAAAAMQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAMQAAAAABKQAAAAADgQAAAAAAKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADMQAAAAADgQAAAAAAMQAAAAABgAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgAAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAKQAAAAACgQAAAAAAMAAAAAACMAAAAAADMAAAAAACgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAABAAAAAACBAAAAAACBAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAABgQAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACBAAAAAABBAAAAAACDQAAAAAABAAAAAADBAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAACBAAAAAAABAAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACBAAAAAADBAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAEwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABMQAAAAADgQAAAAAAMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAMQAAAAAAKQAAAAACgQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACMQAAAAABgQAAAAAAMQAAAAABgAAAAAAAAQAAAAACAQAAAAABAQAAAAADgAAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAMAAAAAACMAAAAAADMAAAAAACgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAABgQAAAAAABAAAAAABBAAAAAADBAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABgQAAAAAAbwAAAAAAZwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADBAAAAAABBAAAAAADDQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAACBAAAAAAABAAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADBAAAAAACBAAAAAAC version: 6 -7,3: ind: -7,3 - tiles: AAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAYAAAAAAAYAAAAAABLQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAABgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAYAAAAAADYAAAAAACLQAAAAADAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAYAAAAAACYAAAAAAALQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAACgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA + tiles: AAAAAAAAgQAAAAAAMAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAADCgAAAAABEQAAAAAAMAAAAAACEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAABMAAAAAADEQAAAAAAMAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAABMAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAADMAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAACMAAAAAACEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAABEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAADEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAYAAAAAABYAAAAAACAAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAADEQAAAAAAMAAAAAAAEQAAAAAACgAAAAADCgAAAAACEQAAAAAAMAAAAAACEQAAAAAAYAAAAAACYAAAAAABLQAAAAAAAAAAAAAAgQAAAAAAMAAAAAADMAAAAAADgQAAAAAAEQAAAAAAMAAAAAACEQAAAAAACgAAAAACCgAAAAACEQAAAAAAMAAAAAADEQAAAAAAYAAAAAADYAAAAAADLQAAAAABAAAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAAAEQAAAAAAMAAAAAADEQAAAAAACgAAAAAACgAAAAACEQAAAAAAMAAAAAAAEQAAAAAAYAAAAAACYAAAAAABLQAAAAACAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAACEQAAAAAACgAAAAAACgAAAAADEQAAAAAAMAAAAAADEQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAACgAAAAADMAAAAAADEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAACMAAAAAABEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAABMAAAAAADEQAAAAAAMAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAACEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAMAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAACEQAAAAAACgAAAAACCgAAAAAAEQAAAAAAMAAAAAADEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAADEQAAAAAACgAAAAAACgAAAAACEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAADMAAAAAABgQAAAAAAEQAAAAAAMAAAAAADEQAAAAAACgAAAAACCgAAAAADEQAAAAAAMAAAAAABEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAABEQAAAAAAMAAAAAADEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA version: 6 -6,4: ind: -6,4 - tiles: BAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAABAAAAAABBAAAAAADBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAACMAAAAAABMAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAABAAAAAADBAAAAAADBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAACMAAAAAABMAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAAQAAAAACAQAAAAACAQAAAAABgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,4: ind: -7,4 - tiles: AAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAgQAAAAAAMAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAABEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAABEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAADMAAAAAADEQAAAAAAMAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAADMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAABEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAABMAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAADgQAAAAAAMAAAAAABMAAAAAABMAAAAAADMAAAAAACgQAAAAAADwAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAABDwAAAAABgQAAAAAACgAAAAAACgAAAAACCgAAAAADCgAAAAADgQAAAAAADwAAAAACMAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAADwAAAAACMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAADwAAAAADMAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: WQAAAAABBAAAAAABBAAAAAABJAAAAAAAJAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADKAAAAAABKAAAAAACKAAAAAADKAAAAAADGAAAAAAAGAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACKAAAAAABKAAAAAADKAAAAAABKAAAAAADGAAAAAAAGAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACKAAAAAAAKAAAAAABKAAAAAACKAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAKAAAAAADKAAAAAACKAAAAAADKAAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAAAOwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABKAAAAAABKAAAAAADKAAAAAABKAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADKAAAAAACKAAAAAACKAAAAAAAKAAAAAABOAAAAAADOAAAAAAAOAAAAAABOwAAAAAAcwAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAAAcwAAAAADcwAAAAABgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAKQAAAAAAKAAAAAADKQAAAAAAKQAAAAADKQAAAAADgQAAAAAAEwAAAAAAOAAAAAACOAAAAAAAOAAAAAAAcwAAAAAAcwAAAAACgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAKAAAAAABOAAAAAABLQAAAAADOAAAAAADKQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAFgAAAAABgQAAAAAAgQAAAAAAXgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADOAAAAAACLQAAAAAAOAAAAAADKAAAAAABgQAAAAAAbwAAAAAAGgAAAAAAGgAAAAADGgAAAAADgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAgQAAAAAAKQAAAAACOAAAAAADLQAAAAADOAAAAAAAKQAAAAABgQAAAAAAgQAAAAAAGgAAAAADGgAAAAADGgAAAAADgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAVQAAAAAAKAAAAAAAKQAAAAABOAAAAAACLQAAAAABOAAAAAABKAAAAAABgQAAAAAAbwAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAgQAAAAAAKQAAAAABKAAAAAADKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA + tiles: WQAAAAAABAAAAAADBAAAAAADJAAAAAAAJAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABKAAAAAADKAAAAAABKAAAAAABKAAAAAABGAAAAAAAGAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACKAAAAAADKAAAAAADKAAAAAACKAAAAAACGAAAAAAAGAAAAAAAMAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABKAAAAAAAKAAAAAADKAAAAAACKAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAKAAAAAADKAAAAAADKAAAAAAAKAAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAAAOwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABKAAAAAACKAAAAAACKAAAAAAAKAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABKAAAAAAAKAAAAAADKAAAAAACKAAAAAACOAAAAAADOAAAAAAAOAAAAAABOwAAAAAAcwAAAAACgQAAAAAAIQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAABOAAAAAACOAAAAAABcwAAAAABcwAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAKQAAAAACKAAAAAACKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAEwAAAAAAOAAAAAAAOAAAAAADOAAAAAADcwAAAAADcwAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAKAAAAAABOAAAAAAALQAAAAAAOAAAAAABKQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAFgAAAAACgQAAAAAAgQAAAAAAXgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACOAAAAAABLQAAAAAAOAAAAAADKAAAAAABgQAAAAAAbwAAAAAAGgAAAAAAGgAAAAABGgAAAAACgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAACVQAAAAAAgQAAAAAAKQAAAAABOAAAAAABLQAAAAACOAAAAAADKQAAAAABgQAAAAAAgQAAAAAAGgAAAAACGgAAAAACGgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAKAAAAAADKQAAAAADOAAAAAACLQAAAAAAOAAAAAAAKAAAAAADgQAAAAAAbwAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAgQAAAAAAKQAAAAACKAAAAAAAKQAAAAABKQAAAAACKQAAAAAAgQAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAACVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA version: 6 0,4: ind: 0,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAADAAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAFgAAAAADFgAAAAABgQAAAAAAAQAAAAAACgAAAAADgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABAAAAAAABAAAAAAAgQAAAAAACgAAAAABCgAAAAACCgAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAACgQAAAAAACgAAAAAACgAAAAACCgAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAAgQAAAAAACgAAAAADCgAAAAADCgAAAAABgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADgQAAAAAAAQAAAAAACgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAFgAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABgQAAAAAADAAAAAACZwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADAAAAAACDAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAFgAAAAAAFgAAAAACgQAAAAAAAQAAAAAACgAAAAADgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABAAAAAADBAAAAAACgQAAAAAACgAAAAABCgAAAAABCgAAAAABgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAABgQAAAAAACgAAAAADCgAAAAABCgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAACgQAAAAAACgAAAAAACgAAAAADCgAAAAACgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADgQAAAAAAAQAAAAACCgAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACFgAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: gQAAAAAAHgAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAANwAAAAAANwAAAAABNwAAAAACgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAAQAAAAAAFgAAAAADgQAAAAAADAAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADFgAAAAAAFgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAAAgQAAAAAAFgAAAAABFgAAAAACKAAAAAADgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAABFgAAAAADKQAAAAABFgAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAFgAAAAACFgAAAAACFgAAAAACgQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAACgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADFgAAAAABFgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFgAAAAAAFgAAAAAAFgAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAADAAAAAAADAAAAAABDAAAAAABFgAAAAAAFgAAAAABFgAAAAACKQAAAAADFgAAAAABKAAAAAAAFgAAAAACFgAAAAACKQAAAAADFgAAAAABKAAAAAAAFgAAAAADgQAAAAAADAAAAAABDAAAAAABDAAAAAABFgAAAAAAKQAAAAABKAAAAAADFgAAAAABFgAAAAACFgAAAAACKAAAAAACFgAAAAADFgAAAAADKQAAAAABFgAAAAABFgAAAAACgQAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAAKQAAAAADFgAAAAADFgAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAAKAAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAKAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAFgAAAAACgQAAAAAADAAAAAAADAAAAAAAVwAAAAAAVwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVwAAAAAAVwAAAAAAgQAAAAAADAAAAAAAVwAAAAAAVwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVwAAAAAA + tiles: gQAAAAAAHgAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAANwAAAAABNwAAAAACNwAAAAADgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAANwAAAAABgQAAAAAAgQAAAAAADAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAABAQAAAAACFgAAAAADgQAAAAAADAAAAAADEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADFgAAAAADFgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAFgAAAAADFgAAAAAAKAAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAACgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAACFgAAAAABKQAAAAABFgAAAAACfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAACAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAFgAAAAAAFgAAAAACFgAAAAADgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACFgAAAAAAFgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAADDAAAAAAAFgAAAAABFgAAAAADFgAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAADDAAAAAACgQAAAAAADAAAAAABDAAAAAABDAAAAAAAFgAAAAADFgAAAAAAFgAAAAADKQAAAAADFgAAAAAAKAAAAAAAFgAAAAABFgAAAAABKQAAAAADFgAAAAAAKAAAAAABFgAAAAADgQAAAAAADAAAAAADDAAAAAADDAAAAAADFgAAAAADKQAAAAAAKAAAAAABFgAAAAABFgAAAAAAFgAAAAAAKAAAAAAAFgAAAAADFgAAAAACKQAAAAABFgAAAAADFgAAAAACgQAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAACDAAAAAADDAAAAAADDAAAAAAAKQAAAAAAFgAAAAADFgAAAAADDAAAAAAADAAAAAABDAAAAAAADAAAAAABKAAAAAACgQAAAAAADAAAAAAADAAAAAADDAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAACKAAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAFgAAAAAAgQAAAAAADAAAAAACDAAAAAABVwAAAAAAVwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVwAAAAACVwAAAAAAgQAAAAAADAAAAAADVwAAAAACVwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVwAAAAAC version: 6 -1,5: ind: -1,5 - tiles: gAAAAAAAgQAAAAAAVwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAADDAAAAAAADAAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAJwAAAAAAJwAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: gAAAAAAAgQAAAAAAVwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAADAAAAAAADAAAAAACDAAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAJwAAAAAAJwAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAACJwAAAAAAJwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 - tiles: VwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAADIAAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAACIAAAAAAAIQAAAAAADwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAABIAAAAAADLQAAAAACLQAAAAADLQAAAAABLQAAAAABIAAAAAADIQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADMAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABMAAAAAABIAAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADFQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAACIAAAAAACFQAAAAACFQAAAAACFQAAAAABFQAAAAAAFQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAABIAAAAAABFQAAAAACFQAAAAAAFQAAAAACFQAAAAACFQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAWQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAWQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAWQAAAAADWQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAAAIAAAAAACLQAAAAAALQAAAAACLQAAAAAALQAAAAABIAAAAAAAIQAAAAAADwAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAAAIAAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAACIAAAAAACIQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACMAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAMAAAAAACIAAAAAABFQAAAAADFQAAAAACFQAAAAADFQAAAAACFQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAAAIAAAAAABFQAAAAADFQAAAAAAFQAAAAADFQAAAAADFQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAACIAAAAAADFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAWQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAWQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAWQAAAAADWQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABBQAAAAAABQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAAAfQAAAAADBAAAAAABBAAAAAABBAAAAAACfQAAAAACBQAAAAADBQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAADBAAAAAACBAAAAAADBAAAAAABfQAAAAADEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAAAHwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAABHwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAABBgAAAAADBgAAAAADMAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAABgAAAAADMAAAAAABBgAAAAABMAAAAAACWQAAAAAAWQAAAAADWQAAAAACfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAACcwAAAAABAwAAAAADcwAAAAABBgAAAAACBgAAAAACMAAAAAACBgAAAAABMAAAAAADWQAAAAABWQAAAAAAWQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAABgQAAAAAABgAAAAAAMAAAAAADBgAAAAACMAAAAAACWQAAAAAAWQAAAAAAWQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAABQAAAAABBQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAABfQAAAAAABAAAAAADBAAAAAACBAAAAAADfQAAAAADBQAAAAACBQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAABBAAAAAACBAAAAAACBAAAAAADfQAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAACHwAAAAAFgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAAAHwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAACBgAAAAABBgAAAAAAMAAAAAABWQAAAAABWQAAAAABWQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAABgAAAAABMAAAAAABBgAAAAABMAAAAAAAWQAAAAABWQAAAAACWQAAAAADfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAACcwAAAAAAAwAAAAADcwAAAAACBgAAAAACBgAAAAACMAAAAAADBgAAAAADMAAAAAADWQAAAAABWQAAAAACWQAAAAABfQAAAAACfQAAAAADfQAAAAADfQAAAAABgQAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAABgAAAAADMAAAAAABBgAAAAABMAAAAAADWQAAAAAAWQAAAAAAWQAAAAAD version: 6 -1,-5: ind: -1,-5 - tiles: gQAAAAAAUgAAAAABKgAAAAAAUAAAAAAAKgAAAAAAUgAAAAACgQAAAAAAHgAAAAAAgQAAAAAAUgAAAAAAUAAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADHwAAAAAGfQAAAAACAwAAAAAAAwAAAAAAAwAAAAADgQAAAAAAAwAAAAABAwAAAAACAwAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAfQAAAAACfQAAAAABHwAAAAADAwAAAAAAAwAAAAACAwAAAAAAgQAAAAAAAwAAAAACAwAAAAABAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAHwAAAAABfQAAAAABfQAAAAAAAwAAAAAAAwAAAAABAwAAAAACgQAAAAAAAwAAAAAAAwAAAAACAwAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABAwAAAAAAMAAAAAACgQAAAAAAMAAAAAAAAwAAAAADMAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAABQAAAAACBQAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAACgQAAAAAAAwAAAAAAAwAAAAACAwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAABMAAAAAADAwAAAAABMAAAAAADgQAAAAAAMAAAAAABAwAAAAABMAAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAfQAAAAABfQAAAAADfQAAAAACSwAAAAABSwAAAAADSwAAAAACSwAAAAABSwAAAAADSwAAAAADSwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAwAAAAABcwAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAAASwAAAAADSwAAAAABSwAAAAACSwAAAAABSwAAAAABSwAAAAACSwAAAAACgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAC + tiles: gQAAAAAAUgAAAAACKgAAAAAAUAAAAAAAKgAAAAAAUgAAAAACgQAAAAAAHgAAAAAAgQAAAAAAUgAAAAABUAAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADHwAAAAAFfQAAAAACAwAAAAAAAwAAAAADAwAAAAADgQAAAAAAAwAAAAABAwAAAAADAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAfQAAAAABfQAAAAACHwAAAAAGAwAAAAABAwAAAAABAwAAAAADgQAAAAAAAwAAAAABAwAAAAACAwAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAHwAAAAACfQAAAAACfQAAAAADAwAAAAACAwAAAAAAAwAAAAABgQAAAAAAAwAAAAABAwAAAAABAwAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABAwAAAAACMAAAAAADgQAAAAAAMAAAAAADAwAAAAABMAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAADAwAAAAAAAwAAAAADAwAAAAADgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAABMAAAAAAAAwAAAAACMAAAAAABgQAAAAAAMAAAAAACAwAAAAACMAAAAAADgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAABgQAAAAAAfQAAAAACfQAAAAACfQAAAAAASwAAAAACSwAAAAABSwAAAAABSwAAAAAASwAAAAABSwAAAAABSwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADAwAAAAACcwAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAAASwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAADSwAAAAACSwAAAAADgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAC version: 6 -2,-5: ind: -2,-5 - tiles: EwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACHwAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAdAAAAAADPQAAAAACdAAAAAACPQAAAAADdAAAAAABgQAAAAAAgQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABgQAAAAAAPQAAAAADFAAAAAAAPQAAAAAAFAAAAAADPQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAdAAAAAABPQAAAAABFAAAAAAAPQAAAAACdAAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADBAAAAAABBAAAAAAABAAAAAACHwAAAAAFfQAAAAABfQAAAAAAgQAAAAAAPQAAAAACFAAAAAADPQAAAAACFAAAAAADPQAAAAACgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACBAAAAAACBAAAAAADBAAAAAADfQAAAAABfQAAAAADfQAAAAACgQAAAAAAdAAAAAABPQAAAAACdAAAAAADPQAAAAABdAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACBAAAAAADBAAAAAAABAAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAAQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAADcwAAAAABAwAAAAACAwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADAwAAAAADcwAAAAADgQAAAAAAgQAAAAAA + tiles: EwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABHwAAAAAFfQAAAAADfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAACfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAABfQAAAAADgQAAAAAAdAAAAAAAPQAAAAADdAAAAAACPQAAAAAAdAAAAAABgQAAAAAAgQAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAACgQAAAAAAPQAAAAABFAAAAAABPQAAAAABFAAAAAABPQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAADfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAdAAAAAAAPQAAAAADFAAAAAABPQAAAAACdAAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACBAAAAAACBAAAAAADBAAAAAAAHwAAAAAAfQAAAAADfQAAAAACgQAAAAAAPQAAAAACFAAAAAADPQAAAAADFAAAAAACPQAAAAABgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADBAAAAAACBAAAAAABBAAAAAACfQAAAAACfQAAAAACfQAAAAABgQAAAAAAdAAAAAAAPQAAAAACdAAAAAABPQAAAAADdAAAAAACgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADBAAAAAABBAAAAAAABAAAAAACfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAAQAAAAACgQAAAAAAcwAAAAABgQAAAAAAAQAAAAADgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAAQAAAAADgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAdAAAAAACdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAABdAAAAAACdAAAAAAAdAAAAAABdAAAAAACcwAAAAADAwAAAAAAAwAAAAACcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAAwAAAAACcwAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: EwAAAAAAbwAAAAAAUgAAAAACUgAAAAABUgAAAAABEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAAAUgAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAUgAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABgQAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAACNAAAAAAANAAAAAACNAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAABNAAAAAACNAAAAAAANAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABLQAAAAABLQAAAAADLQAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAABAwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAC + tiles: EwAAAAAAbwAAAAAAUgAAAAAAUgAAAAAAUgAAAAABEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAACUgAAAAABbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAUgAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAABgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABAAAAAACOAAAAAACOAAAAAACOAAAAAABOAAAAAACOAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAACAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAOAAAAAAAOAAAAAAAOAAAAAACOAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABgQAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAABAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAADNAAAAAADNAAAAAABNAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAABNAAAAAAANAAAAAADNAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAABLQAAAAADLQAAAAAALQAAAAABcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAACAwAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAC version: 6 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,5: ind: -2,5 @@ -638,15 +639,15 @@ entities: version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAACIAAAAAABIQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAADIAAAAAABIQAAAAADgQAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACKAAAAAAAKAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAADfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAACBQAAAAAABQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADBQAAAAADBQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAADBQAAAAABBQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAAAfQAAAAABBQAAAAADBQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAADfQAAAAABfQAAAAABfQAAAAACfQAAAAADfQAAAAACBQAAAAACBQAAAAABgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADKAAAAAAAKAAAAAACgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAAABQAAAAABBQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAABQAAAAAABQAAAAADgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAADBQAAAAADBQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAACfQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAABBQAAAAAABQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAADfQAAAAADfQAAAAACfQAAAAADfQAAAAADfQAAAAACBQAAAAACBQAAAAADgQAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAKwAAAAABUgAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUgAAAAABbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKwAAAAACKwAAAAAAKwAAAAAAKwAAAAACgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKwAAAAADKwAAAAADKwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAABgQAAAAAAbwAAAAAAUgAAAAABbwAAAAAAUAAAAAAAgQAAAAAAUgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAUgAAAAACKgAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAUgAAAAACHgAAAAAAUgAAAAACgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAUAAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUAAAAAAAKgAAAAAAUgAAAAABgQAAAAAAKgAAAAAAgQAAAAAAUgAAAAACHgAAAAAAHgAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAKwAAAAACUgAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUgAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKwAAAAAAKwAAAAAAKwAAAAADKwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAABgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKwAAAAABKwAAAAABKwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAABKwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAADgQAAAAAAbwAAAAAAUgAAAAACbwAAAAAAUAAAAAAAgQAAAAAAUgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAUgAAAAABKgAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAUgAAAAABHgAAAAAAUgAAAAABgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAHgAAAAAAUAAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUAAAAAAAKgAAAAAAUgAAAAAAgQAAAAAAKgAAAAAAgQAAAAAAUgAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 2,-6: ind: 2,-6 @@ -698,11 +699,11 @@ entities: version: 6 6,-4: ind: 6,-4 - tiles: gAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAANQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAANgAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAANQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAA + tiles: gAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAANQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAANgAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAANQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAgQAAAAAAOQAAAAABgQAAAAAAOQAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAFgAAAAADFgAAAAAAOQAAAAABOQAAAAACOQAAAAAAOQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAOQAAAAAAOQAAAAABOQAAAAACOQAAAAABOQAAAAADOQAAAAAAOQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACgQAAAAAAOQAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAADgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAADAAAAAADZgAAAAAAgQAAAAAAVAAAAAAALQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAEwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAbwAAAAAAKwAAAAADKwAAAAABbwAAAAAAEwAAAAAAUgAAAAACEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKwAAAAABEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKwAAAAABUgAAAAAAUgAAAAACUgAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAKwAAAAABbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAKwAAAAADbwAAAAAAKwAAAAACbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAOQAAAAACgQAAAAAAOQAAAAACgQAAAAAAOQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAFgAAAAADFgAAAAACOQAAAAACOQAAAAADOQAAAAAAOQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAOQAAAAADOQAAAAABOQAAAAADOQAAAAAAOQAAAAADOQAAAAABOQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAACgQAAAAAAOQAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAAAgQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAADAAAAAADZgAAAAAAgQAAAAAAVAAAAAABLQAAAAACVAAAAAABVAAAAAACgQAAAAAAEwAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAKwAAAAACKwAAAAADbwAAAAAAEwAAAAAAUgAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKwAAAAACUgAAAAACUgAAAAABUgAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAUgAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAKwAAAAACbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAKwAAAAABbwAAAAAAKwAAAAABbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 7,-5: ind: 7,-5 @@ -710,23 +711,23 @@ entities: version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAUgAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAKwAAAAACbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAKwAAAAACbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAUgAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAKwAAAAABbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAKwAAAAACbwAAAAAA version: 6 7,-4: ind: 7,-4 - tiles: gQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYgAAAAADYgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAACYgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAADMgAAAAAAYgAAAAABMgAAAAAAYgAAAAABMgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACNQAAAAAAgQAAAAAAgQAAAAAAYgAAAAACYgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAABYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgQAAAAAAIAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAAANgAAAAABNgAAAAABNgAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAACNgAAAAACNgAAAAADNgAAAAADNgAAAAAANgAAAAABNgAAAAABNgAAAAABEAAAAAAAEAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYgAAAAAAYgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAABYgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABMgAAAAAAYgAAAAACMgAAAAAAYgAAAAABMgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAADNQAAAAAAgQAAAAAAgQAAAAAAYgAAAAADYgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAACYgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAA + tiles: gQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYgAAAAABYgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAADYgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABMgAAAAAAYgAAAAAAMgAAAAAAYgAAAAADMgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAADNQAAAAAAgQAAAAAAgQAAAAAAYgAAAAACYgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgQAAAAAAIAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACNgAAAAABNgAAAAACNgAAAAAANgAAAAADNgAAAAACNgAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAABNgAAAAAANgAAAAABNgAAAAABNgAAAAABEAAAAAAAEAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYgAAAAADYgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAACYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABMgAAAAAAYgAAAAACMgAAAAAAYgAAAAAAMgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACNQAAAAAAgQAAAAAAgQAAAAAAYgAAAAADYgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAYgAAAAADYgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABFgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAADFgAAAAACgQAAAAAAIQAAAAACIQAAAAAAQQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAAQQAAAAADQQAAAAABQQAAAAACQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACgQAAAAAAIQAAAAADIQAAAAACQQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAAQQAAAAADQQAAAAACQQAAAAABQQAAAAAAgQAAAAAACQAAAAABCQAAAAABDAAAAAACgQAAAAAAIQAAAAACIQAAAAABQQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACQQAAAAADQQAAAAABQQAAAAAAQQAAAAABCQAAAAABCQAAAAAACQAAAAABgQAAAAAAgQAAAAAAIQAAAAABIQAAAAACQQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABQQAAAAADQQAAAAABQQAAAAABQQAAAAABgQAAAAAACQAAAAACCQAAAAABgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAABQQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADQQAAAAAAIQAAAAAAIQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIQAAAAAAIQAAAAADQQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACQQAAAAABIQAAAAACIQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAAQQAAAAABIQAAAAADIQAAAAADgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABQQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAADCQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAUgAAAAABgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAAFgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACFgAAAAAAgQAAAAAAIQAAAAAAIQAAAAADQQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADQQAAAAABQQAAAAACQQAAAAABQQAAAAACgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACgQAAAAAAIQAAAAACIQAAAAADQQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACQQAAAAABQQAAAAACQQAAAAADQQAAAAADgQAAAAAACQAAAAACCQAAAAACDAAAAAACgQAAAAAAIQAAAAADIQAAAAACQQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACQQAAAAABQQAAAAABQQAAAAACQQAAAAAACQAAAAAACQAAAAADCQAAAAADgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAACQQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABQQAAAAAAQQAAAAAAQQAAAAABQQAAAAADgQAAAAAACQAAAAAACQAAAAADgQAAAAAAgQAAAAAAIQAAAAACIQAAAAACQQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABQQAAAAABIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIQAAAAACIQAAAAADQQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACQQAAAAACIQAAAAAAIQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACQQAAAAADIQAAAAACIQAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACQQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAACQAAAAACCQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAUgAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: gQAAAAAAOAAAAAAAOAAAAAABOAAAAAABgQAAAAAAOAAAAAACOAAAAAACOAAAAAADgQAAAAAAUgAAAAAAUgAAAAABbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAOAAAAAAAOAAAAAADOAAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAACgQAAAAAAEwAAAAAAUgAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAOAAAAAACOAAAAAAAOAAAAAADgQAAAAAAOAAAAAAAOAAAAAADOAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAADOAAAAAADOAAAAAABOAAAAAADOAAAAAACOAAAAAADOAAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAADbwAAAAAAOAAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAADOAAAAAABOAAAAAAAOAAAAAADOAAAAAADOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAAAOAAAAAADgQAAAAAAOAAAAAABOAAAAAADOAAAAAABOAAAAAACOAAAAAAAOAAAAAABOAAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABgQAAAAAAgQAAAAAAOAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAOAAAAAABOAAAAAABgQAAAAAAOAAAAAABOAAAAAABOAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAOAAAAAAAOAAAAAACgQAAAAAAOAAAAAAAOAAAAAACOAAAAAACgQAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAACgQAAAAAANAAAAAABgQAAAAAAOAAAAAADOAAAAAACOAAAAAAAgQAAAAAAOAAAAAAAOAAAAAADOAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAACgQAAAAAANAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAKwAAAAAAKwAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAACgQAAAAAAcwAAAAACcwAAAAADLQAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABfQAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAAALQAAAAACLQAAAAACLQAAAAADcwAAAAACgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAAALQAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAB + tiles: gQAAAAAAOAAAAAAAOAAAAAABOAAAAAABgQAAAAAAOAAAAAADOAAAAAABOAAAAAABgQAAAAAAUgAAAAABUgAAAAABbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAOAAAAAADOAAAAAAAOAAAAAACgQAAAAAAOAAAAAABOAAAAAACOAAAAAAAgQAAAAAAEwAAAAAAUgAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAOAAAAAACOAAAAAADOAAAAAAAgQAAAAAAOAAAAAADOAAAAAAAOAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABOAAAAAADOAAAAAABOAAAAAACOAAAAAABOAAAAAACOAAAAAACbwAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAACOAAAAAABOAAAAAACOAAAAAACOAAAAAACOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAADOAAAAAACgQAAAAAAOAAAAAABOAAAAAACOAAAAAACOAAAAAABOAAAAAADOAAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAAAOAAAAAADOAAAAAADOAAAAAADOAAAAAADOAAAAAACgQAAAAAAgQAAAAAAOAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAADOAAAAAAAOAAAAAACgQAAAAAAOAAAAAAAOAAAAAACOAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAOAAAAAADOAAAAAABgQAAAAAAOAAAAAABOAAAAAADOAAAAAABgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAAAgQAAAAAANAAAAAACgQAAAAAAOAAAAAADOAAAAAACOAAAAAACgQAAAAAAOAAAAAABOAAAAAADOAAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAABgQAAAAAANAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAABKwAAAAADKwAAAAACgQAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAADgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAAALQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABfQAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAABLQAAAAAALQAAAAABLQAAAAAAcwAAAAACgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAABLQAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAAC version: 6 -5,-5: ind: -5,-5 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAACbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAACUgAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKwAAAAADKwAAAAADbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAKwAAAAABKwAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAUgAAAAACEwAAAAAAEwAAAAAAUgAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAKwAAAAADKwAAAAACgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAKwAAAAADEwAAAAAAEwAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAACbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAACUgAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKwAAAAABKwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKwAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUAAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAKwAAAAAAKwAAAAABAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAUgAAAAABEwAAAAAAEwAAAAAAUgAAAAABEwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAKwAAAAADKwAAAAABgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAKwAAAAABEwAAAAAAEwAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAA version: 6 6,-3: ind: 6,-3 @@ -742,7 +743,7 @@ entities: version: 6 8,-4: ind: 8,-4 - tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACEAAAAAAAIAAAAAAAIAAAAAABEAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAIAAAAAADEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAIAAAAAABgQAAAAAAIAAAAAADIAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAIAAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAEAAAAAAAIAAAAAAAIAAAAAABEAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACEAAAAAAAIAAAAAABIAAAAAABEAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAIAAAAAABEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAIAAAAAADgQAAAAAAIAAAAAABIAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAIAAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABEAAAAAAAIAAAAAACIAAAAAABEAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,-3: ind: 8,-3 @@ -754,19 +755,19 @@ entities: version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAABCQAAAAABIQAAAAADIQAAAAAAIQAAAAACQAAAAAABQAAAAAAAQAAAAAACQAAAAAACgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAACQAAAAAACQAAAAABIQAAAAAAIQAAAAADIQAAAAABQAAAAAADQAAAAAACQAAAAAACQAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAACQAAAAABIQAAAAABIQAAAAABIQAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAADgQAAAAAACQAAAAABIQAAAAABIQAAAAACIQAAAAACQAAAAAABQAAAAAABQAAAAAABQAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAABgQAAAAAAKwAAAAADKwAAAAACgQAAAAAACQAAAAACIQAAAAACIQAAAAACIQAAAAAAIQAAAAADIQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAADKwAAAAABKwAAAAABKwAAAAAAgQAAAAAACQAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAACIQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKwAAAAACKwAAAAABKwAAAAABKwAAAAAAbwAAAAAAgQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAACbwAAAAAAKwAAAAABgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAACQAAAAADCQAAAAABCQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUgAAAAABbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAUgAAAAABUgAAAAACbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAUgAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAbwAAAAAAUgAAAAACgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAADCQAAAAACIQAAAAABIQAAAAAAIQAAAAADQAAAAAADQAAAAAABQAAAAAADQAAAAAADgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAACQAAAAADCQAAAAABIQAAAAAAIQAAAAACIQAAAAADQAAAAAAAQAAAAAABQAAAAAACQAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAACQAAAAADIQAAAAAAIQAAAAABIQAAAAABQAAAAAACQAAAAAAAQAAAAAADQAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAADgQAAAAAACQAAAAADIQAAAAAAIQAAAAABIQAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAACgQAAAAAAKwAAAAABKwAAAAABgQAAAAAACQAAAAAAIQAAAAADIQAAAAADIQAAAAABIQAAAAAAIQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAABKwAAAAACKwAAAAABgQAAAAAACQAAAAACIQAAAAADIQAAAAAAIQAAAAACIQAAAAADIQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKwAAAAACKwAAAAACKwAAAAABKwAAAAABbwAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAAAbwAAAAAAKwAAAAACgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAACQAAAAABCQAAAAACCQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAUgAAAAACbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAUgAAAAAAUgAAAAABbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAUgAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAbwAAAAAAUgAAAAAAgQAAAAAA version: 6 -4,5: ind: -4,5 - tiles: gQAAAAAAgQAAAAAAUAAAAAAAfQAAAAADfQAAAAADfQAAAAACUAAAAAAAfQAAAAADHwAAAAAEfQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAUAAAAAAAfQAAAAABHwAAAAAEfQAAAAADfQAAAAACfQAAAAACfQAAAAADfQAAAAABHwAAAAACfQAAAAADfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACUAAAAAAAfQAAAAADgQAAAAAAUAAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAAAHwAAAAADHwAAAAADgQAAAAAAgQAAAAAAUAAAAAAAfQAAAAADHwAAAAAGfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAABUAAAAAAAfQAAAAAAfQAAAAABgQAAAAAAfQAAAAADgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAHwAAAAAAfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAABKAAAAAAAKAAAAAACUAAAAAAAgQAAAAAAKAAAAAABKAAAAAABKAAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAKAAAAAADUAAAAAAAKAAAAAACgQAAAAAAKAAAAAAAfQAAAAADfQAAAAAAfQAAAAACKQAAAAAAKQAAAAACKQAAAAADKQAAAAADfQAAAAADfQAAAAACfQAAAAADgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADgQAAAAAAKAAAAAABfQAAAAACfQAAAAACfQAAAAACKQAAAAACKQAAAAAAgQAAAAAAUAAAAAAAfQAAAAADfQAAAAABfQAAAAADKQAAAAABgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAADKAAAAAABKAAAAAACKAAAAAACKAAAAAADKAAAAAACgQAAAAAAUAAAAAAAKAAAAAABKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAADKAAAAAAAcwAAAAAAcwAAAAABcwAAAAABKAAAAAADBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAABQAAAAADBQAAAAABKAAAAAACcwAAAAACcwAAAAABcwAAAAABKAAAAAADBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAABKAAAAAAAcwAAAAACcwAAAAADcwAAAAAAKAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAABQAAAAACgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAcwAAAAADgQAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAAAIgAAAAACIgAAAAADKAAAAAACcwAAAAADcwAAAAAAcwAAAAADfQAAAAACfQAAAAAD + tiles: gQAAAAAAgQAAAAAAUAAAAAAAfQAAAAABfQAAAAABfQAAAAACUAAAAAAAfQAAAAADHwAAAAAFfQAAAAABgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACUAAAAAAAfQAAAAABHwAAAAAGfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAADHwAAAAAGfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAUAAAAAAAfQAAAAADgQAAAAAAUAAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAABHwAAAAABHwAAAAAGgQAAAAAAgQAAAAAAUAAAAAAAfQAAAAACHwAAAAAEfQAAAAADfQAAAAABfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAABUAAAAAAAfQAAAAADfQAAAAACgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACUAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABHwAAAAABfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABKAAAAAACKAAAAAADKAAAAAADUAAAAAAAgQAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAACgQAAAAAAgQAAAAAAKAAAAAACUAAAAAAAKAAAAAAAgQAAAAAAKAAAAAADfQAAAAABfQAAAAABfQAAAAACKQAAAAADKQAAAAABKQAAAAAAKQAAAAABfQAAAAACfQAAAAABfQAAAAADgQAAAAAAKQAAAAACKQAAAAABKQAAAAABgQAAAAAAKAAAAAADfQAAAAADfQAAAAABfQAAAAADKQAAAAADKQAAAAADgQAAAAAAUAAAAAAAfQAAAAACfQAAAAABfQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAACKAAAAAACKAAAAAADKAAAAAACKAAAAAACKAAAAAABgQAAAAAAUAAAAAAAKAAAAAADKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAACKAAAAAADcwAAAAABcwAAAAACcwAAAAADKAAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAABQAAAAADBQAAAAACKAAAAAACcwAAAAABcwAAAAAAcwAAAAACKAAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABQAAAAADBQAAAAACKAAAAAAAcwAAAAABcwAAAAACcwAAAAABKAAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAcwAAAAAAgQAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAADIgAAAAAAIgAAAAACKAAAAAAAcwAAAAADcwAAAAADcwAAAAADfQAAAAABfQAAAAAD version: 6 -5,5: ind: -5,5 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHwAAAAAEgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHwAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,5: ind: -3,5 - tiles: fQAAAAACfQAAAAABfQAAAAADfQAAAAAAUAAAAAAAfQAAAAABfQAAAAACHwAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAHwAAAAAGfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgAAAAAAAfQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABHwAAAAAFfQAAAAABfQAAAAABfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACgQAAAAAAgAAAAAAAfQAAAAAAHwAAAAAAfQAAAAADfQAAAAACfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAABHwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAGUAAAAAAAgQAAAAAAgAAAAAAAfQAAAAADfQAAAAABfQAAAAAAUAAAAAAAgQAAAAAAfQAAAAACUAAAAAAAfQAAAAAAHwAAAAAFfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABBQAAAAABBQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKAAAAAAAKAAAAAADUAAAAAAAgQAAAAAAKAAAAAABgQAAAAAAgQAAAAAAKAAAAAADKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAACfQAAAAADfQAAAAABfQAAAAACKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAKQAAAAACfQAAAAADfQAAAAABfQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADfQAAAAABfQAAAAABfQAAAAADUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKAAAAAACKAAAAAADKAAAAAABUAAAAAAAgQAAAAAAKAAAAAACKAAAAAACKAAAAAADgQAAAAAAgQAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABQAAAAADBQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAABQAAAAABBQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAABQAAAAADBQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAACQQAAAAAAQQAAAAADQQAAAAAAQQAAAAABXgAAAAADgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAQQAAAAACQQAAAAADQQAAAAABQQAAAAACQQAAAAABXgAAAAADgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: fQAAAAACfQAAAAAAfQAAAAACfQAAAAAAUAAAAAAAfQAAAAADfQAAAAACHwAAAAAFfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACgQAAAAAAgQAAAAAAHwAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABgQAAAAAAgAAAAAAAfQAAAAADgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADHwAAAAADfQAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgAAAAAAAfQAAAAAAHwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADHwAAAAADgQAAAAAAgQAAAAAAHwAAAAACUAAAAAAAgQAAAAAAgAAAAAAAfQAAAAADfQAAAAABfQAAAAABUAAAAAAAgQAAAAAAfQAAAAABUAAAAAAAfQAAAAAAHwAAAAADfQAAAAADfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAACBQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAAAKAAAAAADUAAAAAAAgQAAAAAAKAAAAAABgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAACfQAAAAACfQAAAAACfQAAAAABKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADfQAAAAABfQAAAAABfQAAAAACUAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAKQAAAAACfQAAAAAAfQAAAAABfQAAAAACKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAfQAAAAABfQAAAAACfQAAAAACUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKAAAAAABKAAAAAACKAAAAAAAUAAAAAAAgQAAAAAAKAAAAAABKAAAAAACKAAAAAAAgQAAAAAAgQAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABQAAAAAABQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAABQAAAAADBQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAABQAAAAAABQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAACQQAAAAACQQAAAAADXgAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAfQAAAAACgQAAAAAAQQAAAAACQQAAAAADQQAAAAACQQAAAAAAQQAAAAADXgAAAAADgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,-7: ind: 1,-7 @@ -794,11 +795,11 @@ entities: version: 6 -4,6: ind: -4,6 - tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAACIgAAAAABIgAAAAABKAAAAAABcwAAAAABcwAAAAAAcwAAAAAAfQAAAAACfQAAAAADgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAABKAAAAAAAcwAAAAAAcwAAAAADcwAAAAACfQAAAAACfQAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIgAAAAACIgAAAAABIgAAAAABKAAAAAAAcwAAAAADcwAAAAABcwAAAAAAfQAAAAACfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAAAIgAAAAADIgAAAAAAKAAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAAAIgAAAAACIgAAAAAAKAAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAABgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAQQAAAAADQQAAAAABQQAAAAADQQAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAADQQAAAAADQQAAAAABQQAAAAAAcwAAAAADAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAACQQAAAAAAQQAAAAACQQAAAAADgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAABQQAAAAADQQAAAAAAQQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAADQQAAAAABQQAAAAACQQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAABIgAAAAACIgAAAAABKAAAAAADcwAAAAAAcwAAAAABcwAAAAAAfQAAAAABfQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAACIgAAAAABIgAAAAABKAAAAAABcwAAAAADcwAAAAACcwAAAAACfQAAAAAAfQAAAAACAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIgAAAAADIgAAAAAAIgAAAAAAKAAAAAABcwAAAAABcwAAAAAAcwAAAAABfQAAAAABfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAADIgAAAAADIgAAAAACKAAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIgAAAAAAIgAAAAABIgAAAAADKAAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAADgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAQQAAAAABQQAAAAABQQAAAAABQQAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAACQQAAAAACQQAAAAAAQQAAAAABcwAAAAABAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAADQQAAAAACQQAAAAABQQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAABQQAAAAACQQAAAAACQQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAQQAAAAACQQAAAAADQQAAAAAAQQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,6: ind: -3,6 - tiles: fQAAAAABfQAAAAACgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAADQQAAAAABQQAAAAABXgAAAAACgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAQQAAAAAAQQAAAAADQQAAAAABQQAAAAABQQAAAAAAXgAAAAACgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAABcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQQAAAAABgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAQQAAAAACQQAAAAAAQQAAAAACQQAAAAADQQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQQAAAAADgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAQQAAAAACQQAAAAABQQAAAAACQQAAAAABQQAAAAACNQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAQQAAAAABQQAAAAAAQQAAAAAAQQAAAAADQQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAQQAAAAADQQAAAAACQQAAAAADQQAAAAAAQQAAAAADNQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + tiles: fQAAAAAAfQAAAAADgQAAAAAAQQAAAAABQQAAAAADQQAAAAADQQAAAAACQQAAAAADXgAAAAACgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAABfQAAAAACgQAAAAAAQQAAAAACQQAAAAABQQAAAAAAQQAAAAAAQQAAAAADXgAAAAABgQAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQQAAAAABgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAQQAAAAABQQAAAAAAQQAAAAADQQAAAAACQQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQQAAAAADgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAABQQAAAAAAQQAAAAADQQAAAAABNQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAQQAAAAAAQQAAAAADQQAAAAADQQAAAAABQQAAAAADNQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAQQAAAAADQQAAAAABQQAAAAADQQAAAAABQQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,-8: ind: 1,-8 @@ -1162,16 +1163,6 @@ entities: color: '#FEFFFFFF' id: Bot decals: - 2024: 66,0 - 2025: 67,0 - 2026: 68,0 - 2027: 70,0 - 2028: 69,0 - 2029: 66,-2 - 2030: 67,-2 - 2031: 68,-2 - 2032: 69,-2 - 2033: 70,-2 2034: 74,-2 2035: 75,-2 2036: 76,-2 @@ -1207,11 +1198,6 @@ entities: 1890: -65,11 1891: -62,11 1893: -65,7 - 2014: 66,-4 - 2015: 67,-4 - 2016: 68,-4 - 2017: 69,-4 - 2018: 70,-4 2019: 74,-4 2020: 75,-4 2021: 76,-4 @@ -8868,12 +8854,6 @@ entities: 1441: 44,44 1442: 44,45 1443: 44,46 - 1999: 65,-4 - 2000: 71,-4 - 2002: 65,-2 - 2003: 71,-2 - 2004: 65,0 - 2005: 71,0 2008: 73,-4 2009: 73,-2 2010: 73,0 @@ -13255,13 +13235,6 @@ entities: 16040: 77,-5 16041: 78,-5 16042: 79,-5 - 16100: 65,-1 - 16101: 66,-1 - 16102: 67,-1 - 16103: 68,-1 - 16104: 69,-1 - 16105: 70,-1 - 16106: 71,-1 16107: 73,-1 16108: 74,-1 16109: 75,-1 @@ -13276,13 +13249,6 @@ entities: 16118: 75,-3 16119: 74,-3 16120: 73,-3 - 16121: 65,-3 - 16122: 66,-3 - 16123: 67,-3 - 16124: 68,-3 - 16125: 69,-3 - 16126: 70,-3 - 16127: 71,-3 16236: 55,1 16237: 56,1 16238: 57,1 @@ -13470,13 +13436,6 @@ entities: 16060: 67,1 16061: 66,1 16062: 65,1 - 16072: 65,-3 - 16073: 66,-3 - 16074: 67,-3 - 16075: 68,-3 - 16076: 69,-3 - 16077: 70,-3 - 16078: 71,-3 16079: 73,-3 16080: 74,-3 16081: 75,-3 @@ -13491,13 +13450,6 @@ entities: 16090: 75,-1 16091: 74,-1 16092: 73,-1 - 16093: 65,-1 - 16094: 66,-1 - 16095: 67,-1 - 16096: 68,-1 - 16097: 69,-1 - 16098: 70,-1 - 16099: 71,-1 16240: 56,-1 16241: 57,-1 16246: -30,-91 @@ -13886,6 +13838,102 @@ entities: decals: 3849: -42,32 3850: -42,35 + - node: + color: '#370037BF' + id: MarkupSquare + decals: + 20627: -5,-20 + 20628: -6,-20 + 20629: -7,-20 + 20630: -7,-21 + 20631: -6,-21 + 20632: -5,-21 + 20633: -4,-21 + 20634: -3,-21 + 20635: -3,-22 + 20636: -4,-22 + 20637: -5,-22 + 20638: -6,-22 + 20639: -7,-22 + 20640: -7,-23 + 20641: -6,-23 + 20642: -5,-23 + 20643: -4,-23 + 20644: -3,-23 + 20645: 3,-21 + 20646: 4,-21 + 20647: 4,-22 + 20648: 3,-22 + 20649: 3,-23 + 20650: 4,-23 + 20651: 5,-23 + 20652: 5,-22 + 20653: 5,-21 + 20654: 5,-20 + 20655: 6,-20 + 20656: 6,-21 + 20657: 6,-22 + 20658: 6,-23 + 20659: 7,-23 + 20660: 7,-22 + 20661: 7,-21 + 20662: 7,-20 + 20663: 17,-12 + 20664: 16,-12 + 20665: 16,-13 + 20666: 17,-13 + 20667: 17,-14 + 20668: 16,-14 + 20669: 17,-4 + 20670: 16,-4 + 20671: 16,-5 + 20672: 17,-5 + 20673: 17,-6 + 20674: 16,-6 + 20675: 17,4 + 20676: 16,4 + 20677: 16,5 + 20678: 16,6 + 20679: 17,6 + 20680: 17,5 + 20681: 17,14 + 20682: 16,14 + 20683: 16,13 + 20684: 16,12 + 20685: 17,12 + 20686: 17,13 + 20687: -16,14 + 20688: -17,14 + 20689: -17,13 + 20690: -16,13 + 20691: -16,12 + 20692: -17,12 + 20693: -16,6 + 20694: -17,6 + 20695: -17,5 + 20696: -16,5 + 20697: -16,4 + 20698: -17,4 + 20699: -16,-4 + 20700: -17,-4 + 20701: -17,-5 + 20702: -16,-5 + 20703: -16,-6 + 20704: -17,-6 + 20705: -16,-12 + 20706: -17,-12 + 20707: -17,-13 + 20708: -16,-13 + 20709: -16,-14 + 20710: -17,-14 + - node: + color: '#44004DBF' + id: MarkupSquare + decals: + 20623: 5,-41 + 20624: 6,-41 + 20625: 6,-40 + 20626: 5,-40 - node: color: '#FFFFFFFF' id: Max @@ -24682,6 +24730,11 @@ entities: 15950: -57,75 15956: -54,72 15960: -57,72 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNeWhite + decals: + 20734: 71,0 - node: color: '#C7BFC3FF' id: WoodTrimThinCornerNw @@ -24778,6 +24831,11 @@ entities: 15948: -55,75 15951: -58,75 15959: -58,72 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNwWhite + decals: + 20733: 65,0 - node: color: '#C3C5CDFF' id: WoodTrimThinCornerSe @@ -24879,6 +24937,11 @@ entities: 15945: -57,74 15947: -54,74 15961: -57,71 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSeWhite + decals: + 20735: 71,-4 - node: color: '#C7BFC3FF' id: WoodTrimThinCornerSw @@ -24977,6 +25040,11 @@ entities: 15952: -58,74 15953: -58,71 19808: -63,-88 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSwWhite + decals: + 20736: 65,-4 - node: color: '#CDCCD3FF' id: WoodTrimThinEndE @@ -25897,6 +25965,13 @@ entities: 12482: 85.33398,-53.791523 12483: 85.52148,-53.635273 12484: 84.50585,-52.400898 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineEWhite + decals: + 20745: 71,-3 + 20746: 71,-2 + 20747: 71,-1 - node: color: '#737273FF' id: WoodTrimThinLineN @@ -26635,6 +26710,15 @@ entities: 12477: 83.81835,-54.807148 12478: 84.0996,-52.338398 12479: 83.7246,-52.322773 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineNWhite + decals: + 20728: 66,0 + 20729: 67,0 + 20730: 68,0 + 20731: 69,0 + 20732: 70,0 - node: color: '#737273FF' id: WoodTrimThinLineS @@ -27169,6 +27253,15 @@ entities: id: WoodTrimThinLineS decals: 410: -115.43511,9.6903715 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineSWhite + decals: + 20737: 66,-4 + 20738: 67,-4 + 20739: 68,-4 + 20740: 69,-4 + 20741: 70,-4 - node: color: '#737273FF' id: WoodTrimThinLineW @@ -27645,6 +27738,13 @@ entities: id: WoodTrimThinLineW decals: 15958: -54,71 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineWWhite + decals: + 20742: 65,-3 + 20743: 65,-2 + 20744: 65,-1 - node: cleanable: True color: '#B02E26FF' @@ -27754,6 +27854,13 @@ entities: id: body decals: 5611: -65.01855,-51.33788 + - node: + cleanable: True + angle: 1.3439035240356338 rad + color: '#FFFFFFFF' + id: body + decals: + 20713: -41.97756,-24.531036 - node: cleanable: True angle: 1.7453292519943295 rad @@ -28280,6 +28387,21 @@ entities: id: disk decals: 19326: -55,-82 + - node: + cleanable: True + zIndex: -1 + color: '#8000007F' + id: dot + decals: + 20719: -42.476448,-24.548077 + 20720: -42.10481,-25.395449 + 20721: -41.10881,-24.637274 + 20722: -41.688572,-23.953428 + 20723: -41.614243,-23.224983 + 20724: -42.223736,-23.685837 + 20725: -42.65484,-24.012892 + 20726: -41.837227,-24.325083 + 20727: -41.465588,-24.89 - node: zIndex: 60 color: '#A700DF59' @@ -28577,6 +28699,13 @@ entities: id: ghost decals: 16942: -84.79293,-45.789604 + - node: + cleanable: True + color: '#FFFFFFFF' + id: ghost + decals: + 20711: -32.02317,40.180153 + 20712: -37.911774,34.149483 - node: color: '#1E5026FF' id: grasssnow @@ -29515,6 +29644,15 @@ entities: decals: 3682: 0.04350543,5.301283 14402: 43.85416,-49.193798 + - node: + cleanable: True + zIndex: -1 + color: '#8000007F' + id: smallbrush + decals: + 20716: -41.65884,-23.98316 + 20717: -41.42099,-24.89 + 20718: -42.625107,-23.834497 - node: color: '#9B0000FF' id: smallbrush @@ -30441,6 +30579,14 @@ entities: id: splatter decals: 1419: -19.03565,38.73028 + - node: + cleanable: True + zIndex: -1 + color: '#8000007F' + id: splatter + decals: + 20714: -41.837227,-24.503477 + 20715: -41.985886,-24.250751 - node: color: '#824944FF' id: splatter @@ -32138,7 +32284,8 @@ entities: -17,0: 0: 255 -16,1: - 0: 28859 + 0: 24763 + 3: 4096 -17,1: 0: 46015 -16,2: @@ -32268,19 +32415,19 @@ entities: 0: 65395 -15,7: 0: 4223 - 3: 49152 + 4: 49152 -15,8: 0: 4401 - 3: 52428 + 4: 52428 -14,5: 0: 52701 -14,6: 0: 65480 -14,7: 0: 15 - 3: 28672 + 4: 28672 -14,8: - 3: 30583 + 4: 30583 0: 128 -13,8: 0: 65535 @@ -35360,7 +35507,7 @@ entities: 1: 8031 26,-16: 0: 52736 - 4: 8192 + 3: 8192 1: 12 26,-14: 0: 61068 @@ -36072,10 +36219,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.14975 moles: - - 21.824879 - - 82.10312 + - 20.078888 + - 75.53487 - 0 - 0 - 0 @@ -36087,10 +36234,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 235 moles: - - 20.078888 - - 75.53487 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -125269,6 +125416,9 @@ entities: rot: 1.5707963267948966 rad pos: -36.419704,35.15613 parent: 2 + - type: PointLight + energy: 2 + radius: 10 - proto: CandleBlackSmall entities: - uid: 12139 @@ -125359,6 +125509,11 @@ entities: - type: Transform pos: -2.8765044,46.350925 parent: 2 + - uid: 22227 + components: + - type: Transform + pos: -28.305695,43.939598 + parent: 2 - proto: CandleBlueSmall entities: - uid: 6962 @@ -125383,11 +125538,31 @@ entities: parent: 2 - proto: CandleBlueSmallInfinite entities: + - uid: 4501 + components: + - type: Transform + pos: -36.744305,43.80395 + parent: 2 + - type: PointLight + radius: 5 - uid: 18974 components: - type: Transform pos: 7.3046894,-83.917336 parent: 2 + - uid: 22469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.1678,-3.5529568 + parent: 2 +- proto: CandleGreen + entities: + - uid: 17996 + components: + - type: Transform + pos: -37.97845,-23.306654 + parent: 2 - proto: CandleGreenInfinite entities: - uid: 11398 @@ -125422,6 +125597,11 @@ entities: - type: Transform pos: -4.67529,44.78138 parent: 2 + - uid: 11049 + components: + - type: Transform + pos: -6.576956,-36.75549 + parent: 2 - uid: 11493 components: - type: Transform @@ -125437,6 +125617,11 @@ entities: - type: Transform pos: 13.484009,-83.886086 parent: 2 + - uid: 22476 + components: + - type: Transform + pos: -31.239618,41.501816 + parent: 2 - proto: CandleInfinite entities: - uid: 9760 @@ -125445,6 +125630,33 @@ entities: rot: 1.5707963267948966 rad pos: -6.076726,43.673737 parent: 2 + - uid: 11048 + components: + - type: Transform + pos: 4.7868934,-33.580708 + parent: 2 + - type: PointLight + radius: 10 + - uid: 18851 + components: + - type: Transform + pos: -38.231167,-23.499914 + parent: 2 + - type: PointLight + radius: 10 + - uid: 21414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.453577,39.251022 + parent: 2 + - uid: 22464 + components: + - type: Transform + pos: 65.23171,0.15109348 + parent: 2 + - type: PointLight + radius: 8 - proto: CandlePurpleInfinite entities: - uid: 9762 @@ -125453,6 +125665,20 @@ entities: rot: 1.5707963267948966 rad pos: -6.029851,46.392487 parent: 2 + - uid: 22436 + components: + - type: Transform + pos: -6.79994,-36.50276 + parent: 2 + - type: PointLight + radius: 10 + - uid: 22477 + components: + - type: Transform + pos: -31.403141,41.70994 + parent: 2 + - type: PointLight + radius: 10 - proto: CandlePurpleSmallInfinite entities: - uid: 11399 @@ -125493,6 +125719,12 @@ entities: - type: Transform pos: -11.128882,66.32192 parent: 2 + - uid: 22470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.52458,-3.4191608 + parent: 2 - uid: 27013 components: - type: Transform @@ -125510,6 +125742,21 @@ entities: - type: Transform pos: -47.605145,-47.015137 parent: 2 + - uid: 10746 + components: + - type: Transform + pos: -30.889406,32.7138 + parent: 2 + - uid: 10760 + components: + - type: Transform + pos: -30.815077,30.305471 + parent: 2 + - uid: 11051 + components: + - type: Transform + pos: -42.05107,-20.65701 + parent: 2 - uid: 11542 components: - type: Transform @@ -125550,6 +125797,11 @@ entities: - type: Transform pos: 8.847251,-85.51886 parent: 2 + - uid: 20637 + components: + - type: Transform + pos: 65.43983,-0.027300835 + parent: 2 - uid: 27011 components: - type: Transform @@ -128579,6 +128831,62 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: CarvedPumpkin + entities: + - uid: 7588 + components: + - type: Transform + pos: 4.524802,-33.263096 + parent: 2 + - uid: 11050 + components: + - type: Transform + pos: -42.43758,-20.329952 + parent: 2 + - uid: 22228 + components: + - type: Transform + pos: -36.536186,44.294533 + parent: 2 + - uid: 22465 + components: + - type: Transform + pos: 65.552315,0.63250923 + parent: 2 + - uid: 53551 + components: + - type: Transform + pos: -29.040503,38.878185 + parent: 2 + - uid: 55586 + components: + - type: Transform + pos: -54.512547,51.705345 + parent: 2 +- proto: CarvedPumpkinLarge + entities: + - uid: 50631 + components: + - type: Transform + pos: -29.412144,39.383636 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 11052 + components: + - type: Transform + pos: -38.431614,-26.319414 + parent: 2 + - uid: 48074 + components: + - type: Transform + pos: 65.856064,0.24029064 + parent: 2 + - uid: 50632 + components: + - type: Transform + pos: -29.63513,38.744392 + parent: 2 - proto: Catwalk entities: - uid: 1448 @@ -137981,11 +138289,6 @@ entities: - type: Transform pos: -6.5,-33.5 parent: 2 - - uid: 4501 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 2 - uid: 9638 components: - type: Transform @@ -139428,6 +139731,12 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-73.5 parent: 2 + - uid: 19219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-2.5 + parent: 2 - uid: 19631 components: - type: Transform @@ -139503,6 +139812,12 @@ entities: rot: 3.141592653589793 rad pos: 87.50755,-56.292747 parent: 2 + - uid: 20625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 - uid: 20822 components: - type: Transform @@ -139565,6 +139880,12 @@ entities: - type: Transform pos: -71.46814,-10.288743 parent: 2 + - uid: 21996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-2.5 + parent: 2 - uid: 22158 components: - type: Transform @@ -139585,6 +139906,16 @@ entities: - type: Transform pos: -69.44362,34.779514 parent: 2 + - uid: 22425 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - uid: 22433 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 - uid: 22984 components: - type: Transform @@ -139743,6 +140074,11 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,32.5 parent: 2 + - uid: 47901 + components: + - type: Transform + pos: 69.5,-0.5 + parent: 2 - proto: CheapLighter entities: - uid: 14803 @@ -140081,12 +140417,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.56834,44.321335 - parent: 2 - proto: Cigarette entities: - uid: 20813 @@ -145276,6 +145606,13 @@ entities: - type: Transform pos: 105.5,-59.5 parent: 2 +- proto: ClothingHeadHatWizardFake + entities: + - uid: 22809 + components: + - type: Transform + pos: -35.558872,32.593605 + parent: 2 - proto: ClothingHeadHatYellowsoft entities: - uid: 10874 @@ -146095,6 +146432,11 @@ entities: rot: -1.5707963267948966 rad pos: -35.61133,73.726234 parent: 2 + - uid: 47903 + components: + - type: Transform + pos: -26.844666,51.10254 + parent: 2 - proto: ClothingMaskRaven entities: - uid: 7486 @@ -146885,6 +147227,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterGhostSheet + entities: + - uid: 30547 + components: + - type: Transform + parent: 23704 + - type: Physics + canCollide: False - proto: ClothingOuterHardsuitBrigmedic entities: - uid: 27683 @@ -149250,6 +149600,46 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 + - uid: 17470 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 19028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,30.5 + parent: 2 + - uid: 19046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,45.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,30.5 + parent: 2 + - uid: 21408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,41.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,4.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 - uid: 21678 components: - type: Transform @@ -149261,6 +149651,12 @@ entities: - type: Transform pos: -76.5,-53.5 parent: 2 + - uid: 22462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,2.5 + parent: 2 - uid: 30315 components: - type: Transform @@ -149369,6 +149765,18 @@ entities: parent: 2 - proto: Cobweb2 entities: + - uid: 8137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-26.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-26.5 + parent: 2 - uid: 15500 components: - type: Transform @@ -149385,6 +149793,12 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-40.5 parent: 2 + - uid: 18992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 - uid: 21677 components: - type: Transform @@ -149396,6 +149810,12 @@ entities: - type: Transform pos: -73.5,-53.5 parent: 2 + - uid: 22142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,45.5 + parent: 2 - uid: 30314 components: - type: Transform @@ -151964,6 +152384,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 22424 + components: + - type: Transform + pos: 78.5,-2.5 + parent: 2 - uid: 24208 components: - type: Transform @@ -151994,6 +152419,11 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True + - uid: 31715 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 - uid: 52092 components: - type: Transform @@ -152991,11 +153421,6 @@ entities: - type: Transform pos: -47.5,43.5 parent: 2 - - uid: 8137 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 2 - proto: CrateInternals entities: - uid: 10971 @@ -153220,11 +153645,6 @@ entities: parent: 2 - proto: CratePrivateSecure entities: - - uid: 8160 - components: - - type: Transform - pos: 67.5,-1.5 - parent: 2 - uid: 8346 components: - type: Transform @@ -154060,8 +154480,25 @@ entities: - type: Transform pos: -0.30159688,-49.293083 parent: 2 +- proto: CrystalBlue + entities: + - uid: 10747 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 22466 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 - proto: CrystalCyan entities: + - uid: 22480 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 - uid: 24928 components: - type: Transform @@ -154079,13 +154516,43 @@ entities: - type: Transform pos: -73.5,-40.5 parent: 2 +- proto: CrystalGrey + entities: + - uid: 4083 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 22468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-3.5 + parent: 2 - proto: CrystalOrange entities: + - uid: 11045 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 - uid: 25381 components: - type: Transform pos: -60.5,-39.5 parent: 2 +- proto: CrystalPink + entities: + - uid: 22537 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 - proto: CrystalSpawner entities: - uid: 25041 @@ -154484,7 +154951,7 @@ entities: pos: -12.5,61.5 parent: 2 - type: Door - secondsUntilStateChange: -379698 + secondsUntilStateChange: -382207.25 state: Closing - proto: CurtainsPurple entities: @@ -173824,6 +174291,18 @@ entities: rot: 37.69911184307754 rad pos: 35.280224,-8.525886 parent: 2 +- proto: DrinkDemonsBlood + entities: + - uid: 8160 + components: + - type: Transform + pos: -35.000103,41.540737 + parent: 2 + - uid: 22471 + components: + - type: Transform + pos: 68.98804,-1.390656 + parent: 2 - proto: DrinkDoctorsDelightGlass entities: - uid: 18748 @@ -177369,11 +177848,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-29.5 parent: 2 - - uid: 53551 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - uid: 53552 components: - type: Transform @@ -191965,13 +192439,6 @@ entities: - type: Transform pos: -3.3887844,24.573929 parent: 2 -- proto: FloraTree01 - entities: - - uid: 17470 - components: - - type: Transform - pos: 6.353304,-22.3615 - parent: 2 - proto: FloraTree02 entities: - uid: 3053 @@ -192056,11 +192523,6 @@ entities: - type: Transform pos: -48.199867,-70.03037 parent: 2 - - uid: 22842 - components: - - type: Transform - pos: 6.090758,-40.060085 - parent: 2 - uid: 24505 components: - type: Transform @@ -192138,11 +192600,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.963481,76.495674 parent: 2 - - uid: 17996 - components: - - type: Transform - pos: -5.764712,-22.742023 - parent: 2 - proto: FloraTreeSnow01 entities: - uid: 22874 @@ -193129,6 +193586,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodCakeBirthdaySlice + entities: + - uid: 19047 + components: + - type: Transform + pos: 67.65013,-0.49245274 + parent: 2 + - uid: 22474 + components: + - type: Transform + pos: 66.55007,-1.5244521 + parent: 2 - proto: FoodCakeBrain entities: - uid: 14542 @@ -257494,6 +257963,11 @@ entities: - type: Transform pos: -26.885408,-72.40225 parent: 2 + - uid: 22842 + components: + - type: Transform + pos: -32.463467,35.207695 + parent: 2 - uid: 67716 components: - type: Transform @@ -259716,7 +260190,7 @@ entities: - uid: 6713 components: - type: Transform - pos: -54.500282,51.60107 + pos: -57.649197,51.779675 parent: 2 - uid: 8924 components: @@ -259809,6 +260283,15 @@ entities: - type: Transform pos: -54.614853,43.736557 parent: 2 +- proto: LegionnaireBonfire + entities: + - uid: 22431 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 2 + - type: PointLight + radius: 10 - proto: LGBTQFlag entities: - uid: 30188 @@ -264367,6 +264850,47 @@ entities: rot: -1.5707963267948966 rad pos: 55.42553,20.393507 parent: 2 +- proto: Mannequin + entities: + - uid: 23704 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 30547 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - proto: MaterialBiomass entities: - uid: 15719 @@ -271634,6 +272158,16 @@ entities: parent: 66965 - proto: PlushieGhost entities: + - uid: 22478 + components: + - type: Transform + pos: -85.520515,1.4211668 + parent: 2 + - uid: 22539 + components: + - type: Transform + pos: -49.529045,14.358313 + parent: 2 - uid: 53795 components: - type: MetaData @@ -271644,6 +272178,106 @@ entities: parent: 2 missingComponents: - RandomWalk + - uid: 55430 + components: + - type: Transform + pos: -69.44876,-26.236889 + parent: 2 + - uid: 55431 + components: + - type: Transform + pos: 18.403927,-77.295166 + parent: 2 + - uid: 55568 + components: + - type: Transform + pos: -0.82497025,-82.11182 + parent: 2 + - uid: 55569 + components: + - type: Transform + pos: 29.66127,-89.738174 + parent: 2 + - uid: 55570 + components: + - type: Transform + pos: 31.51692,-46.846085 + parent: 2 + - uid: 55571 + components: + - type: Transform + pos: 32.251472,-12.128963 + parent: 2 + - uid: 55572 + components: + - type: Transform + pos: 11.116309,37.68472 + parent: 2 + - uid: 55573 + components: + - type: Transform + pos: 16.49036,58.358536 + parent: 2 + - uid: 55574 + components: + - type: Transform + pos: -31.478565,67.72074 + parent: 2 + - uid: 55575 + components: + - type: Transform + pos: -80.50966,63.7638 + parent: 2 + - uid: 55576 + components: + - type: Transform + pos: -79.70692,66.92473 + parent: 2 + - uid: 55577 + components: + - type: Transform + pos: -50.6317,97.26223 + parent: 2 + - uid: 55578 + components: + - type: Transform + pos: -48.17329,99.87125 + parent: 2 + - uid: 55579 + components: + - type: Transform + pos: -47.320374,98.61691 + parent: 2 + - uid: 55580 + components: + - type: Transform + pos: -43.156136,100.27264 + parent: 2 + - uid: 55581 + components: + - type: Transform + pos: -51.48461,100.07194 + parent: 2 + - uid: 55582 + components: + - type: Transform + pos: -49.97067,-78.837685 + parent: 2 + - uid: 55583 + components: + - type: Transform + pos: -41.134945,-84.84249 + parent: 2 + - uid: 55584 + components: + - type: Transform + pos: -72.57648,-63.638397 + parent: 2 + - uid: 55585 + components: + - type: Transform + pos: -75.09297,-57.364193 + parent: 2 - proto: PlushieHampter entities: - uid: 12687 @@ -273394,11 +274028,6 @@ entities: - type: Transform pos: -62.5,-77.5 parent: 2 - - uid: 22809 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 2 - uid: 23374 components: - type: Transform @@ -273684,11 +274313,6 @@ entities: - type: Transform pos: -96.32108,15.120276 parent: 2 - - uid: 21425 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - uid: 24213 components: - type: Transform @@ -274420,11 +275044,6 @@ entities: - type: Transform pos: -28.449495,-9.37295 parent: 2 - - uid: 55430 - components: - - type: Transform - pos: -32.5,34.9375 - parent: 2 - proto: PottedPlantBioluminscent entities: - uid: 7841 @@ -275434,23 +276053,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-21.5 parent: 2 - - uid: 4729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,44.5 - parent: 2 - - uid: 4731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,41.5 - parent: 2 - - uid: 4732 - components: - - type: Transform - pos: -32.5,45.5 - parent: 2 - uid: 4773 components: - type: Transform @@ -276072,16 +276674,6 @@ entities: - type: Transform pos: 4.5,2.5 parent: 2 - - uid: 10746 - components: - - type: Transform - pos: -8.5,1.5 - parent: 2 - - uid: 10747 - components: - - type: Transform - pos: 9.5,1.5 - parent: 2 - uid: 10751 components: - type: Transform @@ -276126,17 +276718,6 @@ entities: - type: Transform pos: -42.5,11.5 parent: 2 - - uid: 11052 - components: - - type: Transform - pos: -44.5,37.5 - parent: 2 - - uid: 11053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,30.5 - parent: 2 - uid: 11054 components: - type: Transform @@ -277049,12 +277630,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-58.5 parent: 2 - - uid: 18851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-22.5 - parent: 2 - uid: 18865 components: - type: Transform @@ -277167,12 +277742,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-60.5 parent: 2 - - uid: 19028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-20.5 - parent: 2 - uid: 19029 components: - type: Transform @@ -277207,16 +277776,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-38.5 parent: 2 - - uid: 19045 - components: - - type: Transform - pos: 6.5,-33.5 - parent: 2 - - uid: 19046 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 2 - uid: 19048 components: - type: Transform @@ -278415,12 +278974,6 @@ entities: - type: Transform pos: -48.5,-9.5 parent: 2 - - uid: 21389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-19.5 - parent: 2 - uid: 21390 components: - type: Transform @@ -278466,27 +279019,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-16.5 parent: 2 - - uid: 21408 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 2 - - uid: 21413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-22.5 - parent: 2 - - uid: 21414 - components: - - type: Transform - pos: -35.5,-23.5 - parent: 2 - - uid: 21415 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 2 - uid: 21441 components: - type: Transform @@ -278515,12 +279047,6 @@ entities: - type: Transform pos: -9.5,-33.5 parent: 2 - - uid: 21450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-22.5 - parent: 2 - uid: 21451 components: - type: Transform @@ -278545,12 +279071,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-31.5 parent: 2 - - uid: 21456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-29.5 - parent: 2 - uid: 21459 components: - type: Transform @@ -278766,12 +279286,6 @@ entities: - type: Transform pos: -3.5,-24.5 parent: 2 - - uid: 22142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-22.5 - parent: 2 - uid: 22143 components: - type: Transform @@ -278824,12 +279338,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 - - uid: 22236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 2 - uid: 22244 components: - type: Transform @@ -278884,164 +279392,12 @@ entities: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 22423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-17.5 - parent: 2 - - uid: 22424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 - parent: 2 - - uid: 22425 - components: - - type: Transform - pos: -7.5,19.5 - parent: 2 - - uid: 22426 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - uid: 22429 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,58.5 parent: 2 - - uid: 22431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 2 - - uid: 22432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-14.5 - parent: 2 - - uid: 22433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - - uid: 22436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 2 - - uid: 22462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 2 - - uid: 22463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 2 - - uid: 22464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 2 - - uid: 22465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 2 - - uid: 22466 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 2 - - uid: 22467 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - - uid: 22468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 2 - - uid: 22469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 2 - - uid: 22470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,14.5 - parent: 2 - - uid: 22471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 2 - - uid: 22472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 2 - - uid: 22473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 2 - - uid: 22474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 - parent: 2 - - uid: 22475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 2 - - uid: 22476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 2 - - uid: 22477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,7.5 - parent: 2 - - uid: 22478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,11.5 - parent: 2 - - uid: 22480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-14.5 - parent: 2 - uid: 22481 components: - type: Transform @@ -279310,24 +279666,12 @@ entities: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 22537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,41.5 - parent: 2 - uid: 22538 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,50.5 parent: 2 - - uid: 22539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,45.5 - parent: 2 - uid: 22540 components: - type: Transform @@ -279568,17 +279912,6 @@ entities: - type: Transform pos: 30.5,28.5 parent: 2 - - uid: 31715 - components: - - type: Transform - pos: 18.5,1.5 - parent: 2 - - uid: 31716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 2 - uid: 35005 components: - type: Transform @@ -279654,60 +279987,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,58.5 parent: 2 - - uid: 47705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 2 - - uid: 47761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 2 - - uid: 47762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 2 - - uid: 47901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 2 - - uid: 47902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 2 - - uid: 47903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 2 - - uid: 48074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 2 - - uid: 50631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-0.5 - parent: 2 - - uid: 50632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 2 - uid: 51896 components: - type: Transform @@ -280257,12 +280536,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-36.5 parent: 2 - - uid: 19636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-36.5 - parent: 2 - uid: 19637 components: - type: Transform @@ -280427,30 +280700,6 @@ entities: rot: -1.5707963267948966 rad pos: -64.5,22.5 parent: 2 - - uid: 10760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 2 - - uid: 10776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 2 - - uid: 10788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,14.5 - parent: 2 - - uid: 10790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 2 - uid: 10791 components: - type: Transform @@ -280468,12 +280717,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,59.5 parent: 2 - - uid: 18992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-36.5 - parent: 2 - uid: 19031 components: - type: Transform @@ -280498,12 +280741,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 - - uid: 19047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-36.5 - parent: 2 - uid: 19212 components: - type: Transform @@ -280515,57 +280752,11 @@ entities: - type: Transform pos: 91.5,-18.5 parent: 2 - - uid: 19218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-4.5 - parent: 2 - - uid: 19219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,4.5 - parent: 2 - - uid: 20623 - components: - - type: Transform - pos: 71.5,2.5 - parent: 2 - - uid: 20624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-7.5 - parent: 2 - - uid: 20625 - components: - - type: Transform - pos: 78.5,2.5 - parent: 2 - uid: 20627 components: - type: Transform pos: 82.5,-2.5 parent: 2 - - uid: 20629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-1.5 - parent: 2 - - uid: 20637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-7.5 - parent: 2 - - uid: 20639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-7.5 - parent: 2 - uid: 21367 components: - type: Transform @@ -280791,40 +280982,6 @@ entities: rot: 1.5707963267948966 rad pos: -97.5,37.5 parent: 2 - - uid: 11045 - components: - - type: Transform - pos: -41.5,37.5 - parent: 2 - - uid: 11046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 2 - - uid: 11048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,38.5 - parent: 2 - - uid: 11049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,38.5 - parent: 2 - - uid: 11050 - components: - - type: Transform - pos: -37.5,37.5 - parent: 2 - - uid: 11051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,30.5 - parent: 2 - uid: 11206 components: - type: Transform @@ -281038,12 +281195,6 @@ entities: rot: -1.5707963267948966 rad pos: -108.5,71.5 parent: 2 - - uid: 55431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 2 - uid: 71404 components: - type: Transform @@ -281092,12 +281243,6 @@ entities: - type: Transform pos: -18.5,67.5 parent: 2 - - uid: 11047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,31.5 - parent: 2 - uid: 11923 components: - type: Transform @@ -281799,6 +281944,11 @@ entities: - type: Transform pos: -24.5,-19.5 parent: 2 + - uid: 4731 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 - uid: 5231 components: - type: Transform @@ -282106,6 +282256,24 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-12.5 parent: 2 + - uid: 10788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 2 - uid: 11057 components: - type: Transform @@ -282350,6 +282518,12 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-71.5 parent: 2 + - uid: 19045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 2 - uid: 19097 components: - type: Transform @@ -282414,6 +282588,11 @@ entities: rot: 3.141592653589793 rad pos: 86.5,4.5 parent: 2 + - uid: 19218 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 - uid: 19282 components: - type: Transform @@ -282425,6 +282604,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-54.5 parent: 2 + - uid: 19636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 - uid: 19910 components: - type: Transform @@ -282447,6 +282632,24 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 2 + - uid: 20623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 20624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 20629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 2 - uid: 21017 components: - type: Transform @@ -282553,6 +282756,30 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-61.5 parent: 2 + - uid: 21389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 - uid: 21498 components: - type: Transform @@ -282571,12 +282798,47 @@ entities: rot: 3.141592653589793 rad pos: -68.5,-33.5 parent: 2 + - uid: 21985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 - uid: 22152 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-43.5 parent: 2 + - uid: 22432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - uid: 22463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 22472 + components: + - type: Transform + pos: 78.5,2.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-7.5 + parent: 2 + - uid: 22475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-7.5 + parent: 2 - uid: 22479 components: - type: Transform @@ -300721,130 +300983,158 @@ entities: showEnts: False occludes: True ents: - - 20377 + - 20377 + - type: UnpoweredFlashlight + toggleActionEntity: 20377 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage +- proto: SeniorOfficerPDA + entities: + - uid: 20391 + components: + - type: Transform + parent: 6575 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 22546 + - type: UnpoweredFlashlight + toggleActionEntity: 22546 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage +- proto: SeniorPhysicianPDA + entities: + - uid: 24719 + components: + - type: Transform + parent: 6575 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 22547 + - type: UnpoweredFlashlight + toggleActionEntity: 22547 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage +- proto: SeniorResearcherPDA + entities: + - uid: 22548 + components: + - type: Transform + parent: 6575 + - type: ContainerContainer + containers: + PDA-id: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pen: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + PDA-pai: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + Cartridge-Slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + program-container: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 32132 - type: UnpoweredFlashlight - toggleActionEntity: 20377 + toggleActionEntity: 32132 - type: Physics canCollide: False - type: ActionsContainer - type: InsideEntityStorage -- proto: SeniorOfficerPDA +- proto: ShadowTree02 entities: - - uid: 20391 + - uid: 6089 components: - type: Transform - parent: 6575 - - type: ContainerContainer - containers: - PDA-id: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pen: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pai: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - Cartridge-Slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - program-container: !type:Container - showEnts: False - occludes: True - ents: [] - actions: !type:Container - showEnts: False - occludes: True - ents: - - 22546 - - type: UnpoweredFlashlight - toggleActionEntity: 22546 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage -- proto: SeniorPhysicianPDA + pos: -3.3528743,-21.422352 + parent: 2 +- proto: ShadowTree03 entities: - - uid: 24719 + - uid: 22467 components: - type: Transform - parent: 6575 - - type: ContainerContainer - containers: - PDA-id: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pen: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pai: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - Cartridge-Slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - program-container: !type:Container - showEnts: False - occludes: True - ents: [] - actions: !type:Container - showEnts: False - occludes: True - ents: - - 22547 - - type: UnpoweredFlashlight - toggleActionEntity: 22547 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage -- proto: SeniorResearcherPDA + pos: 6.668007,-22.185879 + parent: 2 +- proto: ShadowTree04 entities: - - uid: 22548 + - uid: 4732 components: - type: Transform - parent: 6575 - - type: ContainerContainer - containers: - PDA-id: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pen: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - PDA-pai: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - Cartridge-Slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - program-container: !type:Container - showEnts: False - occludes: True - ents: [] - actions: !type:Container - showEnts: False - occludes: True - ents: - - 32132 - - type: UnpoweredFlashlight - toggleActionEntity: 32132 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage + pos: -5.835436,-22.150795 + parent: 2 +- proto: ShadowTree05 + entities: + - uid: 5993 + components: + - type: Transform + pos: 6.0237565,-40.227917 + parent: 2 - proto: ShardCrystalGreen entities: - uid: 21839 @@ -302131,11 +302421,6 @@ entities: parent: 2 - proto: ShippingContainerBlank entities: - - uid: 7588 - components: - - type: Transform - pos: 70.5,-1.5 - parent: 2 - uid: 24483 components: - type: Transform @@ -302155,13 +302440,6 @@ entities: - type: Transform pos: 74.5,-3.5 parent: 2 -- proto: ShippingContainerNanotrasen - entities: - - uid: 32491 - components: - - type: Transform - pos: 66.5,0.5 - parent: 2 - proto: ShotGunCabinetFilled entities: - uid: 14548 @@ -310029,7 +310307,7 @@ entities: pos: -61.5,-85.5 parent: 2 - type: Door - secondsUntilStateChange: -5123.1587 + secondsUntilStateChange: -7632.398 state: Opening - proto: SpaceCash entities: @@ -310625,13 +310903,6 @@ entities: parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 6089 - components: - - type: Transform - pos: -39.5,37.5 - parent: 2 - - type: SpamEmitSound - enabled: False - uid: 8694 components: - type: Transform @@ -312312,6 +312583,12 @@ entities: parent: 2 - proto: SpiderWeb entities: + - uid: 10776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,30.5 + parent: 2 - uid: 11624 components: - type: Transform @@ -315474,12 +315751,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,40.5 parent: 2 - - uid: 4578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,40.5 - parent: 2 - uid: 5251 components: - type: Transform @@ -320208,11 +320479,6 @@ entities: - type: Transform pos: -72.5,-24.5 parent: 2 - - uid: 21985 - components: - - type: Transform - pos: -37.5,-23.5 - parent: 2 - uid: 21986 components: - type: Transform @@ -320253,11 +320519,6 @@ entities: - type: Transform pos: -38.5,-13.5 parent: 2 - - uid: 21996 - components: - - type: Transform - pos: -38.5,-23.5 - parent: 2 - uid: 22013 components: - type: Transform @@ -321094,11 +321355,6 @@ entities: - type: Transform pos: 53.5,-12.5 parent: 2 - - uid: 30547 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 2 - uid: 30824 components: - type: Transform @@ -321325,6 +321581,7 @@ entities: rotation: -1.5707963267948966 rad buckleOffset: 0,0.1 position: Down + buckledEntities: [] - proto: TableCarpet entities: - uid: 5357 @@ -321645,16 +321902,6 @@ entities: - type: Transform pos: 21.5,-77.5 parent: 2 - - uid: 22227 - components: - - type: Transform - pos: -39.5,-26.5 - parent: 2 - - uid: 22228 - components: - - type: Transform - pos: -38.5,-26.5 - parent: 2 - uid: 22711 components: - type: Transform @@ -322031,6 +322278,18 @@ entities: - type: Transform pos: 10.5,-85.5 parent: 2 + - uid: 47761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-26.5 + parent: 2 + - uid: 47762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-26.5 + parent: 2 - proto: TableFancyBlack entities: - uid: 1897 @@ -325168,6 +325427,16 @@ entities: - type: Transform pos: -36.5,20.5 parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 2 - uid: 5050 components: - type: Transform @@ -326387,6 +326656,11 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,36.5 parent: 2 + - uid: 22236 + components: + - type: Transform + pos: 68.5,-1.5 + parent: 2 - uid: 22340 components: - type: Transform @@ -326402,6 +326676,16 @@ entities: - type: Transform pos: -64.5,38.5 parent: 2 + - uid: 22423 + components: + - type: Transform + pos: 67.5,-0.5 + parent: 2 + - uid: 22426 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 2 - uid: 22696 components: - type: Transform @@ -326428,6 +326712,11 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-44.5 parent: 2 + - uid: 23335 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 - uid: 23370 components: - type: Transform @@ -326620,6 +326909,24 @@ entities: - type: Transform pos: -49.5,102.5 parent: 2 + - uid: 31716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 32491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-23.5 + parent: 2 + - uid: 47705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-23.5 + parent: 2 - uid: 51110 components: - type: Transform @@ -327938,11 +328245,6 @@ entities: - type: Transform pos: 5.4700503,28.593636 parent: 2 - - uid: 23335 - components: - - type: Transform - pos: 17.506805,7.578162 - parent: 2 - uid: 23834 components: - type: Transform @@ -330570,6 +330872,13 @@ entities: - type: Transform pos: -0.5,58.5 parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 47902 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 - proto: VendingMachineMedical entities: - uid: 13459 @@ -387486,11 +387795,6 @@ entities: parent: 2 - proto: WardrobeGrey entities: - - uid: 4083 - components: - - type: Transform - pos: -63.5,7.5 - parent: 2 - uid: 4200 components: - type: Transform @@ -390596,7 +390900,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -140768.17 + secondsUntilStateChange: -143277.4 state: Opening - uid: 21930 components: @@ -395089,12 +395393,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 - - uid: 5993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,34.5 - parent: 2 - uid: 6014 components: - type: Transform diff --git a/Resources/Maps/corvax_awesome.yml b/Resources/Maps/corvax_awesome.yml index db9a672c608..aa2d693eb3d 100644 --- a/Resources/Maps/corvax_awesome.yml +++ b/Resources/Maps/corvax_awesome.yml @@ -122,11 +122,11 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: BwAAAAADBwAAAAAABwAAAAAAFAAAAAAABwAAAAABFAAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAACBwAAAAABFAAAAAAAFAAAAAAAgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAACFAAAAAAABwAAAAADBwAAAAAAFAAAAAAAFAAAAAAABwAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAADgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABwAAAAACBwAAAAAAFAAAAAAAFAAAAAAABwAAAAACgQAAAAAABwAAAAAAFAAAAAAABwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAFAAAAAAABwAAAAABFAAAAAAABwAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABgQAAAAAABwAAAAAABwAAAAADFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAAABwAAAAAAFAAAAAAABwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAAQAAAAACBwAAAAAAFAAAAAAAFAAAAAAABwAAAAABBwAAAAABBwAAAAACFAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAADGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAGAAAAAAAFAAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAwAAAAACAgAAAAABAwAAAAADAgAAAAADCgAAAAABDAAAAAADgQAAAAAAFAAAAAAACgAAAAADgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAAgAAAAACAwAAAAABAgAAAAACAwAAAAACMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAACgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHAAAAAAAHAAAAAACHAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHAAAAAAAHAAAAAACHAAAAAAB + tiles: BwAAAAADBwAAAAAABwAAAAAAFAAAAAAABwAAAAABFAAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAACBwAAAAABFAAAAAAAFAAAAAAAgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAACFAAAAAAABwAAAAADBwAAAAAAFAAAAAAAFAAAAAAABwAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAADgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABwAAAAACBwAAAAAAFAAAAAAAFAAAAAAABwAAAAACgQAAAAAABwAAAAAAFAAAAAAABwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAFAAAAAAABwAAAAABFAAAAAAABwAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABgQAAAAAABwAAAAAABwAAAAADFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAAABwAAAAAAFAAAAAAABwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAAQAAAAACBwAAAAAAFAAAAAAAFAAAAAAABwAAAAABBwAAAAABBwAAAAACFAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAADGAAAAAAAgQAAAAAAOgAAAAAAOgAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAOgAAAAAAFAAAAAAANQAAAAAAOgAAAAAAOgAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAwAAAAACAgAAAAABAwAAAAADAgAAAAADCgAAAAABDAAAAAADgQAAAAAAOgAAAAAACgAAAAADgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAAgAAAAACAwAAAAABAgAAAAACAwAAAAACOgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAACgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHAAAAAAAHAAAAAACHAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHAAAAAAAHAAAAAACHAAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: BgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAACgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAGgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAADQAAAAABBwAAAAABDQAAAAADgQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAADQAAAAACDQAAAAACDQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAADgQAAAAAAgQAAAAAABwAAAAACBwAAAAABFAAAAAAABwAAAAAABwAAAAADBwAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAACgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAGgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAADQAAAAABBwAAAAABDQAAAAADgQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAADQAAAAACDQAAAAACDQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAADgQAAAAAAgQAAAAAABwAAAAACBwAAAAABFAAAAAAABwAAAAAABwAAAAADBwAAAAAD version: 6 1,-1: ind: 1,-1 @@ -134,7 +134,7 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: BgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAABFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAHgAAAAABHQAAAAACBwAAAAABBwAAAAADgQAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAAABwAAAAABBwAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAHQAAAAABHQAAAAABHQAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAHQAAAAAAHgAAAAADBwAAAAACBwAAAAAAgQAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAAAFAAAAAAAgQAAAAAABwAAAAABgQAAAAAAHQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAABgQAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAAFAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAABFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAHgAAAAABHQAAAAACBwAAAAABBwAAAAADgQAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAAABwAAAAABBwAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAHQAAAAABHQAAAAABHQAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAHQAAAAAAHgAAAAADBwAAAAACBwAAAAAAgQAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAAAFAAAAAAAgQAAAAAABwAAAAABgQAAAAAAHQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAABgQAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAAFAAAAAAA version: 6 1,-2: ind: 1,-2 @@ -142,7 +142,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAFQAAAAAAFQAAAAABgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAABwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAgQAAAAAAEgAAAAABEgAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAADEgAAAAAAEgAAAAADgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAABwAAAAAABwAAAAADgQAAAAAAEgAAAAABEgAAAAADEgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAEgAAAAADEgAAAAADEgAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAABIgAAAAADgQAAAAAAgQAAAAAABwAAAAACBwAAAAACgQAAAAAAEgAAAAAAEgAAAAACEgAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACIgAAAAABgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAEgAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAABwAAAAAABwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAACBwAAAAAAFAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABgQAAAAAABwAAAAABHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAFQAAAAAAFQAAAAABgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAABwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAgQAAAAAAEgAAAAABEgAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAADEgAAAAAAEgAAAAADgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAABwAAAAAABwAAAAADgQAAAAAAEgAAAAABEgAAAAADEgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAEgAAAAADEgAAAAADEgAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAABIgAAAAADgQAAAAAAgQAAAAAABwAAAAACBwAAAAACgQAAAAAAEgAAAAAAEgAAAAACEgAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACIgAAAAABgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAEgAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAABwAAAAAABwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAACBwAAAAAAFAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABgQAAAAAABwAAAAABHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -150,19 +150,19 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: gQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAACQAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAACQAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAAAgQAAAAAACQAAAAADNQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAACgQAAAAAACQAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAACQAAAAADNQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADCAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABCAAAAAAACAAAAAAACAAAAAAABwAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAACDQAAAAADBwAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAABgQAAAAAABwAAAAADDQAAAAAABwAAAAADgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAADBwAAAAADgQAAAAAADQAAAAAADQAAAAACDQAAAAACBAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAA + tiles: gQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAACQAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAACQAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAAAgQAAAAAACQAAAAADNQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAACgQAAAAAACQAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAACQAAAAADNQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADCAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABCAAAAAAACAAAAAAACAAAAAAABwAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAACDQAAAAADBwAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAABgQAAAAAABwAAAAADDQAAAAAABwAAAAADgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAADBwAAAAADgQAAAAAADQAAAAAADQAAAAACDQAAAAACBAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABFAAAAAAAFAAAAAAAGAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAABgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADgQAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABgQAAAAAABgAAAAAABgAAAAAAgQAAAAAA + tiles: AAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABFAAAAAAAFAAAAAAAGAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAABgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADgQAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -182,11 +182,11 @@ entities: version: 6 1,1: ind: 1,1 - tiles: NQAAAAAAJQAAAAACNQAAAAAANQAAAAAATQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAJQAAAAADgQAAAAAABwAAAAABNQAAAAAAGAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAGgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABBwAAAAACgQAAAAAABwAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAADgQAAAAAAQAAAAAAEAAAAAAAAAAAAAAAAJQAAAAADBwAAAAABgQAAAAAABwAAAAADFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAQAAAAAAFQAAAAAAAQAAAAAADQAAAAAAFQAAAAAACQAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAQAAAAAAEQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAAFAAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAQAAAAAACQAAAAAAAQAAAAAAEQAAAAAABQAAAAAADQAAAAAADQAAAAAACQAAAAAAGJgAAAAAAJgAAAAAAgQAAAAAABwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAQAAAAAAGQAAAAAAFQAAAAAAGQAAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAQAAAAAAGQAAAAAAEQAAAAAABQAAAAAAGQAAAAAADQAAAAAACQAAAAAAEQAAAAAADFAAAAAAABwAAAAABFAAAAAAAFAAAAAAAJgAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAQAAAAAABQAAAAAADQAAAAAAGQAAAAAAAQAAAAAADQAAAAAAFAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAAAAAAAJgAAAAAAKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAADQAAAAAACQAAAAAAEQAAAAAADAAAAAAAAJgAAAAAAFAAAAAAAFAAAAAAAJgAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAQAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABgQAAAAAA + tiles: NQAAAAAAJQAAAAACNQAAAAAANQAAAAAATQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAJQAAAAADgQAAAAAABwAAAAABNQAAAAAAGAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAGgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABBwAAAAACgQAAAAAABwAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAADgQAAAAAAQAAAAAAEAAAAAAAAAAAAAAAAJQAAAAADBwAAAAABgQAAAAAABwAAAAADFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAQAAAAAAFQAAAAAAAQAAAAAADQAAAAAAFQAAAAAACQAAAAAABQAAAAAAAAAAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAQAAAAAAEQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAAFAAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAQAAAAAACQAAAAAAAQAAAAAAEQAAAAAABQAAAAAADQAAAAAADQAAAAAACQAAAAAAGJgAAAAAAJgAAAAAAgQAAAAAABwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAQAAAAAAGQAAAAAAFQAAAAAAGQAAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAQAAAAAAGQAAAAAAEQAAAAAABQAAAAAAGQAAAAAADQAAAAAACQAAAAAAEQAAAAAADFAAAAAAABwAAAAABFAAAAAAAFAAAAAAAJgAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAQAAAAAABQAAAAAADQAAAAAAGQAAAAAAAQAAAAAADQAAAAAAFAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAAAAAAAJgAAAAAAKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAADQAAAAAACQAAAAAAEQAAAAAADAAAAAAAAJgAAAAAAFAAAAAAAFAAAAAAAJgAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAQAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABgQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADgQAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABBwAAAAABgQAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAAAgQAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAABwAAAAABFAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABMwAAAAAABwAAAAABgQAAAAAAMwAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAABwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAABgQAAAAAABwAAAAABBwAAAAACBwAAAAACLAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADgQAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABBwAAAAABgQAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAAAgQAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAADBwAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAABwAAAAABFAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABMwAAAAAABwAAAAABgQAAAAAAMwAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAABwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAABgQAAAAAABwAAAAABBwAAAAACBwAAAAACLAAAAAAA version: 6 -2,1: ind: -2,1 @@ -302,7 +302,7 @@ entities: version: 6 1,2: ind: 1,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAMwAAAAAABwAAAAABgQAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACMwAAAAAABwAAAAADgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAAAPgAAAAABPgAAAAACPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPgAAAAADPgAAAAACPgAAAAADPgAAAAACPgAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAACPgAAAAABPgAAAAABPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAMwAAAAAABwAAAAABgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACMwAAAAAABwAAAAADgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAAAPgAAAAABPgAAAAACPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPgAAAAADPgAAAAACPgAAAAADPgAAAAACPgAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAACPgAAAAABPgAAAAABPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -336,6 +336,10 @@ entities: ind: -1,-4 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 2,2: + ind: 2,2 + tiles: BAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -529,7 +533,6 @@ entities: id: BrickCornerOverlayNW decals: 3454: 12,-2 - 3477: 2,-2 3480: 4,-1 3481: 5,0 - node: @@ -1921,7 +1924,6 @@ entities: 3324: -21,-5 3325: -21,-6 3326: -12,-6 - 3327: -12,-5 3328: -12,-4 3329: -12,-3 3372: 21,8 @@ -1946,7 +1948,6 @@ entities: 7198: 10,-3 7199: 11,-3 7200: 3,-2 - 7201: 2,-2 7275: 0,-22 7277: 0,-20 7301: -15,-14 @@ -2125,8 +2126,6 @@ entities: 3359: -5,9 3360: -1,9 3361: 1,9 - 3362: 4,9 - 3363: 4,9 3364: 3,9 3365: 6,9 3366: 10,9 @@ -2636,13 +2635,23 @@ entities: 3430: -10,-11 3431: -10,-10 3436: 13,18 + - node: + cleanable: True + zIndex: 1 + color: '#000000FF' + id: Damaged + decals: + 8840: 2,-2 + 8841: 2,-1 + 8842: 2,-1 + 8843: 2,-2 + 8844: 3,-3 - node: cleanable: True color: '#FFFFFFFF' id: Damaged decals: 144: -13,3 - 6293: 2,-2 - node: color: '#FFFFFFFF' id: Delivery @@ -5100,7 +5109,6 @@ entities: 6287: 7,-9 6288: 7,-10 6289: 2,-3 - 6290: 2,-2 6291: -1,-1 6292: -1,-1 6366: 19,-8 @@ -5145,7 +5153,6 @@ entities: 6406: 9,9 6407: 7,9 6408: 6,9 - 6409: 4,9 6410: 2,8 6411: 3,8 6412: 4,8 @@ -8520,9 +8527,14 @@ entities: 171: -24,-45 172: -24,-46 1004: -24,-22 - 6294: 2,-2 8188: -37,-29 8189: -37,-32 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineS + decals: + 8845: 2,-2 - node: color: '#FFFFFFFF' id: WarnLineW @@ -8559,6 +8571,15 @@ entities: 5: -3,-5 6: -4,-6 15: -4,-4 + - node: + cleanable: True + color: '#1516162B' + id: brush + decals: + 8520: -10.345582,32.05478 + 8521: -8.939332,32.92978 + 8522: -8.767457,32.945404 + 8523: -7.7791405,32.440567 - node: cleanable: True color: '#7800007F' @@ -8566,6 +8587,12 @@ entities: decals: 181: 51.43808,-19.931646 182: 50.609955,-19.994146 + - node: + cleanable: True + color: '#DE3A3A1E' + id: brush + decals: + 8223: 6.397924,9.192673 - node: color: '#474F5283' id: dot @@ -8609,6 +8636,94 @@ entities: 198: 50.141205,-20.041021 199: 51.84433,-20.619146 200: 51.00058,-21.525396 + - node: + cleanable: True + color: '#DE3A3A1E' + id: smallbrush + decals: + 8216: 2.664219,8.333298 + 8217: 5.3078403,7.9270477 + 8218: 5.7922153,8.192673 + - node: + cleanable: True + color: '#DE3A3A4C' + id: smallbrush + decals: + 8215: 2.5739555,8.489548 + - node: + cleanable: True + color: '#FD3A3A1C' + id: smallbrush + decals: + 8224: -2.1226974,6.597535 + 8225: -1.9508224,6.64441 + 8226: -1.7320724,6.61316 + 8227: -1.4664474,9.410729 + 8228: -2.9799662,13.662582 + 8229: -4.542466,17.469007 + 8230: -4.558091,17.281507 + 8231: -4.573716,17.015882 + - node: + cleanable: True + color: '#1516162B' + id: splatter + decals: + 8487: -13.480241,19.69819 + 8488: -13.714615,19.19819 + 8489: -13.683366,18.91694 + 8490: -12.980241,18.901316 + 8491: -12.277116,19.26069 + 8492: -12.417741,18.72944 + 8493: -13.198991,18.44819 + 8494: -14.370865,18.432566 + 8495: -14.777115,18.901316 + 8496: -13.902115,18.338816 + 8497: -13.370866,18.245066 + 8498: -13.870865,17.82319 + 8499: -14.10524,17.82319 + 8500: -13.433366,18.682566 + 8501: -13.386491,19.526316 + 8502: -12.636491,19.32319 + 8503: -12.730241,18.88569 + 8504: -13.058366,18.651316 + 8505: -13.73024,18.463816 + 8506: -14.370865,19.307566 + 8507: -13.464616,19.66694 + 8508: -12.370866,19.870066 + 8509: -13.027116,20.41694 + 8510: -13.511491,20.307566 + 8511: -13.527116,20.307566 + 8512: -13.277116,20.057566 + 8513: -12.870866,20.13569 + 8514: -12.839616,20.16694 + 8515: -13.214616,19.963816 + 8516: -13.167741,19.72944 + 8517: -12.777116,19.85444 + 8518: -12.886491,20.32319 + 8519: -13.308366,20.29194 + - node: + cleanable: True + color: '#15161677' + id: splatter + decals: + 8475: -13.136491,19.776316 + 8476: -13.292741,19.745066 + 8477: -13.245866,20.07319 + 8478: -12.745866,20.35444 + 8479: -12.511491,20.057566 + 8480: -12.636491,19.713816 + 8481: -13.433366,19.745066 + 8482: -13.667741,19.66694 + 8483: -13.277116,19.35444 + 8484: -12.527116,19.76069 + 8485: -12.480241,19.82319 + 8486: -12.620866,19.57319 + - node: + cleanable: True + color: '#4F3A3A1C' + id: splatter + decals: + 8286: -65.81729,28.64659 - node: cleanable: True color: '#4F524C4C' @@ -8641,6 +8756,581 @@ entities: id: splatter decals: 202: 51.21933,-20.166021 + - node: + cleanable: True + color: '#79161628' + id: splatter + decals: + 8524: -8.520624,32.912956 + 8525: -8.614374,32.912956 + 8526: -8.190313,33.009186 + 8527: -9.143438,32.83731 + 8528: -5.9715633,35.357224 + 8529: -5.9090633,35.357224 + 8530: -5.8153133,35.169724 + 8531: -5.8778133,34.8416 + 8532: -6.0965633,34.825974 + 8533: -6.0965633,34.888474 + 8534: -3.2900176,36.2882 + 8535: -3.3837676,36.3507 + 8536: -3.5556426,36.2257 + 8537: -3.7118926,35.241325 + 8538: -3.7431426,34.8507 + 8539: -3.7275176,33.960075 + 8540: -3.4112725,32.025436 + 8541: -1.6143975,31.869186 + 8542: -2.0362725,31.603561 + 8543: -2.2393975,31.494188 + 8544: -2.2393975,31.275438 + 8545: -1.9112725,31.666061 + 8546: -2.8114824,28.261637 + 8547: -3.0888443,27.31175 + 8548: -1.7294693,27.24925 + 8549: -2.9325943,24.500834 + 8550: -3.4482193,22.785112 + 8551: -4.0888443,22.038675 + 8552: -3.9169693,23.924486 + 8553: -2.8232193,21.44235 + 8554: -2.6357193,18.770159 + 8555: -2.7450943,16.39775 + 8556: -1.7294693,19.181808 + 8557: -2.6825943,17.315605 + 8558: -3.0888443,14.588058 + 8559: -3.1513443,12.52519 + 8560: -2.9794693,11.81872 + 8561: -1.9638443,13.504728 + 8562: -2.9950943,13.957853 + 8563: -3.2607193,13.535978 + 8564: -3.0419693,13.598478 + 8565: -6.45708,13.395353 + 8566: -6.1805,13.285978 + 8567: -5.89925,12.957853 + 8568: -5.4930005,12.973478 + 8569: -5.868,12.926603 + 8570: -7.114154,12.957853 + 8571: -7.853466,13.051603 + 8572: -8.15346,13.395353 + 8573: -8.262835,13.645353 + 8574: -8.65346,13.598478 + 8575: -8.80971,13.098478 + 8576: -8.200335,12.879728 + 8577: -7.4347095,13.285978 + 8578: -8.94198,13.254728 + 8579: -9.851413,12.957853 + 8580: -10.257663,12.785978 + 8581: -9.195163,12.848478 + 8582: -8.632663,12.614103 + 8583: -8.257663,12.348478 + 8584: -7.882663,12.379728 + 8585: -8.210788,12.332853 + 8586: -9.585788,12.551603 + 8587: -9.210788,12.629728 + 8588: -8.632663,12.629728 + 8589: -8.476413,12.926603 + 8590: -9.923642,13.035978 + 8591: -11.508425,13.035978 + 8592: -13.178971,13.004728 + 8593: -13.146013,13.629728 + 8594: -12.744335,13.707853 + 8595: -12.38496,13.645353 + 8596: -12.29121,13.629728 + 8597: -13.35371,13.707853 + 8598: -13.931835,13.692228 + 8599: -3.3541603,10.755347 + 8600: -3.3541603,10.755347 + 8601: -3.2760353,10.333472 + 8602: -2.7760353,9.786597 + 8603: -2.8541603,9.145972 + 8604: -3.0572853,9.114722 + 8605: -2.9791603,8.630347 + 8606: -3.1354103,8.161597 + 8607: -1.4635351,9.145972 + 8608: -1.4947851,9.208472 + 8615: 3.5572453,8.013751 + 8622: 3.7611027,8.076251 + 8623: 3.6517277,7.732501 + 8624: 3.8392277,7.732501 + 8645: 3.9589448,8.873126 + 8646: 3.9901948,8.982501 + 8647: 3.7401948,9.123126 + 8648: 3.7245698,8.654376 + 8649: 4.052695,8.670001 + 8650: 4.240195,8.841876 + 8651: 4.365195,9.029376 + 8652: 4.34957,9.029376 + 8653: 3.9276948,8.982501 + - node: + cleanable: True + color: '#8E16163C' + id: splatter + decals: + 8288: -66.88411,30.146782 + 8289: -74.032684,30.115532 + 8290: -72.595184,23.714087 + 8291: -72.626434,23.448462 + 8292: -75.496475,20.848145 + 8293: -73.996475,19.925753 + 8294: -72.8246,15.44512 + 8295: -72.79335,16.03887 + 8296: -73.340225,15.148245 + 8297: -72.871475,12.028765 + 8298: -74.402725,9.858603 + 8299: -75.67616,12.913076 + 8300: -57.457733,14.536726 + 8301: -54.70071,9.767602 + 8302: -52.56432,12.782261 + 8303: -41.151382,13.563511 + 8304: -40.526382,19.667902 + 8305: -37.38396,21.983168 + 8306: -37.03378,18.336569 + 8307: -36.924404,13.07914 + 8308: -37.143154,12.874603 + 8309: -37.174404,12.562103 + 8310: -36.643154,12.780853 + 8311: -36.84628,10.506554 + 8312: -37.674404,9.620525 + 8313: -37.861904,9.527004 + 8314: -38.28378,9.636379 + 8315: -38.393154,9.589504 + 8316: -38.50253,9.417629 + 8317: -37.361904,9.620754 + 8318: -32.904915,11.605129 + 8319: -32.82662,11.011379 + 8320: -32.73287,10.870754 + 8321: -30.248493,11.573879 + 8322: -30.232868,11.417629 + 8323: -30.139118,11.308254 + 8324: -30.279743,11.323879 + 8325: -26.427156,16.620754 + 8326: -26.645906,16.745754 + 8327: -26.692781,16.808254 + 8328: -26.724031,16.98013 + 8329: -23.551443,16.47566 + 8330: -23.337074,16.892548 + 8331: -19.086441,16.548798 + 8332: -20.462473,15.017548 + 8333: -19.899973,16.814423 + 8334: -19.618723,17.080048 + 8335: -19.399973,17.048798 + 8336: -19.493723,16.783173 + 8337: -19.821848,16.705048 + 8338: -18.540598,18.267548 + 8339: -18.196848,18.251923 + 8340: -18.212473,20.32636 + 8341: -18.212473,20.828085 + 8342: -18.478098,21.359335 + 8343: -18.978098,20.515585 + 8344: -19.103098,19.93746 + 8345: -17.931223,22.276403 + 8346: -18.274973,21.893364 + 8347: -19.384348,21.759808 + 8348: -19.821848,21.791058 + 8349: -20.118723,21.025433 + 8350: -19.571848,20.166058 + 8351: -18.321848,21.587933 + 8352: -18.149973,23.339647 + 8353: -18.462473,24.331703 + 8354: -19.009348,24.706703 + 8355: -19.509348,24.691078 + 8356: -19.931223,24.144203 + 8357: -19.290598,24.409828 + 8358: -19.149973,24.909828 + 8359: -19.353098,24.956703 + 8360: -19.634348,25.206703 + 8361: -19.806223,25.237953 + 8362: -20.103098,25.566078 + 8363: -20.556223,25.628578 + 8364: -20.587473,25.284828 + 8365: -20.462473,24.128578 + 8366: -19.618723,24.034828 + 8367: -18.853098,24.206703 + 8368: -18.274973,25.300453 + 8369: -18.134348,25.722328 + 8370: -18.009348,25.144203 + 8371: -21.368723,21.394203 + 8372: -21.509348,21.066078 + 8373: -21.384348,20.456703 + 8374: -20.978098,20.394203 + 8375: -21.228098,20.081703 + 8376: -21.603098,21.550453 + 8377: -21.587473,21.550453 + 8378: -22.134348,21.284828 + 8379: -21.571848,20.987953 + 8380: -21.446848,21.300453 + 8381: -21.337473,21.472328 + 8382: -21.228098,21.378578 + 8383: -21.431223,20.894203 + 8384: -21.603098,20.972328 + 8385: -20.024973,20.050453 + 8386: -19.962473,19.956703 + 8387: -20.993723,20.050453 + 8388: -21.478098,19.862953 + 8389: -19.118618,19.816078 + 8390: -18.487942,19.597328 + 8391: -18.373865,18.784828 + 8392: -19.186365,18.331703 + 8393: -19.467615,18.284828 + 8394: -20.689775,17.20531 + 8395: -20.96468,16.884235 + 8396: -20.339281,16.680326 + 8397: -20.167406,16.070951 + 8398: -21.011156,14.951584 + 8399: -20.636156,14.41511 + 8400: -20.698656,13.867088 + 8401: -20.401781,12.62608 + 8402: -20.323656,11.998301 + 8403: -16.735815,13.75205 + 8404: -16.286146,13.181314 + 8405: -15.85544,13.681208 + 8406: -15.48044,13.915583 + 8407: -15.714815,14.274958 + 8408: -16.089815,13.806208 + 8409: -15.652315,13.399958 + 8410: -15.32419,13.962458 + 8411: -15.29294,14.118708 + 8412: -15.44919,14.024958 + 8413: -16.454607,13.844032 + 8414: -16.473736,14.000281 + 8415: -16.928053,14.015907 + 8416: -17.490553,14.156532 + 8417: -17.959303,13.922157 + 8418: -18.037428,13.812782 + 8419: -14.740553,13.656532 + 8420: -13.974928,13.765907 + 8421: -13.568678,13.375282 + 8422: -13.146803,12.859657 + 8423: -12.537428,13.000282 + 8424: -12.115553,12.781532 + 8425: -11.959303,12.422157 + 8426: -10.930328,13.140907 + 8427: -10.757122,13.109657 + 8428: -11.690832,13.031532 + 8429: -12.034582,13.000282 + 8430: -12.237707,12.984657 + 8431: -10.706457,12.922157 + 8432: -9.831457,13.094032 + 8433: -9.472082,13.031532 + 8434: -9.097082,13.547157 + 8435: -9.003332,13.390907 + 8436: -8.561312,12.922157 + 8437: -7.462743,12.828407 + 8438: -6.927656,13.172157 + 8439: -14.92337,11.314011 + 8440: -14.9588585,11.267514 + 8441: -13.8338585,11.689389 + 8442: -13.9744835,10.861264 + 8443: -14.0213585,10.533139 + 8444: -14.0369835,9.955014 + 8445: -14.0369835,9.908139 + 8446: -13.8807335,10.048764 + 8447: -14.1776085,10.283139 + 8448: -13.9744835,10.158139 + 8449: -14.0526085,10.236264 + 8450: -14.2401085,10.220639 + 8451: -13.8651085,10.064389 + 8452: -13.5838585,10.142514 + 8453: -12.394491,10.142514 + 8454: -12.067252,10.173764 + 8455: -11.864127,9.939389 + 8456: -11.801627,10.501889 + 8457: -11.911002,10.767514 + 8458: -12.426627,11.017514 + 8459: -12.801627,11.189389 + 8460: -12.489127,10.798764 + 8461: -12.161002,10.548764 + 8462: -12.442252,10.267514 + 8463: -17.26552,10.908139 + 8464: -17.584482,10.783139 + 8465: -17.412607,10.548764 + 8466: -17.428232,11.048764 + 8467: -17.615732,11.205014 + 8468: -17.131357,11.095639 + 8469: -16.787607,11.767514 + 8470: -16.787607,12.392514 + 8471: -16.740732,12.548764 + 8472: -15.281807,12.439389 + 8473: -15.563057,12.080014 + 8474: -12.347592,14.718319 + - node: + cleanable: True + color: '#8E161666' + id: splatter + decals: + 8287: -66.53015,29.978107 + - node: + cleanable: True + zIndex: -1 + color: '#AF161628' + id: splatter + decals: + 8714: -1.8871498,-17.221943 + - node: + cleanable: True + color: '#AF161628' + id: splatter + decals: + 8663: 3.8026948,8.779376 + 8664: 4.00582,8.998126 + 8665: 4.177695,9.029376 + 8666: 4.13082,8.748126 + 8667: 4.03707,8.716876 + 8668: 3.8495698,8.763751 + 8669: 3.6933198,9.404376 + 8670: 3.3651948,8.170001 + 8671: 2.2245698,7.857501 + 8672: 2.4745698,7.545001 + 8673: 3.4433198,7.513751 + 8674: 3.7558198,7.466876 + 8675: 4.13082,7.998126 + 8676: 4.25582,8.232501 + 8677: 4.59957,8.216876 + 8678: 5.240195,8.185626 + 8679: 5.458945,8.138751 + 8680: 5.59957,8.201251 + 8681: 3.6500816,7.0812664 + 8682: -8.050802,-6.598056 + 8683: -8.019552,-4.3025303 + 8684: -9.128927,-3.8350217 + 8685: -8.425802,-0.24815452 + 8686: -7.894552,3.128559 + 8687: -8.441427,5.6536527 + 8688: -7.628927,7.9961786 + 8689: -6.691427,8.325003 + 8690: -8.285177,-7.370271 + 8691: -8.066427,-7.094333 + 8692: -8.003927,-6.781833 + 8693: -7.878927,-6.984958 + 8694: -10.441427,-10.135556 + 8695: -9.691427,-10.847571 + 8696: -8.316427,-12.081946 + 8697: -7.910177,-12.363196 + 8698: -7.753927,-11.762538 + 8699: -8.003927,-12.344761 + 8700: -10.941427,-16.070585 + 8701: -10.738302,-16.579178 + 8702: -9.535177,-16.969803 + 8703: -8.300802,-16.891678 + 8704: -7.0869827,-15.282304 + 8705: -5.330002,-16.172928 + 8706: -3.2525625,-16.438553 + 8707: -2.4103189,-16.438553 + 8708: -0.46836543,-17.126053 + 8709: -0.43711543,-17.251053 + 8710: 2.4743214,-17.36043 + 8711: -0.7970922,-19.35633 + 8712: 0.3279078,-20.175146 + - node: + cleanable: True + zIndex: 1 + color: '#AF161628' + id: splatter + decals: + 8713: -0.5644264,-17.326576 + 8715: -0.8373337,-17.382605 + 8716: 0.14704132,-20.27323 + 8717: -0.16545868,-20.77323 + 8718: -0.49358368,-21.570105 + 8719: -0.43108368,-22.163855 + 8720: -0.58733416,-22.933273 + 8721: -0.5404587,-22.592232 + 8722: 0.25641632,-22.029732 + 8723: 3.9259253,-20.342232 + 8724: 3.8321753,-20.670357 + 8725: 6.2228003,-19.857857 + 8726: 5.9728003,-19.670357 + 8727: 5.8478003,-20.076607 + 8728: 5.9415503,-20.232857 + 8729: 6.1603003,-20.154732 + 8730: 6.1915503,-19.857857 + 8731: 5.9884253,-18.514107 + 8732: 5.9884253,-18.295357 + 8733: 5.9259253,-17.982857 + 8734: 5.8946753,-17.592232 + 8735: 6.2540503,-17.014107 + 8736: 5.8790503,-16.357857 + 8737: 5.1446753,-16.498482 + 8738: 5.7071753,-17.154732 + 8739: 5.7071753,-17.639107 + 8740: 5.9103003,-18.326607 + 8741: 5.8634253,-18.998482 + 8742: 5.8478003,-19.154732 + 8743: 6.829548,-15.607857 + 8744: 7.501423,-15.810982 + 8745: 8.142048,-16.357857 + 8746: 7.923298,-17.014107 + 8747: 11.9715,-18.755417 + 8748: 11.9715,-19.200005 + 8749: 12.049625,-19.62188 + 8750: 12.049625,-19.825005 + 8751: 12.049625,-19.96563 + 8752: 12.00275,-20.106255 + 8753: 12.12775,-20.80938 + 8754: 12.393375,-21.21563 + 8755: 12.455875,-21.231255 + 8756: 13.06525,-21.05938 + 8757: 13.4715,-21.075005 + 8758: 13.674625,-21.200005 + 8759: 18.346716,-16.39384 + 8760: 18.710169,-16.423843 + 8761: 19.273531,-16.517307 + 8762: 19.398531,-16.298557 + 8763: 18.976656,-16.189182 + 8764: 18.836031,-16.579807 + 8765: 20.562216,-15.118543 + 8766: 20.632828,-14.2467575 + 8767: 20.535694,-13.280652 + 8768: 20.20757,-14.140027 + 8769: 19.285694,-15.765027 + 8770: 19.816944,-15.999402 + 8771: 20.23882,-14.811902 + 8772: 20.23882,-12.162644 + 8773: 20.30132,-9.575843 + 8774: 20.410694,-7.264984 + 8775: 38.818275,-11.914697 + 8776: 38.880775,-11.570947 + 8777: 38.912025,-11.336572 + 8778: 38.9589,-11.211572 + 8779: 39.0839,-11.524072 + 8780: 39.0839,-11.633447 + 8781: 38.92765,-11.727197 + 8782: 39.505775,-11.477197 + 8783: 39.568275,-11.477197 + 8784: 40.0214,-11.774072 + 8785: 40.130775,-11.836572 + 8786: 40.05265,-11.852197 + 8787: 37.15789,-16.414856 + 8788: 35.551792,-16.120821 + 8789: 35.411167,-16.136446 + 8790: 35.004917,-15.995821 + 8791: 34.348667,-15.948946 + 8792: 34.192417,-16.027071 + 8793: 34.583042,-16.245821 + 8794: 39.52006,-16.042696 + 8795: 39.58339,-16.027071 + 8796: 39.849014,-15.745821 + 8797: 39.786514,-15.948946 + 8798: 39.411514,-15.933321 + 8799: 39.39589,-16.058321 + 8800: 42.531136,-15.917696 + 8801: 42.119827,-15.917696 + 8802: 42.119827,-15.808321 + 8803: 41.994827,-15.995821 + 8804: 44.21544,-15.698946 + 8805: 44.031967,-15.855196 + 8806: 44.031967,-15.933321 + 8807: 44.047592,-15.933321 + 8808: 44.110092,-11.855196 + 8809: 44.235092,-11.902071 + 8810: 44.156967,-11.761446 + 8811: 43.922592,-11.683321 + 8812: 43.922592,-11.683321 + 8813: 44.969467,-13.714571 + 8814: 44.938217,-13.902071 + 8815: 43.71392,-13.839571 + 8816: 42.75126,-14.058321 + 8817: 42.04476,-14.245822 + 8818: 40.926136,-13.730196 + 8819: 40.437187,-13.683321 + 8820: 38.358494,-13.855196 + 8821: 37.20878,-13.917696 + 8822: 36.234276,-13.667696 + 8823: 35.402252,-13.823947 + 8824: 33.82875,-13.683321 + 8825: 33.70826,-13.714572 + 8826: 35.509884,-13.839571 + 8827: 37.72556,-13.870821 + 8828: 39.838806,-14.058321 + 8829: 41.79914,-14.089571 + 8830: 47.257378,-11.745821 + 8831: 47.518612,-11.777071 + 8832: 47.6594,-11.714571 + 8833: 47.7219,-11.308321 + 8834: 47.25315,-11.308321 + 8835: 46.75315,-11.448946 + 8836: 46.456276,-11.620821 + 8837: 46.800026,-11.902071 + 8838: 47.425026,-11.620821 + 8839: 47.425026,-11.620821 + - node: + cleanable: True + color: '#D4161628' + id: splatter + decals: + 8654: 3.7870698,8.826251 + 8655: 3.6464448,8.795001 + 8656: 3.5370698,8.607501 + 8657: 3.8339448,8.373126 + 8658: 4.240195,8.482501 + 8659: 4.47457,8.998126 + 8660: 4.19332,9.263751 + 8661: 3.7089448,9.216876 + 8662: 3.9745698,9.185626 + - node: + cleanable: True + color: '#DE3A3A4C' + id: splatter + decals: + 8213: 3.609643,7.8085985 + 8214: 4.71415,7.9882116 + - node: + cleanable: True + color: '#FD3A3A1C' + id: splatter + decals: + 8232: 9.882909,16.478352 + 8233: 9.367284,14.6850395 + 8234: 9.679784,14.136965 + 8235: 16.31288,16.059616 + 8236: 12.7746315,19.485933 + 8237: 12.8527565,19.517183 + 8238: 12.8683815,19.642183 + 8239: 12.8840065,19.657808 + 8240: -2.2326784,31.362917 + 8241: -1.7170534,31.69207 + 8242: -3.5764284,36.312065 + 8243: -1.9201784,40.17534 + 8244: -8.652868,32.951584 + 8245: -14.608021,33.548157 + 8246: -16.605104,30.391909 + 8247: -16.198854,30.501284 + 8248: -16.56621,30.751284 + 8249: -20.07374,31.016909 + 8250: -20.47999,33.87628 + 8251: -20.85499,33.12628 + 8252: -24.78365,33.53253 + 8253: -28.449701,32.65753 + 8254: -28.811974,34.18878 + 8255: -28.558165,36.488388 + 8256: -29.554733,38.42482 + 8257: -28.085987,40.275673 + 8258: -28.52349,43.350716 + 8259: -29.226614,44.670723 + 8260: -31.727547,40.81225 + 8261: -35.423725,35.905464 + 8262: -35.18935,35.467964 + 8263: -35.7206,35.499214 + 8264: -35.87685,34.35517 + 8265: -33.696114,31.701302 + 8266: -33.38058,29.792337 + 8267: -31.989956,28.448587 + 8268: -32.41183,28.276712 + 8269: -38.379166,30.854837 + 8270: -39.193756,34.086754 + 8271: -41.11079,28.673273 + 8272: -45.229927,30.196749 + 8273: -46.527393,28.587374 + 8274: -48.513363,28.368624 + 8275: -50.501244,29.493624 + 8276: -54.145607,29.493624 + 8277: -55.704533,29.368624 + 8278: -55.267033,27.352999 + 8279: -56.45156,26.806124 + 8280: -56.154686,26.134249 + 8281: -56.60781,24.184534 + 8282: -57.123436,22.152658 + 8283: -55.654686,21.16174 + 8284: -56.498436,18.456356 + 8285: -55.529686,13.339397 - type: GridAtmosphere version: 2 data: @@ -8679,7 +9369,8 @@ entities: 1,-1: 0: 65534 1,4: - 0: 28910 + 0: 12526 + 3: 16384 2,1: 2: 143 0: 61440 @@ -8727,7 +9418,8 @@ entities: 2: 32768 0,-3: 2: 15 - 0: 65280 + 4: 256 + 0: 65024 -1,-3: 2: 15 0: 39936 @@ -8780,11 +9472,12 @@ entities: 0: 34952 -4,0: 0: 4881 - 3: 52428 + 5: 52428 -5,0: 0: 3942 -4,1: - 0: 61520 + 0: 61456 + 6: 64 -5,1: 0: 29937 -4,2: @@ -8796,7 +9489,7 @@ entities: -5,3: 0: 56829 -3,0: - 3: 4369 + 5: 4369 0: 52428 -3,1: 0: 64668 @@ -8838,7 +9531,8 @@ entities: -5,-3: 0: 59366 -4,-2: - 0: 65295 + 0: 64271 + 4: 1024 -4,-1: 0: 4095 -5,-1: @@ -8867,16 +9561,16 @@ entities: -1,-5: 0: 63662 -4,-8: - 4: 3 + 7: 3 0: 65280 - 5: 8 + 8: 8 -4,-9: - 4: 12288 - 5: 32768 + 7: 12288 + 8: 32768 2: 79 -5,-8: 0: 60928 - 4: 6 + 7: 6 -4,-7: 0: 4095 -5,-7: @@ -8890,14 +9584,14 @@ entities: -5,-5: 0: 44782 -3,-8: - 5: 1 + 8: 1 0: 65280 - 6: 12 + 9: 12 -3,-7: 0: 4095 -3,-9: - 5: 4096 - 6: 49152 + 8: 4096 + 9: 49152 2: 47 -3,-6: 0: 3822 @@ -8911,17 +9605,17 @@ entities: 0: 24576 2: 159 -1,-8: - 4: 7 + 7: 7 0: 60928 -1,-7: 0: 3823 -1,-9: - 4: 28672 + 7: 28672 2: 159 -1,-6: 0: 43246 0,-8: - 4: 3 + 7: 3 0: 65416 0,-7: 0: 4095 @@ -8975,7 +9669,7 @@ entities: 8,-1: 0: 65520 0,-9: - 4: 12288 + 7: 12288 0: 32768 2: 207 1,-8: @@ -8988,7 +9682,8 @@ entities: 0: 61440 2: 383 2,-6: - 0: 29431 + 0: 29427 + 4: 4 2,-9: 0: 4096 2: 26127 @@ -9084,7 +9779,8 @@ entities: -6,4: 0: 3067 -5,4: - 0: 18289 + 0: 18033 + 10: 256 -8,-4: 0: 4368 2: 52428 @@ -9115,13 +9811,16 @@ entities: -6,-3: 0: 65520 -6,-2: - 0: 65295 + 0: 65291 + 4: 4 -6,-1: 0: 4095 -6,-5: 0: 60943 -5,-2: - 0: 26214 + 0: 25126 + 11: 64 + 6: 1024 -8,-8: 2: 60074 -8,-7: @@ -9150,7 +9849,7 @@ entities: -6,-7: 0: 36590 -5,-9: - 4: 24576 + 7: 24576 2: 142 -8,-11: 2: 60394 @@ -9266,7 +9965,7 @@ entities: 0: 65008 -10,-5: 2: 4368 - 3: 52416 + 5: 52416 -10,-8: 0: 52428 -10,-9: @@ -9278,13 +9977,13 @@ entities: 0: 28791 -9,-5: 0: 1 - 3: 30576 + 5: 30576 -9,-9: 0: 30500 2: 3 -9,-4: 0: 1 - 3: 30576 + 5: 30576 -12,-2: 2: 3976 -13,-2: @@ -9305,7 +10004,7 @@ entities: 2: 29426 -10,-4: 0: 4368 - 3: 52416 + 5: 52416 -10,-3: 0: 241 -10,-2: @@ -9365,11 +10064,12 @@ entities: 0: 14591 1,5: 0: 1126 - 7: 512 + 4: 512 1,6: 0: 3822 1,8: - 0: 4027 + 0: 3993 + 4: 34 2,5: 0: 57599 2,6: @@ -9388,16 +10088,16 @@ entities: 0: 33791 4,5: 0: 13075 - 3: 2176 + 5: 2176 4,6: 0: 4087 - 7: 8 + 4: 8 4,7: 0: 61695 4,8: 0: 53691 5,5: - 3: 1904 + 5: 1904 0: 8192 5,6: 0: 33791 @@ -9453,7 +10153,8 @@ entities: -2,7: 0: 61567 -2,5: - 0: 28262 + 0: 28258 + 4: 4 -2,8: 0: 25343 -1,5: @@ -9531,7 +10232,8 @@ entities: 10,-4: 0: 36749 10,-3: - 0: 221 + 0: 205 + 4: 16 2: 61440 10,-2: 0: 4096 @@ -9609,14 +10311,14 @@ entities: 2: 34952 13,-3: 0: 51 - 8: 12288 + 12: 12288 2: 34952 13,-2: - 8: 3 + 12: 3 0: 768 2: 34952 13,-1: - 7: 16 + 4: 16 0: 256 2: 31884 13,-5: @@ -9712,7 +10414,8 @@ entities: -2,9: 0: 58982 -2,12: - 0: 2187 + 0: 2051 + 3: 136 2: 8960 -1,9: 0: 32631 @@ -9721,7 +10424,8 @@ entities: -1,11: 0: 45311 -1,12: - 0: 819 + 0: 785 + 3: 34 2: 34944 0,9: 0: 65535 @@ -9763,7 +10467,7 @@ entities: 0: 65485 4,11: 0: 36817 - 9: 16384 + 11: 16384 -9,8: 0: 4095 -8,9: @@ -9817,7 +10521,7 @@ entities: 2: 17476 -4,16: 2: 15 - 4: 30464 + 7: 30464 -3,13: 2: 30076 -3,15: @@ -9932,7 +10636,7 @@ entities: 2: 4881 -8,16: 0: 51215 - 4: 13056 + 7: 13056 -7,14: 0: 61440 2: 234 @@ -9942,7 +10646,7 @@ entities: 2: 43748 -7,16: 0: 29467 - 4: 34816 + 7: 34816 -6,13: 2: 8949 -6,14: @@ -9952,12 +10656,12 @@ entities: 2: 14 -6,16: 0: 7 - 4: 65280 + 7: 65280 -5,14: 2: 39313 -5,16: 2: 15 - 4: 65280 + 7: 65280 -16,7: 0: 4095 -17,7: @@ -10022,7 +10726,8 @@ entities: 0: 247 2: 28672 -17,9: - 0: 187 + 0: 155 + 6: 32 2: 61440 -16,10: 2: 62837 @@ -10051,14 +10756,14 @@ entities: 2: 3759 -9,16: 0: 8 - 4: 65280 + 7: 65280 2: 3 -8,17: - 4: 3 + 7: 3 0: 56 2: 12032 -9,17: - 4: 15 + 7: 15 0: 240 2: 20224 -8,18: @@ -10068,23 +10773,23 @@ entities: -7,17: 0: 131 2: 12032 - 4: 8 + 7: 8 -7,18: 2: 47 -6,17: - 4: 15 + 7: 15 0: 240 2: 7936 -6,18: 2: 31 -5,17: - 4: 15 + 7: 15 0: 240 2: 40704 -5,18: 2: 159 -4,17: - 4: 7 + 7: 7 0: 112 2: 20224 -4,18: @@ -10093,20 +10798,20 @@ entities: 2: 20288 -11,16: 2: 4383 - 4: 52224 + 7: 52224 -10,15: 2: 12064 -10,16: 2: 15 - 4: 65280 + 7: 65280 -11,17: 2: 12049 - 4: 12 + 7: 12 0: 192 -11,18: 2: 47 -10,17: - 4: 15 + 7: 15 0: 240 2: 40704 -10,18: @@ -10240,6 +10945,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -10255,6 +10990,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -10301,7 +11051,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.1495 moles: - 20.078888 - 75.53487 @@ -10316,12 +11066,12 @@ entities: - 0 - 0 - volume: 2500 - temperature: 5000 + temperature: 293.15 moles: - - 6666.982 + - 21.823984 + - 82.09976 - 0 - 0 - - 6666.982 - 0 - 0 - 0 @@ -10331,12 +11081,12 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 5000 moles: - - 21.823984 - - 82.09976 + - 6666.982 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -11741,8 +12491,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 + - 23.57087 + - 88.67137 - 0 - 0 - 0 @@ -12009,11 +12759,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 2 - - type: DeviceList - devices: - - 10455 - - 12474 - - 12468 - uid: 2601 components: - type: Transform @@ -13512,10 +14257,10 @@ entities: - type: Transform pos: -70.5,33.5 parent: 2 - - uid: 13107 + - uid: 12945 components: - type: Transform - pos: -14.5,-31.5 + pos: -15.5,-32.5 parent: 2 - uid: 16462 components: @@ -15262,6 +16007,12 @@ entities: - type: Transform pos: 7.5,31.5 parent: 2 + - uid: 20147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 4425 @@ -18623,6 +19374,39 @@ entities: - type: Transform pos: -68.5,37.5 parent: 2 +- proto: Barricade + entities: + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 20238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 20239 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 - proto: BarSign entities: - uid: 3856 @@ -18662,10 +19446,9 @@ entities: - uid: 19887 components: - type: Transform - parent: 19884 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 3.141592653589793 rad + pos: 43.500015,16.100006 + parent: 19854 - proto: BeachBall entities: - uid: 2020 @@ -19272,6 +20055,20 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-6.5 parent: 17590 +- proto: BigBox + entities: + - uid: 8097 + components: + - type: Transform + pos: 7.302573,23.678663 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15777 - proto: BikeHorn entities: - uid: 1074 @@ -20175,7 +20972,9 @@ entities: desc: Дорогостоящая на вид папка, на лицевой стороне которой золотом выложены буквы - SLMG, а ниже подписано - "СОВЕРШЕННО СЕКРЕТНО" name: папка SLMG - type: Transform - parent: 19884 + rot: 3.141592653589793 rad + pos: 43.500015,16.100006 + parent: 19854 - type: Storage storedItems: 20115: @@ -20200,10 +20999,7 @@ entities: - 20116 - 20117 - 20118 - - type: Physics - canCollide: False - type: ActiveUserInterface - - type: InsideEntityStorage - proto: BoxFolderClipboard entities: - uid: 2503 @@ -25372,11 +26168,6 @@ entities: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 9759 - components: - - type: Transform - pos: -21.5,4.5 - parent: 2 - uid: 9760 components: - type: Transform @@ -43053,6 +43844,13 @@ entities: - type: Transform pos: 40.5,-0.5 parent: 17590 +- proto: CandleBlackInfinite + entities: + - uid: 20520 + components: + - type: Transform + pos: -22.584225,-8.565655 + parent: 2 - proto: CandleInfinite entities: - uid: 4350 @@ -43094,6 +43892,79 @@ entities: - type: Transform pos: 51.791668,-5.4375 parent: 2 +- proto: CandyBowl + entities: + - uid: 20161 + components: + - type: Transform + pos: 15.58533,20.526688 + parent: 2 + - uid: 20168 + components: + - type: Transform + pos: 0.56398773,19.612595 + parent: 2 +- proto: CandyBucket + entities: + - uid: 272 + components: + - type: Transform + parent: 4035 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1216 + components: + - type: Transform + pos: -8.709016,-31.384527 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 6.405897,-7.3806944 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 9.533657,28.975372 + parent: 2 + - uid: 20167 + components: + - type: Transform + pos: 11.47336,21.55845 + parent: 2 + - uid: 20169 + components: + - type: Transform + pos: -8.356344,11.448624 + parent: 2 + - uid: 20718 + components: + - type: Transform + pos: 40.04314,-16.533838 + parent: 2 + - type: Item + heldPrefix: full + - type: Storage + storedItems: + 20719: + position: 0,0 + _rotation: South + 20720: + position: 1,0 + _rotation: South + 20721: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 20719 + - 20720 + - 20721 - proto: Cane entities: - uid: 252 @@ -43325,6 +44196,67 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-18.5 parent: 2 +- proto: CarvedPumpkin + entities: + - uid: 3819 + components: + - type: Transform + pos: -11.635615,-31.374949 + parent: 2 + - uid: 20597 + components: + - type: Transform + pos: -32.52591,40.151207 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: 22.520239,36.51613 + parent: 2 + - uid: 20680 + components: + - type: Transform + pos: 28.44,35.73488 + parent: 2 + - uid: 20704 + components: + - type: Transform + pos: 6.8660493,-14.193573 + parent: 2 + - uid: 20714 + components: + - type: Transform + pos: -31.583073,24.900478 + parent: 2 +- proto: CarvedPumpkinLarge + entities: + - uid: 20152 + components: + - type: Transform + pos: 11.975269,16.280214 + parent: 2 + - uid: 20568 + components: + - type: Transform + pos: -18.423664,26.6639 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 8310 + components: + - type: Transform + pos: -14.518166,-31.421824 + parent: 2 + - uid: 13107 + components: + - type: Transform + pos: -14.658791,-31.781199 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: 25.777697,24.60872 + parent: 2 - proto: Catwalk entities: - uid: 48 @@ -46521,6 +47453,36 @@ entities: - type: Transform pos: 35.5,-7.5 parent: 17590 + - uid: 20668 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 20669 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 20670 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 20672 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 - proto: CentcomComputerComms entities: - uid: 16877 @@ -47565,8 +48527,62 @@ entities: - type: Transform pos: 21.5,26.5 parent: 2 +- proto: ClosetCursed + entities: + - uid: 339 + components: + - type: MetaData + desc: Стандартное хранилище Nanotrasen. Он выглядит проклято. + - type: Transform + pos: 3.5,9.5 + parent: 2 + - type: PointLight + color: '#8B00FFFF' + radius: 1.5 - proto: ClosetEmergency entities: + - uid: 453 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 731 + - 744 + - 2873 + - 3039 + - 4486 + - 4606 + - 7038 + - 7964 + - 8001 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 1417 components: - type: Transform @@ -47707,11 +48723,6 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 14293 - components: - - type: Transform - pos: 3.5,9.5 - parent: 2 - uid: 14901 components: - type: Transform @@ -47732,11 +48743,6 @@ entities: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 16053 - components: - - type: Transform - pos: -19.5,18.5 - parent: 2 - uid: 16055 components: - type: Transform @@ -48049,11 +49055,71 @@ entities: - type: Transform pos: 5.5,33.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 74 + - 77 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 13073 components: - type: Transform pos: 5.5,32.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 88 + - 181 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ClosetMaintenance entities: - uid: 4087 @@ -48361,8 +49427,6 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - 0 - 0 - 0 @@ -48373,17 +49437,9 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19886 - - 19888 - - 19885 - - 19887 - - 19889 + - 0 + - 0 + open: True - proto: ClothingBackpackDuffelSyndicateEVABundle entities: - uid: 17526 @@ -48644,6 +49700,62 @@ entities: - 16979 - type: Physics canCollide: False + - uid: 20600 + components: + - type: Transform + parent: 20599 + - type: Physics + canCollide: False + - uid: 20603 + components: + - type: Transform + parent: 20602 + - type: Physics + canCollide: False + - uid: 20607 + components: + - type: Transform + parent: 20605 + - type: Physics + canCollide: False + - uid: 20620 + components: + - type: Transform + parent: 20618 + - type: Physics + canCollide: False + - uid: 20649 + components: + - type: Transform + parent: 20643 + - type: Physics + canCollide: False + - uid: 20662 + components: + - type: Transform + parent: 20661 + - type: Physics + canCollide: False +- proto: ClothingHeadHatPumpkin + entities: + - uid: 20566 + components: + - type: Transform + pos: -17.580437,10.780032 + parent: 2 +- proto: ClothingHeadHatRichard + entities: + - uid: 20517 + components: + - type: MetaData + desc: Голова знакомого робота... Нагоняет ужас на детей. + name: голова аниматроника + - type: Transform + pos: -21.911211,-8.214312 + parent: 2 + missingComponents: + - Clothing + - Food - proto: ClothingHeadHatUshanka entities: - uid: 6958 @@ -48668,6 +49780,36 @@ entities: rot: 1.5707963267948966 rad pos: -24.732569,63.14942 parent: 2 +- proto: ClothingHeadHatWitch + entities: + - uid: 88 + components: + - type: Transform + parent: 13073 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWitch1 + entities: + - uid: 74 + components: + - type: Transform + parent: 13070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3864 + components: + - type: Transform + parent: 14008 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20722 + components: + - type: Transform + pos: -20.693447,-5.3365 + parent: 2 - proto: ClothingHeadHelmetEVA entities: - uid: 15673 @@ -48698,6 +49840,14 @@ entities: ent: 2023 - type: AttachedClothing attachedUid: 2021 +- proto: ClothingHeadHelmetSwatSyndicate + entities: + - uid: 501 + components: + - type: Transform + parent: 407 + - type: Physics + canCollide: False - proto: ClothingHeadRastaHat entities: - uid: 4816 @@ -48716,6 +49866,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingMaskBear + entities: + - uid: 20139 + components: + - type: MetaData + desc: Голова знакомого робота... Нагоняет ужас на детей. + name: голова аниматроника + - type: Transform + pos: -22.34098,-8.160559 + parent: 2 + missingComponents: + - Clothing - proto: ClothingMaskBreath entities: - uid: 8049 @@ -48744,8 +49906,26 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingMaskFox + entities: + - uid: 20516 + components: + - type: MetaData + desc: Голова знакомого робота... Нагоняет ужас на детей. + name: голова аниматроника + - type: Transform + pos: -22.817022,-8.211487 + parent: 2 + missingComponents: + - Clothing - proto: ClothingMaskGas entities: + - uid: 498 + components: + - type: Transform + parent: 407 + - type: Physics + canCollide: False - uid: 16360 components: - type: Transform @@ -48890,6 +50070,13 @@ entities: - type: InsideEntityStorage - proto: ClothingNeckCloakTrans entities: + - uid: 3833 + components: + - type: Transform + parent: 17 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17417 components: - type: Transform @@ -48992,6 +50179,89 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterGhostSheet + entities: + - uid: 54 + components: + - type: Transform + parent: 3129 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1167 + components: + - type: Transform + pos: -0.44083452,-21.30204 + parent: 2 + - uid: 1308 + components: + - type: Transform + parent: 1307 + - type: Physics + canCollide: False + - uid: 2167 + components: + - type: Transform + pos: 46.468327,-10.447991 + parent: 2 + - uid: 2170 + components: + - type: Transform + parent: 2169 + - type: Physics + canCollide: False + - uid: 2201 + components: + - type: Transform + parent: 2200 + - type: Physics + canCollide: False + - uid: 3868 + components: + - type: Transform + pos: 10.481482,17.506025 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: 10.465857,15.599775 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: 10.590857,14.6154 + parent: 2 + - uid: 20177 + components: + - type: Transform + pos: 5.7255945,-3.410612 + parent: 2 + - uid: 20337 + components: + - type: Transform + pos: -69.65225,36.574593 + parent: 2 + - uid: 20563 + components: + - type: MetaData + desc: Она одержима... Лучше вам её не надевать. + - type: Transform + pos: -14.565063,13.495493 + parent: 2 + - type: CollisionWake + enabled: False + - type: RandomWalk + - type: CursedMask + oldFactions: [] + despairDamageModifier: + flatReductions: {} + coefficients: {} + joySpeedModifier: 2 + - uid: 20576 + components: + - type: Transform + pos: -1.449388,24.128185 + parent: 2 - proto: ClothingOuterHardsuitBasic entities: - uid: 16361 @@ -49099,6 +50369,41 @@ entities: - type: Transform pos: 28.376303,31.554049 parent: 2 +- proto: ClothingOuterHardsuitJuggernaut + entities: + - uid: 467 + components: + - type: MetaData + desc: Картонный костюм, который нагоняет ужас на сотрудников службы безопасности. + name: потешный костюм джаггернаута Cybersun + - type: Transform + parent: 407 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Понижает вашу скорость бега на [color=yellow]35%[/color]. + + Понижает вашу скорость ходьбы на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null + - type: Physics + canCollide: False + - type: Geiger + isEnabled: True + - type: RadiationReceiver + missingComponents: + - PressureProtection + - Armor + - TemperatureProtection + - Contraband - proto: ClothingOuterHardsuitMaxim entities: - uid: 18292 @@ -49178,6 +50483,22 @@ entities: - type: Transform pos: 49.68695,-21.267414 parent: 2 +- proto: ClothingOuterSuitBomb + entities: + - uid: 1678 + components: + - type: Transform + parent: 1540 + - type: Physics + canCollide: False +- proto: ClothingOuterSuitCarp + entities: + - uid: 1230 + components: + - type: Transform + parent: 1221 + - type: Physics + canCollide: False - proto: ClothingOuterSuitEmergency entities: - uid: 2021 @@ -49224,6 +50545,44 @@ entities: - type: Transform pos: -30.533913,61.068794 parent: 2 +- proto: ClothingOuterSuitIan + entities: + - uid: 1191 + components: + - type: Transform + parent: 1190 + - type: Physics + canCollide: False +- proto: ClothingOuterSuitWitchRobes + entities: + - uid: 77 + components: + - type: Transform + parent: 13070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 181 + components: + - type: Transform + parent: 13073 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3863 + components: + - type: Transform + parent: 12443 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3865 + components: + - type: Transform + parent: 14008 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterVestHazard entities: - uid: 8149 @@ -49481,6 +50840,159 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 20154 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 20157 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 20173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - uid: 20174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - uid: 20182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 2 + - uid: 20209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-39.5 + parent: 2 + - uid: 20210 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 20211 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 20212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 2 + - uid: 20220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-32.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,37.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,35.5 + parent: 2 + - uid: 20583 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 20585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,40.5 + parent: 2 + - uid: 20586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,36.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 20153 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - uid: 20186 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 20187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 20213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-39.5 + parent: 2 + - uid: 20221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,28.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,33.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,30.5 + parent: 2 - proto: CockroachTimedSpawner entities: - uid: 2685 @@ -50291,6 +51803,31 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateCoffin + entities: + - uid: 2195 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateCommandSecure entities: - uid: 15749 @@ -50882,8 +52419,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -50900,14 +52437,14 @@ entities: showEnts: False occludes: True ents: - - 17422 - - 17421 - - 17420 - - 17419 - - 17418 - - 17417 - - 17416 - 17415 + - 17416 + - 17417 + - 17418 + - 17419 + - 17420 + - 17421 + - 17422 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -50969,6 +52506,35 @@ entities: - type: Transform pos: 10.5,-23.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 248 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateMedical entities: - uid: 1138 @@ -51074,8 +52640,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -51092,8 +52658,8 @@ entities: showEnts: False occludes: True ents: - - 955 - 5027 + - 955 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -51112,8 +52678,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -51150,8 +52716,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -51168,8 +52734,8 @@ entities: showEnts: False occludes: True ents: - - 1089 - 6376 + - 1089 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -51188,8 +52754,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -51206,8 +52772,8 @@ entities: showEnts: False occludes: True ents: - - 1823 - 7589 + - 1823 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -51532,6 +53098,11 @@ entities: - type: Transform pos: 23.5,36.5 parent: 2 + - uid: 12468 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 - uid: 13090 components: - type: Transform @@ -51642,11 +53213,6 @@ entities: - type: Transform pos: -16.5,43.5 parent: 2 - - uid: 17118 - components: - - type: Transform - pos: -6.5,21.5 - parent: 2 - uid: 17119 components: - type: Transform @@ -51928,10 +53494,25 @@ entities: parent: 2 - proto: CyborgEndoskeleton entities: - - uid: 744 + - uid: 2180 + components: + - type: Transform + pos: -5.5112,-14.312981 + parent: 2 + - uid: 19950 + components: + - type: Transform + pos: -22.33669,-8.566164 + parent: 2 + - uid: 20514 + components: + - type: Transform + pos: -21.882986,-8.570793 + parent: 2 + - uid: 20515 components: - type: Transform - pos: -22.345272,-8.254836 + pos: -22.808912,-8.543016 parent: 2 - proto: DefaultStationBeaconAI entities: @@ -56824,6 +58405,43 @@ entities: - type: Transform pos: -13.139608,2.62313 parent: 2 +- proto: DrinkBloodGlass + entities: + - uid: 1296 + components: + - type: Transform + pos: 9.815191,-7.1464376 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 7.1251564,-7.3561974 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 15.670509,20.162655 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: 15.295509,19.225155 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: 15.545509,18.27203 + parent: 2 + - uid: 20712 + components: + - type: Transform + pos: 8.363507,-14.436972 + parent: 2 + - uid: 20713 + components: + - type: Transform + pos: 8.707257,-14.452597 + parent: 2 - proto: DrinkBottleNTCahors entities: - uid: 17655 @@ -56898,6 +58516,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkBottlePoisonWine + entities: + - uid: 10455 + components: + - type: Transform + pos: 42.669155,34.79901 + parent: 2 - proto: DrinkBottleVodka entities: - uid: 1813 @@ -56917,6 +58542,18 @@ entities: - type: Transform pos: -4.223711,-21.314926 parent: 2 +- proto: DrinkChocolateGlass + entities: + - uid: 20691 + components: + - type: Transform + pos: 11.171124,12.672226 + parent: 2 + - uid: 20692 + components: + - type: Transform + pos: 17.749249,11.609726 + parent: 2 - proto: DrinkColaCanEmpty entities: - uid: 1814 @@ -56941,11 +58578,21 @@ entities: parent: 2 - proto: DrinkDemonsBlood entities: + - uid: 289 + components: + - type: Transform + pos: -3.1802673,-4.8349504 + parent: 2 - uid: 4302 components: - type: Transform pos: -13.469521,41.46762 parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 15.664024,17.43143 + parent: 2 - proto: DrinkFlask entities: - uid: 5979 @@ -56967,6 +58614,13 @@ entities: - type: Transform pos: 14.519714,-9.727783 parent: 17590 +- proto: DrinkHotCoco + entities: + - uid: 7723 + components: + - type: Transform + pos: 15.460899,19.65018 + parent: 2 - proto: DrinkHotCoffee entities: - uid: 5298 @@ -56984,11 +58638,6 @@ entities: - type: Transform pos: 22.398764,10.600338 parent: 16200 - - uid: 17466 - components: - - type: Transform - pos: 9.764116,-7.276245 - parent: 2 - proto: DrinkMugOne entities: - uid: 993 @@ -57015,6 +58664,13 @@ entities: - type: Transform pos: 6.308816,20.682928 parent: 2 +- proto: DrinkPoisonWineGlass + entities: + - uid: 20666 + components: + - type: Transform + pos: 42.325405,34.58026 + parent: 2 - proto: DrinkShotGlass entities: - uid: 4682 @@ -57510,6 +59166,15 @@ entities: anchored: False pos: 20.500244,8.5 parent: 16200 + - uid: 20178 + components: + - type: MetaData + name: одноразовый маркер спавна скелета по сигналу + - type: Transform + pos: -44.5,37.5 + parent: 2 + - type: SpawnOnTrigger + proto: MobSkeletonBiker - proto: ERTSpawnerJanitor entities: - uid: 4079 @@ -57703,6 +59368,43 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,11.5 parent: 2 +- proto: EZNutrientChemistryBottle + entities: + - uid: 401 + components: + - type: Transform + pos: 9.912917,28.95573 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 9.819167,28.92448 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 9.803542,28.95573 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 9.803542,28.92448 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 9.834792,29.002605 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 9.897292,29.04948 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 9.866042,28.940105 + parent: 2 - proto: FaxMachineBase entities: - uid: 1431 @@ -60802,6 +62504,24 @@ entities: - type: Transform pos: 23.5,17.5 parent: 19951 + - uid: 20499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 2 - proto: FleshKudzu entities: - uid: 6392 @@ -61029,6 +62749,20 @@ entities: rot: 3.141592653589793 rad pos: -27.34146,4.607547 parent: 2 +- proto: FoodBakedPancakeCc + entities: + - uid: 20694 + components: + - type: Transform + pos: 9.600296,21.446852 + parent: 2 +- proto: FoodBluePumpkin + entities: + - uid: 20681 + components: + - type: Transform + pos: 26.520794,32.41767 + parent: 2 - proto: FoodBowlBig entities: - uid: 18330 @@ -61163,6 +62897,27 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodCakeChocolateSlice + entities: + - uid: 20693 + components: + - type: Transform + pos: 20.484335,12.540238 + parent: 2 +- proto: FoodCakePumpkin + entities: + - uid: 20164 + components: + - type: Transform + pos: 11.474073,20.745821 + parent: 2 +- proto: FoodCakePumpkinSlice + entities: + - uid: 20163 + components: + - type: Transform + pos: 9.464266,21.651253 + parent: 2 - proto: FoodCannabisButter entities: - uid: 4823 @@ -61172,6 +62927,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodDonutBluePumpkin + entities: + - uid: 20165 + components: + - type: Transform + pos: 17.477528,11.822919 + parent: 2 + - uid: 20166 + components: + - type: Transform + pos: 17.368153,11.807294 + parent: 2 - proto: FoodGoldenApple entities: - uid: 19433 @@ -61346,6 +63113,288 @@ entities: - type: Transform pos: -41.17245,43.34008 parent: 2 +- proto: FoodPumpkin + entities: + - uid: 2163 + components: + - type: Transform + pos: -17.56756,-31.687449 + parent: 2 + - uid: 20596 + components: + - type: Transform + pos: 9.758304,29.960201 + parent: 2 + - uid: 20598 + components: + - type: Transform + pos: 9.742679,29.335201 + parent: 2 + - uid: 20601 + components: + - type: Transform + pos: 9.727054,28.507076 + parent: 2 + - uid: 20604 + components: + - type: Transform + pos: 9.680179,27.647701 + parent: 2 + - uid: 20606 + components: + - type: Transform + pos: 9.648929,26.835201 + parent: 2 + - uid: 20608 + components: + - type: Transform + pos: 9.648929,25.772701 + parent: 2 + - uid: 20609 + components: + - type: Transform + pos: 9.633304,25.491451 + parent: 2 + - uid: 20610 + components: + - type: Transform + pos: 12.336429,27.350826 + parent: 2 + - uid: 20611 + components: + - type: Transform + pos: 12.336429,27.397701 + parent: 2 + - uid: 20612 + components: + - type: Transform + pos: 12.336429,27.709274 + parent: 2 + - uid: 20613 + components: + - type: Transform + pos: 12.336429,28.31942 + parent: 2 + - uid: 20614 + components: + - type: Transform + pos: 12.336429,28.502966 + parent: 2 + - uid: 20615 + components: + - type: Transform + pos: 12.320804,29.034216 + parent: 2 + - uid: 20616 + components: + - type: Transform + pos: 12.320804,29.471716 + parent: 2 + - uid: 20617 + components: + - type: Transform + pos: 12.320804,29.752966 + parent: 2 + - uid: 20619 + components: + - type: Transform + pos: 11.753258,28.93739 + parent: 2 + - uid: 20621 + components: + - type: Transform + pos: 10.956383,29.56239 + parent: 2 + - uid: 20622 + components: + - type: Transform + pos: 10.737633,28.78114 + parent: 2 + - uid: 20623 + components: + - type: Transform + pos: 10.753258,28.359264 + parent: 2 + - uid: 20624 + components: + - type: Transform + pos: 11.159508,28.234264 + parent: 2 + - uid: 20625 + components: + - type: Transform + pos: 11.425133,28.296764 + parent: 2 + - uid: 20626 + components: + - type: Transform + pos: 11.581383,27.578014 + parent: 2 + - uid: 20627 + components: + - type: Transform + pos: 11.222008,26.828014 + parent: 2 + - uid: 20628 + components: + - type: Transform + pos: 10.690758,26.84364 + parent: 2 + - uid: 20629 + components: + - type: Transform + pos: 10.472008,27.65614 + parent: 2 + - uid: 20630 + components: + - type: Transform + pos: 10.253258,27.421764 + parent: 2 + - uid: 20631 + components: + - type: Transform + pos: 10.268883,26.703014 + parent: 2 + - uid: 20632 + components: + - type: Transform + pos: 10.331383,26.234264 + parent: 2 + - uid: 20633 + components: + - type: Transform + pos: 10.518883,25.578014 + parent: 2 + - uid: 20634 + components: + - type: Transform + pos: 11.550133,26.171764 + parent: 2 + - uid: 20635 + components: + - type: Transform + pos: 12.222008,26.578014 + parent: 2 + - uid: 20636 + components: + - type: Transform + pos: 12.347008,27.06239 + parent: 2 + - uid: 20637 + components: + - type: Transform + pos: 11.800133,27.24989 + parent: 2 + - uid: 20638 + components: + - type: Transform + pos: 11.081383,27.296764 + parent: 2 + - uid: 20639 + components: + - type: Transform + pos: 10.800133,27.37489 + parent: 2 + - uid: 20640 + components: + - type: Transform + pos: 10.675133,27.859264 + parent: 2 + - uid: 20641 + components: + - type: Transform + pos: 10.518883,28.265514 + parent: 2 + - uid: 20642 + components: + - type: Transform + pos: 10.253258,28.359264 + parent: 2 + - uid: 20644 + components: + - type: Transform + pos: 10.222008,29.359264 + parent: 2 + - uid: 20645 + components: + - type: Transform + pos: 10.565758,29.859264 + parent: 2 + - uid: 20646 + components: + - type: Transform + pos: 11.018883,30.12489 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: 11.706383,30.37489 + parent: 2 + - uid: 20648 + components: + - type: Transform + pos: 12.003258,29.87489 + parent: 2 + - uid: 20650 + components: + - type: Transform + pos: 6.5495796,20.614456 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: 9.302166,30.25274 + parent: 2 + - uid: 20652 + components: + - type: Transform + pos: 0.45733833,20.306166 + parent: 2 + - uid: 20653 + components: + - type: Transform + pos: 10.317791,30.612116 + parent: 2 + - uid: 20654 + components: + - type: Transform + pos: 11.130291,30.737116 + parent: 2 + - uid: 20655 + components: + - type: Transform + pos: 1.3479633,26.566603 + parent: 2 + - uid: 20656 + components: + - type: Transform + pos: 12.739666,30.47149 + parent: 2 + - uid: 20657 + components: + - type: Transform + pos: 11.630291,28.28399 + parent: 2 + - uid: 20658 + components: + - type: Transform + pos: 11.286541,28.737116 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: 11.395908,27.915922 + parent: 2 + - uid: 20682 + components: + - type: Transform + pos: 23.519209,29.432108 + parent: 2 + - uid: 20687 + components: + - type: Transform + pos: 15.457487,7.6449156 + parent: 2 - proto: FoodRicePudding entities: - uid: 4873 @@ -61369,6 +63418,64 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodSnackChocolate + entities: + - uid: 20689 + components: + - type: Transform + pos: 27.454756,6.688447 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: 27.517256,6.688447 + parent: 2 + - uid: 20719 + components: + - type: Transform + parent: 20718 + - type: Physics + canCollide: False + - uid: 20720 + components: + - type: Transform + parent: 20718 + - type: Physics + canCollide: False + - uid: 20721 + components: + - type: Transform + parent: 20718 + - type: Physics + canCollide: False +- proto: FoodSnackChocolateBar + entities: + - uid: 1170 + components: + - type: Transform + pos: 0.67970276,-31.900152 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: -8.427766,-31.353277 + parent: 2 + - uid: 3121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.142679,-7.486946 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: 15.664024,17.197056 + parent: 2 + - uid: 13379 + components: + - type: Transform + pos: 15.679649,17.165806 + parent: 2 - proto: FoodSnackSemki entities: - uid: 17170 @@ -61537,16 +63644,6 @@ entities: - type: Transform pos: 6.5,-12.5 parent: 17590 -- proto: GasFilter - entities: - - uid: 2180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - proto: GasFilterFlipped entities: - uid: 4726 @@ -61622,74 +63719,14 @@ entities: targetPressure: 250 - proto: GasOutletInjector entities: - - uid: 24 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-31.5 - parent: 2 - - uid: 54 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 2 - - uid: 74 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 2 - - uid: 77 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 2 - - uid: 88 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 2 - uid: 475 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-8.5 parent: 2 - - uid: 14916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 2 - proto: GasPassiveVent entities: - - uid: 269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-31.5 - parent: 2 - - uid: 272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-32.5 - parent: 2 - - uid: 289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-31.5 - parent: 2 - - uid: 2171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-32.5 - parent: 2 - uid: 2616 components: - type: Transform @@ -61725,12 +63762,6 @@ entities: - type: Transform pos: -13.5,1.5 parent: 2 - - uid: 14912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-31.5 - parent: 2 - uid: 18344 components: - type: Transform @@ -61808,12 +63839,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 2 - uid: 1347 components: - type: Transform @@ -61830,30 +63855,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 2 - - uid: 2169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 2 - - uid: 2170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 2 - uid: 2615 components: - type: Transform @@ -62394,12 +64395,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 2 - uid: 13442 components: - type: Transform @@ -63511,24 +65506,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 2 - - uid: 501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-30.5 - parent: 2 - - uid: 502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-30.5 - parent: 2 - uid: 587 components: - type: Transform @@ -63607,35 +65584,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-30.5 - parent: 2 - - uid: 2163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-31.5 - parent: 2 - - uid: 2164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-30.5 - parent: 2 - - uid: 2165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-31.5 - parent: 2 - - uid: 2167 + - uid: 2168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 + pos: -11.5,-30.5 parent: 2 - uid: 2187 components: @@ -63656,32 +65608,7 @@ entities: - uid: 2196 components: - type: Transform - pos: -16.5,-30.5 - parent: 2 - - uid: 2197 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 2 - - uid: 2201 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: -15.5,-30.5 + pos: -14.5,-30.5 parent: 2 - uid: 2276 components: @@ -63721,6 +65648,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 2480 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 - uid: 2571 components: - type: Transform @@ -63819,16 +65751,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3735 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 2 - - uid: 3736 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 2 - uid: 3740 components: - type: Transform @@ -65901,12 +67823,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-30.5 - parent: 2 - uid: 12400 components: - type: Transform @@ -69801,17 +71717,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13381 - components: - - type: Transform - pos: 2.5,-31.5 - parent: 2 - - uid: 13385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 2 - uid: 13436 components: - type: Transform @@ -72827,11 +74732,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14283 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 2 - uid: 14306 components: - type: Transform @@ -73561,12 +75461,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-30.5 - parent: 2 - uid: 16031 components: - type: Transform @@ -75892,18 +77786,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-26.5 - parent: 2 - - uid: 1678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-26.5 - parent: 2 - uid: 1753 components: - type: Transform @@ -75978,12 +77860,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 3751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 2 - uid: 3935 components: - type: Transform @@ -76670,18 +78546,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-32.5 - parent: 2 - - uid: 12333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 2 - uid: 12492 components: - type: Transform @@ -78009,31 +79873,11 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-8.5 parent: 2 - - uid: 1296 - components: - - type: Transform - pos: -5.5,-25.5 - parent: 2 - - uid: 1297 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 2 - uid: 2609 components: - type: Transform pos: -24.5,-12.5 parent: 2 - - uid: 3745 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 2 - - uid: 3747 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 2 - uid: 16612 components: - type: Transform @@ -78054,59 +79898,6 @@ entities: parent: 17590 - proto: GasPressurePump entities: - - uid: 181 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 2 - - uid: 573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-29.5 - parent: 2 - - uid: 691 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 2 - - uid: 761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-29.5 - parent: 2 - - uid: 1995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2160 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 2 - - uid: 2161 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 2 - - uid: 2178 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 - parent: 2 - uid: 2612 components: - type: Transform @@ -78117,12 +79908,6 @@ entities: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 3228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 2 - uid: 4724 components: - type: MetaData @@ -78143,18 +79928,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 2 - - uid: 15597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-29.5 - parent: 2 - uid: 16615 components: - type: Transform @@ -79890,12 +81663,6 @@ entities: - 14737 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-31.5 - parent: 2 - uid: 12057 components: - type: Transform @@ -80062,18 +81829,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 2 - - uid: 12474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 2 - uid: 12493 components: - type: Transform @@ -81391,12 +83146,6 @@ entities: color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 1308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 2 - uid: 2610 components: - type: Transform @@ -88760,6 +90509,26 @@ entities: parent: 2 - proto: HeadSkeleton entities: + - uid: 11693 + components: + - type: MetaData + desc: Бедный атмос... + - type: Transform + pos: -0.5162983,-25.534357 + parent: 2 + - type: MindContainer + - type: InputMover + - type: MobMover + - type: MovementSpeedModifier + - type: GhostRole + rules: >- + Вы не помните ничего из своей предыдущей жизни, если администратор не сказал вам обратное. + Вы не помните ничего из своей предыдущей жизни и не помните ничего из того, что узнали, будучи призраком. + Вам разрешается помнить знания об игре в целом, например, как готовить, как использовать предметы и т.д. + Вам [color=red]НЕ[/color] разрешается помнить, имя, внешность и т.д. вашего предыдущего персонажа. + description: "" + name: череп атмоса + - type: GhostTakeoverAvailable - uid: 17530 components: - type: Transform @@ -88918,66 +90687,68 @@ entities: parent: 2 - proto: hydroponicsTray entities: - - uid: 2932 + - uid: 3328 components: - type: Transform - pos: 12.5,29.5 + pos: 48.5,-15.5 parent: 2 - - uid: 2946 + - uid: 3671 components: - type: Transform - pos: 12.5,30.5 + rot: 1.5707963267948966 rad + pos: 47.5,-15.5 parent: 2 - - uid: 2975 +- proto: HydroponicsTrayEmpty + entities: + - uid: 962 components: - type: Transform - pos: 9.5,30.5 + pos: 9.5,26.5 parent: 2 - - uid: 3328 + - uid: 3161 components: - type: Transform - pos: 48.5,-15.5 + pos: 9.5,27.5 parent: 2 - - uid: 3671 + - uid: 3208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 + pos: 9.5,30.5 parent: 2 - - uid: 7723 + - uid: 3228 components: - type: Transform - pos: 12.5,28.5 + pos: 9.5,25.5 parent: 2 - - uid: 8363 + - uid: 3636 components: - type: Transform - pos: 9.5,29.5 + pos: 9.5,28.5 parent: 2 - - uid: 11777 + - uid: 3735 components: - type: Transform - pos: 9.5,27.5 + pos: 12.5,27.5 parent: 2 - - uid: 12352 + - uid: 3736 components: - type: Transform - pos: 12.5,27.5 + pos: 12.5,30.5 parent: 2 - - uid: 12945 + - uid: 3745 components: - type: Transform - pos: 9.5,25.5 + pos: 9.5,29.5 parent: 2 - - uid: 14562 + - uid: 3751 components: - type: Transform - pos: 9.5,28.5 + pos: 12.5,29.5 parent: 2 - - uid: 15905 + - uid: 3818 components: - type: Transform - pos: 9.5,26.5 + pos: 12.5,28.5 parent: 2 - proto: IceCrust entities: @@ -89265,6 +91036,12 @@ entities: - type: Transform pos: 15.5,34.5 parent: 2 + - uid: 20678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 - proto: IngotGold1 entities: - uid: 955 @@ -89656,6 +91433,70 @@ entities: - type: Transform pos: -22.290253,-7.2703614 parent: 2 +- proto: LeftArmSkeleton + entities: + - uid: 3039 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17476 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeftFootSkeleton + entities: + - uid: 7038 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16053 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeftHandSkeleton + entities: + - uid: 744 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14293 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeftLegSkeleton + entities: + - uid: 731 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16122 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: LightBulb entities: - uid: 1413 @@ -89716,22 +91557,22 @@ entities: - type: Transform pos: -5.5,-31.5 parent: 2 - - uid: 13378 + - uid: 3820 components: - type: Transform - pos: -8.5,-31.5 + pos: -9.5,-32.5 parent: 2 - proto: LiquidOxygenCanister entities: - - uid: 302 + - uid: 24 components: - type: Transform - pos: -5.5,-32.5 + pos: -12.5,-32.5 parent: 2 - - uid: 13372 + - uid: 302 components: - type: Transform - pos: -11.5,-31.5 + pos: -5.5,-32.5 parent: 2 - proto: LiveLetLiveCircuitBoard entities: @@ -90215,6 +92056,35 @@ entities: - type: Transform pos: 0.5,-9.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3833 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerChemistryFilled entities: - uid: 4613 @@ -90822,8 +92692,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -90840,10 +92710,11 @@ entities: showEnts: False occludes: True ents: - - 4036 - - 4037 - - 4042 - 4045 + - 4042 + - 4037 + - 4036 + - 272 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -90957,8 +92828,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -90974,11 +92845,70 @@ entities: - type: Transform pos: -21.5,-7.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3863 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 14008 components: - type: Transform pos: -13.5,-5.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3864 + - 3865 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerScientist entities: - uid: 3713 @@ -90994,8 +92924,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -91012,8 +92942,8 @@ entities: showEnts: False occludes: True ents: - - 1074 - 1067 + - 1074 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -91200,8 +93130,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -91218,8 +93148,17 @@ entities: showEnts: False occludes: True ents: - - 35 - 7821 + - 17476 + - 16141 + - 16122 + - 16053 + - 14293 + - 13731 + - 12448 + - 12434 + - 35 + - 9759 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -91403,11 +93342,6 @@ entities: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 2480 - components: - - type: Transform - pos: -12.5,20.5 - parent: 2 - uid: 2552 components: - type: Transform @@ -91476,6 +93410,11 @@ entities: - type: Transform pos: -12.5,3.5 parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 - uid: 6536 components: - type: MetaData @@ -91659,6 +93598,280 @@ entities: parent: 2 - proto: Mannequin entities: + - uid: 407 + components: + - type: Transform + rot: 4.71238898038469 rad + pos: 32.5,-19.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 467 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 498 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 501 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 1190 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1191 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 1221 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1230 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 1307 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1308 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 1540 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1678 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 2169 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 2170 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 2200 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 2201 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - uid: 7837 components: - type: MetaData @@ -91703,6 +93916,282 @@ entities: occludes: False ent: null - type: ActiveRadioJammer + - uid: 20599 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 20600 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 20602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 20603 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 20605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 20607 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 20618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 20620 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 20643 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 20649 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + missingComponents: + - Destructible + - uid: 20661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 20662 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 20665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,32.5 + parent: 2 + - uid: 20667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 + - uid: 20674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,34.5 + parent: 2 + - uid: 20675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,33.5 + parent: 2 + - uid: 20676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 2 + - uid: 20677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,32.5 + parent: 2 - proto: Matchbox entities: - uid: 17182 @@ -91785,6 +94274,11 @@ entities: parent: 2 - proto: MaterialWebSilk1 entities: + - uid: 2178 + components: + - type: Transform + pos: 8.728248,-7.300887 + parent: 2 - uid: 17244 components: - type: Transform @@ -91840,6 +94334,69 @@ entities: - type: Transform pos: -15.237421,53.576645 parent: 2 + - uid: 20414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.41169,35.700912 + parent: 2 + - uid: 20415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.614815,35.591537 + parent: 2 + - uid: 20416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.489815,35.513412 + parent: 2 + - uid: 20417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.302315,35.466537 + parent: 2 + - uid: 20418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.630439,35.747787 + parent: 2 + - uid: 20419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.708564,35.669662 + parent: 2 + - uid: 20420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.708564,35.622787 + parent: 2 + - uid: 20421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.583564,35.669662 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: -0.5962515,-14.271698 + parent: 2 + - uid: 20706 + components: + - type: Transform + pos: -0.4556265,-14.271698 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: -0.6431265,-14.412323 + parent: 2 - proto: Mattress entities: - uid: 404 @@ -92124,6 +94681,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: MicrophoneInstrument + entities: + - uid: 20518 + components: + - type: Transform + pos: -22.296488,-8.642043 + parent: 2 - proto: Mirror entities: - uid: 4003 @@ -92500,6 +95064,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: PaintingSkeletonBoof + entities: + - uid: 20577 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 20578 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 - proto: PaladinCircuitBoard entities: - uid: 15770 @@ -92524,6 +95102,16 @@ entities: content: >+ На систему отвода жидкости денег не хватило, используйте тряпку для уборки крови и прочих биологических отходов. + - uid: 564 + components: + - type: Transform + pos: 10.237588,28.929125 + parent: 2 + - type: Paper + content: >2- + + + [head=1] С ТЫКВЕННЫМ СПАСОМ! - uid: 960 components: - type: Transform @@ -92996,7 +95584,9 @@ entities: - type: MetaData name: отчёт о выполнении цели - type: Transform - parent: 19884 + rot: 3.141592653589793 rad + pos: 43.500015,16.100006 + parent: 19854 - type: Paper stampState: paper_stamp-syndicate stampedBy: @@ -93034,9 +95624,6 @@ entities: - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PaperArtifactAnalyzer entities: - uid: 3722 @@ -93235,7 +95822,7 @@ entities: - uid: 5816 components: - type: Transform - pos: -3.5031853,-4.992716 + pos: -3.5,-5.5 parent: 2 - type: Paper stampState: paper_stamp-centcom @@ -93271,7 +95858,7 @@ entities: - uid: 6553 components: - type: Transform - pos: -20.493702,-4.6622486 + pos: -20.5,-4.5 parent: 2 - type: Paper stampState: paper_stamp-centcom @@ -93946,6 +96533,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,17.5 parent: 2 + - uid: 20493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 - proto: PillCanister entities: - uid: 483 @@ -94006,14 +96599,12 @@ entities: desc: "GPS навигатор, который ведёт к какому-то объекту на орибтальной территории станции. Этот указывает на [ERRO] Mapsel: The target name cannot be deciphered. Please install software version 'S.L.M.G.'" name: навигатор - type: Transform - parent: 19884 + pos: 42.541977,16.380524 + parent: 19854 - type: Pinpointer targetName: SHADOW LIZARD MONEY GANG closeDistance: 100 mediumDistance: 300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PlasmaCanister entities: - uid: 290 @@ -94333,6 +96924,29 @@ entities: - type: Transform pos: -35.5,-38.5 parent: 2 +- proto: PlushieGhost + entities: + - uid: 20142 + components: + - type: Transform + pos: -22.091259,-2.6608524 + parent: 2 + - uid: 20176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.606126,15.820204 + parent: 2 + - uid: 20179 + components: + - type: Transform + pos: 10.494364,-3.394987 + parent: 2 + - uid: 20717 + components: + - type: Transform + pos: 43.530388,-10.838501 + parent: 2 - proto: PlushieLizard entities: - uid: 2071 @@ -95236,12 +97850,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-28.5 parent: 2 - - uid: 453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,18.5 - parent: 2 - uid: 545 components: - type: Transform @@ -95515,12 +98123,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,6.5 parent: 2 - - uid: 2873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 - parent: 2 - uid: 2876 components: - type: Transform @@ -95708,11 +98310,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 - - uid: 7964 - components: - - type: Transform - pos: 7.5,17.5 - parent: 2 - uid: 7965 components: - type: Transform @@ -95801,12 +98398,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,24.5 parent: 2 - - uid: 8001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,11.5 - parent: 2 - uid: 8004 components: - type: Transform @@ -96054,11 +98645,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 2 - - uid: 13731 - components: - - type: Transform - pos: 0.5,9.5 - parent: 2 - uid: 14065 components: - type: Transform @@ -96282,6 +98868,29 @@ entities: rot: 3.141592653589793 rad pos: -27.5,4.5 parent: 2 + - uid: 20119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 20158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 2 - proto: PoweredlightExterior entities: - uid: 2796 @@ -96290,6 +98899,19 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-23.5 parent: 2 +- proto: PoweredlightOrange + entities: + - uid: 20120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,14.5 + parent: 2 + - uid: 20138 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 - proto: PoweredlightPink entities: - uid: 2881 @@ -96488,11 +99110,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-19.5 parent: 2 - - uid: 3039 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 2 - uid: 3492 components: - type: Transform @@ -96773,11 +99390,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-24.5 parent: 2 - - uid: 7960 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 2 - uid: 7961 components: - type: Transform @@ -97086,6 +99698,18 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,12.5 parent: 20000 +- proto: PoweredSmallLightEmpty + entities: + - uid: 6347 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 20519 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 - proto: PoweredStrobeLightEpsilon entities: - uid: 1407 @@ -97951,6 +100575,50 @@ entities: - type: Transform pos: -18.5,24.5 parent: 2 +- proto: PumpkinLantern + entities: + - uid: 20159 + components: + - type: Transform + pos: 11.524986,12.215091 + parent: 2 + - uid: 20160 + components: + - type: Transform + pos: 19.587175,11.730716 + parent: 2 + - uid: 20162 + components: + - type: Transform + pos: 9.503084,20.92137 + parent: 2 + - uid: 20565 + components: + - type: Transform + pos: -30.600471,16.79791 + parent: 2 + - uid: 20574 + components: + - type: Transform + pos: -1.4988546,25.649204 + parent: 2 + - uid: 20703 + components: + - type: Transform + pos: 1.8972993,-14.349823 + parent: 2 +- proto: PumpkinLanternSmall + entities: + - uid: 2975 + components: + - type: Transform + pos: 0.7861922,-32.128136 + parent: 2 + - uid: 20567 + components: + - type: Transform + pos: -12.475937,10.701907 + parent: 2 - proto: Rack entities: - uid: 238 @@ -99111,11 +101779,6 @@ entities: parent: 17590 - proto: RandomDrinkBottle entities: - - uid: 3868 - components: - - type: Transform - pos: 15.5,16.5 - parent: 2 - uid: 19843 components: - type: Transform @@ -99138,26 +101801,6 @@ entities: parent: 17590 - proto: RandomDrinkGlass entities: - - uid: 3863 - components: - - type: Transform - pos: 15.5,20.5 - parent: 2 - - uid: 3864 - components: - - type: Transform - pos: 15.5,19.5 - parent: 2 - - uid: 3865 - components: - - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 3866 - components: - - type: Transform - pos: 15.5,18.5 - parent: 2 - uid: 19712 components: - type: Transform @@ -103427,11 +106070,6 @@ entities: - type: Transform pos: 6.5,6.5 parent: 2 - - uid: 846 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - uid: 858 components: - type: Transform @@ -104627,6 +107265,12 @@ entities: - type: Transform pos: 9.5,-13.5 parent: 2 + - uid: 7960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 - uid: 8043 components: - type: Transform @@ -104733,6 +107377,12 @@ entities: - type: Transform pos: 23.5,12.5 parent: 16200 + - uid: 20492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 12393 @@ -104787,6 +107437,70 @@ entities: - type: Transform pos: -22.259003,-7.5307784 parent: 2 +- proto: RightArmSkeleton + entities: + - uid: 8001 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13731 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RightFootSkeleton + entities: + - uid: 2873 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12434 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RightHandSkeleton + entities: + - uid: 7964 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16141 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RightLegSkeleton + entities: + - uid: 4486 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12448 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RobocopCircuitBoard entities: - uid: 15771 @@ -104847,10 +107561,9 @@ entities: - uid: 19885 components: - type: Transform - parent: 19884 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 3.141592653589793 rad + pos: 43.500015,16.100006 + parent: 19854 - proto: RubberStampTrader entities: - uid: 20065 @@ -105125,12 +107838,23 @@ entities: parent: 2 - proto: ScrapCamera entities: + - uid: 8363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.2633009,19.381168 + parent: 2 - uid: 16977 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.383656,-21.461721 parent: 2 + - uid: 20660 + components: + - type: Transform + pos: -6.3132763,7.4082108 + parent: 2 - proto: ScrapCanister1 entities: - uid: 7645 @@ -105211,6 +107935,11 @@ entities: - type: Transform pos: 6.3312254,7.4668236 parent: 2 + - uid: 20709 + components: + - type: Transform + pos: 20.513956,-13.435941 + parent: 2 - proto: ScrapFirelock2 entities: - uid: 1715 @@ -105236,6 +107965,12 @@ entities: - type: Transform pos: -69.39229,32.507233 parent: 2 + - uid: 20710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.185831,-12.857816 + parent: 2 - proto: ScrapGlass entities: - uid: 1031 @@ -105296,6 +108031,11 @@ entities: - type: Transform pos: -35.515213,43.552917 parent: 2 + - uid: 20711 + components: + - type: Transform + pos: 7.6760073,-14.397792 + parent: 2 - proto: ScrapSteel entities: - uid: 16069 @@ -105471,6 +108211,12 @@ entities: - type: InsideEntityStorage - proto: ShardGlass entities: + - uid: 2179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.778763,18.115889 + parent: 2 - uid: 3143 components: - type: Transform @@ -105540,6 +108286,11 @@ entities: rot: -1.5707963267948966 rad pos: -48.144257,46.780365 parent: 2 + - uid: 13378 + components: + - type: Transform + pos: -14.106888,19.475264 + parent: 2 - uid: 16979 components: - type: Transform @@ -106690,6 +109441,18 @@ entities: open: False - proto: SignalTimer entities: + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,38.5 + parent: 2 + - type: SignalTimer + delay: 3600 + - type: Stealth + maxVisibility: -1 + minVisibility: -10 + lastVisibility: -1000 - uid: 6212 components: - type: MetaData @@ -106710,6 +109473,18 @@ entities: maxVisibility: -100 minVisibility: -100 lastVisibility: -100 + - uid: 20564 + components: + - type: Transform + pos: -43.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 269: + - Timer: Trigger + - type: Stealth + lastVisibility: -100 + - type: ActiveTimerTrigger - proto: SignAnomaly entities: - uid: 4853 @@ -108707,15 +111482,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,21.5 parent: 2 - - uid: 4606 - components: - - type: MetaData - desc: Удерживает воздух внутри, а ассистентов снаружи. Вы можете здесь найти рычаг. - name: самая обычная стена - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 2 - uid: 4617 components: - type: MetaData @@ -109163,11 +111929,6 @@ entities: - type: Transform pos: -40.5,39.5 parent: 2 - - uid: 17476 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 2 - proto: SpawnPointBotanist entities: - uid: 3941 @@ -109600,11 +112361,6 @@ entities: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 12448 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 2 - uid: 12451 components: - type: Transform @@ -109646,11 +112402,6 @@ entities: parent: 2 - proto: SpawnPointScientist entities: - - uid: 12434 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 2 - uid: 12435 components: - type: Transform @@ -109835,6 +112586,17 @@ entities: parent: 2 - proto: SpiderWeb entities: + - uid: 502 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 - uid: 5697 components: - type: Transform @@ -109857,6 +112619,11 @@ entities: rot: 3.141592653589793 rad pos: -2.5,47.5 parent: 2 + - uid: 12474 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 - uid: 17208 components: - type: Transform @@ -110122,6 +112889,2050 @@ entities: - type: Transform pos: -15.5,51.5 parent: 2 + - uid: 20141 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 20151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,27.5 + parent: 2 + - uid: 20156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 2 + - uid: 20175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2 + - uid: 20180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 + - uid: 20183 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 20184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 20185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 20188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 + parent: 2 + - uid: 20189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - uid: 20190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 2 + - uid: 20191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + - uid: 20192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - uid: 20193 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 20194 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 20195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - uid: 20196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 20197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 20198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-9.5 + parent: 2 + - uid: 20199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 + - uid: 20200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-11.5 + parent: 2 + - uid: 20201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-15.5 + parent: 2 + - uid: 20202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-17.5 + parent: 2 + - uid: 20203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-17.5 + parent: 2 + - uid: 20204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 20205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-26.5 + parent: 2 + - uid: 20206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 2 + - uid: 20207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-40.5 + parent: 2 + - uid: 20214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 2 + - uid: 20215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-38.5 + parent: 2 + - uid: 20216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-34.5 + parent: 2 + - uid: 20217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - uid: 20218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 20219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-36.5 + parent: 2 + - uid: 20222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - uid: 20253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - uid: 20254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,15.5 + parent: 2 + - uid: 20257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - uid: 20258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,16.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,15.5 + parent: 2 + - uid: 20260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,12.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,9.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,11.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,15.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,25.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,27.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,28.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + pos: -47.5,31.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,27.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,31.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,28.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,25.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,24.5 + parent: 2 + - uid: 20277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,24.5 + parent: 2 + - uid: 20278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,24.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,17.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,17.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,10.5 + parent: 2 + - uid: 20283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,10.5 + parent: 2 + - uid: 20284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,11.5 + parent: 2 + - uid: 20285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,11.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,9.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,9.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,23.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,27.5 + parent: 2 + - uid: 20290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,28.5 + parent: 2 + - uid: 20291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,27.5 + parent: 2 + - uid: 20292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,26.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,29.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,31.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,26.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,21.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,19.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,16.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,15.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + pos: -74.5,9.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + pos: -47.5,39.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + pos: -46.5,39.5 + parent: 2 + - uid: 20307 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: -45.5,42.5 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: -43.5,41.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + pos: -43.5,42.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + pos: -44.5,41.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + pos: -51.5,42.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + pos: -51.5,41.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + pos: -52.5,42.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: -55.5,42.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + pos: -56.5,41.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + pos: -60.5,40.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: -60.5,40.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + pos: -59.5,40.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: -60.5,41.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: -59.5,41.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + pos: -59.5,36.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + pos: -63.5,33.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + pos: -60.5,35.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + pos: -59.5,35.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + pos: -64.5,38.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + pos: -65.5,36.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + pos: -61.5,38.5 + parent: 2 + - uid: 20329 + components: + - type: Transform + pos: -62.5,33.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + pos: -61.5,32.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + pos: -71.5,32.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + pos: -74.5,33.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + pos: -74.5,33.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + pos: -71.5,33.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,34.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,31.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,31.5 + parent: 2 + - uid: 20345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,33.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,35.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,34.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,35.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,36.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,37.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,38.5 + parent: 2 + - uid: 20352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,40.5 + parent: 2 + - uid: 20353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,40.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,40.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,41.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,43.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,43.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,36.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,37.5 + parent: 2 + - uid: 20360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,36.5 + parent: 2 + - uid: 20361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,36.5 + parent: 2 + - uid: 20362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,36.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,36.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,35.5 + parent: 2 + - uid: 20365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,35.5 + parent: 2 + - uid: 20366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,37.5 + parent: 2 + - uid: 20367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,40.5 + parent: 2 + - uid: 20368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,44.5 + parent: 2 + - uid: 20369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,44.5 + parent: 2 + - uid: 20370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,47.5 + parent: 2 + - uid: 20371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,46.5 + parent: 2 + - uid: 20372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,45.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,45.5 + parent: 2 + - uid: 20374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,43.5 + parent: 2 + - uid: 20375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,43.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,45.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,46.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,47.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,43.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,45.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,44.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,40.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,42.5 + parent: 2 + - uid: 20384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,43.5 + parent: 2 + - uid: 20385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,36.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,35.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,37.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,46.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,46.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,43.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,42.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,46.5 + parent: 2 + - uid: 20393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,50.5 + parent: 2 + - uid: 20394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,55.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,49.5 + parent: 2 + - uid: 20396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,46.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,48.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,48.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,49.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,49.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,49.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,45.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,46.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,44.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,43.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,40.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,41.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,40.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,39.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,37.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,36.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,35.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 2 + - uid: 20424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,42.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,45.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,46.5 + parent: 2 + - uid: 20429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,46.5 + parent: 2 + - uid: 20430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,46.5 + parent: 2 + - uid: 20431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,47.5 + parent: 2 + - uid: 20432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 2 + - uid: 20434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,47.5 + parent: 2 + - uid: 20436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,45.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,47.5 + parent: 2 + - uid: 20440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,47.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,47.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,45.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,42.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,43.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,43.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,44.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,40.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,38.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,37.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,37.5 + parent: 2 + - uid: 20454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,38.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,33.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,33.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,35.5 + parent: 2 + - uid: 20464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,35.5 + parent: 2 + - uid: 20465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,31.5 + parent: 2 + - uid: 20466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 + - uid: 20467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,33.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,33.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,32.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,33.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,33.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,33.5 + parent: 2 + - uid: 20474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,33.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - uid: 20476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,34.5 + parent: 2 + - uid: 20477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,35.5 + parent: 2 + - uid: 20478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,34.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,31.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 + - uid: 20481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 2 + - uid: 20482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 2 + - uid: 20483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 2 + - uid: 20484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,29.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - uid: 20486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,22.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 2 + - uid: 20489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - uid: 20490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 2 + - uid: 20496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 2 + - uid: 20502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 20503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - uid: 20504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 2 + - uid: 20506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 20507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 20509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - uid: 20510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 2 + - uid: 20512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 2 + - uid: 20522 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 20523 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 20524 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 20525 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 20528 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 20530 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 20531 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 2 + - uid: 20537 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 20538 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 20539 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 20540 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 20541 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 20542 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 20543 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 20544 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 20545 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 20551 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 20554 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 20555 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 20557 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 20558 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 20559 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 20560 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 20587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,39.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 20589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + - uid: 20590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - uid: 20591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - uid: 20592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 2 + - uid: 20595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,29.5 + parent: 2 +- proto: SpiderWebClown + entities: + - uid: 20223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,7.5 + parent: 2 + - uid: 20224 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 20225 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 20226 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 20227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - uid: 20228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - uid: 20229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - uid: 20230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - uid: 20231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - uid: 20232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - uid: 20234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - uid: 20235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,7.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,4.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 2 - proto: Spoon entities: - uid: 6766 @@ -110306,20 +115117,6 @@ entities: parent: 17590 - proto: StealthBox entities: - - uid: 1540 - components: - - type: Transform - pos: 24.843256,25.376377 - parent: 2 - - type: Stealth - lastVisibility: 1.5 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15777 - uid: 19929 components: - type: Transform @@ -110896,6 +115693,11 @@ entities: - type: Transform pos: -4.5,-25.5 parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 - uid: 2275 components: - type: Transform @@ -110921,11 +115723,6 @@ entities: - type: Transform pos: -71.5,33.5 parent: 2 - - uid: 12334 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 2 - uid: 17034 components: - type: Transform @@ -111390,6 +116187,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: SurveillanceCameraAssembly + entities: + - uid: 20144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - uid: 20145 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 - proto: SurveillanceCameraCommand entities: - uid: 2943 @@ -111798,17 +116608,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общие - Коридор - - uid: 16141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общие - Столовая, Ю/В - uid: 16142 components: - type: Transform @@ -111820,16 +116619,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общие - Столовая, С/З - - uid: 16143 - components: - - type: Transform - pos: -6.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общие - Коридор - uid: 16144 components: - type: Transform @@ -112284,16 +117073,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Ксеноархеология - - uid: 16122 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Робототехника - uid: 16123 components: - type: Transform @@ -112527,16 +117306,6 @@ entities: - SurveillanceCameraService nameSet: True id: Театр - Кабинет мима - - uid: 16945 - components: - - type: Transform - pos: 0.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Театр - Кабинет клоуна - uid: 16946 components: - type: Transform @@ -112790,6 +117559,16 @@ entities: networkSet: True nameSet: True id: '[ДАННЫЙ КАНАЛ СВЯЗИ СОЗДАН И/ИЛИ РАСПРОСТРАНЁН АГЕНТОМ ВРАЖЕСКОЙ КОРПОРАЦИИ И/ИЛИ ВЫПОЛНЯЮЩИМ ЕГО ФУНКЦИИ]' +- proto: SyndicateBusinessCard + entities: + - uid: 20723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.0112,-19.525785 + parent: 2 + - type: Paper + content: Здесь никого нет, проходи мимо. - proto: SyndicateComputerComms entities: - uid: 16861 @@ -112834,11 +117613,6 @@ entities: - type: Transform pos: -13.5,20.5 parent: 2 - - uid: 731 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 2 - uid: 737 components: - type: Transform @@ -113943,6 +118717,92 @@ entities: - type: Transform pos: 8.5,17.5 parent: 16675 + - uid: 20150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 20572 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 20573 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 20575 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 - proto: TableCarpet entities: - uid: 3358 @@ -114991,6 +119851,16 @@ entities: - type: Transform pos: 25.5,-18.5 parent: 17590 + - uid: 20663 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 20664 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 - proto: TargetDarts entities: - uid: 4849 @@ -115006,22 +119876,19 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerDisabled: True - proto: TegCirculator entities: - - uid: 15612 + - uid: 2204 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 15616 + - uid: 11777 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -1.5,-25.5 parent: 2 - type: PointLight @@ -115503,6 +120370,22 @@ entities: - type: Transform pos: -24.555336,64.236824 parent: 2 +- proto: TorsoSkeleton + entities: + - uid: 4606 + components: + - type: Transform + parent: 453 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9759 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ToxinChemistryBottle entities: - uid: 8139 @@ -115536,6 +120419,72 @@ entities: - type: Transform pos: 18.776953,35.694435 parent: 2 +- proto: ToyMouse + entities: + - uid: 20579 + components: + - type: Transform + pos: -23.23225,34.30932 + parent: 2 + - uid: 20580 + components: + - type: Transform + pos: -28.958319,42.254898 + parent: 2 + - uid: 20581 + components: + - type: Transform + pos: -37.906162,27.895842 + parent: 2 + - uid: 20582 + components: + - type: Transform + pos: -55.434845,30.46224 + parent: 2 +- proto: ToySkeleton + entities: + - uid: 248 + components: + - type: Transform + parent: 2656 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3889 + components: + - type: Transform + pos: 10.471983,16.528875 + parent: 2 + - uid: 20170 + components: + - type: Transform + pos: -5.46861,14.550668 + parent: 2 + - uid: 20171 + components: + - type: Transform + pos: -5.484235,11.535043 + parent: 2 + - uid: 20569 + components: + - type: Transform + pos: -1.3210287,24.737844 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: 13.941862,7.756217 + parent: 2 + - uid: 20708 + components: + - type: Transform + pos: 0.13812351,-14.334198 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: 15.391966,-18.293837 + parent: 2 - proto: ToySpawner entities: - uid: 425 @@ -116030,10 +120979,10 @@ entities: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 7038 + - uid: 20148 components: - type: Transform - pos: -26.5,4.5 + pos: -22.5,5.5 parent: 2 - proto: VendingMachineHydrobe entities: @@ -116056,6 +121005,13 @@ entities: - type: Transform pos: 14.5,-23.5 parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 20716 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 - proto: VendingMachineMedical entities: - uid: 4380 @@ -116248,30 +121204,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,24.5 parent: 2 - - uid: 7824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,20.5 - parent: 2 - - uid: 7828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - - uid: 7829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,22.5 - parent: 2 - - uid: 7839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,19.5 - parent: 2 - uid: 7840 components: - type: Transform @@ -116308,12 +121240,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,21.5 parent: 2 - - uid: 8310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,25.5 - parent: 2 - uid: 8311 components: - type: Transform @@ -116335,11 +121261,6 @@ entities: - type: Transform pos: 28.5,18.5 parent: 2 - - uid: 12460 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - uid: 15899 components: - type: Transform @@ -116466,6 +121387,12 @@ entities: - type: Transform pos: 23.5,18.5 parent: 19951 + - uid: 20149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 - proto: WallmountGeneratorAPUElectronics entities: - uid: 2035 @@ -117282,11 +122209,6 @@ entities: - type: Transform pos: -25.5,-24.5 parent: 2 - - uid: 401 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 2 - uid: 402 components: - type: Transform @@ -117302,16 +122224,6 @@ entities: - type: Transform pos: -19.5,-24.5 parent: 2 - - uid: 406 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 2 - - uid: 407 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 2 - uid: 410 components: - type: Transform @@ -117419,11 +122331,6 @@ entities: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 467 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 2 - uid: 468 components: - type: Transform @@ -117439,11 +122346,6 @@ entities: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 498 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - uid: 499 components: - type: Transform @@ -117537,17 +122439,7 @@ entities: - uid: 561 components: - type: Transform - pos: -13.5,-32.5 - parent: 2 - - uid: 563 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 2 - - uid: 564 - components: - - type: Transform - pos: -10.5,-30.5 + pos: 33.5,-19.5 parent: 2 - uid: 565 components: @@ -118270,6 +123162,12 @@ entities: - type: Transform pos: -31.5,3.5 parent: 2 + - uid: 1231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 2 - uid: 1237 components: - type: Transform @@ -118305,11 +123203,23 @@ entities: - type: Transform pos: -28.5,-21.5 parent: 2 + - uid: 1297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 - uid: 1300 components: - type: Transform pos: -30.5,-23.5 parent: 2 + - uid: 1306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 2 - uid: 1311 components: - type: Transform @@ -118762,6 +123672,12 @@ entities: - type: Transform pos: 35.5,9.5 parent: 2 + - uid: 1995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 - uid: 2000 components: - type: Transform @@ -118787,6 +123703,24 @@ entities: - type: Transform pos: 8.5,-30.5 parent: 2 + - uid: 2160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-31.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 2 - uid: 2166 components: - type: Transform @@ -118800,8 +123734,14 @@ entities: - uid: 2198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-32.5 + rot: 1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-30.5 parent: 2 - uid: 2203 components: @@ -119059,6 +123999,12 @@ entities: - type: Transform pos: 22.5,-25.5 parent: 2 + - uid: 2932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-31.5 + parent: 2 - uid: 2933 components: - type: Transform @@ -119253,12 +124199,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 - - uid: 3121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-19.5 - parent: 2 - uid: 3162 components: - type: Transform @@ -122216,6 +127156,12 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,9.5 parent: 16200 + - uid: 12460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 2 - uid: 12466 components: - type: Transform @@ -122384,18 +127330,6 @@ entities: - type: Transform pos: -19.5,-46.5 parent: 2 - - uid: 15598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-31.5 - parent: 2 - - uid: 15599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 2 - uid: 15603 components: - type: Transform @@ -122954,6 +127888,12 @@ entities: - type: Transform pos: -31.5,-34.5 parent: 2 + - uid: 2197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 - uid: 2243 components: - type: Transform @@ -123296,12 +128236,6 @@ entities: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 3636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 2 - uid: 3648 components: - type: Transform @@ -124569,10 +129503,30 @@ entities: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 11693 + - uid: 12325 components: - type: Transform - pos: 31.5,21.5 + pos: 29.5,19.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + pos: 29.5,25.5 parent: 2 - uid: 12382 components: @@ -124582,7 +129536,7 @@ entities: - uid: 12397 components: - type: Transform - pos: 28.5,26.5 + pos: 30.5,25.5 parent: 2 - uid: 12398 components: @@ -126382,11 +131336,6 @@ entities: parent: 17590 - proto: WallSolid entities: - - uid: 42 - components: - - type: Transform - pos: -26.5,3.5 - parent: 2 - uid: 52 components: - type: Transform @@ -126482,11 +131431,6 @@ entities: - type: Transform pos: -16.5,-11.5 parent: 2 - - uid: 339 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 2 - uid: 340 components: - type: Transform @@ -126514,11 +131458,6 @@ entities: - type: Transform pos: 14.5,-22.5 parent: 2 - - uid: 745 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - uid: 746 components: - type: Transform @@ -126681,11 +131620,6 @@ entities: - type: Transform pos: -10.5,30.5 parent: 2 - - uid: 1167 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - uid: 1168 components: - type: Transform @@ -126696,41 +131630,16 @@ entities: - type: Transform pos: 22.5,19.5 parent: 2 - - uid: 1170 - components: - - type: Transform - pos: 18.5,27.5 - parent: 2 - uid: 1189 components: - type: Transform pos: 22.5,-2.5 parent: 2 - - uid: 1190 - components: - - type: Transform - pos: 22.5,10.5 - parent: 2 - - uid: 1191 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - uid: 1198 components: - type: Transform pos: 16.5,10.5 parent: 2 - - uid: 1216 - components: - - type: Transform - pos: 22.5,15.5 - parent: 2 - - uid: 1221 - components: - - type: Transform - pos: 22.5,18.5 - parent: 2 - uid: 1222 components: - type: Transform @@ -126761,16 +131670,6 @@ entities: - type: Transform pos: 22.5,27.5 parent: 2 - - uid: 1230 - components: - - type: Transform - pos: 19.5,27.5 - parent: 2 - - uid: 1231 - components: - - type: Transform - pos: 20.5,27.5 - parent: 2 - uid: 1244 components: - type: Transform @@ -127042,16 +131941,6 @@ entities: - type: Transform pos: 5.5,22.5 parent: 2 - - uid: 3161 - components: - - type: Transform - pos: 23.5,22.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 23.5,23.5 - parent: 2 - uid: 3247 components: - type: Transform @@ -127087,24 +131976,6 @@ entities: - type: Transform pos: -10.5,-12.5 parent: 2 - - uid: 3818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,20.5 - parent: 2 - - uid: 3819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 2 - - uid: 3820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 2 - uid: 3821 components: - type: Transform @@ -127117,12 +131988,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,15.5 parent: 2 - - uid: 3833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - uid: 3834 components: - type: Transform @@ -127190,11 +132055,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 3891 - components: - - type: Transform - pos: 18.5,23.5 - parent: 2 - uid: 3892 components: - type: Transform @@ -128741,11 +133601,6 @@ entities: - type: Transform pos: -0.5,43.5 parent: 2 - - uid: 6347 - components: - - type: Transform - pos: 8.5,10.5 - parent: 2 - uid: 6395 components: - type: Transform @@ -129138,6 +133993,24 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,29.5 parent: 2 + - uid: 20140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 - proto: WallSolidRust entities: - uid: 172 @@ -129235,11 +134108,6 @@ entities: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 4486 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 2 - uid: 4490 components: - type: Transform @@ -130061,11 +134929,6 @@ entities: - type: Transform pos: 13.5,31.5 parent: 2 - - uid: 8097 - components: - - type: Transform - pos: 9.5,10.5 - parent: 2 - uid: 8098 components: - type: Transform @@ -130167,6 +135030,18 @@ entities: - type: Transform pos: 2.5,43.5 parent: 2 + - uid: 13381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 - uid: 14213 components: - type: Transform @@ -130177,11 +135052,83 @@ entities: - type: Transform pos: 13.5,28.5 parent: 2 + - uid: 14283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,17.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 - uid: 15100 components: - type: Transform pos: 8.5,28.5 parent: 2 + - uid: 15597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,27.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 - uid: 16572 components: - type: Transform @@ -130192,6 +135139,30 @@ entities: - type: Transform pos: 24.5,8.5 parent: 16200 + - uid: 16945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,23.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - uid: 20172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 - proto: WallWeaponCapacitorRecharger entities: - uid: 19266 @@ -130274,11 +135245,6 @@ entities: parent: 2 - proto: WardrobeBotanistFilled entities: - - uid: 3889 - components: - - type: Transform - pos: 7.5,23.5 - parent: 2 - uid: 8359 components: - type: Transform @@ -130397,6 +135363,24 @@ entities: - type: Transform pos: 40.5,-10.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -130404,6 +135388,7 @@ entities: occludes: True ents: - 3584 + - 54 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -130984,10 +135969,10 @@ entities: - type: MetaData name: пулемёт ботаников - type: Transform - parent: 1540 - - type: InsideEntityStorage + parent: 8097 - type: Physics canCollide: False + - type: InsideEntityStorage missingComponents: - ChamberMagazineAmmoProvider - AmmoCounter @@ -132213,11 +137198,6 @@ entities: - type: Transform pos: 27.5,1.5 parent: 2 - - uid: 962 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - uid: 1129 components: - type: Transform diff --git a/Resources/Maps/corvax_maus.yml b/Resources/Maps/corvax_maus.yml index 5a5a58621ef..7e45bdc08bf 100644 --- a/Resources/Maps/corvax_maus.yml +++ b/Resources/Maps/corvax_maus.yml @@ -65,6 +65,7 @@ tilemap: 16: FloorOldConcrete 79: FloorOldConcreteMono 74: FloorOldConcreteSmooth + 127: FloorPlanetDirt 77: FloorPlastic 78: FloorRGlass 4: FloorReinforced @@ -109,6 +110,7 @@ tilemap: 84: FloorWoodBlack 75: FloorWoodChess 81: FloorWoodChessBlack + 115: FloorWoodChessDark 59: FloorWoodChessLight 86: FloorWoodChessRed 83: FloorWoodDark @@ -159,183 +161,183 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: XQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAADHwAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADHwAAAAACHwAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABIAAAAAADIAAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACIAAAAAACIAAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAACHwAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAA + tiles: XQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAAHwAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAACHwAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADIAAAAAABIAAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAIAAAAAAAIAAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAABHwAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAADfgAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABMwAAAAACIAAAAAADMwAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABAAAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAADHwAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAAAfgAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACMwAAAAABIAAAAAABMwAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAABHwAAAAAB version: 6 -1,0: ind: -1,0 - tiles: HwAAAAACJwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJwAAAAADHwAAAAADHwAAAAACHwAAAAACJgAAAAABJgAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAADNgAAAAAAfgAAAAAABwAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJgAAAAACHwAAAAABKAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAADNgAAAAACfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAKAAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAJAAAAAADJAAAAAADJAAAAAABJAAAAAAAJgAAAAACJgAAAAABJgAAAAABJgAAAAACJgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAJgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABEgAAAAABKgAAAAADKgAAAAACfgAAAAAAbAAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAABwAAAAAABwAAAAAAHgAAAAACHgAAAAABKgAAAAABKgAAAAABfgAAAAAAbAAAAAAANgAAAAABNgAAAAACHwAAAAADfgAAAAAAKAAAAAACHwAAAAACKAAAAAACfgAAAAAABwAAAAAAAAAAAAAAEgAAAAADEgAAAAABEgAAAAABHgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABfgAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAADJwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJwAAAAADHwAAAAADHwAAAAAAHwAAAAAAJgAAAAADJgAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAANgAAAAADfgAAAAAABwAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACJgAAAAACHwAAAAABKAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACNgAAAAABfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAADKAAAAAAAfgAAAAAABwAAAAAABwAAAAAEfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAACJgAAAAAAJgAAAAADJgAAAAABJgAAAAADJgAAAAADJAAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAJgAAAAABfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAACEgAAAAADKgAAAAABKgAAAAACfgAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAABwAAAAAABwAAAAAAHgAAAAACHgAAAAADKgAAAAACKgAAAAABfgAAAAAAbAAAAAAANgAAAAABNgAAAAADHwAAAAACfgAAAAAAKAAAAAAAHwAAAAACKAAAAAADfgAAAAAABwAAAAAAAAAAAAAAEgAAAAAAEgAAAAADEgAAAAABHgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAACQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAACQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: HwAAAAADHwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAACXQAAAAAAHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAABHwAAAAADfgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAAAbAAAAAAAbgAAAAABfgAAAAAAbgAAAAACbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADJAAAAAABJQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAABJgAAAAACHwAAAAAAJgAAAAADfgAAAAAAbgAAAAACfgAAAAAAbgAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABJQAAAAAAJgAAAAADHwAAAAACJgAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAJgAAAAABHwAAAAAAJgAAAAABfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAJAAAAAADXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdQAAAAADXQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAA + tiles: HwAAAAACHwAAAAACbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAABXQAAAAADHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAADHwAAAAABfgAAAAAAbgAAAAABbAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAADHwAAAAACHwAAAAACbAAAAAAAbgAAAAACfgAAAAAAbgAAAAADbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABJAAAAAADJQAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAABJgAAAAADHwAAAAAAJgAAAAACfgAAAAAAbgAAAAADfgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACJQAAAAAAJgAAAAADHwAAAAABJgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAJgAAAAADHwAAAAABJgAAAAABfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAJAAAAAACXQAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAXQAAAAACfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdQAAAAABXQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAAAWwAAAAACIwAAAAABfAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAABegAAAAADIwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAJCQAAAAAKfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAACJgAAAAACJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAABJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAWwAAAAACegAAAAADJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAACQAAAAAACQAAAAAAAAAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAAAMwAAAAABMwAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABMwAAAAACMwAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAALAAAAAADAQAAAAAALAAAAAADfgAAAAAAXQAAAAABIAAAAAABJAAAAAABJAAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAXQAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAABJAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAABIAAAAAACJAAAAAADJAAAAAADJAAAAAABIgAAAAADJAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAABWwAAAAAAIwAAAAACfAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAegAAAAAAIwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAACQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAABJgAAAAABJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMCQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAADJgAAAAACJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWwAAAAADegAAAAACJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAEAAAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAADMwAAAAACMwAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADMwAAAAABMwAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAALAAAAAAAAQAAAAAALAAAAAADfgAAAAAAXQAAAAADIAAAAAABJAAAAAACJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAXQAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAACIgAAAAACJAAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAACIAAAAAABJAAAAAABJAAAAAADJAAAAAAAIgAAAAAAJAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: JAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAABHwAAAAAAJwAAAAABHwAAAAADHwAAAAADJwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACJAAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAADHwAAAAACHwAAAAADHwAAAAACJwAAAAAAHwAAAAACHwAAAAABJwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABfgAAAAAAJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAJAAAAAAAfgAAAAAAHwAAAAABHwAAAAACBwAAAAAAfgAAAAAAHgAAAAAAEgAAAAACNgAAAAACEgAAAAADNgAAAAACfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAJAAAAAAAfgAAAAAAJgAAAAABJgAAAAADBwAAAAAAfgAAAAAAEgAAAAADNgAAAAABNgAAAAADEgAAAAABEgAAAAADfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAVgAAAAAAfgAAAAAAJgAAAAACJgAAAAAABwAAAAAAfgAAAAAANgAAAAABEgAAAAABEgAAAAACEgAAAAAAEgAAAAAAfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAVgAAAAAAfgAAAAAAJgAAAAADJgAAAAACBwAAAAAAfgAAAAAAHgAAAAABHgAAAAACNgAAAAAAEgAAAAABEgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACBwAAAAAIfgAAAAAAEgAAAAAAEgAAAAAAHgAAAAABNgAAAAACNgAAAAACfgAAAAAABwAAAAAMfgAAAAAAEgAAAAABEgAAAAABEgAAAAACEgAAAAABEgAAAAADHgAAAAACfQAAAAAAfgAAAAAAHgAAAAADNgAAAAADNgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHgAAAAACEgAAAAADEgAAAAAAHgAAAAADHgAAAAABEgAAAAADfQAAAAAAfgAAAAAAEgAAAAABHgAAAAAAEgAAAAAAEgAAAAAAHgAAAAACfgAAAAAABwAAAAACfgAAAAAAEgAAAAACHgAAAAACEgAAAAACEgAAAAADEgAAAAABEgAAAAADfQAAAAAAfgAAAAAAHgAAAAACNgAAAAACHgAAAAADEgAAAAADHgAAAAACfgAAAAAABwAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACfQAAAAAAfgAAAAAANgAAAAABEgAAAAADHgAAAAAAEgAAAAACEgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbgAAAAADGAAAAAAAGAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABEgAAAAABHgAAAAADfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbgAAAAAAGAAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: JAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAABHwAAAAAAJwAAAAABHwAAAAACHwAAAAAAJwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAABJAAAAAABfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAJwAAAAAAHwAAAAAAHwAAAAADJwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAfgAAAAAAJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAfgAAAAAAVgAAAAAASQAAAAACHwAAAAACSQAAAAAAJAAAAAABfgAAAAAAHwAAAAACHwAAAAABBwAAAAAMfgAAAAAAHgAAAAAAEgAAAAADNgAAAAACEgAAAAABNgAAAAADfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAABJAAAAAACfgAAAAAAJgAAAAABJgAAAAABBwAAAAAAfgAAAAAAEgAAAAACNgAAAAADNgAAAAAAEgAAAAADEgAAAAAAfgAAAAAAVgAAAAAASQAAAAADHwAAAAADSQAAAAACVgAAAAACfgAAAAAAJgAAAAACJgAAAAADBwAAAAAAfgAAAAAANgAAAAAAEgAAAAABEgAAAAAAEgAAAAAAEgAAAAABfgAAAAAAVgAAAAADSQAAAAAAHwAAAAADSQAAAAABVgAAAAABfgAAAAAAJgAAAAADJgAAAAADBwAAAAAAfgAAAAAAHgAAAAACHgAAAAAANgAAAAACEgAAAAAAEgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAABwAAAAAAfgAAAAAAEgAAAAAAEgAAAAABHgAAAAADNgAAAAABNgAAAAADfgAAAAAABwAAAAAAfgAAAAAAEgAAAAACEgAAAAAAEgAAAAADEgAAAAACEgAAAAACHgAAAAACfQAAAAAAfgAAAAAAHgAAAAABNgAAAAAANgAAAAAAEgAAAAADEgAAAAABfgAAAAAABwAAAAAAfgAAAAAAHgAAAAAAEgAAAAACEgAAAAACHgAAAAABHgAAAAADEgAAAAADfQAAAAAAfgAAAAAAEgAAAAAAHgAAAAACEgAAAAACEgAAAAAAHgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAEgAAAAAAHgAAAAADEgAAAAADEgAAAAADEgAAAAABEgAAAAABfQAAAAAAfgAAAAAAHgAAAAABNgAAAAADHgAAAAAAEgAAAAACHgAAAAACfgAAAAAABwAAAAAIfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAADfQAAAAAAfgAAAAAANgAAAAADEgAAAAACHgAAAAABEgAAAAABEgAAAAADfgAAAAAABwAAAAAAfgAAAAAAbgAAAAAAGAAAAAAAGAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABEgAAAAAAHgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbgAAAAACGAAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACIAAAAAABIAAAAAAAHwAAAAAAIAAAAAADfgAAAAAAHwAAAAACHwAAAAAAJgAAAAADJgAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAAAfgAAAAAAXQAAAAADXQAAAAABIAAAAAACIAAAAAADHwAAAAAAIAAAAAAAHwAAAAAAHwAAAAADHwAAAAABJgAAAAACJgAAAAABDQAAAAABegAAAAAADQAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAJgAAAAACJgAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAADfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAIAAAAAABIAAAAAADIAAAAAADJgAAAAADJgAAAAACDQAAAAAAegAAAAAADQAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAIAAAAAADIAAAAAACIAAAAAABJgAAAAABJgAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAABfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAIAAAAAADIAAAAAACIAAAAAAAJgAAAAACJgAAAAADDQAAAAADDQAAAAAADQAAAAACegAAAAACfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABJgAAAAACJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAIAAAAAADIAAAAAAAIAAAAAADJgAAAAACJgAAAAACJQAAAAAAJQAAAAAAJgAAAAACJgAAAAADJgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAADIAAAAAACIAAAAAADIAAAAAADJgAAAAADJgAAAAAAJQAAAAAAJQAAAAAAJgAAAAAAJgAAAAAAJQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAIAAAAAAAIAAAAAABIAAAAAABJgAAAAABJgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAJgAAAAAAIAAAAAACJAAAAAAAJAAAAAADfgAAAAAAbAAAAAAAKAAAAAADHwAAAAADfgAAAAAASAAAAAABSQAAAAACSAAAAAACSAAAAAAASAAAAAABfgAAAAAAJgAAAAABJgAAAAAAIAAAAAADJAAAAAADJAAAAAABfgAAAAAAHwAAAAABbgAAAAADHwAAAAACfgAAAAAASAAAAAACSQAAAAACSAAAAAAASAAAAAAASAAAAAACfgAAAAAAJgAAAAACJgAAAAACIAAAAAABJAAAAAACJAAAAAACfgAAAAAAHgAAAAACHgAAAAADbgAAAAADfgAAAAAASAAAAAAASQAAAAAASQAAAAABSQAAAAACSQAAAAABfgAAAAAAJgAAAAADJgAAAAACIAAAAAADIAAAAAACIAAAAAACfgAAAAAAHgAAAAABHwAAAAAAHwAAAAABfgAAAAAASAAAAAACSAAAAAABSAAAAAAASAAAAAACSAAAAAACSAAAAAACJgAAAAACJgAAAAADJgAAAAABJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABIAAAAAAAIAAAAAADHwAAAAACIAAAAAAAfgAAAAAAHwAAAAACHwAAAAACJgAAAAACJgAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAACfgAAAAAAXQAAAAAAXQAAAAABIAAAAAADIAAAAAADHwAAAAAAIAAAAAADHwAAAAACHwAAAAADHwAAAAAAJgAAAAAAJgAAAAACDQAAAAABegAAAAABDQAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADJgAAAAACJgAAAAAADQAAAAADFQAAAAAGDQAAAAAADQAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAIAAAAAABIAAAAAAAIAAAAAABJgAAAAAAJgAAAAACDQAAAAABegAAAAABDQAAAAABFQAAAAABfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADIAAAAAACIAAAAAACIAAAAAABJgAAAAACJgAAAAABDQAAAAADDQAAAAACDQAAAAABDQAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAIAAAAAAAIAAAAAACIAAAAAABJgAAAAADJgAAAAACFQAAAAAEDQAAAAABDQAAAAADegAAAAABfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADJgAAAAABJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAIAAAAAADIAAAAAAAIAAAAAABJgAAAAAAJgAAAAADJQAAAAAAJQAAAAAAJgAAAAACJgAAAAADJgAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACIAAAAAABIAAAAAABIAAAAAAAJgAAAAAAJgAAAAACJQAAAAAAJQAAAAAAJgAAAAACJgAAAAADJQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAIAAAAAAAIAAAAAADIAAAAAACJgAAAAAAJgAAAAAAYwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAABYwAAAAAAJAAAAAACUQAAAAABfgAAAAAAbAAAAAAAKAAAAAADHwAAAAADfgAAAAAASAAAAAACSQAAAAAASAAAAAABSAAAAAABSAAAAAADfgAAAAAAJgAAAAADJgAAAAAAYwAAAAABJAAAAAADUQAAAAABfgAAAAAAHwAAAAACbgAAAAADHwAAAAACfgAAAAAASAAAAAABSQAAAAACSAAAAAACSAAAAAACSAAAAAAAfgAAAAAAJgAAAAABJgAAAAACYwAAAAABJAAAAAAAUQAAAAAAfgAAAAAAHgAAAAADHgAAAAADbgAAAAAAfgAAAAAASAAAAAACSQAAAAABSQAAAAACSQAAAAABSQAAAAABfgAAAAAAJgAAAAABJgAAAAABYwAAAAAAYwAAAAACYwAAAAAAfgAAAAAAHgAAAAABHwAAAAABHwAAAAADfgAAAAAASAAAAAAASAAAAAADSAAAAAABSAAAAAADSAAAAAABSAAAAAAAJgAAAAADJgAAAAADYwAAAAACYwAAAAACYwAAAAAAfgAAAAAAfgAAAAAAJgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAD version: 6 -3,0: ind: -3,0 - tiles: IAAAAAABfgAAAAAANgAAAAACEgAAAAACNgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABJAAAAAABJAAAAAAAJAAAAAADJAAAAAAAIAAAAAACfgAAAAAANgAAAAACTgAAAAADTgAAAAADNgAAAAACfgAAAAAACgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADJAAAAAAAJAAAAAACJAAAAAACJAAAAAAAIAAAAAADfgAAAAAAEgAAAAACTgAAAAAATgAAAAADNgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAACfgAAAAAAEgAAAAAATgAAAAACTgAAAAADNgAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAACfgAAAAAAEgAAAAAANgAAAAABEgAAAAABEgAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAALCgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFCgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA + tiles: IAAAAAABfgAAAAAANgAAAAAAEgAAAAADNgAAAAACNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADJAAAAAACJAAAAAADJAAAAAADJAAAAAADIAAAAAAAfgAAAAAANgAAAAAATgAAAAABTgAAAAABNgAAAAACfgAAAAAACgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAAAIAAAAAACfgAAAAAAEgAAAAAATgAAAAADTgAAAAAANgAAAAACfgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAADfgAAAAAAEgAAAAAATgAAAAABTgAAAAADNgAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAIAAAAAABfgAAAAAAEgAAAAACNgAAAAACEgAAAAABEgAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABQAAAAANBQAAAAAOBQAAAAALBQAAAAAICgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABawAAAAABJAAAAAABfgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAfgAAAAAAIAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACawAAAAAAJAAAAAADfgAAAAAABwAAAAAACgAAAAAABwAAAAAICgAAAAAAfgAAAAAAIAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAADJAAAAAADfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAAAJAAAAAADfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAACLwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAANgAAAAACHgAAAAACEgAAAAACfgAAAAAACgAAAAAACgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAHgAAAAACEgAAAAABHgAAAAABfgAAAAAACgAAAAAACgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAADNgAAAAAANgAAAAADNgAAAAAAfgAAAAAABQAAAAAIBQAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAEgAAAAAANgAAAAACEgAAAAABfgAAAAAABQAAAAALCQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAABEgAAAAABHgAAAAAAfgAAAAAABQAAAAAECQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAMBwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAABBwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAIfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAKCQAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACawAAAAAAJAAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAABJAAAAAACfgAAAAAABwAAAAAACgAAAAAABwAAAAAACgAAAAAAfgAAAAAAIAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAACJAAAAAADfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADawAAAAADJAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAANgAAAAADHgAAAAACEgAAAAACfgAAAAAACgAAAAAACgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAHgAAAAABEgAAAAABHgAAAAADfgAAAAAACgAAAAAACgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAACNgAAAAADNgAAAAABNgAAAAABfgAAAAAABQAAAAADBQAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAADEgAAAAABNgAAAAAAEgAAAAAAfgAAAAAABQAAAAAKCQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAABEgAAAAABHgAAAAADfgAAAAAABQAAAAABCQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAGBwAAAAAACQAAAAAACQAAAAAICQAAAAAJCQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAABCQAAAAAGCQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAJBwAAAAAABwAAAAAACQAAAAALCQAAAAAACQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAABMgAAAAACMgAAAAABHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAACHwAAAAADXQAAAAAAHwAAAAAAHwAAAAABRAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACHwAAAAABXQAAAAADHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAJAAAAAAAJAAAAAADJgAAAAAAJAAAAAADJAAAAAAAJAAAAAAAHwAAAAAAXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAABTgAAAAADJAAAAAACLwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAADfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAATgAAAAACJAAAAAADTgAAAAAALwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAADfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAADTgAAAAABJAAAAAADLwAAAAAAfgAAAAAAHwAAAAABXQAAAAACHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAADIQAAAAABIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAIQAAAAAAGAAAAAAAfgAAAAAAIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAIQAAAAABGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAAIQAAAAADIQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAKgAAAAADKgAAAAADKgAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAACfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAAAJAAAAAABHwAAAAABXQAAAAADHwAAAAACHwAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAJgAAAAABJgAAAAADJgAAAAABJgAAAAACJgAAAAACJgAAAAAAJgAAAAADHwAAAAAAXQAAAAACHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAJAAAAAACJAAAAAACJgAAAAABJAAAAAACJAAAAAAAJAAAAAADHwAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAABTgAAAAACJAAAAAABLwAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAABfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAATgAAAAACJAAAAAABTgAAAAABLwAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAACTgAAAAACJAAAAAABLwAAAAAAfgAAAAAAHwAAAAABXQAAAAABHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAADIQAAAAABIQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAABIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAATQAAAAACIQAAAAAAGAAAAAAAfgAAAAAAIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAIQAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAAIQAAAAABIQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADawAAAAADawAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAD version: 6 -5,0: ind: -5,0 - tiles: KwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAKfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: KwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAHfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAKfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAIfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAADBwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: HwAAAAABHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADNAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAACHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAMQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACNAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: awAAAAADawAAAAACawAAAAAAawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAABawAAAAADawAAAAAAawAAAAACawAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACGAAAAAAAGAAAAAAAXQAAAAACXQAAAAABfAAAAAAAWwAAAAACfAAAAAACWwAAAAABfAAAAAACWwAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACEgAAAAADbAAAAAAAGAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAIBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAKBwAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: awAAAAACawAAAAAAawAAAAABawAAAAADawAAAAABawAAAAADawAAAAABawAAAAACawAAAAADawAAAAABawAAAAAAawAAAAADawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADIQAAAAABGAAAAAAAGAAAAAAAXQAAAAAAXQAAAAABfAAAAAAAWwAAAAAAfAAAAAABWwAAAAADfAAAAAABWwAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADEgAAAAABbAAAAAAAGAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: CgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABEgAAAAAAbAAAAAAAGAAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAABbAAAAAAAbAAAAAAA + tiles: CgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAaAAAAAADaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADEgAAAAAAbAAAAAAAGAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADIQAAAAABbAAAAAAAbAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: fgAAAAAAfgAAAAAAEgAAAAADEgAAAAAAEgAAAAABEgAAAAAARgAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAANgAAAAACEgAAAAABNgAAAAAANgAAAAAANgAAAAACRgAAAAAARgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAADEgAAAAABHgAAAAAARAAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAACHgAAAAADEgAAAAABRAAAAAAARgAAAAAANgAAAAADNgAAAAAAEgAAAAADfgAAAAAAGAAAAAAAfgAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAABHgAAAAACEgAAAAADRAAAAAAARgAAAAAAEgAAAAAAHgAAAAACNgAAAAAANgAAAAACGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAANgAAAAABNgAAAAAAEgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAMwAAAAACMwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAVQAAAAADHwAAAAAAfgAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAMwAAAAACVQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAACVQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAAAXQAAAAADVQAAAAAAXQAAAAACXQAAAAAAXQAAAAACIQAAAAABIQAAAAAAHwAAAAACHwAAAAABHwAAAAACSgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACXQAAAAACXQAAAAABXQAAAAACIQAAAAABIQAAAAACHwAAAAAAHwAAAAADHwAAAAAASgAAAAABfgAAAAAAdAAAAAADdAAAAAABfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACNQAAAAACcAAAAAADXQAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAASgAAAAADfgAAAAAAdAAAAAACdAAAAAAAfgAAAAAAVQAAAAAAMwAAAAAAVQAAAAADNQAAAAAAcAAAAAABXQAAAAAAIQAAAAAAfgAAAAAAawAAAAAAawAAAAADIQAAAAAA + tiles: fgAAAAAAfgAAAAAAEgAAAAAAEgAAAAABEgAAAAACEgAAAAABRgAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAANgAAAAADEgAAAAADNgAAAAACNgAAAAADNgAAAAADRgAAAAAARgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAAAEgAAAAABHgAAAAABRAAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAADHgAAAAACEgAAAAABRAAAAAAARgAAAAAANgAAAAACNgAAAAAAEgAAAAACfgAAAAAAGAAAAAAAfgAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAABHgAAAAACEgAAAAACRAAAAAAARgAAAAAAEgAAAAAAHgAAAAADNgAAAAAANgAAAAACGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAANgAAAAAANgAAAAACEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAMwAAAAABMwAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABVQAAAAAAHwAAAAACfgAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAACVQAAAAABMwAAAAAAVQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAABVQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAADXQAAAAAAVQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAIQAAAAADIQAAAAADHwAAAAABHwAAAAADHwAAAAABSgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACXQAAAAABVQAAAAADXQAAAAADXQAAAAAAXQAAAAAAIQAAAAAAIQAAAAADHwAAAAADHwAAAAADHwAAAAABSgAAAAACfgAAAAAAdAAAAAACdAAAAAABfgAAAAAAVQAAAAADXQAAAAACVQAAAAAANQAAAAABcAAAAAAAXQAAAAADIQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAASgAAAAACfgAAAAAAdAAAAAACdAAAAAABfgAAAAAAVQAAAAABMwAAAAAAVQAAAAACNQAAAAABcAAAAAABXQAAAAAAIQAAAAADfgAAAAAAawAAAAAAawAAAAACUwAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACQAAAAABCQAAAAAACQAAAAAGCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAECQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARgAAAAAARgAAAAAARAAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARgAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAKCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARgAAAAAARgAAAAAARAAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARgAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAGAAAAAAAQgAAAAAAfgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAAFQAAAAADFQAAAAADbAAAAAAADQAAAAADSwAAAAACFQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAADFQAAAAACFQAAAAAGbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAANgAAAAAAbAAAAAAAbAAAAAAAFQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAAAIQAAAAABIQAAAAABIQAAAAAAIQAAAAAAIQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAGAAAAAAAQgAAAAAAfgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAAFQAAAAAGFQAAAAAGbAAAAAAADQAAAAABSwAAAAABFQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAADQAAAAACDQAAAAADFQAAAAAGFQAAAAAEbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAANgAAAAADbAAAAAAAbAAAAAAAFQAAAAAEbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAADIQAAAAACIQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADIQAAAAABIQAAAAACIQAAAAAAIQAAAAAAIQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: OgAAAAAAPQAAAAAAPQAAAAAAOwAAAAAAOgAAAAABOgAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADJQAAAAAAJQAAAAAAHwAAAAACfgAAAAAAMgAAAAAAMgAAAAADOwAAAAADPQAAAAACPQAAAAADOgAAAAABOwAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAJAAAAAABJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAMgAAAAABMgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAMgAAAAADMgAAAAADdQAAAAAAdQAAAAADHAAAAAABdQAAAAACdQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAMgAAAAABMgAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAMgAAAAADMgAAAAADdQAAAAAAdQAAAAACHAAAAAABdQAAAAABdQAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADJQAAAAAAJQAAAAAAKAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJgAAAAAAHwAAAAAAJwAAAAACJwAAAAAAJwAAAAACHwAAAAACJwAAAAAAJwAAAAABHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADJgAAAAABHwAAAAAAJwAAAAACJwAAAAAAJwAAAAACHwAAAAACJwAAAAABJwAAAAAAHwAAAAAAHwAAAAACJwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJgAAAAAAHwAAAAABHwAAAAADeQAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABJgAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAAAJgAAAAADfgAAAAAA + tiles: OgAAAAABPQAAAAACPQAAAAACOwAAAAACOgAAAAADOgAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAHwAAAAACfgAAAAAAMgAAAAAAMgAAAAABOwAAAAADPQAAAAACPQAAAAABOgAAAAACOwAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAJAAAAAABJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAMgAAAAACMgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAJQAAAAAAJQAAAAAAJAAAAAACfgAAAAAAMgAAAAAAMgAAAAABdQAAAAADdQAAAAAAHAAAAAAAdQAAAAABdQAAAAACfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAJAAAAAADJQAAAAAAJQAAAAAAJAAAAAADfgAAAAAAMgAAAAAAMgAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABJQAAAAAAJQAAAAAAJAAAAAACfgAAAAAAMgAAAAABMgAAAAADdQAAAAABdQAAAAADHAAAAAADdQAAAAACdQAAAAACfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAJAAAAAADJQAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAABJQAAAAAAJQAAAAAAKAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbgAAAAAAbgAAAAABbAAAAAAAfgAAAAAAbgAAAAADbgAAAAACbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAABSwAAAAACSwAAAAACSwAAAAACegAAAAACegAAAAACDQAAAAABegAAAAADFQAAAAABegAAAAAADQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAAADQAAAAACFQAAAAABSwAAAAAAegAAAAACDQAAAAADDQAAAAABDQAAAAADegAAAAAAFQAAAAAEegAAAAABDQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAABegAAAAABegAAAAAASwAAAAABeQAAAAACegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADSwAAAAACegAAAAABDQAAAAAASwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACJAAAAAACJgAAAAAAfgAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAACHwAAAAADBAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAACgAAAAAACgAAAAAAfgAAAAAAJAAAAAABJAAAAAACHwAAAAAAHwAAAAABHwAAAAADGQAAAAADHwAAAAAAGQAAAAADHwAAAAACGQAAAAACHwAAAAAAGQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAABHwAAAAACGQAAAAABHwAAAAABGQAAAAACHwAAAAACGQAAAAADCgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADCgAAAAAAJgAAAAADJgAAAAAAJgAAAAABfgAAAAAAJgAAAAAAJgAAAAAAJgAAAAABfgAAAAAAHwAAAAACGQAAAAABGQAAAAACQgAAAAAAQgAAAAAAJwAAAAAAHwAAAAABCgAAAAAAJwAAAAACJwAAAAABJwAAAAABJwAAAAAAJwAAAAACJwAAAAACJwAAAAACJwAAAAACHwAAAAAAJwAAAAAAJwAAAAABQgAAAAAAQgAAAAAAJwAAAAAAHwAAAAABCgAAAAAAJgAAAAADJgAAAAADJgAAAAABfgAAAAAAJgAAAAADJgAAAAAAJgAAAAABfgAAAAAAHwAAAAABJwAAAAABJwAAAAADQgAAAAAAQgAAAAAAJwAAAAADHwAAAAAACgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAJwAAAAABJwAAAAACQgAAAAAAQgAAAAAAJwAAAAADHwAAAAACCgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAJwAAAAABHwAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAJwAAAAAAHwAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAJwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAPQAAAAABPQAAAAADOgAAAAACOwAAAAAAfgAAAAAAJAAAAAABJAAAAAABfgAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAA + tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAABHwAAAAADBAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAJAAAAAADJAAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAACgAAAAAACgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAACHwAAAAACHwAAAAACGQAAAAACHwAAAAACGQAAAAACHwAAAAADGQAAAAADHwAAAAACGQAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAADHwAAAAABGQAAAAABHwAAAAACGQAAAAAAHwAAAAABGQAAAAAACgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACCgAAAAAAJgAAAAABJgAAAAABJgAAAAAAfgAAAAAAJgAAAAADJgAAAAADJgAAAAABfgAAAAAAHwAAAAAAGQAAAAADGQAAAAABQgAAAAAAQgAAAAAAJwAAAAABHwAAAAABCgAAAAAAJwAAAAADJwAAAAAAJwAAAAACJwAAAAAAJwAAAAABJwAAAAADJwAAAAADJwAAAAABHwAAAAADJwAAAAADJwAAAAACQgAAAAAAQgAAAAAAJwAAAAABHwAAAAACCgAAAAAAJgAAAAAAJgAAAAADJgAAAAACfgAAAAAAJgAAAAACJgAAAAABJgAAAAABfgAAAAAAHwAAAAADJwAAAAADJwAAAAABQgAAAAAAQgAAAAAAJwAAAAABHwAAAAABCgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAHwAAAAACJwAAAAACJwAAAAABQgAAAAAAQgAAAAAAJwAAAAAAHwAAAAACCgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAJwAAAAABHwAAAAADCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAJwAAAAAAHwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAJwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAPQAAAAADPQAAAAADOgAAAAABOwAAAAAAfgAAAAAAJAAAAAADJAAAAAADfgAAAAAAJAAAAAADJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfgAAAAAAOgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAAfgAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABJQAAAAAAUQAAAAAAUQAAAAACfgAAAAAAVAAAAAADVAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfgAAAAAAOgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABJQAAAAAAUQAAAAADUQAAAAABfgAAAAAAVAAAAAABVAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAC version: 6 -5,-5: ind: -5,-5 - tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAACEgAAAAAANgAAAAABNgAAAAABHgAAAAACNgAAAAADNgAAAAADNgAAAAAANgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAEgAAAAAANgAAAAABHgAAAAACHgAAAAABNgAAAAABEgAAAAAANgAAAAAANgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAACNgAAAAADHgAAAAABEgAAAAABHgAAAAADEgAAAAADEgAAAAABNgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAACNgAAAAACNgAAAAAAEgAAAAAAEgAAAAAANgAAAAACEgAAAAABNgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAANgAAAAAAEgAAAAACHgAAAAABHgAAAAABNgAAAAABNgAAAAAAEgAAAAACNgAAAAACNgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADfgAAAAAASwAAAAAAfgAAAAAANgAAAAAAfgAAAAAANgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAASwAAAAACSwAAAAADFQAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAegAAAAACFQAAAAADegAAAAABNgAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFQAAAAABFQAAAAAFFQAAAAABHgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAADHgAAAAADNgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACgAAAAAAfgAAAAAAFQAAAAACDQAAAAAANgAAAAACNgAAAAABNgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAMwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAJgAAAAADJgAAAAABJgAAAAACUgAAAAAAfgAAAAAAXAAAAAACXAAAAAADQAAAAAAAfgAAAAAAEgAAAAABNgAAAAAANgAAAAACfgAAAAAAbAAAAAAAfgAAAAAAJgAAAAADJgAAAAABJgAAAAABJgAAAAAC + tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAACEgAAAAAANgAAAAAANgAAAAACHgAAAAADNgAAAAADNgAAAAAANgAAAAADNgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAEgAAAAAANgAAAAADHgAAAAAAHgAAAAABNgAAAAACEgAAAAADNgAAAAACNgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAADHgAAAAAAEgAAAAABHgAAAAABEgAAAAABEgAAAAAANgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAAANgAAAAACNgAAAAACEgAAAAADEgAAAAAANgAAAAADEgAAAAAANgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAANgAAAAACEgAAAAAAHgAAAAADHgAAAAADNgAAAAAANgAAAAACEgAAAAACNgAAAAABNgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAASwAAAAABfgAAAAAANgAAAAABfgAAAAAANgAAAAAANgAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAASwAAAAADSwAAAAAAFQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAegAAAAACFQAAAAAEegAAAAAANgAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFQAAAAAEFQAAAAADFQAAAAAFHgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAACHgAAAAAANgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACgAAAAAAfgAAAAAAFQAAAAAADQAAAAABNgAAAAABNgAAAAAANgAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAMwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAJgAAAAADJgAAAAAAJgAAAAABUgAAAAABfgAAAAAAXAAAAAAAXAAAAAABQAAAAAAAfgAAAAAAEgAAAAABNgAAAAAANgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAAC version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACQAAAAAACQAAAAABCgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAbAAAAAAAGAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAGAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAABHwAAAAADJAAAAAABfgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAJQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABJQAAAAAAHwAAAAAAHwAAAAADfgAAAAAAUgAAAAADUgAAAAADUwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACQAAAAACCQAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAACCgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAbAAAAAAAGAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAGAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACHwAAAAAAJAAAAAAAHwAAAAADJAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABJQAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAJQAAAAAAHwAAAAACHwAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUwAAAAAA version: 6 -6,-4: ind: -6,-4 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAABJQAAAAAAJAAAAAABJAAAAAABfgAAAAAAUgAAAAAAUgAAAAACUwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADJQAAAAAAHwAAAAADHwAAAAADfgAAAAAAUgAAAAABUgAAAAACUwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAJQAAAAAAHwAAAAACHwAAAAACfgAAAAAAUgAAAAABUgAAAAABUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACJAAAAAACJQAAAAAAJAAAAAAAJAAAAAABfgAAAAAAUgAAAAADUgAAAAABUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAACMwAAAAACMwAAAAABMwAAAAABJwAAAAACHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAAAHwAAAAAAXQAAAAADXQAAAAABHwAAAAACVQAAAAAAVQAAAAABVQAAAAADJgAAAAAAJgAAAAADJgAAAAAAJwAAAAACJgAAAAADJgAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACMwAAAAABMwAAAAADMwAAAAABJwAAAAAAHwAAAAABHwAAAAAAHwAAAAABXQAAAAAAXQAAAAABHwAAAAADXQAAAAAAXQAAAAADHwAAAAABVQAAAAACVQAAAAABVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAICQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbgAAAAABbgAAAAABbgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJQAAAAAAJAAAAAABJAAAAAACfgAAAAAAUgAAAAABUgAAAAABUwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADJQAAAAAAHwAAAAAAHwAAAAADfgAAAAAAUgAAAAABUgAAAAADUwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABJQAAAAAAHwAAAAABHwAAAAAAfgAAAAAAUgAAAAACUgAAAAABUwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACJAAAAAADJQAAAAAAJAAAAAADJAAAAAADfgAAAAAAUgAAAAAAUgAAAAADUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAMwAAAAADMwAAAAAAMwAAAAADJwAAAAADHwAAAAADHwAAAAACHwAAAAACXQAAAAADXQAAAAACHwAAAAACXQAAAAAAXQAAAAACHwAAAAACVQAAAAADVQAAAAAAVQAAAAACJgAAAAAAJgAAAAACJgAAAAAAJwAAAAADJgAAAAADJgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAMwAAAAAAMwAAAAACMwAAAAAAJwAAAAAAHwAAAAADHwAAAAABHwAAAAACXQAAAAACXQAAAAABHwAAAAABXQAAAAACXQAAAAACHwAAAAADVQAAAAAAVQAAAAABVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAICQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAACgAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAECQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAACgAAAAAACQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbgAAAAAAbgAAAAACbgAAAAABGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: fQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAGAAAAAAAbgAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAACgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAICQAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbgAAAAACGAAAAAAAfgAAAAAAfgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbgAAAAACGAAAAAAAfgAAAAAACQAAAAACCQAAAAAACQAAAAAFCQAAAAAGCQAAAAAACQAAAAADCQAAAAACCQAAAAAAfgAAAAAAbgAAAAACbgAAAAABGAAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAABfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAABCgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACQAAAAAGCQAAAAADCQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACgAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAACgAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAGAAAAAAAbgAAAAADGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAACGAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAAAbgAAAAABGAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAAACQAAAAAAfgAAAAAAbgAAAAABbgAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAJCQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACQAAAAAACQAAAAAACQAAAAADCgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: fgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAHwAAAAAAcAAAAAADcAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACTgAAAAACTgAAAAACcAAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAcAAAAAABcAAAAAACHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAACNQAAAAADNQAAAAADNQAAAAACJAAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADMwAAAAADMwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAJgAAAAABJgAAAAADJgAAAAABJgAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAKBwAAAAAMBwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA + tiles: fgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAHwAAAAAAcAAAAAABcAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAATgAAAAABTgAAAAABcAAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAcAAAAAACcAAAAAAAHwAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACXQAAAAADXQAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABJAAAAAABNQAAAAADNQAAAAADNQAAAAAAJAAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAXQAAAAAAXQAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAMwAAAAADMwAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAJgAAAAABJgAAAAAAJgAAAAADJgAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABfgAAAAAAbAAAAAAAbAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAICQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAcAAAAAADcAAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAAACQAAAAAEfgAAAAAAcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAXQAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAAACQAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAAfgAAAAAAcAAAAAAAcAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABJAAAAAAAJAAAAAABJAAAAAADJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAADJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAACJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABXQAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACTgAAAAAATgAAAAACTgAAAAACTgAAAAACCAAAAAABCAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAVgAAAAADVwAAAAAAVgAAAAADVgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAADfgAAAAAAVgAAAAADVwAAAAADVgAAAAADVgAAAAADfgAAAAAAEwAAAAADEwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAfgAAAAAAMgAAAAADMgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAABEwAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABTQAAAAAAMgAAAAABMgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABMwAAAAAAMwAAAAADXQAAAAACXQAAAAABVQAAAAAAVQAAAAADVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAABXQAAAAADXQAAAAADXQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABMwAAAAAAMwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAKfgAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABBwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAACRAAAAAAAfgAAAAAAHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAACRAAAAAAAfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAADXQAAAAAC + tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACTgAAAAABTgAAAAACTgAAAAACTgAAAAACCAAAAAABCAAAAAADCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACfgAAAAAAcwAAAAABcwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAVgAAAAADVwAAAAACVgAAAAACVgAAAAADfgAAAAAAfgAAAAAAEwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAACfgAAAAAAVgAAAAACVwAAAAACVgAAAAACVgAAAAAAfgAAAAAAEwAAAAAAEwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAABfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABfgAAAAAAMgAAAAAAMgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAABEwAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAADTQAAAAABMgAAAAACMgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABMwAAAAADMwAAAAACXQAAAAACXQAAAAABVQAAAAABVQAAAAACVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAACXQAAAAABXQAAAAABXQAAAAACVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADMwAAAAABMwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAADBwAAAAAAfgAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAACBwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADBwAAAAAAcQAAAAACcQAAAAAAcgAAAAACcQAAAAAAcQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAAAXQAAAAADBwAAAAAAcQAAAAAAcQAAAAADcgAAAAADcQAAAAADcQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAADRAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAADRAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAC version: 6 -2,-3: ind: -2,-3 - tiles: SgAAAAADfgAAAAAAdAAAAAABdAAAAAADfgAAAAAAVQAAAAABMwAAAAADVQAAAAACXQAAAAAAXQAAAAAAXQAAAAABIQAAAAACIQAAAAAAawAAAAAARgAAAAAARgAAAAAASgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAdgAAAAAAVQAAAAAAXQAAAAACVQAAAAABXQAAAAACXQAAAAACXQAAAAABIQAAAAABIQAAAAACawAAAAADIQAAAAADIQAAAAABSgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAdgAAAAAAVQAAAAAAXQAAAAAAVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADXQAAAAADXQAAAAACKQAAAAAAfgAAAAAAdAAAAAAAdAAAAAABfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAfgAAAAAASwAAAAABSwAAAAADSwAAAAACSwAAAAAAawAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAdAAAAAADdAAAAAACfgAAAAAAVQAAAAADXQAAAAACVQAAAAABfgAAAAAASwAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAdAAAAAABdAAAAAABfgAAAAAAVQAAAAADXQAAAAACVQAAAAADfgAAAAAASwAAAAADSwAAAAABSwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABMwAAAAADVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAABVQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABXQAAAAAAVQAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACfgAAAAAAVQAAAAADXQAAAAAAVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAADfgAAAAAAVQAAAAAAXQAAAAACVQAAAAACHwAAAAACJwAAAAADHwAAAAACegAAAAAAegAAAAACegAAAAACegAAAAAAFgAAAAAAJgAAAAABJwAAAAAAJgAAAAACJwAAAAACfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAADHwAAAAABJwAAAAAAHwAAAAACDQAAAAABDQAAAAACDQAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACVQAAAAADVQAAAAAAXQAAAAACVQAAAAADHwAAAAADJwAAAAACHwAAAAACegAAAAAADQAAAAACegAAAAACfgAAAAAAbAAAAAAAJgAAAAADJwAAAAADJgAAAAADDQAAAAACfgAAAAAAVQAAAAACMwAAAAADVQAAAAAAHwAAAAADJwAAAAAAHwAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAbAAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAABVQAAAAAAVQAAAAACMwAAAAABVQAAAAADHwAAAAADJwAAAAAAHwAAAAAADQAAAAACDQAAAAAADQAAAAAAbAAAAAAAbAAAAAAADQAAAAADegAAAAABegAAAAADegAAAAADfgAAAAAAVQAAAAADXQAAAAAAVQAAAAAAHwAAAAACJwAAAAACHwAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAbAAAAAAA + tiles: SgAAAAAAfgAAAAAAdAAAAAACdAAAAAAAfgAAAAAAVQAAAAACMwAAAAACVQAAAAABXQAAAAABXQAAAAAAXQAAAAABIQAAAAACIQAAAAABawAAAAABRgAAAAAARgAAAAAASgAAAAACXQAAAAABXQAAAAADXQAAAAABdgAAAAAAVQAAAAACXQAAAAABVQAAAAADXQAAAAACXQAAAAABXQAAAAACIQAAAAADIQAAAAAAawAAAAADUwAAAAACUwAAAAADSgAAAAADXQAAAAAAXQAAAAADXQAAAAADdgAAAAAAVQAAAAADXQAAAAADVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADXQAAAAACXQAAAAACKQAAAAAAfgAAAAAAdAAAAAACdAAAAAABfgAAAAAAVQAAAAADXQAAAAABVQAAAAABfgAAAAAASwAAAAADSwAAAAABSwAAAAADSwAAAAABawAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAdAAAAAACdAAAAAADfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAfgAAAAAASwAAAAADSwAAAAACSwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAdAAAAAACdAAAAAABfgAAAAAAVQAAAAABXQAAAAABVQAAAAACfgAAAAAASwAAAAAASwAAAAABSwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAAAVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACMwAAAAABVQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAJgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAADVQAAAAADHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAegAAAAACFQAAAAADegAAAAAAegAAAAADfgAAAAAAVQAAAAABXQAAAAACVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAADfgAAAAAAVQAAAAACXQAAAAAAVQAAAAAAHwAAAAABJwAAAAACHwAAAAACegAAAAADegAAAAAAegAAAAABegAAAAACFgAAAAAAJgAAAAACJwAAAAAAJgAAAAADJwAAAAAAfgAAAAAAVQAAAAACXQAAAAAAVQAAAAADHwAAAAACJwAAAAACHwAAAAAADQAAAAAADQAAAAADDQAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAACVQAAAAAAVQAAAAACXQAAAAADVQAAAAADHwAAAAAAJwAAAAABHwAAAAAAegAAAAACDQAAAAADegAAAAADfgAAAAAAbAAAAAAAJgAAAAAAJwAAAAABJgAAAAACJwAAAAAAfgAAAAAAVQAAAAACMwAAAAACVQAAAAAAHwAAAAADJwAAAAACHwAAAAACegAAAAADegAAAAACegAAAAACfgAAAAAAbAAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACVQAAAAAAVQAAAAADMwAAAAAAVQAAAAABHwAAAAACJwAAAAACHwAAAAABDQAAAAABDQAAAAADDQAAAAACbAAAAAAAbAAAAAAADQAAAAACegAAAAADegAAAAADegAAAAABfgAAAAAAVQAAAAABXQAAAAABVQAAAAABHwAAAAAAJwAAAAABHwAAAAACegAAAAAAegAAAAACegAAAAACfgAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: DQAAAAACegAAAAABegAAAAAAegAAAAACfgAAAAAAVQAAAAAAXQAAAAACVQAAAAACHwAAAAADJwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACegAAAAAAegAAAAACegAAAAADfgAAAAAAVQAAAAADXQAAAAAAVQAAAAAAHwAAAAADJwAAAAADHwAAAAACHwAAAAABfgAAAAAAIwAAAAABWwAAAAADWwAAAAADDQAAAAADDQAAAAADDQAAAAAADQAAAAADfgAAAAAAVQAAAAAAXQAAAAADVQAAAAADHwAAAAABJwAAAAACHwAAAAAAHwAAAAADfgAAAAAAIwAAAAACegAAAAADfAAAAAADegAAAAADegAAAAAAJgAAAAAAJwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAWwAAAAABDQAAAAADDQAAAAADJwAAAAABJgAAAAACfAAAAAADVQAAAAABXQAAAAAAXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAACJgAAAAAAJgAAAAACJgAAAAADegAAAAACegAAAAABJgAAAAABJwAAAAABfAAAAAAAVQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJgAAAAABJgAAAAABJgAAAAADUAAAAAAAegAAAAADegAAAAACegAAAAADfAAAAAAAVQAAAAABXQAAAAABXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJgAAAAACegAAAAAAWwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAMwAAAAAAMwAAAAACVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAABXQAAAAADXQAAAAAAMwAAAAADMwAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACMwAAAAADMwAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAABXQAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACJgAAAAABJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADJgAAAAABJgAAAAADJgAAAAACJgAAAAADJgAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACJgAAAAADJgAAAAAAJgAAAAAAJgAAAAACJgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAXQAAAAADXQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADfgAAAAAAJwAAAAABJwAAAAADJgAAAAACJgAAAAAC + tiles: DQAAAAAAegAAAAABegAAAAACegAAAAAAfgAAAAAAVQAAAAACXQAAAAABVQAAAAAAHwAAAAABJwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAADegAAAAABegAAAAAAegAAAAADfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAADHwAAAAACJwAAAAACHwAAAAAAHwAAAAADfgAAAAAAIwAAAAACWwAAAAAAWwAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAABfgAAAAAAVQAAAAACXQAAAAABVQAAAAACHwAAAAABJwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAIwAAAAACegAAAAACfAAAAAAAegAAAAADegAAAAACJgAAAAADJwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABWwAAAAACDQAAAAADDQAAAAABJwAAAAABJgAAAAABfAAAAAAAVQAAAAADXQAAAAACXQAAAAACfgAAAAAADQAAAAAADQAAAAAADQAAAAAAfAAAAAAAJgAAAAAAJgAAAAACJgAAAAACegAAAAABegAAAAAAJgAAAAAAJwAAAAACfAAAAAACVQAAAAABXQAAAAADXQAAAAABfgAAAAAADQAAAAAADQAAAAAAFQAAAAAAfgAAAAAAJgAAAAAAJgAAAAABJgAAAAACUAAAAAAAegAAAAADegAAAAACegAAAAACfAAAAAADVQAAAAADXQAAAAABXQAAAAABfgAAAAAAFQAAAAAADQAAAAAAFQAAAAAAfgAAAAAAJgAAAAABegAAAAABWwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACMwAAAAABMwAAAAABVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADXQAAAAACXQAAAAABMwAAAAAAMwAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABMwAAAAACMwAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAJAAAAAADXQAAAAADXQAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACJgAAAAADJgAAAAADJgAAAAABJgAAAAABJgAAAAABfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAAAJgAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADJgAAAAADJgAAAAAAJgAAAAADJgAAAAACJgAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAADfgAAAAAAJwAAAAAAJwAAAAADJgAAAAAAJgAAAAAB version: 6 -3,-4: ind: -3,-4 - tiles: GQAAAAABHwAAAAADHwAAAAACHwAAAAABJgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAJgAAAAACJgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABJgAAAAADHwAAAAAAJgAAAAAAHwAAAAABJgAAAAABJgAAAAADfgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAABfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJgAAAAABHwAAAAADHwAAAAACfgAAAAAAJgAAAAADJgAAAAABfgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAABfgAAAAAAHgAAAAABHgAAAAABfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAADHgAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACHgAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACNAAAAAACNAAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABXQAAAAACXQAAAAABXQAAAAADMwAAAAACMwAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAMwAAAAABMwAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACVQAAAAADVQAAAAACXQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAACfgAAAAAAVQAAAAACXQAAAAAAVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACVQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAASgAAAAABSgAAAAADSgAAAAAASgAAAAADSgAAAAADSgAAAAACSgAAAAABSgAAAAACSgAAAAACfgAAAAAAVQAAAAADMwAAAAADVQAAAAADfgAAAAAAAAAAAAAAfgAAAAAASgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAVQAAAAABMwAAAAACVQAAAAABfgAAAAAAAAAAAAAAfgAAAAAASgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAA + tiles: GQAAAAACHwAAAAADHwAAAAADSwAAAAAAFQAAAAABegAAAAADSwAAAAABfgAAAAAAJgAAAAACJgAAAAABfgAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAASwAAAAAAegAAAAACFQAAAAAASwAAAAADHwAAAAACJgAAAAACJgAAAAADfgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAACfgAAAAAAJgAAAAADJgAAAAACfgAAAAAAJgAAAAACJgAAAAABJgAAAAADJgAAAAADfgAAAAAAHgAAAAAAHgAAAAADfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACHgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADNAAAAAACNAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAADXQAAAAABXQAAAAADXQAAAAABMwAAAAAAMwAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADMwAAAAACMwAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABVQAAAAADVQAAAAABXQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAfgAAAAAAVQAAAAADXQAAAAACVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABXQAAAAACVQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVQAAAAACXQAAAAADVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACXQAAAAAAVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAASgAAAAABSgAAAAADSgAAAAADSgAAAAAASgAAAAACSgAAAAADSgAAAAACSgAAAAAASgAAAAAAfgAAAAAAVQAAAAADMwAAAAABVQAAAAABfgAAAAAAAAAAAAAAfgAAAAAASgAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAFfgAAAAAAVQAAAAABMwAAAAABVQAAAAABfgAAAAAAAAAAAAAAfgAAAAAASgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fgAAAAAAVQAAAAABXQAAAAABVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAASgAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAEKQAAAAABfgAAAAAAVQAAAAABXQAAAAACVQAAAAADVQAAAAAASgAAAAABSgAAAAAASgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAACVQAAAAABSgAAAAAASgAAAAACSgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAfgAAAAAAVQAAAAADXQAAAAACVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAfgAAAAAAVQAAAAABXQAAAAAAVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADfgAAAAAAVQAAAAABMwAAAAADVQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAACKQAAAAAEKQAAAAACKQAAAAADDAAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAfgAAAAAAVQAAAAABMwAAAAABVQAAAAABfgAAAAAAfQAAAAAAfgAAAAAADAAAAAADKQAAAAAAKQAAAAAAKQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAADfgAAAAAAVQAAAAABXQAAAAADVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACXQAAAAACVQAAAAACfgAAAAAAdQAAAAADdQAAAAACdQAAAAACdQAAAAACdQAAAAACdgAAAAAAdgAAAAAAJgAAAAADJgAAAAAAJgAAAAAAJgAAAAACfgAAAAAAVQAAAAAAXQAAAAABVQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAABPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADIwAAAAABVQAAAAACXQAAAAABVQAAAAACPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAABJgAAAAABJwAAAAACJgAAAAABJwAAAAAAfgAAAAAAVQAAAAADMwAAAAADVQAAAAADPgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAVQAAAAABMwAAAAACVQAAAAADfgAAAAAAPAAAAAAAfgAAAAAAPAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAJgAAAAABJwAAAAACfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAADQAAAAADDQAAAAABDQAAAAACfgAAAAAAVQAAAAABXQAAAAAAVQAAAAABfgAAAAAAPAAAAAAANwAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAVQAAAAACXQAAAAADVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAASgAAAAADKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAVQAAAAABXQAAAAADVQAAAAABVQAAAAABSgAAAAABSgAAAAABSgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAfgAAAAAAVQAAAAACXQAAAAABVQAAAAADVQAAAAABSgAAAAADSgAAAAAASgAAAAACKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAVQAAAAAAMwAAAAACVQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAADKQAAAAAAfwAAAAADfwAAAAACfwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAVQAAAAAAMwAAAAADVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfwAAAAACKQAAAAABKQAAAAAAfwAAAAAAfwAAAAADfwAAAAAAfwAAAAACfwAAAAADfwAAAAABfgAAAAAAVQAAAAABXQAAAAACVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABXQAAAAACVQAAAAACfgAAAAAAdQAAAAADdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAJgAAAAACJgAAAAADJgAAAAABJgAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAABegAAAAADFQAAAAAAegAAAAADFQAAAAADfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAABPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAACDQAAAAABDQAAAAABDQAAAAACDQAAAAADIwAAAAABVQAAAAAAXQAAAAACVQAAAAACPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAACJgAAAAACJwAAAAACJgAAAAADJwAAAAAAfgAAAAAAVQAAAAACMwAAAAADVQAAAAABPgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAegAAAAABegAAAAACFQAAAAABFQAAAAACfgAAAAAAVQAAAAABMwAAAAACVQAAAAABfgAAAAAAPAAAAAAAfgAAAAAAPAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAADJgAAAAAAJwAAAAADfgAAAAAAVQAAAAADXQAAAAAAVQAAAAAAfgAAAAAAPAAAAAAANwAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAADQAAAAADDQAAAAADDQAAAAACfgAAAAAAVQAAAAADXQAAAAAAVQAAAAACfgAAAAAAPAAAAAAANwAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAADfgAAAAAAfgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: fgAAAAAAVQAAAAACXQAAAAABVQAAAAABPAAAAAAAPAAAAAAANwAAAAADPAAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAVQAAAAABXQAAAAABVQAAAAABfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAADNwAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACVQAAAAABfgAAAAAAPAAAAAAANwAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAABNwAAAAADfgAAAAAAfgAAAAAAVQAAAAACXQAAAAADfgAAAAAAfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADegAAAAABXQAAAAABXQAAAAABXQAAAAABPAAAAAAANwAAAAABNwAAAAADNwAAAAACfgAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADMwAAAAAAMwAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABMwAAAAABMwAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAJgAAAAACfgAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAAAIQAAAAADMgAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJgAAAAADJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAMgAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJgAAAAABJQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAMgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAABegAAAAABegAAAAABegAAAAACegAAAAAA + tiles: fgAAAAAAVQAAAAADXQAAAAACVQAAAAAAPAAAAAAAPAAAAAAANwAAAAABPAAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAADVQAAAAADfgAAAAAAPAAAAAAANwAAAAABPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAACNwAAAAACfgAAAAAAfgAAAAAAVQAAAAACXQAAAAADVQAAAAADfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAPAAAAAAANwAAAAABPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAAAegAAAAACXQAAAAADXQAAAAAAXQAAAAACPAAAAAAANwAAAAACNwAAAAADNwAAAAABfgAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACMwAAAAADMwAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADMwAAAAACMwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAJgAAAAABfgAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAADIQAAAAABKgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJgAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAKgAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJgAAAAAAJQAAAAAAfgAAAAAAegAAAAAAFQAAAAAEFQAAAAAAegAAAAACKgAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAADegAAAAABegAAAAABegAAAAABegAAAAAD version: 6 -3,-1: ind: -3,-1 - tiles: MgAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACDQAAAAABDQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABegAAAAAAegAAAAADegAAAAABegAAAAADegAAAAAAJgAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADDQAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAABDQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAADQAAAAABDQAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADDQAAAAABegAAAAABDQAAAAABDQAAAAABDQAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAADegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAJgAAAAABJgAAAAAAJgAAAAACJgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAAAfgAAAAAAJAAAAAABJAAAAAABIAAAAAAAJAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAACfgAAAAAAJAAAAAAAJAAAAAACIAAAAAACJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAADfgAAAAAAJAAAAAABJAAAAAAAIAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAABfgAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAACfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAAD + tiles: KgAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAfgAAAAAAfgAAAAAAJgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFQAAAAAEegAAAAAAegAAAAAAegAAAAAADQAAAAABDQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAAAegAAAAACJgAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACFQAAAAAFegAAAAABegAAAAADegAAAAABFQAAAAAGDQAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAAADQAAAAABDQAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABFQAAAAACFQAAAAAEegAAAAABDQAAAAAADQAAAAACDQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAADegAAAAADegAAAAADFQAAAAABfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAXQAAAAADXQAAAAADJgAAAAABJgAAAAADJgAAAAAAJgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAADXQAAAAADJgAAAAADJgAAAAABJgAAAAAAJgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAAAIQAAAAADIQAAAAAAfgAAAAAAUQAAAAACJAAAAAABYwAAAAACJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAADfgAAAAAAUQAAAAABJAAAAAAAYwAAAAABJAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAABfgAAAAAAUQAAAAADJAAAAAACYwAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAAAIQAAAAAAfgAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAABfgAAAAAAfgAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAAC version: 6 -4,-4: ind: -4,-4 - tiles: UAAAAAAAJQAAAAAAIgAAAAACIgAAAAABfgAAAAAAVAAAAAADVAAAAAACVAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABGQAAAAABMwAAAAABJQAAAAAAIgAAAAABUQAAAAAAfgAAAAAAVAAAAAAAVAAAAAACVAAAAAABfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACUAAAAAAAfgAAAAAAIgAAAAABUQAAAAABfgAAAAAAVAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAABHgAAAAAAMwAAAAACJgAAAAACUQAAAAABUQAAAAABUQAAAAAAUQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACHgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAQgAAAAAAQgAAAAAAMwAAAAACMwAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADVQAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAQgAAAAAAQgAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAABXQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACXQAAAAACMwAAAAAAMwAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACMwAAAAAAMwAAAAABXQAAAAAAPwAAAAAAPwAAAAAATAAAAAAAfgAAAAAAaAAAAAACaAAAAAAAVQAAAAABVQAAAAACaAAAAAADaAAAAAADaAAAAAACaAAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAABPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAATAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAAADQAAAAADbgAAAAACbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAADegAAAAABegAAAAACegAAAAACbgAAAAABbgAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAADDQAAAAAADQAAAAAB + tiles: UAAAAAAAJQAAAAAAIgAAAAACIgAAAAABfgAAAAAAVAAAAAADVAAAAAABVAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAGQAAAAADMwAAAAABJQAAAAAAIgAAAAADUQAAAAACfgAAAAAAVAAAAAADVAAAAAACVAAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACUAAAAAAAfgAAAAAAIgAAAAADUQAAAAAAfgAAAAAAVAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAADHgAAAAACMwAAAAAAJgAAAAACUQAAAAABUQAAAAABUQAAAAAAUQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAABHgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAQgAAAAAAQgAAAAAAMwAAAAACMwAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADVQAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAQgAAAAAAQgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAAAMwAAAAACMwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABMwAAAAABMwAAAAACXQAAAAADPwAAAAAAPwAAAAAATAAAAAAAfgAAAAAAaAAAAAADaAAAAAADVQAAAAADVQAAAAABaAAAAAAAaAAAAAAAaAAAAAADaAAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAATAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACDQAAAAACDQAAAAADDQAAAAABDQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABDQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAAAbgAAAAABbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAACegAAAAADegAAAAABbgAAAAABbgAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: bgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAACEgAAAAADEgAAAAACNgAAAAABNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAADQgAAAAAANgAAAAADQgAAAAAAQgAAAAAAfgAAAAAAdQAAAAADdQAAAAADdQAAAAAABAAAAAAABAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAcAAAAAACBAAAAAAABAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAABdAAAAAACdQAAAAACcAAAAAABcAAAAAABcAAAAAAAdQAAAAABWAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdAAAAAAAdAAAAAACCAAAAAABCAAAAAADCAAAAAABcAAAAAAAcAAAAAADBAAAAAAABAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAADdAAAAAABCAAAAAAACAAAAAADCAAAAAACdQAAAAABdQAAAAACBAAAAAAABAAAAAAAbAAAAAAAfgAAAAAAWAAAAAAAWAAAAAABWAAAAAADWAAAAAABfgAAAAAAdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAWAAAAAABWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAdAAAAAABfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAHwAAAAACKAAAAAADHwAAAAAAbAAAAAAAfgAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAACcAAAAAACcAAAAAAAEQAAAAAAcAAAAAADfgAAAAAAHwAAAAAAIAAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAACcAAAAAACcAAAAAABcAAAAAACcAAAAAABfgAAAAAAHwAAAAADIAAAAAAAHwAAAAABbAAAAAAAfgAAAAAAWAAAAAACWAAAAAAAWAAAAAADWAAAAAADfgAAAAAAdAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAACIAAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA + tiles: bgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADFQAAAAAGegAAAAAAegAAAAABFQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACFQAAAAABegAAAAAAfgAAAAAAdQAAAAABdQAAAAACdQAAAAACBAAAAAAABAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAADcAAAAAAABAAAAAAABAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAAAdAAAAAACdQAAAAADcAAAAAADcAAAAAABcAAAAAACdQAAAAABcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdAAAAAADdAAAAAAACAAAAAACCAAAAAADCAAAAAABcAAAAAACcAAAAAADBAAAAAAABAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAABCAAAAAADCAAAAAABCAAAAAABdQAAAAADdQAAAAADBAAAAAAABAAAAAAAbAAAAAAAfgAAAAAAWAAAAAAAWAAAAAADWAAAAAAAWAAAAAABfgAAAAAAdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAWAAAAAACWAAAAAADWAAAAAADWAAAAAABfgAAAAAAdAAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACKAAAAAABHwAAAAACbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAAAcAAAAAAAcAAAAAACEQAAAAAAcAAAAAAAfgAAAAAAHwAAAAADIAAAAAABHwAAAAABbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAACdAAAAAADdAAAAAACcAAAAAACcAAAAAADcAAAAAADcAAAAAADfgAAAAAAHwAAAAACIAAAAAAAHwAAAAADbAAAAAAAfgAAAAAAWAAAAAACWAAAAAAAWAAAAAACWAAAAAABfgAAAAAAdAAAAAABfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAAAIAAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: CAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACAAAAAACdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAdQAAAAACdQAAAAADdQAAAAAAfgAAAAAAdgAAAAAACAAAAAADdgAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAACfgAAAAAAEQAAAAAAfgAAAAAAcAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAAAMAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAEwAAAAABfgAAAAAAcAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADMAAAAAAAFAAAAAABFAAAAAACFAAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAdQAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAACMAAAAAAAFAAAAAAAFAAAAAACFAAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAMgAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABMwAAAAADMwAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAATQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACTQAAAAAATQAAAAAATQAAAAABIgAAAAADIgAAAAAAIgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAAAfgAAAAAAMgAAAAABMgAAAAADMgAAAAABHwAAAAADfgAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAADIwAAAAABIwAAAAABIwAAAAACfgAAAAAADQAAAAACDQAAAAADfgAAAAAAMgAAAAACMgAAAAADMgAAAAAAHwAAAAABHwAAAAABXwAAAAAAXwAAAAAATgAAAAAATgAAAAADTgAAAAACXwAAAAADXwAAAAACXQAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAAAMgAAAAACMgAAAAAAHwAAAAABfgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADIwAAAAABfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAADMgAAAAADMgAAAAAA + tiles: CAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAADCAAAAAACcwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAdQAAAAADdQAAAAACdQAAAAACfgAAAAAAcwAAAAAACAAAAAAAcwAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAADfgAAAAAAEQAAAAAAfgAAAAAAcAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACMAAAAAAAFAAAAAACFAAAAAABFAAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACEwAAAAAAfgAAAAAAcAAAAAACCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAADMAAAAAAAFAAAAAACFAAAAAAAFAAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACdQAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAMAAAAAAAFAAAAAABFAAAAAACFAAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABMgAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAMwAAAAABMwAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAACVQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAATQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADTQAAAAABTQAAAAABTQAAAAAAIgAAAAACIgAAAAADIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAADfgAAAAAAKgAAAAABKgAAAAACKgAAAAAAHwAAAAABfgAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAACIwAAAAACfgAAAAAADQAAAAABDQAAAAAAfgAAAAAAKgAAAAADKgAAAAAAKgAAAAABHwAAAAADHwAAAAABXwAAAAADXwAAAAADTgAAAAAATgAAAAABTgAAAAACXwAAAAACXwAAAAACXQAAAAACMAAAAAAAMAAAAAAAfgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAHwAAAAAAfgAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAKgAAAAACKgAAAAABKgAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAXQAAAAACXQAAAAACYwAAAAABYwAAAAACYwAAAAADYwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAYwAAAAABYwAAAAACYwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAADDQAAAAACfgAAAAAAXQAAAAACXQAAAAABfgAAAAAASAAAAAACSAAAAAADSAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADXQAAAAADXQAAAAAASAAAAAABSAAAAAAASAAAAAABSAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACDQAAAAABDQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAASAAAAAADSAAAAAADSAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAABOAAAAAAANwAAAAAAfgAAAAAAWgAAAAADdQAAAAABdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAAAOAAAAAAANwAAAAAAfgAAAAAAdQAAAAACWgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAYwAAAAADYwAAAAACYwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABXQAAAAADXQAAAAACYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAYwAAAAAAYwAAAAABYwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAABDQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAASAAAAAAASAAAAAABSAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAFQAAAAABegAAAAADegAAAAADXQAAAAACXQAAAAACSAAAAAACSAAAAAADSAAAAAAASAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAASAAAAAAASAAAAAADSAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAADOAAAAAAANwAAAAACfgAAAAAAWgAAAAABdQAAAAADdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAADOAAAAAAANwAAAAACfgAAAAAAdQAAAAAAWgAAAAACdQAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAcwAAAAACcwAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: UgAAAAAAfgAAAAAAXAAAAAACXAAAAAADQAAAAAAAfgAAAAAANgAAAAAAEgAAAAAANgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJgAAAAACJgAAAAADJgAAAAADJgAAAAAAUgAAAAACfgAAAAAAYwAAAAABYwAAAAACVAAAAAADfgAAAAAANgAAAAABNgAAAAADNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAAAUgAAAAADfgAAAAAAYwAAAAAAYwAAAAABVAAAAAACfgAAAAAAEgAAAAAAHgAAAAAAEgAAAAACfgAAAAAAbAAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAJgAAAAABJgAAAAADUgAAAAABfgAAAAAAVAAAAAABVAAAAAABVAAAAAAAfgAAAAAANgAAAAABNgAAAAACNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAJgAAAAABJgAAAAAAJgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAfgAAAAAAfgAAAAAAVQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAACXQAAAAAAXQAAAAABXQAAAAAAMwAAAAADMwAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAMwAAAAADMwAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAASQAAAAADSQAAAAADSQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAADXQAAAAABXQAAAAABSQAAAAABSQAAAAADSQAAAAADSQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAABfgAAAAAASQAAAAABSQAAAAAASQAAAAABfgAAAAAATAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAZQAAAAACZQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAACZQAAAAABZQAAAAABZQAAAAACZQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZQAAAAABZQAAAAACZQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAB + tiles: UgAAAAADfgAAAAAAXAAAAAAAXAAAAAACQAAAAAAAfgAAAAAANgAAAAABEgAAAAAANgAAAAACfgAAAAAAbAAAAAAAfgAAAAAAJgAAAAACJgAAAAADJgAAAAABJgAAAAADUgAAAAACfgAAAAAAYwAAAAACYwAAAAABVAAAAAADfgAAAAAANgAAAAABNgAAAAADNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAABUgAAAAACfgAAAAAAYwAAAAADYwAAAAABVAAAAAABfgAAAAAAEgAAAAABHgAAAAADEgAAAAADfgAAAAAAbAAAAAAAfgAAAAAAUAAAAAAAJgAAAAAAJgAAAAADJgAAAAACUgAAAAABfgAAAAAAVAAAAAAAVAAAAAABVAAAAAACfgAAAAAANgAAAAADNgAAAAACNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAJgAAAAABJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAADfgAAAAAAfgAAAAAAVQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAABXQAAAAADXQAAAAACXQAAAAABMwAAAAAAMwAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACMwAAAAADMwAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAABfgAAAAAASQAAAAACSQAAAAADSQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABXQAAAAABXQAAAAADSQAAAAAASQAAAAADSQAAAAADSQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAASQAAAAAASQAAAAACSQAAAAACfgAAAAAATAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAZQAAAAACZQAAAAAAZQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAACZQAAAAADZQAAAAABZQAAAAABZQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAACfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAZQAAAAACZQAAAAABZQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAC version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAACQAAAAAJCQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAFCQAAAAAGCQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAACQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAACQAAAAAACQAAAAAKfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAHfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAACCgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAALCQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAGCQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAJCQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAALCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAACCQAAAAAGCQAAAAAACQAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAGCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 @@ -371,7 +373,7 @@ entities: version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAAAAAAAAAACQAAAAAACQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -5,-7: ind: -5,-7 @@ -379,11 +381,11 @@ entities: version: 6 -7,-3: ind: -7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAADCQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAADCgAAAAAACgAAAAAACgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAACQAAAAAMCQAAAAAACQAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAHCQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAAACgAAAAAACgAAAAAACgAAAAAA version: 6 -7,-4: ind: -7,-4 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAAAZwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHwAAAAADHwAAAAADHwAAAAABJwAAAAAAMwAAAAABMwAAAAABMwAAAAAAJwAAAAACHwAAAAACJwAAAAAAKwAAAAAAEQAAAAAAKwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAJgAAAAABJgAAAAADJwAAAAABJgAAAAABJgAAAAABJgAAAAAAJwAAAAADHwAAAAADJwAAAAADKwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHwAAAAABHwAAAAAAHwAAAAADJwAAAAAAMwAAAAAAMwAAAAADMwAAAAADJwAAAAACHwAAAAACJwAAAAABPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAABZwAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAACZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAABHwAAAAADJwAAAAACMwAAAAABMwAAAAADMwAAAAAAJwAAAAACHwAAAAADJwAAAAADKwAAAAAAEQAAAAAAKwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAJgAAAAACJgAAAAAAJwAAAAAAJgAAAAADJgAAAAACJgAAAAABJwAAAAABHwAAAAACJwAAAAACKwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHwAAAAACHwAAAAADHwAAAAABJwAAAAADMwAAAAAAMwAAAAADMwAAAAAAJwAAAAAAHwAAAAADJwAAAAADPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAADZwAAAAABdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAZwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAPwAAAAAAEQAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -7,-5: ind: -7,-5 @@ -391,7 +393,7 @@ entities: version: 6 -8,-4: ind: -8,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAABZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAACZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -8,-5: ind: -8,-5 @@ -411,7 +413,7 @@ entities: version: 6 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAFQAAAAACFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAHfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAFQAAAAAEFQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA version: 6 -6,0: ind: -6,0 @@ -634,6 +636,27 @@ entities: id: Basalt5 decals: 4081: -75.85125,-76.78205 + - node: + cleanable: True + zIndex: 10 + color: '#BA000073' + id: Basalt5 + decals: + 5819: -77.29874,-9.999382 + 5820: -75.7527,-9.835854 + 5821: -77.923096,-10.014248 + 5822: -76.98656,-9.9399185 + 5823: -78.11635,-8.274902 + 5824: -75.69325,-8.349234 + 5825: -77.67038,-8.126241 + 5826: -77.29874,-8.007311 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D049' + id: Basalt5 + decals: + 5724: -69.90903,-7.8770914 - node: zIndex: 1 color: '#DFACE6FF' @@ -3214,6 +3237,16 @@ entities: 3192: -49,-30 3193: -49,-31 3194: -49,-32 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: BushAOne + decals: + 6078: -26.257833,5.463393 + 6079: -26.43622,6.3999643 + 6080: -26.51055,5.493126 + 6081: -26.43622,6.637823 - node: cleanable: True zIndex: 40 @@ -3310,12 +3343,6 @@ entities: 4116: -78.79438,-75.311035 4406: -96.16878,-30.085936 4407: -98.002205,-29.193964 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 1554: -48.90679,-16.454704 - 1555: -49.978928,-17.270908 - node: cleanable: True color: '#0000003B' @@ -3323,6 +3350,15 @@ entities: decals: 4117: -78.17993,-76.24012 4118: -77.05757,-74.587494 + - node: + cleanable: True + zIndex: 10 + color: '#BA00004D' + id: Bushb3 + decals: + 5850: -76.98656,-9.047945 + 5851: -77.01628,-9.375002 + 5852: -77.13521,-8.438431 - node: cleanable: True zIndex: 40 @@ -3349,11 +3385,6 @@ entities: 4089: -73.96151,-65.69581 4090: -72.35059,-62.132664 5520: -76.70047,-18.194607 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 1553: -49.925453,-18.368416 - node: cleanable: True zIndex: 40 @@ -3405,11 +3436,6 @@ entities: 4628: -63.40633,24.200346 4629: -62.425198,23.75436 4630: -63.049553,23.605698 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 1551: -49.504555,-16.096249 - node: cleanable: True zIndex: 40 @@ -3456,9 +3482,6 @@ entities: color: '#FFFFFFFF' id: Bushi2 decals: - 1548: -50.93637,-16.216513 - 1549: -48.097137,-16.135056 - 1550: -48.71386,-17.659458 3893: 17.098783,-9.057839 - node: cleanable: True @@ -3543,11 +3566,6 @@ entities: 3889: -68.70116,-37.887283 3890: -69.08427,-37.748535 3891: -68.82005,-38.178 - - node: - color: '#FFFFFFFF' - id: Bushl4 - decals: - 1552: -50.11164,-15.948086 - node: cleanable: True zIndex: 10 @@ -3602,12 +3620,6 @@ entities: id: Bushn1 decals: 3892: -68.52503,-37.82782 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 1556: -49.37554,-19.243792 - 1557: -48.84028,-15.892438 - node: color: '#FFFFFFFF' id: Caution @@ -3721,12 +3733,96 @@ entities: 3604: -62,-18 3605: -57,-18 3606: -56,-18 + - node: + zIndex: 6 + color: '#00000033' + id: ConcreteTrimCornerSe + decals: + 6042: -33,-50 + - node: + zIndex: 6 + color: '#00000033' + id: ConcreteTrimCornerSw + decals: + 6035: -40,-50 + - node: + zIndex: 6 + color: '#00000033' + id: ConcreteTrimLineE + decals: + 6043: -33,-49 + 6044: -33,-48 + 6045: -33,-47 + 6046: -33,-46 + - node: + zIndex: 6 + color: '#00000033' + id: ConcreteTrimLineS + decals: + 6036: -39,-50 + 6037: -38,-50 + 6038: -37,-50 + 6039: -36,-50 + 6040: -35,-50 + 6041: -34,-50 + - node: + zIndex: 6 + color: '#00000033' + id: ConcreteTrimLineW + decals: + 6031: -40,-46 + 6032: -40,-47 + 6033: -40,-48 + 6034: -40,-49 - node: cleanable: True color: '#00000063' id: Damaged decals: 3389: -79.007774,-34.039948 + - node: + cleanable: True + zIndex: 10 + color: '#BA00004D' + id: Damaged + decals: + 5842: -77.01628,-9.96965 + 5843: -77.16495,-9.181741 + 5844: -77.23927,-8.616825 + 5845: -77.93796,-8.155973 + 5846: -75.66351,-8.230305 + 5847: -76.54059,-8.691156 + 5848: -76.92709,-8.824952 + - node: + cleanable: True + zIndex: 10 + angle: 4.71238898038469 rad + color: '#BA00005A' + id: Damaged + decals: + 5917: -77.12579,-10.170551 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D049' + id: Damaged + decals: + 5725: -69.85948,-7.936556 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D060' + id: Damaged + decals: + 5740: -69.13269,-9.391466 + 5741: -67.606476,-7.9246674 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D09B' + id: Damaged + decals: + 5726: -66.57912,-7.2923536 - node: cleanable: True color: '#E900005D' @@ -3886,7 +3982,6 @@ entities: id: Dirt decals: 4408: -42,-63 - 4409: -44,-65 4413: -34,-67 4417: -38,-70 4425: -39,-78 @@ -4230,6 +4325,29 @@ entities: id: DirtHeavy decals: 1726: -78.17955,-6.5953217 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: DirtHeavy + decals: + 6115: -20.860792,-7.962137 + 6116: -20.920256,-7.962137 + 6117: -20.90539,-7.99187 + - node: + cleanable: True + zIndex: 10 + color: '#BA00005A' + id: DirtHeavy + decals: + 5927: -79.29617,-9.977291 + 5928: -76.189255,-10.14082 + 5929: -82.07605,-11.835567 + 5930: -79.132645,-9.843495 + 5931: -74.85135,-9.694834 + 5932: -73.320175,-9.8286295 + 5933: -73.08234,-8.996122 + 5934: -73.0526,-9.486707 - node: cleanable: True color: '#DE3A3A96' @@ -4577,7 +4695,6 @@ entities: decals: 107: -53,-21 108: -54,-23 - 109: -48,-16 110: -32,-23 156: -85,-48 157: -86,-48 @@ -4803,7 +4920,6 @@ entities: 4888: -56,-77 4889: -54,-74 4890: -59,-71 - 4891: -44,-67 4892: -54,-61 4893: -52,-61 4894: -52,-61 @@ -5142,14 +5258,7 @@ entities: 988: -41.961876,-58.021088 989: -42.928146,-58.06569 990: -42.437576,-58.06569 - 1562: -49.04973,-17.079376 2620: -49,-25 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 1563: -50.79516,-17.556477 - 2078: -49.412117,-19.999725 - node: cleanable: True zIndex: 40 @@ -5163,17 +5272,54 @@ entities: id: Flowersbr2 decals: 4799: -33.893017,-76.31689 + - node: + cleanable: True + zIndex: 9 + angle: 1.5707963267948966 rad + color: '#BA000053' + id: Flowersbr2 + decals: + 6099: -21.041624,-8.08084 + - node: + cleanable: True + zIndex: 10 + color: '#BA000069' + id: Flowersbr2 + decals: + 5886: -81.38678,-9.761523 + 5887: -76.28787,-9.791256 - node: cleanable: True color: '#0000003E' id: Flowerspv1 decals: 396: -33,-1 + - node: + cleanable: True + zIndex: 9 + color: '#BA000079' + id: Flowerspv1 + decals: + 6067: -22.497118,-26.485294 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7CD' + id: Flowerspv1 + decals: + 5778: -48.370247,-16.501587 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 1036: -90.99581,-26.041672 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7CD' + id: Flowerspv2 + decals: + 5777: -50.709106,-17.443111 - node: zIndex: 2 color: '#FFFFFFE6' @@ -5220,14 +5366,12 @@ entities: color: '#FFFFFFFF' id: Flowerspv3 decals: - 15: -51,-20 993: -42.80922,-58.050823 994: -42.259186,-58.035957 1037: -92.6459,-26.08627 1053: -24.045834,-49.24939 1057: -23.941772,-50.02243 1058: -23.971504,-49.041264 - 2077: -48.37152,-19.167217 - node: zIndex: 1 color: '#6F52E698' @@ -5261,9 +5405,6 @@ entities: 1032: -93.00267,-26.026806 1033: -91.24853,-26.116003 1054: -23.926907,-49.383186 - 1558: -48.3981,-17.765938 - 1559: -49.224274,-17.870667 - 1560: -50.911522,-16.47427 - node: cleanable: True color: '#0000003E' @@ -5341,7 +5482,6 @@ entities: id: Flowersy3 decals: 1055: -24.060698,-50.081898 - 1561: -50.946434,-19.115788 - node: cleanable: True color: '#0000003E' @@ -5367,6 +5507,47 @@ entities: decals: 1056: -23.926907,-49.115593 2621: -49,-25 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: Grassa1 + decals: + 6055: -37.74297,-31.948154 + 6056: -38.32474,-32.646942 + 6057: -37.923367,-32.51315 + 6058: -37.81931,-31.273952 + 6100: -21.42813,-8.140305 + - node: + cleanable: True + zIndex: 10 + color: '#BA00005A' + id: Grassa1 + decals: + 5893: -76.25813,-10.16291 + 5894: -77.52171,-9.954784 + 5895: -82.48685,-11.69413 + 5896: -81.639496,-10.549433 + 5897: -81.01514,-10.16291 + 5898: -75.544586,-9.776389 + 5899: -81.99628,-10.876488 + 5935: -78.077194,-9.977291 + 5936: -78.077194,-9.977291 + 5937: -80.84219,-10.096221 + 5938: -77.66095,-9.873228 + 5939: -76.605484,-9.888094 + - node: + cleanable: True + zIndex: 10 + color: '#BA000073' + id: Grassa1 + decals: + 5827: -77.34334,-10.029116 + 5828: -78.17581,-8.572227 + 5829: -75.72298,-8.230305 + 5830: -77.15007,-7.8586493 + 5831: -78.45825,-7.843783 + 5832: -76.00542,-7.3977966 - node: cleanable: True color: '#E9000044' @@ -5374,6 +5555,16 @@ entities: decals: 3811: -67.387665,-39.017906 3812: -69.047356,-38.180065 + - node: + cleanable: True + zIndex: 10 + color: '#BA00005A' + id: Grassa4 + decals: + 5904: -74.489136,-10.058847 + 5923: -78.98399,-10.066488 + 5924: -80.14351,-9.843495 + 5925: -73.810745,-9.873228 - node: color: '#FFFFFFFF' id: Grassa4 @@ -5395,18 +5586,66 @@ entities: id: Grassb3 decals: 3: -14,8 + - node: + cleanable: True + zIndex: 10 + color: '#BA000069' + id: Grassb4 + decals: + 5869: -80.74756,-10.222376 + - node: + cleanable: True + zIndex: 10 + angle: 5.061454830783556 rad + color: '#BA000069' + id: Grassb4 + decals: + 5864: -81.52057,-9.791256 + 5865: -80.405655,-10.281841 + 5866: -78.11635,-9.925051 + 5867: -79.87048,-10.2669735 - node: color: '#FFFFFFFF' id: Grassb4 decals: 2: -13,8 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7F2' + id: Grassc1 + decals: + 5766: -49.17299,-20.01001 + 5767: -51.03615,-18.840534 + - node: + cleanable: True + zIndex: 10 + color: '#FF33A792' + id: Grassc3 + decals: + 5780: -48.48917,-17.215164 + 5781: -50.798298,-18.107136 + 5782: -48.816216,-15.778097 + 5783: -49.133347,-18.51348 + - node: + cleanable: True + zIndex: 10 + color: '#FF33A7CC' + id: Grassc3 + decals: + 5779: -50.11448,-19.62349 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7F2' + id: Grassc3 + decals: + 5764: -48.340515,-17.492666 + 5765: -49.82708,-16.035778 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 16: -49,-20 - 17: -48,-18 - 18: -51,-16 1060: -24.016102,-49.844036 1061: -23.98637,-49.353455 1062: -23.941772,-48.996666 @@ -5436,6 +5675,14 @@ entities: id: Grassd2 decals: 3819: -68.34936,-39.10324 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7F2' + id: Grassd2 + decals: + 5762: -48.796394,-19.702774 + 5763: -50.81812,-18.632408 - node: zIndex: 1 color: '#FFFFFFCD' @@ -5458,14 +5705,6 @@ entities: color: '#FFFFFFFF' id: Grassd2 decals: - 19: -48,-20 - 20: -50,-18 - 21: -51,-19 - 22: -50,-18 - 23: -48,-17 - 24: -50,-19 - 25: -50,-20 - 26: -51,-19 2736: -71.03783,-26.109203 2737: -70.066605,-26.951622 - node: @@ -5479,6 +5718,14 @@ entities: 4790: -32.196674,-77.14939 4791: -33.326187,-76.20786 4792: -34.029655,-77.45663 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7F2' + id: Grassd3 + decals: + 5760: -48.201767,-16.085331 + 5761: -50.57036,-18.067493 - node: color: '#FFFFFFFF' id: Grassd3 @@ -5502,6 +5749,26 @@ entities: id: Grasse1 decals: 4786: -33.613518,-79.547806 + - node: + cleanable: True + zIndex: 10 + color: '#BA00004D' + id: Grasse1 + decals: + 5835: -76.92709,-10.073713 + 5836: -77.29874,-10.029116 + 5837: -76.4068,-8.334368 + 5838: -77.50685,-8.066776 + 5839: -77.34334,-9.077678 + 5840: -76.941956,-9.597995 + 5841: -76.89737,-8.542494 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7F2' + id: Grasse1 + decals: + 5759: -49.40093,-19.108128 - node: zIndex: 1 color: '#FFFFFFCD' @@ -5515,24 +5782,45 @@ entities: 3141: -34.368927,-41.8602 3142: -32.139626,-42.05346 - node: - color: '#FFFFFFFF' - id: Grasse1 + cleanable: True + zIndex: 9 + color: '#BA000053' + id: Grasse2 + decals: + 6090: -26.500443,6.7792425 + 6091: -26.797754,4.9952974 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7CE' + id: Grasse2 + decals: + 5756: -50.897404,-19.970367 + - node: + cleanable: True + zIndex: 10 + color: '#FFA2A7F2' + id: Grasse2 + decals: + 5757: -50.9866,-16.570961 + 5758: -51.06588,-17.621506 + 5768: -50.560448,-18.582855 + 5769: -48.27114,-19.068485 + 5770: -50.61,-19.494648 + 5771: -48.390068,-16.471855 + 5772: -49.67842,-15.778097 + 5773: -49.11353,-18.354906 + 5774: -49.33156,-17.542221 + 5775: -50.966778,-15.976314 + 5776: -47.944096,-18.37473 + - node: + cleanable: True + zIndex: 10 + color: '#FFFF8863' + id: Grasse2 decals: - 2060: -49.60762,-19.987465 - 2061: -48.611626,-20.046932 - 2062: -50.45513,-16.598036 - 2063: -50.752457,-17.50484 - 2064: -50.97545,-16.419647 - 2065: -50.678123,-18.545435 - 2066: -51.19844,-17.831884 - 2067: -49.741554,-16.829456 - 2068: -49.81588,-18.473076 - 2069: -48.373863,-16.941917 - 2070: -50.61866,-15.945919 - 2071: -51.00518,-18.517673 - 2072: -51.020042,-17.254095 - 2073: -50.321167,-20.033876 - 2074: -48.54991,-18.472813 + 5786: -49.6586,-18.117046 + 5791: -48.102665,-20.069475 - node: color: '#FFFFFFFF' id: Grasse2 @@ -5541,6 +5829,14 @@ entities: 2745: -71.05765,-25.920898 2746: -69.79902,-27.090374 2747: -71.17657,-26.54528 + - node: + cleanable: True + zIndex: 10 + angle: 4.71238898038469 rad + color: '#BA00005A' + id: Grasse3 + decals: + 5922: -79.28131,-10.007024 - node: color: '#FFFFFFFF' id: Grasse3 @@ -5548,8 +5844,6 @@ entities: 1038: -93.01754,-25.997072 1039: -92.28912,-26.01194 1040: -91.32285,-25.952475 - 2075: -48.297195,-19.137486 - 2076: -48.758026,-18.6469 - node: color: '#FFFFFFFF' id: GrayConcreteTrimBox @@ -5728,6 +6022,85 @@ entities: id: LoadingArea decals: 2848: -37,-22 + - node: + color: '#C700FF19' + id: MarkupRectangle1x2 + decals: + 5784: -44,-68 + 5785: -43,-68 + 5804: -45,-68 + 5805: -42,-68 + - node: + angle: 1.5707963267948966 rad + color: '#C700FF19' + id: MarkupRectangle1x2 + decals: + 5787: -42,-67 + 5788: -42,-66 + 5789: -42,-65 + 5790: -42,-64 + 5792: -42,-63 + 5806: -42,-68 + 5807: -42,-62 + - node: + angle: 3.141592653589793 rad + color: '#C700FF19' + id: MarkupRectangle1x2 + decals: + 5793: -43,-62 + 5794: -44,-62 + 5795: -42,-62 + 5796: -45,-62 + - node: + angle: 4.71238898038469 rad + color: '#C700FF19' + id: MarkupRectangle1x2 + decals: + 5797: -45,-62 + 5798: -45,-63 + 5799: -45,-64 + 5800: -45,-65 + 5801: -45,-66 + 5802: -45,-67 + 5803: -45,-68 + - node: + zIndex: 5 + color: '#00000019' + id: MarkupSquare + decals: + 5996: -40,-50 + 5997: -39,-50 + 5998: -38,-50 + 5999: -37,-50 + 6000: -36,-50 + 6001: -35,-50 + 6002: -34,-50 + 6003: -34,-50 + 6004: -33,-50 + 6005: -33,-49 + 6006: -34,-49 + 6007: -34,-48 + 6008: -33,-48 + 6009: -35,-48 + 6010: -36,-48 + 6011: -37,-48 + 6012: -37,-49 + 6013: -36,-49 + 6014: -35,-49 + 6015: -38,-49 + 6016: -38,-48 + 6017: -39,-48 + 6018: -39,-49 + 6019: -40,-49 + 6020: -40,-48 + 6021: -40,-50 + 6022: -39,-50 + 6023: -38,-50 + 6024: -37,-50 + 6025: -36,-50 + 6026: -35,-50 + 6027: -34,-50 + 6028: -33,-50 - node: color: '#4700667F' id: MarkupSquare @@ -5745,6 +6118,51 @@ entities: 4781: -34,-79 4782: -34,-80 4783: -33,-80 + - node: + zIndex: 5 + color: '#FF0000FF' + id: MarkupSquare + decals: + 5952: -40,-50 + 5953: -39,-50 + 5954: -38,-50 + 5955: -38,-49 + 5956: -39,-49 + 5957: -40,-49 + 5958: -40,-48 + 5959: -39,-48 + 5960: -38,-48 + 5961: -38,-47 + 5964: -39,-47 + 5965: -40,-47 + 5967: -39,-46 + 5968: -38,-46 + 5969: -37,-46 + 5970: -37,-47 + 5973: -37,-48 + 5974: -37,-49 + 5975: -37,-50 + 5976: -36,-50 + 5977: -36,-49 + 5978: -36,-48 + 5979: -36,-47 + 5980: -36,-46 + 5981: -35,-46 + 5982: -35,-47 + 5983: -35,-48 + 5984: -35,-49 + 5985: -35,-50 + 5986: -34,-50 + 5987: -34,-49 + 5988: -34,-48 + 5989: -34,-47 + 5990: -34,-46 + 5991: -33,-46 + 5992: -33,-47 + 5993: -33,-48 + 5994: -33,-49 + 5995: -33,-50 + 6030: -40,-46 - node: color: '#DE3A3AAB' id: MiniTileCheckerAOverlay @@ -7282,19 +7700,19 @@ entities: 1640: -35,-64 1641: -34,-64 1642: -34,-65 - 1736: -44,-65 - 1737: -44,-63 - - node: - zIndex: 1 - color: '#7242767F' - id: PavementOverlay - decals: - 1742: -44,-67 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: 194: -17,-28 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: QuarterTileOverlayGreyscale + decals: + 6108: -21.844368,-8.184904 + 6109: -21.487593,-8.348432 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -7326,6 +7744,26 @@ entities: decals: 2049: -39.270065,-43.28423 2050: -38.80462,-43.14459 + - node: + cleanable: True + zIndex: 10 + angle: 4.71238898038469 rad + color: '#BA00005A' + id: Rock01 + decals: + 5911: -78.61235,-10.066488 + 5912: -81.15437,-10.230017 + 5913: -79.99486,-10.125954 + 5914: -82.04631,-11.136856 + 5915: -81.942245,-11.790968 + 5916: -74.24185,-10.155685 + - node: + cleanable: True + zIndex: 9 + color: '#BA00008F' + id: Rock01 + decals: + 6047: -37.282135,-31.17511 - node: cleanable: True zIndex: 40 @@ -7339,23 +7777,23 @@ entities: id: Rock01 decals: 3785: -68.1433,-38.36643 - - node: - color: '#FFFFFFFF' - id: Rock02 - decals: - 27: -50.201115,-19.547714 - 28: -48.16457,-17.674559 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 29: -50.62908,-17.999043 - node: cleanable: True color: '#FF00004D' id: Rock04 decals: 3786: -68.647415,-38.87068 + - node: + cleanable: True + zIndex: 9 + color: '#BA000037' + id: Rock05 + decals: + 6118: -20.994583,-7.9472713 + 6119: -21.14324,-8.1108 + 6120: -21.841925,-8.214863 + 6121: -22.540611,-8.0364685 + 6122: -20.56348,-7.649947 - node: cleanable: True color: '#FFFFFF73' @@ -7713,54 +8151,6 @@ entities: decals: 4004: -78,-73 4005: -78,-72 - - node: - color: '#00000033' - id: WarnFull - decals: - 1999: -40,-47 - 2000: -39,-47 - 2001: -38,-47 - 2002: -37,-47 - 2003: -36,-47 - 2004: -35,-47 - 2005: -34,-47 - 2006: -33,-47 - - node: - color: '#00000066' - id: WarnFull - decals: - 1991: -40,-48 - 1992: -39,-48 - 1993: -38,-48 - 1994: -37,-48 - 1995: -36,-48 - 1996: -35,-48 - 1997: -34,-48 - 1998: -33,-48 - - node: - color: '#00000099' - id: WarnFull - decals: - 1983: -40,-49 - 1984: -39,-49 - 1985: -38,-49 - 1986: -37,-49 - 1987: -36,-49 - 1988: -34,-49 - 1989: -35,-49 - 1990: -33,-49 - - node: - color: '#000000CC' - id: WarnFull - decals: - 1975: -40,-50 - 1976: -39,-50 - 1977: -38,-50 - 1978: -37,-50 - 1979: -36,-50 - 1980: -35,-50 - 1981: -34,-50 - 1982: -33,-50 - node: color: '#52B4E993' id: WarnFullGreyscale @@ -7865,31 +8255,6 @@ entities: 1567: -13,-7 1568: -15,-7 1569: -14,-7 - - node: - color: '#0000003F' - id: WarnLineE - decals: - 2009: -33,-46 - - node: - color: '#00000059' - id: WarnLineE - decals: - 2013: -33,-47 - - node: - color: '#00000072' - id: WarnLineE - decals: - 2016: -33,-48 - - node: - color: '#0000008C' - id: WarnLineE - decals: - 2017: -33,-49 - - node: - color: '#000000A5' - id: WarnLineE - decals: - 2020: -33,-50 - node: color: '#9C2020FF' id: WarnLineE @@ -8032,18 +8397,6 @@ entities: decals: 2007: -41,-45 2008: -32,-45 - - node: - color: '#000000A5' - id: WarnLineN - decals: - 2021: -40,-50 - 2022: -39,-50 - 2023: -38,-50 - 2024: -37,-50 - 2025: -36,-50 - 2026: -35,-50 - 2027: -34,-50 - 2028: -33,-50 - node: color: '#9C2020FF' id: WarnLineN @@ -8073,31 +8426,6 @@ entities: id: WarnLineN decals: 5098: -111,-59 - - node: - color: '#0000003F' - id: WarnLineS - decals: - 2010: -40,-46 - - node: - color: '#00000059' - id: WarnLineS - decals: - 2014: -40,-47 - - node: - color: '#00000072' - id: WarnLineS - decals: - 2015: -40,-48 - - node: - color: '#0000008C' - id: WarnLineS - decals: - 2018: -40,-49 - - node: - color: '#000000A5' - id: WarnLineS - decals: - 2019: -40,-50 - node: color: '#FFFFFFFF' id: WarnLineS @@ -8833,6 +9161,50 @@ entities: 1431: -49,-81 1432: -49,-80 1433: -49,-79 + - node: + cleanable: True + zIndex: 5 + angle: 1.3439035240356338 rad + color: '#FFFFFFFF' + id: body + decals: + 5808: -8.422228,-47.37966 + - node: + cleanable: True + zIndex: 10 + color: '#BA000031' + id: brush + decals: + 5814: -77.01628,-9.865587 + 5815: -77.13521,-8.319502 + 5816: -78.205536,-8.200571 + 5817: -77.62578,-8.170839 + 5818: -76.24327,-8.155973 + - node: + cleanable: True + zIndex: 10 + color: '#BA00004D' + id: brush + decals: + 5849: -77.04602,-9.181741 + - node: + cleanable: True + zIndex: 9 + color: '#BA0000AE' + id: brush + decals: + 6073: -25.945654,5.4039288 + 6074: -26.242968,6.3850985 + 6075: -26.406488,5.2404003 + 6076: -25.707804,6.1621056 + 6077: -26.525415,6.414831 + - node: + cleanable: True + zIndex: 9 + color: '#BA728B3B' + id: brush + decals: + 6072: -58.394928,-63.69717 - node: cleanable: True color: '#CD49883A' @@ -8885,6 +9257,15 @@ entities: 5699: -65,-48 5700: -65,-48 5701: -65,-48 + - node: + cleanable: True + zIndex: 10 + color: '#F50000FF' + id: burnt4 + decals: + 5810: -77,-10 + 5812: -82,-10 + 5813: -80,-10 - node: cleanable: True color: '#FFFFFFFF' @@ -8918,6 +9299,30 @@ entities: decals: 3896: 17.237495,-9.107393 3897: 17.138414,-6.0350447 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D049' + id: bushsnowa3 + decals: + 5722: -69.740555,-7.9662886 + 5723: -66.34128,-7.341908 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D060' + id: bushsnowa3 + decals: + 5742: -67.00195,-7.5877004 + - node: + cleanable: True + zIndex: 10 + angle: 0.8726646259971648 rad + color: '#CA19D060' + id: bushsnowa3 + decals: + 5743: -66.09018,-7.6273437 + 5744: -69.9057,-8.063419 - node: color: '#FF7CFFB4' id: bushsnowa3 @@ -8930,6 +9335,15 @@ entities: id: bushsnowb3 decals: 4748: -36.877388,-81.05295 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: bushsnowb3 + decals: + 6104: -20.892967,-8.184904 + 6105: -22.498457,-8.08084 + 6106: -21.963293,-7.8875794 - node: cleanable: True zIndex: 10 @@ -8945,6 +9359,16 @@ entities: decals: 4165: -25.789024,-27.613222 4166: -25.263771,-28.544838 + - node: + cleanable: True + zIndex: 9 + angle: 1.5707963267948966 rad + color: '#BA000053' + id: clawprint + decals: + 6101: -20.684847,-8.036242 + 6102: -21.05649,-8.184904 + 6103: -21.234877,-7.902446 - node: cleanable: True color: '#E900005D' @@ -9014,6 +9438,65 @@ entities: 4768: -51.55874,-75.655426 4769: -51.737083,-74.98149 4770: -51.60828,-75.95275 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: dot + decals: + 6059: -38.503128,-32.84977 + 6060: -37.878773,-31.79427 + 6061: -37.9531,-32.388916 + 6062: -39.08289,-33.26602 + 6063: -38.176083,-33.191692 + 6082: -26.03485,4.8241463 + 6083: -26.718668,4.8241463 + 6084: -26.33216,4.734949 + 6085: -26.540281,6.518894 + 6086: -26.138908,4.957943 + 6087: -26.688936,5.284999 + - node: + cleanable: True + zIndex: 10 + color: '#BA00005A' + id: dot + decals: + 5926: -79.74214,-10.125954 + - node: + cleanable: True + zIndex: 10 + color: '#BA000069' + id: dot + decals: + 5870: -82.115204,-10.59403 + 5871: -80.79216,-9.96965 + 5872: -77.22441,-9.984516 + 5873: -75.24727,-10.118313 + 5875: -76.3176,-9.865587 + 5878: -82.04088,-11.515736 + 5879: -82.026,-11.946856 + 5880: -82.263855,-11.560333 + 5881: -81.22327,-10.430502 + 5882: -74.935104,-9.954784 + 5883: -76.451385,-9.835854 + 5884: -74.69725,-9.9399185 + - node: + cleanable: True + zIndex: 9 + color: '#BA000079' + id: dot + decals: + 6064: -38.205814,-33.26602 + 6065: -37.521996,-32.775436 + 6068: -22.095745,-26.321766 + - node: + cleanable: True + zIndex: 9 + color: '#BA728B77' + id: dot + decals: + 6070: -58.350334,-63.682304 + 6071: -58.33547,-63.593105 - node: cleanable: True zIndex: 40 @@ -9024,6 +9507,21 @@ entities: 4284: -74.56453,-75.88563 4285: -75.98172,-76.975815 4286: -76.22948,-75.10268 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D060' + id: dot + decals: + 5731: -69.806595,-8.103062 + 5732: -70.08409,-8.321099 + 5733: -66.33795,-7.9544 + 5734: -66.72446,-7.2606435 + 5735: -66.62535,-9.68879 + 5736: -67.24971,-9.748255 + 5737: -69.08313,-9.668968 + 5738: -69.162415,-9.222982 + 5739: -69.56874,-8.856283 - node: cleanable: True color: '#D0000077' @@ -9067,12 +9565,46 @@ entities: decals: 3788: -68.407,-37.986298 3789: -67.92615,-37.885445 + - node: + cleanable: True + zIndex: 5 + color: '#FFFFFFFF' + id: ghost + decals: + 5809: -9.092649,-48.803947 + - node: + cleanable: True + zIndex: 10 + color: '#BA00004A' + id: grasssnow + decals: + 5888: -81.803024,-10.341305 + 5889: -79.98941,-9.865587 + 5890: -78.2204,-9.954784 + 5891: -76.629776,-9.612861 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: grasssnow + decals: + 6051: -37.653774,-32.527935 + 6052: -37.653774,-30.922386 + 6088: -26.302431,6.117506 + 6089: -26.426113,6.288657 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow decals: 758: -37,-34 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: grasssnow01 + decals: + 6053: -38.084877,-32.096813 - node: cleanable: True color: '#C000005A' @@ -9091,6 +9623,13 @@ entities: id: grasssnow02 decals: 760: -37,-30 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D049' + id: grasssnow03 + decals: + 5721: -66.460205,-7.5103917 - node: cleanable: True color: '#FFFFFFFF' @@ -9103,18 +9642,66 @@ entities: id: grasssnow07 decals: 759: -39,-33 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: grasssnow08 + decals: + 6114: -20.593212,-7.9175386 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D060' + id: grasssnow08 + decals: + 5727: -66.301636,-8.015842 + - node: + cleanable: True + zIndex: 10 + color: '#BA000073' + id: grasssnow09 + decals: + 5833: -77.55145,-9.925051 + 5834: -76.659515,-9.820988 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow09 decals: 761: -37,-32 + - node: + cleanable: True + zIndex: 10 + color: '#BA00005A' + id: grasssnow10 + decals: + 5901: -81.847626,-11.634665 + 5902: -74.20668,-9.776389 + 5903: -74.92023,-10.043982 + - node: + cleanable: True + zIndex: 10 + angle: 5.061454830783556 rad + color: '#BA000069' + id: grasssnow10 + decals: + 5862: -81.23813,-10.043982 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: 762: -38,-31 + - node: + cleanable: True + zIndex: 10 + color: '#CA19D060' + id: grasssnow12 + decals: + 5728: -67.56026,-7.143692 + 5729: -70.38472,-8.025753 + 5730: -67.03352,-8.0461235 - node: cleanable: True color: '#E9000044' @@ -9130,6 +9717,24 @@ entities: decals: 3817: -68.25629,-39.111 3818: -68.613045,-38.9636 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: grasssnow13 + decals: + 6092: -26.91668,5.039896 + 6093: -26.158531,5.2777557 + 6094: -26.81262,5.441283 + 6095: -27.124798,5.664277 + 6096: -26.782888,6.3481226 + - node: + cleanable: True + zIndex: 9 + color: '#BA000079' + id: grasssnow13 + decals: + 6066: -22.110611,-26.70829 - node: cleanable: True color: '#FF85FF44' @@ -9142,6 +9747,13 @@ entities: id: i decals: 3912: -71.90463,-38.238914 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: like + decals: + 6107: -23.762035,-7.9767766 - node: cleanable: True angle: 1.5707963267948966 rad @@ -9149,6 +9761,73 @@ entities: id: line decals: 3795: -68.19759,-38.133694 + - node: + cleanable: True + zIndex: 10 + angle: 0.4014257279586958 rad + color: '#BA00004A' + id: line + decals: + 5940: -6.3099,-50.104095 + - node: + cleanable: True + zIndex: 10 + angle: 1.5707963267948966 rad + color: '#BA00004D' + id: line + decals: + 5853: -76.37706,-10.058847 + - node: + cleanable: True + zIndex: 10 + angle: 4.71238898038469 rad + color: '#BA00004D' + id: line + decals: + 5854: -77.714966,-9.984516 + 5858: -80.47998,-10.058847 + - node: + cleanable: True + zIndex: 10 + angle: 5.061454830783556 rad + color: '#BA00004D' + id: line + decals: + 5859: -81.1192,-10.222376 + 5860: -81.71382,-10.371038 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: line + decals: + 6097: -25.742294,5.0696287 + - node: + cleanable: True + zIndex: 9 + angle: 1.5707963267948966 rad + color: '#BA000053' + id: line + decals: + 6098: -21.175413,-8.125439 + - node: + cleanable: True + zIndex: 10 + angle: 4.71238898038469 rad + color: '#BA00005A' + id: line + decals: + 5918: -79.68268,-10.007024 + 5919: -78.65695,-9.90296 + 5920: -77.8988,-9.992157 + 5921: -80.544876,-9.947559 + - node: + cleanable: True + zIndex: 9 + color: '#BA000079' + id: line + decals: + 6069: -22.333595,-26.827217 - node: cleanable: True angle: 1.5707963267948966 rad @@ -9188,6 +9867,33 @@ entities: id: slash decals: 2034: -38.5932,-45.372902 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: slash + decals: + 6112: -20.98216,-7.664587 + - node: + cleanable: True + zIndex: 10 + angle: 4.71238898038469 rad + color: '#BA00005A' + id: slash + decals: + 5906: -78.90967,-10.096221 + 5907: -80.38136,-10.230017 + 5908: -82.00171,-10.185418 + 5909: -77.4677,-10.007024 + 5910: -76.9474,-9.8286295 + - node: + cleanable: True + zIndex: 9 + color: '#BA00008F' + id: slash + decals: + 6049: -37.69837,-32.73606 + 6050: -37.579445,-31.383236 - node: cleanable: True color: '#FF00009E' @@ -9198,7 +9904,6 @@ entities: color: '#0000002B' id: smallbrush decals: - 1944: -40.2024,-45.508194 1945: -35.792282,-45.47328 1946: -33.662857,-45.31037 1947: -37.23517,-45.496555 @@ -9234,7 +9939,14 @@ entities: decals: 1959: -35.350105,-45.531467 1960: -36.560272,-45.368553 - 1961: -40.272217,-45.391827 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: smallbrush + decals: + 6054: -37.579445,-31.041313 + 6113: -20.637808,-7.902673 - node: cleanable: True zIndex: 40 @@ -9283,7 +9995,6 @@ entities: decals: 2029: -39.047012,-45.500904 2032: -34.27617,-45.61727 - 2033: -39.663727,-45.535812 - node: cleanable: True color: '#3EA5FF8F' @@ -9329,6 +10040,29 @@ entities: id: splatter decals: 1724: -78.11749,-6.5487747 + - node: + cleanable: True + zIndex: 9 + color: '#BA000053' + id: splatter + decals: + 6110: -22.097084,-8.051107 + 6111: -21.145683,-8.00651 + - node: + cleanable: True + zIndex: 10 + angle: 4.71238898038469 rad + color: '#BA00005A' + id: splatter + decals: + 5905: -79.11778,-9.977291 + - node: + cleanable: True + zIndex: 9 + color: '#BA00008F' + id: splatter + decals: + 6048: -37.40106,-31.204842 - node: cleanable: True zIndex: 40 @@ -9351,24 +10085,25 @@ entities: 0,-1: 0: 4369 -1,0: - 0: 16784 + 1: 16 + 0: 16768 -1,1: 0: 8176 0,1: 0: 8192 -1,2: 0: 349 - 1: 3072 + 2: 3072 0,2: - 1: 18208 + 2: 18208 0,3: - 1: 17604 + 2: 17604 0,4: - 1: 17484 + 2: 17484 1,3: - 1: 4369 + 2: 4369 1,4: - 1: 17 + 2: 17 3,-1: 0: 13107 0,-4: @@ -9384,7 +10119,8 @@ entities: 0,-2: 0: 4369 -1,-2: - 0: 40895 + 0: 36799 + 3: 4096 -1,-1: 0: 57308 2,-4: @@ -9401,23 +10137,23 @@ entities: 0: 64307 4,-4: 0: 55 - 1: 8192 + 2: 8192 4,-3: 0: 12288 - 1: 1058 + 2: 1058 4,-2: 0: 819 - 1: 16384 + 2: 16384 0,-8: - 1: 48059 + 2: 48059 0,-9: - 1: 48063 + 2: 48063 -1,-8: - 1: 34969 + 2: 34969 0,-7: - 1: 11 + 2: 11 -1,-7: - 1: 8 + 2: 8 0: 1841 0,-6: 0: 8191 @@ -9426,32 +10162,32 @@ entities: -1,-5: 0: 48059 1,-8: - 1: 48059 + 2: 48059 1,-7: - 1: 11 + 2: 11 1,-6: 0: 4095 1,-9: - 1: 48063 + 2: 48063 2,-8: - 1: 48059 + 2: 48059 2,-7: - 1: 11 + 2: 11 2,-6: 0: 4095 2,-9: - 1: 48063 + 2: 48063 3,-8: - 1: 48059 + 2: 48059 3,-7: - 1: 11 + 2: 11 3,-6: 0: 13171 3,-9: - 1: 48063 + 2: 48063 4,-5: 0: 29440 - 1: 2 + 2: 2 -4,0: 0: 24831 -5,0: @@ -9465,16 +10201,16 @@ entities: -5,2: 0: 36863 -4,3: - 2: 24816 + 4: 24816 -5,3: - 2: 32896 + 4: 32896 0: 51 -3,0: 0: 10227 -3,1: 0: 4087 -3,3: - 2: 272 + 4: 272 -3,2: 0: 238 -3,-1: @@ -9547,16 +10283,16 @@ entities: 0: 64257 -2,-8: 0: 33283 - 1: 3208 + 2: 3208 -2,-6: 0: 16383 -2,-9: 0: 29440 - 1: 34959 + 2: 34959 -2,-7: 0: 8 -1,-9: - 1: 39327 + 2: 39327 -8,0: 0: 7377 -8,-1: @@ -9569,17 +10305,17 @@ entities: 0: 52479 -8,2: 0: 52429 - 1: 4368 + 2: 4368 -9,2: 0: 8 - 1: 64640 + 2: 64640 -8,3: - 1: 65297 + 2: 65297 0: 12 -9,3: - 1: 56573 + 2: 56573 -8,4: - 1: 1 + 2: 1 -7,0: 0: 26366 -7,1: @@ -9588,7 +10324,7 @@ entities: 0: 30583 -7,3: 0: 19975 - 1: 12544 + 2: 12544 -7,-1: 0: 10103 -7,4: @@ -9598,12 +10334,12 @@ entities: -6,1: 0: 4095 -6,3: - 2: 512 + 4: 512 0: 140 -6,2: 0: 19660 -5,4: - 2: 770 + 4: 770 -8,-4: 0: 65520 -9,-4: @@ -9616,10 +10352,10 @@ entities: 0: 29119 -9,-2: 0: 33023 - 1: 12288 + 2: 12288 -9,-1: 0: 65416 - 1: 3 + 2: 3 -8,-5: 0: 61408 -7,-2: @@ -9641,17 +10377,18 @@ entities: -6,-5: 0: 16255 -12,0: - 0: 56797 + 0: 56541 + 3: 256 -13,0: 0: 52428 - 2: 4353 + 4: 4353 -12,1: 0: 65293 -13,1: 0: 63244 -12,2: 0: 19 - 1: 35052 + 2: 35052 -12,-1: 0: 36863 -11,0: @@ -9659,31 +10396,31 @@ entities: -11,1: 0: 65419 -11,2: - 1: 61459 + 2: 61459 -12,3: - 1: 34952 + 2: 34952 -11,3: - 1: 61695 + 2: 61695 -12,4: - 1: 63624 + 2: 63624 -11,-1: 0: 39867 -11,4: - 1: 61695 + 2: 61695 -10,0: 0: 61678 -10,1: 0: 4095 -10,2: - 1: 61440 + 2: 61440 -10,3: - 1: 61695 + 2: 61695 -10,-1: 0: 65399 -10,4: - 1: 61695 + 2: 61695 -9,4: - 1: 29949 + 2: 29949 -16,0: 0: 65535 -16,-1: @@ -9717,16 +10454,16 @@ entities: -15,4: 0: 65535 -14,0: - 2: 524 + 4: 524 -14,1: - 2: 24576 + 4: 24576 0: 32768 -14,2: - 2: 8806 + 4: 8806 -14,3: - 2: 26210 + 4: 26210 -14,4: - 2: 26214 + 4: 26214 -13,2: 0: 51207 -13,3: @@ -9785,35 +10522,35 @@ entities: 0: 2 -19,0: 0: 7 - 3: 1792 + 5: 1792 -19,1: - 4: 7 - 2: 1792 + 6: 7 + 4: 1792 -19,2: - 2: 7 - 5: 256 + 4: 7 + 7: 256 0: 1536 -19,3: - 2: 7 + 4: 7 0: 4096 -18,0: - 1: 65535 + 2: 65535 -18,1: - 1: 65535 + 2: 65535 -18,2: - 1: 65535 + 2: 65535 -18,3: - 1: 2303 + 2: 2303 0: 8192 -18,-1: - 1: 28672 + 2: 28672 0: 127 -18,4: 0: 3846 - 1: 28672 + 2: 28672 -17,4: 0: 34854 - 2: 13056 + 4: 13056 -4,-12: 0: 12287 -4,-13: @@ -9834,35 +10571,36 @@ entities: 0: 4095 -3,-11: 0: 4369 - 2: 16460 + 4: 16460 -3,-10: 0: 4369 - 2: 16452 + 4: 16452 -3,-13: 0: 65287 -2,-12: - 0: 53247 + 0: 53231 + 3: 16 -2,-10: - 1: 61440 + 2: 61440 -2,-13: 0: 65392 -1,-12: 0: 3569 -1,-10: - 1: 61632 + 2: 61632 -1,-13: 0: 64768 0,-12: 0: 304 0,-10: - 1: 61936 + 2: 61936 -4,-17: 0: 45056 -4,-16: - 2: 63232 + 4: 63232 0: 8 -5,-16: - 2: 32832 + 4: 32832 0: 4096 -4,-15: 0: 65520 @@ -9879,7 +10617,7 @@ entities: -3,-14: 0: 30576 -3,-16: - 2: 8192 + 4: 8192 0: 32772 0,-13: 0: 12544 @@ -9893,13 +10631,13 @@ entities: 0: 61567 -8,-14: 0: 255 - 1: 61440 + 2: 61440 -9,-14: 0: 255 - 1: 4096 + 2: 4096 -8,-13: 0: 56592 - 1: 12 + 2: 12 -9,-13: 0: 65520 -8,-12: @@ -9918,7 +10656,7 @@ entities: 0: 53233 -6,-16: 0: 28672 - 2: 162 + 4: 162 -6,-15: 0: 53375 -6,-14: @@ -9943,16 +10681,16 @@ entities: 0: 56831 -6,-19: 0: 30464 - 1: 34816 + 2: 34816 -6,-18: 0: 65399 - 1: 136 + 2: 136 -6,-17: - 2: 1568 + 4: 1568 -5,-19: - 1: 12288 + 2: 12288 -5,-18: - 1: 51 + 2: 51 -5,-17: 0: 528 -20,-4: @@ -9971,7 +10709,7 @@ entities: 0: 4095 -21,-1: 0: 240 - 1: 8192 + 2: 8192 -19,-4: 0: 49080 -19,-3: @@ -9998,7 +10736,7 @@ entities: 0: 61695 -12,-21: 0: 61440 - 2: 240 + 4: 240 -13,-20: 0: 32904 -12,-19: @@ -10014,7 +10752,8 @@ entities: -12,-16: 0: 15295 -13,-17: - 0: 53589 + 0: 37205 + 3: 16384 -11,-20: 0: 56543 -11,-19: @@ -10041,16 +10780,16 @@ entities: 0: 60654 -9,-19: 0: 4125 - 1: 2176 + 2: 2176 -9,-21: 0: 4317 - 1: 32768 + 2: 32768 -9,-16: 0: 1911 -12,-24: 0: 13075 -12,-23: - 1: 1 + 2: 1 0: 60928 -12,-22: 0: 3822 @@ -10105,8 +10844,8 @@ entities: -16,-16: 0: 61875 -15,-20: - 2: 12288 - 1: 128 + 4: 12288 + 2: 128 -15,-19: 0: 8816 -15,-18: @@ -10116,7 +10855,7 @@ entities: -15,-16: 0: 45806 -14,-20: - 1: 247 + 2: 247 0: 29184 -14,-19: 0: 10103 @@ -10125,7 +10864,7 @@ entities: -14,-17: 0: 26495 -14,-21: - 1: 30583 + 2: 30583 -13,-16: 0: 56799 -20,-20: @@ -10137,15 +10876,15 @@ entities: -21,-18: 0: 52226 -20,-17: - 2: 16 + 4: 16 0: 53452 -21,-17: - 2: 224 + 4: 224 0: 57344 -20,-16: 0: 56797 -20,-21: - 2: 16384 + 4: 16384 0: 416 -19,-20: 0: 65280 @@ -10174,40 +10913,40 @@ entities: -17,-16: 0: 65535 -17,-20: - 1: 4 + 2: 4 -17,-21: - 1: 19532 + 2: 19532 -24,-17: - 1: 11960 + 2: 11960 -25,-17: - 1: 17648 + 2: 17648 -24,-19: - 1: 36552 + 2: 36552 -24,-18: - 1: 59534 + 2: 59534 -24,-16: - 1: 63747 + 2: 63747 -23,-19: - 1: 3874 + 2: 3874 -23,-17: - 1: 768 + 2: 768 0: 34944 -23,-18: 0: 18632 -22,-19: - 1: 3908 + 2: 3908 0: 4096 -22,-17: 0: 65520 -23,-16: 0: 34952 - 1: 12544 + 2: 12544 -22,-16: 0: 65535 -22,-18: 0: 192 -21,-19: - 1: 768 + 2: 768 0: 8227 -21,-20: 0: 4096 @@ -10216,27 +10955,27 @@ entities: -21,-21: 0: 51456 -25,-16: - 1: 50191 + 2: 50191 -24,-15: 0: 65520 -25,-15: 0: 65520 -24,-14: - 1: 2544 + 2: 2544 -25,-14: - 1: 1216 + 2: 1216 -24,-13: - 1: 4352 + 2: 4352 0: 61064 -24,-12: - 1: 1 + 2: 1 0: 65518 -25,-13: - 1: 61440 + 2: 61440 -23,-15: 0: 64496 -23,-14: - 1: 816 + 2: 816 0: 136 -23,-13: 0: 65527 @@ -10268,7 +11007,7 @@ entities: 0: 2047 -25,-10: 0: 28392 - 1: 4375 + 2: 4375 -24,-9: 0: 52224 -24,-8: @@ -10277,7 +11016,7 @@ entities: 0: 63503 -23,-10: 0: 32959 - 2: 4096 + 4: 4096 -23,-9: 0: 65288 -23,-8: @@ -10320,16 +11059,16 @@ entities: 0: 65399 -22,-6: 0: 4367 - 2: 19456 + 4: 19456 -21,-8: 0: 65520 -21,-7: 0: 65327 -21,-6: 0: 15 - 2: 36096 + 4: 36096 -21,-5: - 2: 216 + 4: 216 0: 49152 -22,-5: 0: 32768 @@ -10341,24 +11080,24 @@ entities: 0: 65380 -20,-6: 0: 15 - 2: 768 + 4: 768 -28,-8: - 1: 22391 + 2: 22391 -28,-9: - 1: 30583 + 2: 30583 -28,-7: - 1: 15 + 2: 15 -29,-7: - 1: 15 + 2: 15 -27,-7: - 1: 7 + 2: 7 -27,-8: - 1: 22391 + 2: 22391 -27,-9: - 1: 30583 + 2: 30583 -26,-8: 0: 292 - 2: 51200 + 4: 51200 -26,-7: 0: 61152 -26,-6: @@ -10467,15 +11206,15 @@ entities: 0: 63999 -11,-14: 0: 255 - 1: 57344 + 2: 57344 -11,-13: - 1: 34 + 2: 34 0: 34944 -10,-15: 0: 62941 -10,-14: 0: 255 - 1: 32768 + 2: 32768 -10,-13: 0: 65520 -11,-12: @@ -10503,7 +11242,7 @@ entities: -11,-9: 0: 61103 -11,-11: - 1: 514 + 2: 514 0: 2184 -11,-8: 0: 61167 @@ -10513,9 +11252,9 @@ entities: 0: 65535 -10,-9: 0: 47 - 6: 60928 + 8: 60928 -10,-8: - 6: 3276 + 8: 3276 0: 4368 -9,-8: 0: 1638 @@ -10579,7 +11318,7 @@ entities: 0: 47283 -14,-16: 0: 61504 - 7: 32 + 9: 32 -14,-15: 0: 65520 -14,-14: @@ -10601,7 +11340,8 @@ entities: -16,-9: 0: 61661 -15,-12: - 0: 57584 + 0: 41200 + 3: 16384 -15,-11: 0: 56718 -15,-10: @@ -10664,7 +11404,7 @@ entities: 0: 128 -19,4: 0: 19456 - 1: 32768 + 2: 32768 -19,5: 0: 3596 -18,5: @@ -10672,47 +11412,47 @@ entities: -18,6: 0: 2116 -17,5: - 2: 65523 + 4: 65523 -17,6: - 2: 2 + 4: 2 0: 4096 -16,5: - 2: 65520 + 4: 65520 -16,6: - 2: 15 + 4: 15 0: 24576 -15,5: - 2: 65520 + 4: 65520 -15,6: - 2: 1 + 4: 1 0: 36864 -14,5: - 2: 4918 + 4: 4918 0: 32768 -14,6: 0: 4672 - 1: 34952 + 2: 34952 -13,5: - 1: 61678 + 2: 61678 -13,6: - 1: 61695 + 2: 61695 -14,7: - 1: 34952 + 2: 34952 -13,7: - 1: 61694 + 2: 61694 -13,4: - 1: 57344 + 2: 57344 -12,5: - 1: 63743 + 2: 63743 -12,6: - 1: 63743 + 2: 63743 -12,7: - 1: 47359 + 2: 47359 -6,5: 0: 2 - 2: 8 + 4: 8 -5,5: - 2: 4096 + 4: 4096 -5,6: 0: 512 -4,4: @@ -10724,103 +11464,103 @@ entities: -3,5: 0: 257 -12,8: - 1: 226 + 2: 226 -11,5: - 1: 61695 + 2: 61695 -11,6: - 1: 61695 + 2: 61695 -11,7: - 1: 57599 + 2: 57599 -11,8: - 1: 50 + 2: 50 -10,5: - 1: 62719 + 2: 62719 -10,6: - 1: 61695 + 2: 61695 -10,7: - 1: 61695 + 2: 61695 -9,5: - 1: 29813 + 2: 29813 -9,6: - 1: 29813 + 2: 29813 -9,7: - 1: 30069 + 2: 30069 1,-10: - 1: 61936 + 2: 61936 2,-10: - 1: 61936 + 2: 61936 3,-10: - 1: 47472 + 2: 47472 -16,-24: - 1: 4095 + 2: 4095 -17,-24: - 1: 19532 + 2: 19532 -16,-23: - 1: 4095 + 2: 4095 -17,-23: - 1: 19532 + 2: 19532 -16,-22: - 1: 4095 + 2: 4095 -17,-22: - 1: 19532 + 2: 19532 -16,-21: - 1: 4095 + 2: 4095 -15,-24: - 1: 4095 + 2: 4095 -15,-23: - 1: 4095 + 2: 4095 -15,-22: - 1: 4095 + 2: 4095 -15,-21: - 1: 4095 + 2: 4095 -14,-24: - 1: 32639 + 2: 32639 -14,-23: - 1: 30583 + 2: 30583 -14,-22: - 1: 30583 + 2: 30583 -14,-25: - 1: 29199 + 2: 29199 -13,-24: - 1: 4369 + 2: 4369 -13,-25: - 1: 4369 + 2: 4369 -13,-23: - 1: 1 + 2: 1 -16,-25: - 1: 3840 + 2: 3840 -17,-25: - 1: 19456 + 2: 19456 -15,-25: - 1: 1868 + 2: 1868 -28,-12: - 1: 30576 + 2: 30576 -28,-11: - 1: 30583 + 2: 30583 -28,-10: - 1: 29426 + 2: 29426 -29,-10: - 1: 29426 + 2: 29426 -27,-10: - 1: 29426 + 2: 29426 -27,-12: - 1: 30576 + 2: 30576 -27,-11: - 1: 30583 + 2: 30583 -26,-10: - 1: 2290 + 2: 2290 -26,-12: - 1: 30576 + 2: 30576 -26,-11: - 1: 30583 + 2: 30583 -25,-9: 0: 2 - 2: 1024 + 4: 1024 -28,-16: - 1: 15 + 2: 15 0: 63232 -29,-16: - 1: 4972 + 2: 4972 0: 32768 -28,-15: 0: 65535 @@ -10830,117 +11570,117 @@ entities: 0: 2047 -29,-14: 0: 140 - 1: 25360 + 2: 25360 -28,-13: - 1: 12047 + 2: 12047 -29,-13: - 1: 64524 + 2: 64524 -27,-16: - 1: 17969 + 2: 17969 -27,-15: 0: 64497 -27,-14: 0: 1 - 1: 13888 + 2: 13888 -27,-13: - 1: 51017 + 2: 51017 -26,-16: - 1: 62732 + 2: 62732 -26,-15: 0: 65520 -26,-14: - 1: 1520 + 2: 1520 -26,-13: - 1: 62532 + 2: 62532 -26,-17: - 1: 18420 + 2: 18420 -28,-17: - 1: 3976 + 2: 3976 -29,-17: - 1: 3976 + 2: 3976 -28,-18: - 1: 32768 + 2: 32768 -27,-17: - 1: 3840 + 2: 3840 -31,-16: - 1: 224 + 2: 224 -31,-15: - 1: 17486 + 2: 17486 -31,-14: - 1: 32782 + 2: 32782 -30,-16: - 1: 41588 + 2: 41588 -30,-15: - 1: 43691 + 2: 43691 -30,-14: - 1: 29355 + 2: 29355 -30,-17: - 1: 20292 + 2: 20292 -30,-13: - 1: 50244 + 2: 50244 -30,-12: - 1: 17476 + 2: 17476 -29,-12: - 1: 30581 + 2: 30581 -31,-17: - 1: 3584 + 2: 3584 -30,-18: - 1: 16384 + 2: 16384 -29,-18: - 1: 32768 + 2: 32768 -30,-11: - 1: 29764 + 2: 29764 -30,-10: - 1: 29137 + 2: 29137 -30,-9: - 1: 17476 + 2: 17476 -30,-8: - 1: 17476 + 2: 17476 -29,-11: - 1: 30583 + 2: 30583 -29,-9: - 1: 30583 + 2: 30583 -29,-8: - 1: 22391 + 2: 22391 -30,-7: - 1: 12 + 2: 12 -24,-2: - 1: 7936 + 2: 7936 -25,-2: - 1: 3072 + 2: 3072 -24,-1: - 1: 39417 + 2: 39417 -25,-1: - 1: 128 + 2: 128 -24,0: - 1: 40857 + 2: 40857 -23,-2: - 1: 7936 + 2: 7936 -23,-1: - 1: 16383 + 2: 16383 -23,0: - 1: 16179 + 2: 16179 -22,-2: - 1: 7936 + 2: 7936 -22,-1: - 1: 6007 + 2: 6007 0: 128 -22,0: - 1: 7953 + 2: 7953 -22,-3: 0: 3076 -21,0: - 1: 1826 + 2: 1826 -25,0: - 1: 2048 + 2: 2048 -24,1: - 1: 34959 + 2: 34959 -25,1: - 1: 12 + 2: 12 -23,1: - 1: 13119 + 2: 13119 -22,1: - 1: 7 + 2: 7 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -10957,6 +11697,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 immutable: True moles: @@ -10972,6 +11727,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11068,24 +11838,6 @@ entities: - type: NavMap - type: BecomesStation id: Maus - - type: Joint - joints: - docking1521294: !type:WeldJoint - bodyB: 17958 - bodyA: 2 - id: docking1521294 - localAnchorB: -0.5,0 - localAnchorA: -5.5,11 - damping: 379.14612 - stiffness: 3403.2078 - docking1521293: !type:WeldJoint - bodyB: 17958 - bodyA: 2 - id: docking1521293 - localAnchorB: 1.5,0 - localAnchorA: -3.5,11 - damping: 379.14612 - stiffness: 3403.2078 - uid: 6882 components: - type: MetaData @@ -13831,24 +14583,6 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - type: Joint - joints: - docking1521294: !type:WeldJoint - bodyB: 17958 - bodyA: 2 - id: docking1521294 - localAnchorB: -0.5,0 - localAnchorA: -5.5,11 - damping: 379.11185 - stiffness: 3402.9001 - docking1521293: !type:WeldJoint - bodyB: 17958 - bodyA: 2 - id: docking1521293 - localAnchorB: 1.5,0 - localAnchorA: -3.5,11 - damping: 379.11185 - stiffness: 3402.9001 - proto: AcousticGuitarInstrument entities: - uid: 3 @@ -15833,6 +16567,16 @@ entities: - type: Transform pos: -3.5,7.5 parent: 2 + - uid: 161 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 - proto: AirlockExternalCargoLocked entities: - uid: 138 @@ -16019,20 +16763,6 @@ entities: - DoorStatus: DoorBolt missingComponents: - AccessReader -- proto: AirlockExternalGlassLocked - entities: - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 2 - - uid: 175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 12 @@ -16130,36 +16860,18 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-83.5 parent: 2 - - uid: 174 + - uid: 175 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,10.5 + pos: -5.5,10.5 parent: 2 - - type: Door - changeAirtight: False - - type: Docking - dockJointId: docking1521293 - dockedWith: 17960 - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: True - - uid: 457 + - uid: 384 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,10.5 + pos: -3.5,10.5 parent: 2 - - type: Door - changeAirtight: False - - type: Docking - dockJointId: docking1521294 - dockedWith: 17959 - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: True - uid: 17959 components: - type: Transform @@ -16167,13 +16879,10 @@ entities: parent: 17958 - type: Door changeAirtight: False - - type: Docking - dockJointId: docking1521294 - dockedWith: 457 - type: DeviceLinkSource lastSignals: DoorStatus: False - DockStatus: True + DockStatus: False - uid: 17960 components: - type: Transform @@ -16181,13 +16890,10 @@ entities: parent: 17958 - type: Door changeAirtight: False - - type: Docking - dockJointId: docking1521293 - dockedWith: 174 - type: DeviceLinkSource lastSignals: DoorStatus: False - DockStatus: True + DockStatus: False - proto: AirlockExternalLocked entities: - uid: 176 @@ -17851,6 +18557,32 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-74.5 parent: 2 +- proto: AlwaysPoweredlightOrange + entities: + - uid: 10218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,0.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 - proto: AnomalyScanner entities: - uid: 5798 @@ -17897,8 +18629,6 @@ entities: - type: Transform pos: -18.5,-5.5 parent: 2 - - type: Apc - hasAccess: True - uid: 376 components: - type: MetaData @@ -18182,8 +18912,6 @@ entities: - type: Transform pos: -62.5,-20.5 parent: 2 - - type: Apc - hasAccess: True - uid: 425 components: - type: MetaData @@ -18306,8 +19034,6 @@ entities: rot: -1.5707963267948966 rad pos: -74.5,-60.5 parent: 2 - - type: Apc - hasAccess: True - uid: 3995 components: - type: MetaData @@ -18639,7 +19365,7 @@ entities: - uid: 10271 components: - type: Transform - pos: -43.452953,-71.40552 + pos: -43.671925,-71.471886 parent: 2 - uid: 10284 components: @@ -21466,7 +22192,7 @@ entities: - uid: 15609 components: - type: Transform - pos: -33.28958,1.6432581 + pos: -33.09094,1.5582466 parent: 2 - type: Storage storedItems: @@ -21515,7 +22241,7 @@ entities: - uid: 775 components: - type: Transform - pos: -22.72009,-27.372435 + pos: -22.544336,-27.424664 parent: 2 - proto: BoxFolderGrey entities: @@ -44666,7 +45392,7 @@ entities: - uid: 12560 components: - type: Transform - pos: -43.467815,-71.331184 + pos: -43.28542,-71.17457 parent: 2 - uid: 13766 components: @@ -44688,16 +45414,38 @@ entities: - type: Transform pos: -32.551895,1.4428725 parent: 2 - - uid: 15322 + - uid: 15327 components: - type: Transform - pos: -13.2851305,-8.361358 + pos: -48.219044,-21.55375 parent: 2 - - uid: 15327 + - uid: 19231 components: - type: Transform - pos: -48.219044,-21.55375 + pos: -17.324223,-55.48149 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: -21.510168,-58.21632 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -48.39713,-62.54105 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: -66.989136,-4.4439282 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: -32.175396,-39.635857 parent: 2 + - type: PointLight + energy: 2 - proto: CandleBlueInfinite entities: - uid: 167 @@ -44706,6 +45454,33 @@ entities: rot: -1.5707963267948966 rad pos: -97.52375,-20.300037 parent: 2 +- proto: CandleBlueSmallInfinite + entities: + - uid: 9016 + components: + - type: Transform + pos: -60.208553,-32.53858 + parent: 2 + - type: PointLight + energy: 2 + radius: 8 + - uid: 19256 + components: + - type: Transform + pos: -33.570385,-33.757046 + parent: 2 +- proto: CandleGreenSmallInfinite + entities: + - uid: 19203 + components: + - type: Transform + pos: -65.69197,-30.547237 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: -33.733906,-33.519188 + parent: 2 - proto: CandleInfinite entities: - uid: 4756 @@ -44714,6 +45489,125 @@ entities: rot: 3.141592653589793 rad pos: -50.52957,-74.3802 parent: 2 + - uid: 10308 + components: + - type: Transform + pos: -38.35005,-65.373375 + parent: 2 + - type: PointLight + radius: 5 + - uid: 10464 + components: + - type: Transform + pos: -54.204098,-44.840725 + parent: 2 + - type: PointLight + radius: 10 +- proto: CandlePurpleInfinite + entities: + - uid: 19201 + components: + - type: Transform + pos: -65.587906,-30.353977 + parent: 2 + - type: PointLight + radius: 10 + - uid: 19254 + components: + - type: Transform + pos: -32.678448,-33.325928 + parent: 2 + - type: PointLight + radius: 10 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 14796 + components: + - type: Transform + pos: -38.6325,-65.4923 + parent: 2 +- proto: CandleRedInfinite + entities: + - uid: 7623 + components: + - type: Transform + pos: -33.720196,-67.41121 + parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 19202 + components: + - type: Transform + pos: -65.36493,-30.443172 + parent: 2 +- proto: CandyBowl + entities: + - uid: 19205 + components: + - type: Transform + pos: -49.662575,-36.28894 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: -101.41087,-26.446102 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: -30.7669,-35.40829 + parent: 2 + - type: Bin + items: + - 19259 + - 19260 + - 19261 + - type: ContainerContainer + containers: + bin-container: !type:Container + showEnts: False + occludes: True + ents: + - 19259 + - 19260 + - 19261 +- proto: CandyBucket + entities: + - uid: 7323 + components: + - type: Transform + pos: -48.71304,-19.561523 + parent: 2 + - uid: 10615 + components: + - type: Transform + pos: -48.131294,-17.509407 + parent: 2 + - uid: 19206 + components: + - type: Transform + pos: -62.439312,-48.48667 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: -38.954746,-65.347946 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: -48.300953,-79.089386 + parent: 2 + - uid: 19263 + components: + - type: Transform + pos: -31.223019,-39.518066 + parent: 2 + - uid: 19264 + components: + - type: Transform + pos: -32.397404,-35.296062 + parent: 2 - proto: CannabisSeeds entities: - uid: 4757 @@ -45083,16 +45977,6 @@ entities: - type: Transform pos: -22.5,-26.5 parent: 2 - - uid: 4834 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 2 - - uid: 4835 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 2 - uid: 4836 components: - type: Transform @@ -45728,7 +46612,12 @@ entities: - uid: 5751 components: - type: Transform - pos: -34.99313,-3.2038922 + pos: -35.01649,-3.911561 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: -50.39941,-18.351824 parent: 2 - uid: 19153 components: @@ -45740,6 +46629,11 @@ entities: - type: Transform pos: 0.51129055,5.6742935 parent: 17958 + - uid: 19253 + components: + - type: Transform + pos: -33.169014,-33.23673 + parent: 2 - proto: CarvedPumpkinSmall entities: - uid: 5756 @@ -45792,11 +46686,6 @@ entities: - type: Transform pos: -56.3967,-70.39975 parent: 2 - - uid: 12328 - components: - - type: Transform - pos: -13.240684,-8.748235 - parent: 2 - uid: 19144 components: - type: Transform @@ -45817,11 +46706,6 @@ entities: - type: Transform pos: -32.97416,1.7631598 parent: 2 - - uid: 19149 - components: - - type: Transform - pos: -61.58295,-54.380833 - parent: 2 - uid: 19150 components: - type: Transform @@ -45830,7 +46714,7 @@ entities: - uid: 19151 components: - type: Transform - pos: -64.530914,-1.2819548 + pos: -65.505356,-1.4707575 parent: 2 - uid: 19154 components: @@ -45842,6 +46726,26 @@ entities: - type: Transform pos: -71.46733,-64.14058 parent: 2 + - uid: 19174 + components: + - type: Transform + pos: -42.277298,-61.471596 + parent: 2 + - uid: 19191 + components: + - type: Transform + pos: -45.3568,-78.42426 + parent: 2 + - uid: 19247 + components: + - type: Transform + pos: -101.38115,-26.128956 + parent: 2 + - uid: 19266 + components: + - type: Transform + pos: -30.021515,-29.399582 + parent: 2 - proto: Catwalk entities: - uid: 13 @@ -49928,6 +50832,12 @@ entities: rot: -1.5707963267948966 rad pos: -27.43166,6.672858 parent: 2 + - uid: 4771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 2 - uid: 5432 components: - type: Transform @@ -49946,12 +50856,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-38.5 parent: 2 - - uid: 5660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-38.5 - parent: 2 - uid: 5661 components: - type: Transform @@ -50020,6 +50924,12 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-37.5 parent: 2 + - uid: 10530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-34.5 + parent: 2 - uid: 11091 components: - type: Transform @@ -50032,12 +50942,24 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 15964 + - uid: 17115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 - uid: 19050 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,5.5 parent: 2 + - uid: 19158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-48.5 + parent: 2 - proto: ChemDispenser entities: - uid: 2150 @@ -50568,10 +51490,10 @@ entities: parent: 2 - proto: CircuitImprinter entities: - - uid: 5790 + - uid: 19173 components: - type: Transform - pos: -41.5,-61.5 + pos: -44.5,-66.5 parent: 2 - proto: CleanerDispenser entities: @@ -51434,6 +52356,11 @@ entities: - type: Transform pos: -17.412294,-26.495363 parent: 2 + - uid: 19246 + components: + - type: Transform + pos: -33.512627,-90.558464 + parent: 2 - proto: ClothingEyesGlassesMercenary entities: - uid: 5892 @@ -51513,13 +52440,6 @@ entities: parent: 19928 - type: Physics canCollide: False -- proto: ClothingEyesSalesman - entities: - - uid: 20030 - components: - - type: Transform - pos: -33.59507,-33.414917 - parent: 2 - proto: ClothingHandsGlovesBoxingBlue entities: - uid: 20813 @@ -51562,6 +52482,13 @@ entities: parent: 2 - proto: ClothingHandsGlovesColorWhite entities: + - uid: 3829 + components: + - type: Transform + parent: 6937 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 11400 components: - type: Transform @@ -51644,6 +52571,13 @@ entities: - type: Transform pos: -70.43038,15.707579 parent: 2 +- proto: ClothingHeadBandSkull + entities: + - uid: 19189 + components: + - type: Transform + pos: -43.559322,-71.1506 + parent: 2 - proto: ClothingHeadFishCap entities: - uid: 5915 @@ -51703,7 +52637,7 @@ entities: - uid: 14547 components: - type: Transform - pos: -45.582184,-78.40899 + pos: -45.3568,-78.37967 parent: 2 - uid: 18248 components: @@ -51752,7 +52686,7 @@ entities: - uid: 4774 components: - type: Transform - pos: -35.014977,-3.8072228 + pos: -35.01649,-3.6291032 parent: 2 - proto: ClothingHeadHatCargosoft entities: @@ -51833,7 +52767,7 @@ entities: - uid: 8355 components: - type: Transform - pos: -52.819,-32.279022 + pos: -52.70885,-32.230663 parent: 2 - uid: 17062 components: @@ -51988,6 +52922,13 @@ entities: rot: -0.20943951023931956 rad pos: -78.170166,-41.327244 parent: 2 +- proto: ClothingHeadHatWizardFake + entities: + - uid: 19271 + components: + - type: Transform + pos: -31.590214,-35.183674 + parent: 2 - proto: ClothingHeadHelmetCult entities: - uid: 7438 @@ -52140,6 +53081,11 @@ entities: - type: Transform pos: -19.41101,18.517717 parent: 2 + - uid: 7220 + components: + - type: Transform + pos: -49.54849,-17.54905 + parent: 2 - proto: ClothingMaskBear entities: - uid: 5948 @@ -52711,6 +53657,12 @@ entities: parent: 2 - proto: ClothingOuterGhostSheet entities: + - uid: 9274 + components: + - type: Transform + parent: 9072 + - type: Physics + canCollide: False - uid: 10207 components: - type: Transform @@ -52739,6 +53691,12 @@ entities: rot: -1.5707963267948966 rad pos: -67.612976,-29.606243 parent: 2 + - uid: 17179 + components: + - type: Transform + parent: 17160 + - type: Physics + canCollide: False - proto: ClothingOuterHardsuitCap entities: - uid: 6738 @@ -53200,6 +54158,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesSchoolWhite + entities: + - uid: 718 + components: + - type: Transform + rot: -0.17453292519943295 rad + pos: -58.495083,-61.52986 + parent: 2 - proto: ClothingShoesTourist entities: - uid: 6009 @@ -53379,6 +54345,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtSchool + entities: + - uid: 10177 + components: + - type: Transform + rot: -0.4014257279586958 rad + pos: -57.7518,-62.46643 + parent: 2 - proto: ClothingUniformJumpskirtSeniorOfficer entities: - uid: 5923 @@ -53717,6 +54691,12 @@ entities: parent: 2 - proto: Cobweb1 entities: + - uid: 11221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-43.5 + parent: 2 - uid: 17302 components: - type: Transform @@ -53757,6 +54737,17 @@ entities: - type: Transform pos: -42.5,-14.5 parent: 2 + - uid: 11186 + components: + - type: Transform + pos: -54.5,-44.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-44.5 + parent: 2 - uid: 17303 components: - type: Transform @@ -54109,6 +55100,12 @@ entities: - type: Transform pos: -57.5,-16.5 parent: 2 + - uid: 13022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-1.5 + parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 6056 @@ -54657,6 +55654,45 @@ entities: - type: Transform pos: -60.5,-68.5 parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -55.5,-43.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + pos: -7.8024683,-46.843452 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10080 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateCommandSecure entities: - uid: 19000 @@ -55004,6 +56040,24 @@ entities: - type: Transform pos: -49.5,-64.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 11578 components: - type: Transform @@ -55124,6 +56178,35 @@ entities: - type: Transform pos: -3.5,-4.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3829 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateServiceReplacementLights entities: - uid: 10545 @@ -55427,6 +56510,69 @@ entities: - type: Transform pos: -54.686935,-37.213306 parent: 2 +- proto: CrystalBlue + entities: + - uid: 2117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: -43.5,-67.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 2757 + components: + - type: Transform + pos: -41.5,-61.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 4726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 2 + - type: PointLight + radius: 5 + - uid: 9422 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 2 +- proto: CrystalPink + entities: + - uid: 1122 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 19183 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 - proto: CrystalSpawner entities: - uid: 5356 @@ -60818,6 +61964,14 @@ entities: - type: Transform pos: -76.5654,-66.5768 parent: 2 +- proto: DrinkBottleWine + entities: + - uid: 19272 + components: + - type: Transform + rot: -1.710422666954443 rad + pos: -58.353184,-63.061535 + parent: 2 - proto: DrinkCarrotJuice entities: - uid: 6762 @@ -60914,8 +62068,7 @@ entities: - uid: 6765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5106,-11.528433 + pos: -35.165306,-11.437841 parent: 2 - proto: DrinkFlaskOld entities: @@ -61165,21 +62318,6 @@ entities: parent: 2 - proto: DrinkWaterCup entities: - - uid: 6781 - components: - - type: Transform - pos: -9.189314,-49.489063 - parent: 2 - - uid: 6782 - components: - - type: Transform - pos: -9.501814,-49.489063 - parent: 2 - - uid: 6783 - components: - - type: Transform - pos: -9.332676,-49.264214 - parent: 2 - uid: 18216 components: - type: Transform @@ -61959,14 +63097,13 @@ entities: - type: FaxMachine name: Мостик destinationAddress: Конференц-зал - - uid: 6874 + - uid: 10363 components: - type: Transform pos: -39.5,-65.5 parent: 2 - type: FaxMachine - name: Научный отдел - destinationAddress: Научный Отдел + name: НИО - uid: 12262 components: - type: Transform @@ -65229,210 +66366,6 @@ entities: rot: 3.141592653589793 rad pos: -60.410057,10.424296 parent: 2 -- proto: FloorAzureWaterEntity - entities: - - uid: 3719 - components: - - type: Transform - pos: -34.5,-47.5 - parent: 2 - - uid: 3829 - components: - - type: Transform - pos: -35.5,-48.5 - parent: 2 - - uid: 4771 - components: - - type: Transform - pos: -34.5,-48.5 - parent: 2 - - uid: 4776 - components: - - type: Transform - pos: -39.5,-48.5 - parent: 2 - - uid: 4792 - components: - - type: Transform - pos: -39.5,-45.5 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 7163 - components: - - type: Transform - pos: -32.5,-45.5 - parent: 2 - - uid: 7164 - components: - - type: Transform - pos: -32.5,-48.5 - parent: 2 - - uid: 7165 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 7166 - components: - - type: Transform - pos: -32.5,-49.5 - parent: 2 - - uid: 7167 - components: - - type: Transform - pos: -37.5,-48.5 - parent: 2 - - uid: 7168 - components: - - type: Transform - pos: -37.5,-49.5 - parent: 2 - - uid: 7169 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 7170 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 7171 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - uid: 7173 - components: - - type: Transform - pos: -33.5,-45.5 - parent: 2 - - uid: 7174 - components: - - type: Transform - pos: -34.5,-45.5 - parent: 2 - - uid: 7175 - components: - - type: Transform - pos: -35.5,-45.5 - parent: 2 - - uid: 7176 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 2 - - uid: 7177 - components: - - type: Transform - pos: -36.5,-45.5 - parent: 2 - - uid: 7178 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 - - uid: 7179 - components: - - type: Transform - pos: -39.5,-46.5 - parent: 2 - - uid: 7180 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 2 - - uid: 7181 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 7182 - components: - - type: Transform - pos: -33.5,-48.5 - parent: 2 - - uid: 7183 - components: - - type: Transform - pos: -34.5,-49.5 - parent: 2 - - uid: 7184 - components: - - type: Transform - pos: -35.5,-49.5 - parent: 2 - - uid: 7185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-46.5 - parent: 2 - - uid: 7186 - components: - - type: Transform - pos: -36.5,-47.5 - parent: 2 - - uid: 7187 - components: - - type: Transform - pos: -39.5,-49.5 - parent: 2 - - uid: 7188 - components: - - type: Transform - pos: -38.5,-49.5 - parent: 2 - - uid: 7189 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 7190 - components: - - type: Transform - pos: -34.5,-46.5 - parent: 2 - - uid: 7191 - components: - - type: Transform - pos: -33.5,-49.5 - parent: 2 - - uid: 7192 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - uid: 7193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-47.5 - parent: 2 - - uid: 7194 - components: - - type: Transform - pos: -36.5,-49.5 - parent: 2 - - uid: 7196 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 2 - - uid: 7197 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - proto: FloorDrain entities: - uid: 6596 @@ -65894,21 +66827,215 @@ entities: rot: -0.9599310885968813 rad pos: -6.925659,1.9904461 parent: 17265 -- proto: FloraStalagmite4 +- proto: FloorWaterEntity entities: - - uid: 7216 + - uid: 4792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.575886,14.399256 + pos: -35.5,-48.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: -36.5,-47.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 19234 + components: + - type: Transform + pos: -32.5,-46.5 parent: 2 -- proto: FloraTreeLarge03 +- proto: FloraStalagmite4 entities: - - uid: 7220 + - uid: 7216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.405964,-18.764057 + pos: -49.575886,14.399256 parent: 2 - proto: FoamBlade entities: @@ -66048,6 +67175,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodCakeBirthdaySlice + entities: + - uid: 19179 + components: + - type: Transform + pos: -9.522827,-48.395508 + parent: 2 - proto: FoodCarrot entities: - uid: 17677 @@ -66070,16 +67204,6 @@ entities: - type: Transform pos: -35.749245,-75.464745 parent: 2 -- proto: FoodChevreSlice - entities: - - uid: 7231 - components: - - type: MetaData - desc: Маленький кружок сливочного козьего сыра. Оставлен тут строителями. Идеальное дополнение к французским гарнирам. - name: сыр "Мостик" - - type: Transform - pos: -34.758293,-4.084185 - parent: 2 - proto: FoodDonkpocketCarpWarm entities: - uid: 19028 @@ -66472,6 +67596,61 @@ entities: rot: -1.5707963267948966 rad pos: -60.58705,-32.495598 parent: 2 + - uid: 19209 + components: + - type: Transform + pos: -48.328503,-71.91433 + parent: 2 + - uid: 19210 + components: + - type: Transform + pos: -48.521755,-79.562004 + parent: 2 + - uid: 19211 + components: + - type: Transform + pos: -48.328503,-79.56187 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: -38.943523,-65.569115 + parent: 2 + - uid: 19213 + components: + - type: Transform + pos: -53.46109,-39.369827 + parent: 2 + - uid: 19214 + components: + - type: Transform + pos: -61.321274,-27.825474 + parent: 2 +- proto: FoodSnackChocolateBar + entities: + - uid: 10571 + components: + - type: Transform + pos: -47.98264,-17.618423 + parent: 2 + - uid: 19259 + components: + - type: Transform + parent: 19258 + - type: Physics + canCollide: False + - uid: 19260 + components: + - type: Transform + parent: 19258 + - type: Physics + canCollide: False + - uid: 19261 + components: + - type: Transform + parent: 19258 + - type: Physics + canCollide: False - proto: FoodSnackEnergy entities: - uid: 20150 @@ -84712,6 +85891,11 @@ entities: - type: Transform pos: -40.68862,-71.70284 parent: 2 + - uid: 19276 + components: + - type: Transform + pos: -26.610191,6.7541943 + parent: 2 - proto: GoldRingDiamond entities: - uid: 7497 @@ -85233,16 +86417,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-9.5 parent: 2 - - uid: 9274 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 2 - - uid: 9275 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 2 - uid: 9285 components: - type: Transform @@ -89419,6 +90593,83 @@ entities: - type: Transform pos: -16.565298,-40.038494 parent: 2 +- proto: HeadSkeleton + entities: + - uid: 10527 + components: + - type: Transform + pos: -21.476267,-26.445553 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: 0.2792526803190927 rad + pos: -26.59547,11.638587 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: -48.409134,-80.199524 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: -45.459183,-72.354324 + parent: 2 + - uid: 19200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.26715,-6.7082825 + parent: 2 + - uid: 19215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.39398,-25.663235 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: -65.487976,-67.27162 + parent: 2 + - uid: 19235 + components: + - type: Transform + pos: -34.82016,-43.391754 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: -38.343395,1.5441933 + parent: 2 + - uid: 19252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.44908,-25.54718 + parent: 2 + - uid: 19257 + components: + - type: Transform + rot: -0.9250245035569946 rad + pos: -36.497604,-30.413162 + parent: 2 +- proto: HeadSlime + entities: + - uid: 10421 + components: + - type: MetaData + desc: Дохлюпалась и спит. + name: череп Белинды + - type: Transform + pos: -33.48223,-90.81152 + parent: 2 + - uid: 19188 + components: + - type: Transform + pos: -43.648518,-71.74525 + parent: 2 - proto: HeatExchanger entities: - uid: 9739 @@ -89758,8 +91009,7 @@ entities: - uid: 9738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.23302,-14.643644 + pos: -40.133984,-14.649125 parent: 2 - uid: 9916 components: @@ -90146,19 +91396,6 @@ entities: rot: -1.5707963267948966 rad pos: -81.50922,-61.3824 parent: 2 - - uid: 9992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.515003,-27.218267 - parent: 2 -- proto: LampInterrogator - entities: - - uid: 9993 - components: - - type: Transform - pos: -13.608199,-8.343208 - parent: 2 - proto: LandMineExplosive entities: - uid: 17749 @@ -90211,6 +91448,11 @@ entities: - type: InsideEntityStorage - proto: LeftArmHuman entities: + - uid: 7463 + components: + - type: Transform + pos: -76.63521,-9.410185 + parent: 2 - uid: 12033 components: - type: Transform @@ -90269,16 +91511,6 @@ entities: color: '#FF0000FF' - type: Physics canCollide: False - - uid: 13022 - components: - - type: Transform - parent: 13019 - - type: LightBulb - lightSoftness: 0.2 - lightRadius: 2 - lightEnergy: 0.3 - - type: Physics - canCollide: False - uid: 18805 components: - type: Transform @@ -91972,10 +93204,22 @@ entities: parent: 17265 - proto: MagazineBoxAntiMateriel entities: - - uid: 384 + - uid: 19164 components: - type: Transform - pos: -14.217636,-3.5208688 + pos: -14.291799,-3.6252518 + parent: 2 +- proto: MagazineBoxLightRifle + entities: + - uid: 19159 + components: + - type: Transform + pos: -12.19675,-4.4911838 + parent: 2 + - uid: 19249 + components: + - type: Transform + pos: -12.840928,-4.183949 parent: 2 - proto: MagazineBoxRifle entities: @@ -92352,6 +93596,46 @@ entities: showEnts: False occludes: False ent: 10056 + - uid: 9072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 9274 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - uid: 10289 components: - type: Transform @@ -92430,6 +93714,45 @@ entities: showEnts: False occludes: False ent: 10653 + - uid: 17160 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 17179 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - uid: 19921 components: - type: Transform @@ -92719,6 +94042,146 @@ entities: rot: 3.141592653589793 rad pos: -78.26276,-6.950615 parent: 2 +- proto: MaterialBones + entities: + - uid: 19194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.635056,-5.4071665 + parent: 2 +- proto: MaterialBones1 + entities: + - uid: 19192 + components: + - type: Transform + pos: -76.58626,-6.6559277 + parent: 2 + - uid: 19193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.71738,-7.681696 + parent: 2 + - uid: 19195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.061874,-7.0844827 + parent: 2 + - uid: 19196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.02814,-5.9249187 + parent: 2 + - uid: 19197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.87663,-6.6533628 + parent: 2 + - uid: 19198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.92409,-7.589934 + parent: 2 + - uid: 19220 + components: + - type: Transform + pos: -50.348175,-16.215809 + parent: 2 + - uid: 19221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.4497,-19.264288 + parent: 2 + - uid: 19223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.85843,-9.485998 + parent: 2 + - uid: 19224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.90016,-9.51573 + parent: 2 + - uid: 19226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.71649,-7.3935776 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: -81.38544,-9.710817 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: -26.495277,6.4805546 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: -38.38091,-42.71664 + parent: 2 + - uid: 19237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.529564,-42.40445 + parent: 2 + - uid: 19238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.603893,-42.59771 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: -32.54355,-41.86844 + parent: 2 + - uid: 19240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.569208,-42.56715 + parent: 2 + - uid: 19268 + components: + - type: Transform + pos: -37.453938,-32.46288 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: -37.09716,-31.154652 + parent: 2 + - uid: 19270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.0823,-30.395416 + parent: 2 + - uid: 19273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.94525,6.435956 + parent: 2 + - uid: 19274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.361486,6.4062233 + parent: 2 - proto: MaterialCloth entities: - uid: 10090 @@ -93166,22 +94629,20 @@ entities: parent: 2 - proto: Mirror entities: - - uid: 7463 + - uid: 7193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-53.5 + pos: -66.5,-53.5 parent: 2 - - uid: 10120 + - uid: 7194 components: - type: Transform - pos: -39.5,-13.5 + pos: -67.5,-53.5 parent: 2 - - uid: 10384 + - uid: 10120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-53.5 + pos: -39.5,-13.5 parent: 2 - proto: ModularGrenade entities: @@ -93214,6 +94675,17 @@ entities: - type: Transform pos: -54.451134,-44.47755 parent: 2 + - uid: 10384 + components: + - type: Transform + pos: -76.66481,-40.549606 + parent: 2 + - uid: 19199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.259155,-6.5893526 + parent: 2 - uid: 20259 components: - type: Transform @@ -93249,21 +94721,43 @@ entities: - 0 - 0 - 0 - - uid: 6435 - components: - - type: Transform - pos: -55.5,-43.5 - parent: 2 - uid: 10124 components: - type: Transform pos: -3.5,2.5 parent: 2 + - type: EntityStorage + open: True - uid: 12073 components: - type: Transform pos: -57.5,-43.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7197 - proto: Multitool entities: - uid: 2712 @@ -93274,7 +94768,7 @@ entities: - uid: 10129 components: - type: Transform - pos: -35.47014,-91.10229 + pos: -35.495342,-91.42351 parent: 2 - uid: 10208 components: @@ -93814,6 +95308,20 @@ entities: - type: Transform pos: -32.5,-32.5 parent: 2 +- proto: PaintingSkeletonBoof + entities: + - uid: 19187 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 19186 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 - proto: PaintingSleepingGypsy entities: - uid: 10178 @@ -94522,11 +96030,6 @@ entities: - type: Transform pos: -31.5,-14.5 parent: 2 - - uid: 10218 - components: - - type: Transform - pos: -38.5,-65.5 - parent: 2 - uid: 13066 components: - type: Transform @@ -94963,6 +96466,12 @@ entities: - type: Transform pos: -67.5,-5.5 parent: 2 + - uid: 19185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-17.5 + parent: 2 - proto: PirateHandyFlag entities: - uid: 10252 @@ -95261,6 +96770,13 @@ entities: parent: 17265 - proto: PlushieGhost entities: + - uid: 10080 + components: + - type: Transform + parent: 9993 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 10206 components: - type: Transform @@ -95271,6 +96787,36 @@ entities: - type: Transform pos: -74.47786,-12.544738 parent: 2 + - uid: 10679 + components: + - type: Transform + pos: -67.352234,-49.938313 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -84.66708,-33.92839 + parent: 2 + - uid: 12339 + components: + - type: Transform + pos: -51.521076,-69.561356 + parent: 2 + - uid: 19166 + components: + - type: Transform + pos: -56.428387,-44.23784 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -12.0185,-33.574566 + parent: 2 + - uid: 19169 + components: + - type: Transform + pos: -8.501756,-0.7272148 + parent: 2 - proto: PlushieGhostRevenant entities: - uid: 10301 @@ -95325,13 +96871,6 @@ entities: - type: Transform pos: -86.52887,-36.612915 parent: 2 - - uid: 10281 - components: - - type: MetaData - name: плюшевый тканеед - - type: Transform - pos: -50.02825,-18.824352 - parent: 2 - uid: 10283 components: - type: MetaData @@ -95999,11 +97538,6 @@ entities: parent: 2 - proto: PottedPlant1 entities: - - uid: 20024 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - uid: 20055 components: - type: Transform @@ -96016,11 +97550,6 @@ entities: - type: Transform pos: -76.5,-42.5 parent: 2 - - uid: 17160 - components: - - type: Transform - pos: -44.5,-65.5 - parent: 2 - uid: 18447 components: - type: Transform @@ -96038,13 +97567,6 @@ entities: - type: Transform pos: -36.46112,1.6030154 parent: 2 -- proto: PottedPlant12 - entities: - - uid: 14971 - components: - - type: Transform - pos: -65.5,-30.5 - parent: 2 - proto: PottedPlant13 entities: - uid: 12182 @@ -96076,16 +97598,6 @@ entities: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 6212 - components: - - type: Transform - pos: -33.5,-67.5 - parent: 2 - - uid: 8350 - components: - - type: Transform - pos: -52.5,-32.5 - parent: 2 - proto: PottedPlant21 entities: - uid: 4896 @@ -96405,12 +97917,6 @@ entities: - type: Transform pos: -57.5,3.5 parent: 2 - - uid: 1122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-32.5 - parent: 2 - uid: 2727 components: - type: Transform @@ -96428,24 +97934,12 @@ entities: rot: 3.141592653589793 rad pos: -96.5,-58.5 parent: 2 - - uid: 4722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-44.5 - parent: 2 - uid: 4723 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-26.5 parent: 2 - - uid: 4726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 - parent: 2 - uid: 4818 components: - type: Transform @@ -96572,11 +98066,6 @@ entities: - type: Transform pos: -48.5,-39.5 parent: 2 - - uid: 7323 - components: - - type: Transform - pos: -51.5,-30.5 - parent: 2 - uid: 7331 components: - type: Transform @@ -96593,12 +98082,6 @@ entities: - type: Transform pos: -55.5,-39.5 parent: 2 - - uid: 7426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-32.5 - parent: 2 - uid: 7472 components: - type: Transform @@ -96622,12 +98105,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-37.5 parent: 2 - - uid: 7623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-32.5 - parent: 2 - uid: 7917 components: - type: Transform @@ -96645,30 +98122,12 @@ entities: - type: Transform pos: -56.5,-25.5 parent: 2 - - uid: 8799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-32.5 - parent: 2 - - uid: 8910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 2 - uid: 8980 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 - - uid: 9016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 2 - uid: 9399 components: - type: Transform @@ -96821,40 +98280,17 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-13.5 parent: 2 - - uid: 10419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-48.5 - parent: 2 - uid: 10420 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-19.5 parent: 2 - - uid: 10421 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 2 - - uid: 10422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-49.5 - parent: 2 - uid: 10424 components: - type: Transform pos: -54.5,-21.5 parent: 2 - - uid: 10425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 2 - uid: 10426 components: - type: Transform @@ -96999,24 +98435,12 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-20.5 parent: 2 - - uid: 10464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-2.5 - parent: 2 - uid: 10465 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-1.5 parent: 2 - - uid: 10466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 2 - uid: 10468 components: - type: Transform @@ -97274,18 +98698,6 @@ entities: rot: -1.5707963267948966 rad pos: -73.5,-54.5 parent: 2 - - uid: 10526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-19.5 - parent: 2 - - uid: 10527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-19.5 - parent: 2 - uid: 10528 components: - type: Transform @@ -97297,11 +98709,6 @@ entities: - type: Transform pos: -23.5,-68.5 parent: 2 - - uid: 10530 - components: - - type: Transform - pos: -38.5,-69.5 - parent: 2 - uid: 10531 components: - type: Transform @@ -97427,12 +98834,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-8.5 parent: 2 - - uid: 10571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,0.5 - parent: 2 - uid: 10572 components: - type: Transform @@ -97624,12 +99025,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-8.5 parent: 2 - - uid: 10615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-4.5 - parent: 2 - uid: 10617 components: - type: Transform @@ -97664,11 +99059,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-36.5 parent: 2 - - uid: 10632 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 2 - uid: 10635 components: - type: Transform @@ -97916,12 +99306,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-10.5 parent: 16090 - - uid: 17115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-67.5 - parent: 2 - uid: 17273 components: - type: Transform @@ -98097,6 +99481,12 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 + - uid: 19180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 - uid: 20312 components: - type: Transform @@ -98188,12 +99578,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,5.5 parent: 2 - - uid: 20839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-44.5 - parent: 2 - proto: PoweredlightBlue entities: - uid: 15850 @@ -98238,76 +99622,12 @@ entities: parent: 16090 - proto: PoweredlightEmpty entities: - - uid: 718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-27.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 719 - - type: ApcPowerReceiver - powerLoad: 100 - - type: DamageOnInteract - isDamageActive: False - - uid: 5644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-38.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 5665 - - type: ApcPowerReceiver - powerLoad: 100 - - type: DamageOnInteract - isDamageActive: False - - uid: 10080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 10947 - - type: ApcPowerReceiver - powerLoad: 100 - - type: DamageOnInteract - isDamageActive: False - uid: 10644 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-8.5 parent: 2 - - uid: 10948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-33.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 5973 - - type: ApcPowerReceiver - powerLoad: 100 - - type: DamageOnInteract - isDamageActive: False - uid: 17638 components: - type: Transform @@ -98380,12 +99700,6 @@ entities: - type: Transform pos: -22.5,-58.5 parent: 2 - - uid: 10654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-67.5 - parent: 2 - uid: 10655 components: - type: Transform @@ -98471,18 +99785,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-63.5 parent: 2 - - uid: 10679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-64.5 - parent: 2 - - uid: 12163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-67.5 - parent: 2 - uid: 13472 components: - type: Transform @@ -98501,6 +99803,17 @@ entities: - type: Transform pos: -40.5,-41.5 parent: 2 + - uid: 10422 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 - proto: PoweredlightPink entities: - uid: 6434 @@ -99602,22 +100915,6 @@ entities: parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 13019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-10.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 13022 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - uid: 17811 components: - type: Transform @@ -99813,6 +101110,223 @@ entities: - type: Transform pos: -72.5,-29.5 parent: 2 +- proto: PumpkinLantern + entities: + - uid: 7186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.755108,-19.404224 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: -35.480476,-90.784256 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: -44.503895,-65.24977 + parent: 2 + - type: PointLight + radius: 5 + - uid: 8350 + components: + - type: Transform + pos: -62.422874,24.615673 + parent: 2 + - uid: 10947 + components: + - type: Transform + pos: -67.41818,-6.2018147 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: -7.4958143,-48.21815 + parent: 2 + - type: PointLight + radius: 10 + - uid: 19204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.509666,-15.270734 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: -55.447086,-11.324827 + parent: 2 +- proto: PumpkinLanternLarge + entities: + - uid: 9992 + components: + - type: Transform + pos: -61.48233,-52.20874 + parent: 2 + - uid: 11448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.39641,-71.67973 + parent: 2 + - uid: 19277 + components: + - type: Transform + pos: -51.46489,-7.267252 + parent: 2 +- proto: PumpkinLanternSmall + entities: + - uid: 457 + components: + - type: Transform + pos: -44.533104,16.519165 + parent: 2 + - uid: 708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.478012,-27.721989 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -110.1918,-53.244713 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -22.440277,-25.32853 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -13.48535,-8.6685705 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -87.32402,2.6317587 + parent: 2 + - uid: 7197 + components: + - type: Transform + parent: 12073 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7231 + components: + - type: Transform + pos: -33.385696,-67.36661 + parent: 2 + - type: PointLight + radius: 5 + - uid: 7916 + components: + - type: Transform + pos: -52.521904,-32.30145 + parent: 2 + - type: PointLight + radius: 6 + - uid: 8398 + components: + - type: Transform + pos: -9.681599,9.747244 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: -3.4821758,1.8804154 + parent: 2 + - uid: 10526 + components: + - type: Transform + pos: -31.56493,-35.414993 + parent: 2 + - type: PointLight + radius: 5 + - uid: 12249 + components: + - type: Transform + pos: -30.352419,-2.8882163 + parent: 2 + - uid: 14971 + components: + - type: Transform + pos: -27.456694,6.746046 + parent: 2 + - uid: 19137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.727501,-35.478188 + parent: 2 + - uid: 19170 + components: + - type: Transform + pos: -49.348904,-18.748257 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: -49.824604,-15.210099 + parent: 2 + - uid: 19175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.430424,-4.403101 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -33.343655,1.7812395 + parent: 2 + - uid: 19177 + components: + - type: Transform + pos: -30.502916,-11.962841 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: -38.587612,-11.44841 + parent: 2 + - uid: 19222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5858915,-49.51021 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: -17.033827,-56.130913 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: -91.64615,-32.492977 + parent: 2 +- proto: PumpkinSeeds + entities: + - uid: 19216 + components: + - type: Transform + pos: -41.507675,-32.549774 + parent: 2 + - uid: 19217 + components: + - type: Transform + pos: -41.43335,-29.561668 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: -41.48959,-30.622902 + parent: 2 - proto: Rack entities: - uid: 298 @@ -101044,6 +102558,11 @@ entities: - type: Transform pos: 4.5,2.5 parent: 17265 + - uid: 19267 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 - proto: RandomFoodSingle entities: - uid: 20011 @@ -101248,12 +102767,6 @@ entities: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 7916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-30.5 - parent: 2 - uid: 8834 components: - type: Transform @@ -101286,11 +102799,6 @@ entities: - type: Transform pos: -72.5,-21.5 parent: 2 - - uid: 10363 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 2 - uid: 10365 components: - type: Transform @@ -101302,10 +102810,11 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-66.5 parent: 2 - - uid: 11186 + - uid: 12253 components: - type: Transform - pos: -35.5,-6.5 + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 parent: 2 - uid: 17935 components: @@ -101367,23 +102876,6 @@ entities: - type: Transform pos: -26.5,-4.5 parent: 2 - - uid: 20449 - components: - - type: Transform - pos: -46.5,-2.5 - parent: 2 - - uid: 20843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-30.5 - parent: 2 - - uid: 20844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-26.5 - parent: 2 - uid: 20845 components: - type: Transform @@ -101408,12 +102900,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-38.5 parent: 2 - - uid: 20850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-34.5 - parent: 2 - uid: 20851 components: - type: Transform @@ -101468,24 +102954,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 - - uid: 20870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-13.5 - parent: 2 - - uid: 20872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 2 - - uid: 20873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-3.5 - parent: 2 - uid: 20874 components: - type: Transform @@ -101528,12 +102996,6 @@ entities: rot: 1.5707963267948966 rad pos: -72.5,-63.5 parent: 2 - - uid: 20883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 2 - uid: 20884 components: - type: Transform @@ -101558,18 +103020,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-17.5 parent: 2 - - uid: 20888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 2 - - uid: 20889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 2 - uid: 20890 components: - type: Transform @@ -101600,12 +103050,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,5.5 parent: 2 - - uid: 20895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,1.5 - parent: 2 - uid: 20896 components: - type: Transform @@ -102951,16 +104395,6 @@ entities: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 11220 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 2 - - uid: 11221 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 2 - uid: 11222 components: - type: Transform @@ -104121,6 +105555,25 @@ entities: - type: Transform pos: -88.40195,-36.404785 parent: 2 +- proto: RGBStaff + entities: + - uid: 7179 + components: + - type: Transform + pos: -78.01924,-41.722347 + parent: 2 + - uid: 19241 + components: + - type: Transform + pos: -35.62614,-11.333777 + parent: 2 +- proto: RightArmHuman + entities: + - uid: 19225 + components: + - type: Transform + pos: -81.52707,-11.310917 + parent: 2 - proto: RiotBulletShield entities: - uid: 16639 @@ -104665,6 +106118,18 @@ entities: color: '#8B008BFF' radius: 2.5 offset: -0.625,0 +- proto: ShadowTree06 + entities: + - uid: 12039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.166748,-17.583977 + parent: 2 + - type: PointLight + energy: 2 + color: '#FF69B4FF' + radius: 10 - proto: ShardCrystalGreen entities: - uid: 19131 @@ -106513,6 +107978,29 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: + - uid: 10654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + - uid: 10948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,8.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-38.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: -53.5,-72.5 + parent: 2 - uid: 11595 components: - type: Transform @@ -107346,46 +108834,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-26.5 parent: 2 -- proto: SodiumLightTube - entities: - - uid: 719 - components: - - type: Transform - parent: 718 - - type: LightBulb - lightSoftness: 0.2 - lightRadius: 6 - lightEnergy: 2 - - type: Physics - canCollide: False - - uid: 5665 - components: - - type: Transform - parent: 5644 - - type: LightBulb - lightSoftness: 0.2 - lightRadius: 6 - - type: Physics - canCollide: False - - uid: 5973 - components: - - type: Transform - parent: 10948 - - type: LightBulb - lightSoftness: 0.2 - lightRadius: 6 - - type: Physics - canCollide: False - - uid: 10947 - components: - - type: Transform - parent: 10080 - - type: LightBulb - lightSoftness: 0.2 - lightRadius: 6 - lightEnergy: 2 - - type: Physics - canCollide: False - proto: SolarPanel entities: - uid: 11650 @@ -109367,6 +110815,11 @@ entities: parent: 2 - proto: SpawnMobFrog entities: + - uid: 10425 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 - uid: 19018 components: - type: Transform @@ -109615,15 +111068,10 @@ entities: parent: 2 - proto: SpawnPointClown entities: - - uid: 8398 - components: - - type: Transform - pos: -14.5,-37.5 - parent: 2 - - uid: 12039 + - uid: 19275 components: - type: Transform - pos: -20.5,13.5 + pos: -20.5,12.5 parent: 2 - proto: SpawnPointDetective entities: @@ -109948,6 +111396,13 @@ entities: - type: Transform pos: -58.322235,-67.43978 parent: 2 +- proto: SpiderWeb + entities: + - uid: 7196 + components: + - type: Transform + pos: -54.5,-43.5 + parent: 2 - proto: SprayBottleSpaceCleaner entities: - uid: 314 @@ -109994,12 +111449,6 @@ entities: - type: Transform pos: -16.5,6.5 parent: 2 - - uid: 708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-66.5 - parent: 2 - uid: 4925 components: - type: Transform @@ -110015,12 +111464,6 @@ entities: - type: Transform pos: -17.5,6.5 parent: 2 - - uid: 10177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-67.5 - parent: 2 - uid: 12011 components: - type: Transform @@ -110145,6 +111588,20 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,-71.5 parent: 2 +- proto: StairWood + entities: + - uid: 12341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-66.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-67.5 + parent: 2 - proto: StasisBed entities: - uid: 1952 @@ -111849,12 +113306,6 @@ entities: - type: Transform pos: -15.5,-40.5 parent: 2 - - uid: 6706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-65.5 - parent: 2 - uid: 7330 components: - type: Transform @@ -111882,11 +113333,6 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,16.5 parent: 2 - - uid: 9508 - components: - - type: Transform - pos: -64.5,-1.5 - parent: 2 - uid: 9744 components: - type: Transform @@ -111997,22 +113443,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-62.5 parent: 2 - - uid: 12249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-65.5 - parent: 2 - uid: 12251 components: - type: Transform pos: -32.5,-14.5 parent: 2 - - uid: 12253 - components: - - type: Transform - pos: -41.5,-65.5 - parent: 2 - uid: 12257 components: - type: Transform @@ -112263,11 +113698,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 - - uid: 12331 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 2 - uid: 12333 components: - type: Transform @@ -112278,23 +113708,12 @@ entities: - type: Transform pos: -43.5,-71.5 parent: 2 - - uid: 12339 - components: - - type: Transform - pos: -42.5,-61.5 - parent: 2 - uid: 12340 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-62.5 parent: 2 - - uid: 12341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-65.5 - parent: 2 - uid: 12342 components: - type: Transform @@ -112454,6 +113873,12 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,4.5 parent: 2 + - uid: 19167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-1.5 + parent: 2 - uid: 20146 components: - type: Transform @@ -112773,6 +114198,11 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,-69.5 parent: 2 + - uid: 19181 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 - uid: 19959 components: - type: Transform @@ -112878,12 +114308,32 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-37.5 parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 - uid: 9277 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-37.5 parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 19149 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 - proto: TableFrame entities: - uid: 17509 @@ -113750,10 +115200,15 @@ entities: - type: Transform pos: -49.5,-50.5 parent: 2 - - uid: 2757 + - uid: 4722 components: - type: Transform - pos: -33.5,-33.5 + pos: -9.5,-48.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: -42.5,-61.5 parent: 2 - uid: 4801 components: @@ -113789,11 +115244,6 @@ entities: - type: Transform pos: -22.5,-44.5 parent: 2 - - uid: 9276 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - uid: 9428 components: - type: Transform @@ -113957,11 +115407,31 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-39.5 parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -38.5,-65.5 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: -39.5,-65.5 + parent: 2 - uid: 15108 components: - type: Transform pos: -53.5,-18.5 parent: 2 + - uid: 15322 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: -41.5,-65.5 + parent: 2 - uid: 17099 components: - type: Transform @@ -113997,11 +115467,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-39.5 parent: 2 - - uid: 20023 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - uid: 20047 components: - type: Transform @@ -114419,7 +115884,7 @@ entities: - uid: 9580 components: - type: Transform - pos: -110.51555,-53.320805 + pos: -110.59317,-53.333908 parent: 2 - proto: ToyFigurineAtmosTech entities: @@ -114518,16 +115983,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.854268,-29.40827 parent: 2 -- proto: ToyMouse - entities: - - uid: 12562 - components: - - type: MetaData - desc: Он ест свой сыр, он заслужил! - name: SonicDC - - type: Transform - pos: -35.17324,-3.6963296 - parent: 2 - proto: ToyNuke entities: - uid: 12563 @@ -114579,14 +116034,6 @@ entities: - type: Transform pos: -29.641602,7.6405973 parent: 2 -- proto: TromboneInstrument - entities: - - uid: 20033 - components: - - type: Transform - rot: -0.3490658503988659 rad - pos: -32.388115,-33.39624 - parent: 2 - proto: TwoWayLever entities: - uid: 4733 @@ -115178,6 +116625,13 @@ entities: - type: Transform pos: -20.5,-25.5 parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 19157 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 - proto: VendingMachineMedical entities: - uid: 5414 @@ -128795,6 +130249,12 @@ entities: - type: Transform pos: -55.5,-38.5 parent: 2 + - uid: 7187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-25.5 + parent: 2 - uid: 7250 components: - type: Transform @@ -128997,6 +130457,12 @@ entities: - type: Transform pos: -74.5,-63.5 parent: 2 + - uid: 12328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-27.5 + parent: 2 - uid: 12350 components: - type: Transform @@ -133005,13 +134471,6 @@ entities: - type: Transform pos: -10.5,-45.5 parent: 2 -- proto: WardrobeMixedFilled - entities: - - uid: 2117 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - proto: WardrobePink entities: - uid: 14476 @@ -133262,11 +134721,6 @@ entities: - type: Transform pos: -53.49756,-49.432087 parent: 2 - - uid: 15413 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 2 - uid: 15414 components: - type: Transform @@ -133457,20 +134911,15 @@ entities: - type: InsideEntityStorage - proto: WeaponPistolMk58 entities: - - uid: 6680 - components: - - type: Transform - pos: -12.197494,-4.5229115 - parent: 2 - - uid: 11448 + - uid: 19162 components: - type: Transform - pos: -12.344886,-4.414303 + pos: -22.32123,2.4687648 parent: 2 - - uid: 14361 + - uid: 19251 components: - type: Transform - pos: -12.523308,-4.3599987 + pos: -22.489666,2.5777836 parent: 2 - proto: WeaponPistolN1984 entities: @@ -133536,10 +134985,10 @@ entities: parent: 2 - proto: WeaponSniperHristov entities: - - uid: 10308 + - uid: 7192 components: - type: Transform - pos: -14.564501,-3.3821173 + pos: -14.528783,-3.3774815 parent: 2 - proto: WeaponSniperMosin entities: @@ -133554,6 +135003,16 @@ entities: - AmmoCounter - BallisticAmmoProvider - Contraband + - uid: 19160 + components: + - type: Transform + pos: -12.321258,-4.5175657 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: -12.539287,-4.349082 + parent: 2 - proto: WeaponSubMachineGunDrozd entities: - uid: 16145 @@ -133568,17 +135027,17 @@ entities: - type: Transform pos: 5.7313232,-10.509827 parent: 16090 - - uid: 17072 + - uid: 19163 components: - type: Transform - pos: -12.414703,-3.5249188 + pos: -12.40928,-3.6252518 parent: 2 - proto: WeaponSubMachineGunWt550 entities: - - uid: 11777 + - uid: 19250 components: - type: Transform - pos: -12.461247,-3.2999437 + pos: -12.448912,-3.2387304 parent: 2 - proto: WeaponTurretHostile entities: @@ -133789,13 +135248,6 @@ entities: - type: Transform pos: -61.5,-72.5 parent: 2 -- proto: WhiteKnight - entities: - - uid: 20031 - components: - - type: Transform - pos: -33.023064,-33.072342 - parent: 2 - proto: WhiteQueen entities: - uid: 4803 @@ -135765,6 +137217,16 @@ entities: parent: 2 - proto: WoodenSupport entities: + - uid: 8910 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 2 - uid: 11634 components: - type: Transform diff --git a/Resources/Maps/corvax_paper.yml b/Resources/Maps/corvax_paper.yml index f7d702692f7..6fd0fefdfb2 100644 --- a/Resources/Maps/corvax_paper.yml +++ b/Resources/Maps/corvax_paper.yml @@ -14,6 +14,7 @@ tilemap: 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit + 81: FloorBoxing 39: FloorBrokenWood 22: FloorCarpetClown 24: FloorCave @@ -131,27 +132,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAATgAAAAAAaAAAAAAAaAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAATgAAAAAAaAAAAAAAaAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 0,1: ind: 0,1 - tiles: XQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAA + tiles: XQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAA version: 6 0,2: ind: 0,2 - tiles: BgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAABgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAABgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAbAAAAAAAgQAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAA + tiles: BgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAABgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAABgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAfgAAAAAAgQAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAA version: 6 0,3: ind: 0,3 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAOgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAOQAAAAAAOgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAOgAAAAAAOQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAOwAAAAAAQQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAbAAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAOgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAOQAAAAAAOgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAOgAAAAAAOQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAQQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAA version: 6 0,4: ind: 0,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAMgAAAAAAMgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAMgAAAAAAMgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAMgAAAAAAfgAAAAAA version: 6 0,5: ind: 0,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 @@ -163,15 +164,15 @@ entities: version: 6 1,2: ind: 1,2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAA version: 6 1,3: ind: 1,3 - tiles: NwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAAfgAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAALwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAA + tiles: NwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAAfgAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAALwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAA version: 6 1,4: ind: 1,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA version: 6 1,5: ind: 1,5 @@ -179,7 +180,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: bAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,1: ind: 2,1 @@ -187,7 +188,7 @@ entities: version: 6 2,2: ind: 2,2 - tiles: fQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAfgAAAAAALwAAAAAAfgAAAAAAfgAAAAAALwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAA + tiles: fQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAfgAAAAAALwAAAAAAfgAAAAAAfgAAAAAALwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAA version: 6 2,3: ind: 2,3 @@ -203,23 +204,23 @@ entities: version: 6 3,0: ind: 3,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 3,1: ind: 3,1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAA version: 6 3,2: ind: 3,2 - tiles: fgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAHwAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAADAAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: fgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAHwAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAADAAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 3,3: ind: 3,3 - tiles: fgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAJAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAJAAAAAAALwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAfgAAAAAALwAAAAAALwAAAAAALwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAA + tiles: fgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAJAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAJAAAAAAALwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAfgAAAAAALwAAAAAALwAAAAAALwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAA version: 6 3,4: ind: 3,4 - tiles: XQAAAAAAXQAAAAAAXQAAAAAALwAAAAAALwAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAACQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGwAAAAAAHAAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAHAAAAAAAGgAAAAAAGgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAGgAAAAAAGwAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGgAAAAAAHgAAAAAAfgAAAAAABwAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: XQAAAAAAXQAAAAAAXQAAAAAALwAAAAAALwAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAACQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGwAAAAAAHAAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAHAAAAAAAGgAAAAAAGgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAGgAAAAAAGwAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGgAAAAAAHgAAAAAAfgAAAAAABwAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 3,5: ind: 3,5 @@ -227,7 +228,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAA + tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAA version: 6 4,1: ind: 4,1 @@ -235,11 +236,11 @@ entities: version: 6 4,2: ind: 4,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAWwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAWwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA version: 6 4,3: ind: 4,3 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAATQAAAAAAaAAAAAAACgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAACgAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAALwAAAAAALwAAAAAALwAAAAAAHwAAAAAALwAAAAAALwAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAATQAAAAAAaAAAAAAACgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAACgAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAA version: 6 4,4: ind: 4,4 @@ -275,15 +276,15 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAKAAAAAAAKAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAKAAAAAAAKAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: TwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAJAAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAA + tiles: TwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAJAAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAbAAAAAAALwAAAAAAfgAAAAAALwAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAJAAAAAAAbAAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAA + tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAALwAAAAAAfgAAAAAALwAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAA version: 6 2,-2: ind: 2,-2 @@ -291,15 +292,15 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAASQAAAAAASQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASQAAAAAASQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAASQAAAAAASQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: bAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: bAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 4,-1: ind: 4,-1 @@ -691,6 +692,7 @@ entities: 4447: 33,22 6221: 54,74 7019: 30,0 + 8985: 79,53 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -707,6 +709,7 @@ entities: 4445: 31,22 6220: 52,74 7007: 26,0 + 8986: 74,53 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe @@ -723,6 +726,7 @@ entities: 4507: 6,9 6219: 54,72 7016: 30,-3 + 8991: 79,52 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw @@ -742,6 +746,7 @@ entities: 4444: 31,21 5281: 74,40 7011: 26,-3 + 8992: 74,52 - node: color: '#D4D4D4FF' id: BrickTileDarkEndE @@ -941,6 +946,7 @@ entities: 8673: -8,20 8674: -9,20 8675: -9,21 + 8996: 77,53 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -973,6 +979,7 @@ entities: 8649: -8,22 8650: -9,22 8651: -9,21 + 8997: 77,53 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -1101,6 +1108,7 @@ entities: 8546: 25,-41 8547: 24,-37 8548: 20,-37 + 8999: 77,54 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1177,6 +1185,9 @@ entities: 8554: 28,-39 8555: 29,-39 8556: 30,-39 + 8993: 75,53 + 8994: 76,53 + 8995: 78,53 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1261,6 +1272,10 @@ entities: 8553: 28,-39 8558: 30,-39 8559: 29,-39 + 8987: 75,52 + 8988: 76,52 + 8989: 77,52 + 8990: 78,52 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1327,6 +1342,7 @@ entities: 8542: 24,-37 8543: 19,-41 8544: 25,-41 + 8998: 77,54 - node: color: '#FFFFFFFF' id: BrickTileSteelBox @@ -1441,7 +1457,6 @@ entities: 2473: 71,13 2857: 33,2 3176: 82,37 - 5431: 3,26 - node: color: '#D93CD9FF' id: BrickTileSteelCornerSw @@ -1471,7 +1486,6 @@ entities: 1893: 2,31 2723: 12,13 2854: 26,2 - 5432: 0,26 - node: color: '#DE3A3AFF' id: BrickTileSteelEndE @@ -1498,7 +1512,6 @@ entities: id: BrickTileSteelEndN decals: 3195: 82,49 - 5426: 0,30 6937: 22,0 - node: color: '#00FFFFFF' @@ -1576,6 +1589,7 @@ entities: 5671: 58,31 5695: 57,28 5742: 49,35 + 8825: 58,17 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe @@ -1610,8 +1624,6 @@ entities: 3207: 72,41 3575: 37,23 4568: 9,14 - 5424: 0,26 - 5425: 0,29 6294: 79,66 6333: 74,66 6722: 27,4 @@ -1692,8 +1704,6 @@ entities: 3204: 70,35 3205: 70,39 3216: 11,14 - 5423: 3,29 - 5445: 3,26 6292: 79,66 6334: 74,66 6382: 65,53 @@ -1758,6 +1768,7 @@ entities: 5672: 58,31 5698: 57,30 7177: 83,8 + 8826: 58,17 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe @@ -1794,7 +1805,6 @@ entities: 3576: 37,23 4580: 7,13 4814: 32,2 - 5422: 0,29 6733: 27,10 6734: 33,12 6953: 22,-3 @@ -1869,7 +1879,6 @@ entities: 3558: 53,51 4579: 9,13 4813: 32,2 - 5421: 3,29 6732: 32,10 6796: 26,12 6840: 70,51 @@ -1922,7 +1931,6 @@ entities: 3801: 41,16 3868: 48,35 3869: 50,35 - 3908: 58,17 3917: 37,36 4704: 15,9 4709: 15,10 @@ -2244,12 +2252,6 @@ entities: 3203: 69,35 4576: 7,12 5412: 10,26 - 5417: 3,30 - 5418: 3,29 - 5419: 3,28 - 5420: 3,27 - 5439: 0,28 - 5440: 0,27 6289: 81,65 6313: 74,68 6315: 79,68 @@ -2346,6 +2348,7 @@ entities: 7155: 82,8 7157: 81,8 7179: 83,8 + 8827: 59,17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -2644,10 +2647,6 @@ entities: 3150: 81,37 3151: 81,37 4567: 8,15 - 5437: 1,29 - 5438: 2,29 - 5443: 1,26 - 5444: 2,26 6295: 80,66 6296: 78,66 6297: 77,66 @@ -2798,6 +2797,7 @@ entities: 7161: 79,8 7162: 78,8 7168: 77,6 + 8828: 59,17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -3129,10 +3129,6 @@ entities: 3138: 81,37 3139: 81,37 4578: 8,13 - 5433: 1,26 - 5434: 2,26 - 5435: 1,29 - 5436: 2,29 6320: 79,69 6321: 74,69 6329: 74,67 @@ -3564,12 +3560,6 @@ entities: 5356: 70,27 5357: 70,28 5360: 14,21 - 5427: 3,30 - 5428: 0,29 - 5429: 0,28 - 5430: 0,27 - 5441: 3,28 - 5442: 3,27 6304: 69,65 6307: 74,68 6311: 79,68 @@ -4044,6 +4034,7 @@ entities: 6596: 45,-5 6598: 45,-11 7525: 36,-6 + 8831: 62,21 - node: color: '#8C347FFF' id: BrickTileWhiteInnerNe @@ -4306,6 +4297,7 @@ entities: 6801: 33,11 7237: 37,-2 7527: 36,-4 + 8832: 62,21 - node: color: '#8C347FFF' id: BrickTileWhiteInnerSe @@ -4602,7 +4594,6 @@ entities: 5185: 48,9 5538: 62,23 5539: 62,22 - 5540: 62,21 6453: 68,9 6484: 60,2 6485: 60,3 @@ -4871,6 +4862,7 @@ entities: 6808: 47,-5 6809: 48,-5 6810: 49,-5 + 8833: 63,21 - node: color: '#8C347FFF' id: BrickTileWhiteLineN @@ -5106,6 +5098,7 @@ entities: 6806: 48,-7 6807: 49,-7 7235: 38,-2 + 8834: 63,21 - node: color: '#8C347FFF' id: BrickTileWhiteLineS @@ -5919,9 +5912,6 @@ entities: 7496: 6,32 7497: 3,33 7498: 5,33 - 7499: 3,29 - 7500: 0,29 - 7501: 0,26 7502: 7,32 7503: 4,33 7504: 7,32 @@ -6032,6 +6022,1097 @@ entities: 8796: 24,-38 8797: 26,-40 8798: 27,-39 + 8835: 31.386984,60.917038 + 8836: 32.324486,61.120163 + 8837: 33.011986,61.495163 + 8838: 31.668236,62.151413 + 8839: 30.933859,61.823288 + 8840: 30.121359,60.917038 + 8841: 43.318695,44.632866 + 8842: 39.068695,44.882866 + 8843: 36.11557,44.476616 + 8844: 34.99057,42.77349 + 8845: 41.70932,44.67974 + 8846: 34.185287,37.916046 + 8847: 36.138412,40.71292 + 8848: 35.388412,40.99417 + 8849: 46.933075,28.301037 + 8850: 45.35495,28.363537 + 8851: 45,32 + 8852: 47,33 + 8853: 46,34 + 8854: 46,35 + 8855: 47,35 + 8856: 47,30 + 8857: 41,27 + 8858: 40,28 + 8859: 40,27 + 8860: 43,27 + 8861: 40,31 + 8862: 42,31 + 8863: 43,21 + 8864: 43,19 + 8865: 43,17 + 8866: 47,16 + 8867: 39,16 + 8868: 39,20 + 8869: 39,19 + 8870: 47,20 + 8871: 47,19 + 8872: 43,23 + 8873: 46,23 + 8874: 47,24 + 8875: 49,22 + 8876: 53,23 + 8877: 54,24 + 8878: 55,22 + 8879: 56,21 + 8880: 57,22 + 8881: 58,23 + 8882: 58,31 + 8883: 60,31 + 8884: 61,31 + 8885: 59,31 + 8886: 58,31 + 8887: 57,30 + 8888: 56,31 + 8889: 56,32 + 8890: 54,32 + 8891: 55,31 + 8892: 55,32 + 8893: 61,27 + 8894: 60,27 + 8895: 59,27 + 8896: 58,27 + 8897: 57,27 + 8898: 57,27 + 8899: 56,27 + 8900: 57,27 + 8901: 57,28 + 8902: 62,27 + 8903: 57,26 + 9006: 44,3 + 9007: 42,4 + 9008: 44,3 + 9009: 44,3 + 9010: 42,2 + 9011: 43,6 + 9012: 43,8 + 9013: 42,8 + 9014: 41,9 + 9015: 42,10 + 9016: 43,9 + 9017: 42,7 + 9018: 41,7 + 9019: 43,6 + 9020: 43,6 + 9021: 42,4 + 9022: 37,4 + 9023: 36,5 + 9024: 36,4 + 9025: 38,3 + 9026: 37,6 + 9027: 36,6 + 9028: 37,9 + 9029: 36,9 + 9030: 36,9 + 9031: 37,9 + 9032: 37,10 + 9033: 36,10 + 9034: 38,8 + 9035: 38,9 + 9036: 37,7 + 9037: 38,-1 + 9038: 36,0 + 9039: 36,-2 + 9040: 36,-3 + 9041: 35,1 + 9042: 39,0 + 9043: 39,0 + 9044: 40,-3 + 9045: 40,-4 + 9046: 39,-1 + 9047: 36,0 + 9048: 39,0 + 9049: 40,-3 + 9050: 40,-5 + 9051: 39,-2 + 9052: 39,-5 + 9053: 36,-7 + 9054: 35,-6 + 9055: 37,-6 + 9056: 36,-7 + 9057: 40,-8 + 9058: 40,-9 + 9059: 42,-8 + 9060: 39,-8 + 9061: 50,-12 + 9062: 39,-7 + 9063: 41,-9 + 9064: 42,-8 + 9065: 42,-8 + 9066: 45,-8 + 9067: 43,-11 + 9068: 44,-10 + 9069: 45,-10 + 9070: 48,-11 + 9071: 48,-10 + 9072: 49,-11 + 9073: 48,-7 + 9074: 47,-5 + 9075: 48,-5 + 9076: 49,-6 + 9077: 48,-7 + 9078: 47,-6 + 9079: 47,-6 + 9080: 49,-3 + 9081: 47,-3 + 9082: 48,0 + 9083: 48,1 + 9084: 50,0 + 9085: 50,-2 + 9086: 49,-2 + 9087: 50,0 + 9088: 49,1 + 9089: 47,0 + 9090: 49,-3 + 9091: 49,-7 + 9092: 50,-5 + 9093: 48,-6 + 9094: 45,-6 + 9095: 45,-8 + 9096: 45,-10 + 9097: 49,-10 + 9098: 49,-11 + 9099: 49,-12 + 9100: 47,-12 + 9101: 50,-12 + 9102: 50,-13 + 9103: 49,-13 + 9104: 50,-11 + 9105: 50,-9 + 9106: 52,-8 + 9107: 52,-9 + 9108: 53,-12 + 9109: 51,-14 + 9110: 49,-14 + 9111: 48,-15 + 9112: 47,-15 + 9113: 49,-14 + 9114: 50,-14 + 9115: 46,-14 + 9116: 45,-14 + 9117: 41,-13 + 9118: 41,-11 + 9119: 41,-12 + 9120: 42,-13 + 9121: 44,-14 + 9122: 45,-14 + 9123: 40,-11 + 9124: 38,-12 + 9125: 36,-11 + 9126: 36,-10 + 9127: 35,-9 + 9128: 33,-9 + 9129: 32,-9 + 9130: 32,-8 + 9131: 32,-5 + 9132: 32,-4 + 9133: 33,-3 + 9134: 32,-4 + 9135: 32,-1 + 9136: 33,-9 + 9137: 32,-9 + 9138: 31,-8 + 9139: 30,-7 + 9140: 30,-5 + 9141: 31,-10 + 9142: 30,-12 + 9143: 32,-12 + 9144: 30,-16 + 9145: 31,-15 + 9146: 30,-15 + 9147: 29,-16 + 9148: 29,-17 + 9149: 32,-19 + 9150: 29,-20 + 9151: 28,-20 + 9152: 18,-20 + 9153: 16,-20 + 9154: 15,-19 + 9155: 14,-19 + 9156: 13,-20 + 9157: 12,-20 + 9158: 11,-19 + 9159: 11,-16 + 9160: 11,-16 + 9161: 11,-14 + 9162: 10,-11 + 9163: 10,-10 + 9164: 9,-10 + 9165: 10,-8 + 9166: 10,-8 + 9167: 11,-7 + 9168: 11,-5 + 9169: 11,-4 + 9170: 11,-2 + 9171: 11,-1 + 9172: 11,1 + 9173: 13,1 + 9174: 14,1 + 9175: 17,1 + 9176: 17,1 + 9177: 17,2 + 9178: 9,2 + 9179: 9,2 + 9180: 11,3 + 9181: 11,6 + 9182: 11,7 + 9183: 8,6 + 9184: 5,7 + 9185: 5,8 + 9186: 7,7 + 9187: 3,7 + 9188: 3,7 + 9189: 3,8 + 9190: 2,6 + 9191: 7,7 + 9192: 8,8 + 9193: 3,8 + 9194: 2,7 + 9195: 2,5 + 9196: 1,8 + 9197: 1,9 + 9198: 2,12 + 9199: 1,13 + 9200: 2,14 + 9201: 5,13 + 9202: 5,14 + 9203: 4,13 + 9204: 3,12 + 9205: 1,11 + 9206: 2,13 + 9207: 4,13 + 9208: 5,2 + 9209: 4,2 + 9210: 6,3 + 9211: 6,2 + 9212: 6,1 + 9213: 2,2 + 9214: 1,2 + 9215: 1,3 + 9216: 9,1 + 9217: 6,2 + 9218: 5,2 + 9219: 0,5 + 9220: -1,8 + 9221: -1,8 + 9222: -1,6 + 9223: -1,9 + 9224: 14,9 + 9225: 13,8 + 9226: 13,10 + 9227: 17,10 + 9228: 17,8 + 9229: 18,10 + 9230: 17,10 + 9231: 17,8 + 9232: 14,9 + 9233: 14,9 + 9234: 15,8 + 9235: 12,12 + 9236: 8,18 + 9237: 5,18 + 9238: 5,17 + 9239: 4,16 + 9240: 4,18 + 9241: 3,18 + 9242: 4,21 + 9243: 2,22 + 9244: 0,22 + 9245: 0,20 + 9246: 1,20 + 9247: 2,22 + 9248: 1,23 + 9249: 14,13 + 9250: 11,14 + 9251: 11,15 + 9252: 12,19 + 9253: 12,21 + 9254: 12,24 + 9255: 14,26 + 9256: 12,28 + 9257: 12,28 + 9258: 19,27 + 9259: 20,25 + 9260: 21,26 + 9261: 22,29 + 9262: 26,28 + 9263: 28,27 + 9264: 28,25 + 9265: 30,25 + 9266: 28,28 + 9267: 27,26 + 9268: 28,25 + 9269: 14,24 + 9270: 15,26 + 9271: 15,24 + 9272: 16,24 + 9273: 21,26 + 9274: 22,27 + 9275: 23,28 + 9276: 25,28 + 9277: 27,26 + 9278: 29,25 + 9279: 30,24 + 9280: 32,25 + 9281: 32,25 + 9282: 33,24 + 9283: 29,21 + 9284: 28,22 + 9285: 28,21 + 9286: 26,21 + 9287: 25,20 + 9288: 24,21 + 9289: 26,22 + 9290: 31,21 + 9291: 33,21 + 9292: 31,21 + 9293: 31,16 + 9294: 30,16 + 9295: 29,16 + 9296: 31,13 + 9297: 29,13 + 9298: 27,11 + 9299: 30,11 + 9300: 32,10 + 9301: 29,12 + 9302: 27,13 + 9303: 25,13 + 9304: 26,12 + 9305: 31,11 + 9306: 33,9 + 9307: 31,5 + 9308: 48,-2 + 9309: 48,-1 + 9310: 55,-5 + 9311: 53,-4 + 9312: 55,-5 + 9313: 57,-5 + 9314: 56,-2 + 9315: 55,-3 + 9316: 54,-3 + 9317: 53,-4 + 9318: 56,-4 + 9319: 56,-2 + 9320: 55,-1 + 9321: 55,0 + 9322: 55,-2 + 9323: 56,-2 + 9324: 56,0 + 9325: 52,-1 + 9326: 53,0 + 9327: 53,0 + 9328: 52,0 + 9329: 53,-1 + 9330: 53,-2 + 9331: 53,-3 + 9332: 52,-3 + 9333: 52,-4 + 9334: 52,-5 + 9335: 52,-5 + 9336: 53,-6 + 9337: 54,-6 + 9338: 55,-6 + 9339: 56,-6 + 9340: 57,-6 + 9341: 57,-5 + 9342: 56,-5 + 9343: 56,-5 + 9344: 55,-4 + 9345: 54,-5 + 9346: 54,-5 + 9347: 53,-4 + 9348: 54,-4 + 9349: 55,-4 + 9350: 57,-3 + 9351: 57,-3 + 9352: 56,-3 + 9353: 56,-3 + 9354: 53,-3 + 9355: 52,-4 + 9356: 52,-5 + 9357: 56,-5 + 9358: 56,-5 + 9359: 54,-5 + 9360: 54,-3 + 9361: 54,-4 + 9362: 53,-4 + 9363: 53,-2 + 9364: 53,-1 + 9365: 52,-1 + 9366: 52,0 + 9367: 53,0 + 9368: 56,0 + 9369: 56,-1 + 9370: 55,-1 + 9371: 55,-2 + 9372: 56,-3 + 9373: 56,-4 + 9374: 55,-5 + 9375: 52,-6 + 9376: 55,-6 + 9377: 56,-6 + 9378: 57,-5 + 9379: 57,-6 + 9380: 54,-5 + 9381: 52,-5 + 9382: 53,-5 + 9383: 53,-5 + 9384: 53,-5 + 9385: 53,-5 + 9386: 55,-3 + 9387: 55,-3 + 9388: 53,-3 + 9389: 54,2 + 9390: 52,3 + 9391: 48,4 + 9392: 46,3 + 9393: 53,4 + 9394: 54,3 + 9395: 53,2 + 9396: 53,6 + 9397: 56,7 + 9398: 58,7 + 9399: 54,7 + 9400: 54,8 + 9401: 58,7 + 9402: 59,7 + 9403: 59,3 + 9404: 59,2 + 9405: 57,3 + 9406: 60,3 + 9407: 59,2 + 9408: 45,8 + 9409: 47,7 + 9410: 47,6 + 9411: 48,8 + 9412: 47,9 + 9413: 46,7 + 9414: 47,7 + 9415: 48,8 + 9416: 47,6 + 9417: 45,-1 + 9418: 44,-2 + 9419: 44,-3 + 9420: 44,-4 + 9421: 44,-5 + 9422: 44,-1 + 9423: 44,1 + 9424: 43,0 + 9425: 44,-1 + 9426: 43,-2 + 9427: 40,-1 + 9428: 40,1 + 9429: 24,-13 + 9430: 21,-10 + 9431: 22,-8 + 9432: 23,-8 + 9433: 23,-11 + 9434: 22,-12 + 9435: 22,-13 + 9436: 23,-12 + 9437: 19,-12 + 9438: 18,-12 + 9439: 19,-8 + 9440: 19,-8 + 9441: 22,-8 + 9442: 21,-4 + 9443: 23,-2 + 9444: 23,0 + 9445: 24,-1 + 9446: 23,-4 + 9447: 22,-5 + 9448: 20,-1 + 9449: 20,1 + 9450: 20,2 + 9451: 24,-2 + 9452: 23,-3 + 9453: 22,-4 + 9454: 17,-3 + 9455: 17,-4 + 9456: 16,-3 + 9457: 16,-3 + 9458: 17,4 + 9459: 15,5 + 9460: 20,5 + 9461: 21,5 + 9462: 21,4 + 9463: 21,7 + 9464: 23,9 + 9465: 22,8 + 9466: 21,8 + 9467: 24,8 + 9468: 27,7 + 9469: 26,5 + 9470: 28,1 + 9471: 31,3 + 9472: 32,8 + 9473: 29,11 + 9474: 25,13 + 9475: 21,9 + 9476: 20,-16 + 9477: 17,-16 + 9478: 16,-17 + 9479: 17,-15 + 9480: 23,-16 + 9481: 21,-17 + 9482: 27,-16 + 9483: 27,-15 + 9484: 23,-24 + 9485: 23,-23 + 9680: 26,44 + 9681: 25,45 + 9682: 27,49 + 9683: 24,49 + 9684: 27,42 + 9685: 28,41 + 9686: 24,44 + 9687: 30,49 + 9688: 32,50 + 9689: 30,50 + 9690: 27,50 + 9691: 25,50 + 9692: 23,50 + 9693: 21,50 + 9694: 20,50 + 9695: 26,50 + 9696: 28,50 + 9697: 30,50 + 9698: 23,49 + 9699: 22,48 + 9700: 22,47 + 9701: 14,43 + 9702: 16,42 + 9703: 15,40 + 9704: 14,40 + 9705: 16,40 + 9706: 40,36 + 9707: 39,34 + 9708: 39,35 + 9709: 42,35 + 9710: 42,35 + 9711: 43,35 + 9712: 43,34 + 9713: 41,38 + 9714: 40,38 + 9715: 42,38 + 9716: 45,39 + 9717: 47,39 + 9718: 49,39 + 9719: 49,41 + 9720: 49,44 + 9721: 49,42 + 9722: 56,45 + 9723: 54,45 + 9724: 61,45 + 9725: 64,45 + 9726: 65,44 + 9727: 66,44 + 9728: 67,44 + 9729: 63,38 + 9730: 63,36 + 9731: 63,35 + 9732: 66,34 + 9733: 68,34 + 9734: 67,32 + 9735: 67,32 + 9736: 65,35 + 9737: 67,35 + 9738: 68,32 + 9739: 68,21 + 9740: 67,21 + 9741: 66,21 + 9742: 68,16 + 9743: 61,16 + 9744: 62,9 + 9745: 62,9 + 9746: 57,10 + 9747: 53,10 + 9748: 57,10 + 9749: 59,10 + 9750: 62,4 + 9751: 62,0 + 9752: 61,-1 + 9753: 60,-1 + 9754: 58,10 + 9755: 61,8 + 9756: 70,3 + 9757: 85,11 + 9758: 86,10 + 9759: 89,11 + 9760: 90,13 + 9761: 89,14 + 9762: 90,16 + 9763: 90,18 + 9764: 89,17 + 9765: 90,15 + 9766: 92,16 + 9767: 93,17 + 9768: 96,16 + 9769: 96,17 + 9770: 90,23 + 9771: 86,24 + 9772: 86,23 + 9773: 83,23 + 9774: 83,24 + 9775: 81,24 + 9776: 78,23 + 9777: 76,23 + 9778: 79,24 + 9779: 68,1 + 9780: 57,-8 + 9781: 57,-8 + 9782: 56,-8 + 9783: 52,-8 + 9784: 52,-9 + 9785: 11,-4 + 9936: 70,66 + 9937: 70,64 + 9938: 74,65 + 9939: 79,65 + 9940: 81,64 + 9941: 81,62 + 9942: 81,60 + 9943: 81,58 + 9944: 82,57 + 9945: 80,55 + 9946: 78,55 + 9947: 73,55 + 9948: 71,55 + 9949: 70,57 + 9950: 70,56 + 9951: 71,55 + 9952: 74,56 + 9953: 75,59 + 9954: 75,59 + 9955: 76,59 + 9956: 76,60 + 9957: 77,59 + 9958: 74,60 + 9959: 75,61 + 9960: 77,62 + 9961: 70,60 + 9962: 70,61 + 9963: 69,61 + 9964: 69,59 + 9965: 70,64 + 9966: 72,65 + 9967: 73,65 + 9968: 74,54 + 9969: 75,55 + 9970: 77,54 + 9971: 77,53 + 9972: 75,52 + 9973: 77,52 + 9974: 78,52 + 9975: 82,58 + 9976: 81,60 + 9977: 81,63 + 9978: 83,63 + 9979: 80,65 + 9980: 85,63 + 9981: 65,56 + 9982: 63,56 + 9983: 65,57 + 9984: 64,57 + 9985: 66,56 + 9986: 66,55 + 9987: 60,56 + 9988: 60,55 + 9989: 60,56 + 9990: 60,58 + 9991: 63,64 + 9992: 62,64 + 9993: 62,63 + 9994: 65,62 + 9995: 65,61 + 9996: 65,61 + 9997: 56,59 + 9998: 56,60 + 9999: 57,60 + 10000: 57,58 + 10001: 56,64 + 10002: 56,65 + 10003: 56,66 + 10004: 57,63 + 10005: 56,69 + 10006: 56,69 + 10007: 56,71 + 10008: 56,72 + 10009: 57,74 + 10010: 47,72 + 10011: 46,70 + 10012: 47,70 + 10013: 47,68 + 10014: 47,71 + 10015: 47,73 + 10016: 47,74 + 10017: 48,73 + 10018: 41,71 + 10019: 42,72 + 10020: 43,70 + 10021: 42,70 + 10022: 43,69 + 10023: 43,69 + 10024: 43,71 + 10025: 43,75 + 10026: 43,76 + 10027: 42,76 + 10028: 43,74 + 10029: 43,74 + 10030: 43,75 + 10031: 48,77 + 10032: 46,78 + 10033: 46,77 + 10034: 47,77 + 10035: 48,80 + 10036: 47,77 + 10037: 47,76 + 10038: 47,77 + 10039: 46,82 + 10040: 46,84 + 10041: 46,85 + 10042: 50,84 + 10043: 50,83 + 10044: 50,81 + 10045: 53,81 + 10046: 52,82 + 10047: 50,85 + 10048: 52,85 + 10049: 53,84 + 10050: 51,86 + 10051: 50,85 + 10052: 46,84 + 10053: 46,82 + 10054: 46,82 + 10055: 45,82 + 10056: 45,81 + 10057: 44,65 + 10058: 44,65 + 10059: 43,64 + 10060: 43,63 + 10061: 44,63 + 10062: 41,63 + 10063: 39,63 + 10064: 40,61 + 10065: 40,60 + 10066: 43,60 + 10067: 44,60 + 10068: 44,60 + 10069: 48,60 + 10070: 48,62 + 10071: 47,63 + 10072: 48,64 + 10073: 48,64 + 10074: 47,60 + 10075: 51,59 + 10076: 53,59 + 10077: 54,59 + 10078: 54,59 + 10079: 54,62 + 10080: 54,64 + 10081: 54,65 + 10082: 51,65 + 10083: 51,65 + 10084: 50,63 + 10085: 50,62 + 10086: 50,60 + 10087: 48,55 + 10088: 47,55 + 10089: 50,56 + 10090: 51,55 + 10091: 49,55 + 10092: 54,55 + 10093: 54,55 + 10094: 55,56 + 10095: 53,57 + 10096: 53,55 + 10097: 54,55 + 10098: 55,55 + 10099: 55,58 + 10100: 53,57 + 10101: 54,55 + 10102: 55,55 + 10103: 55,56 + 10104: 54,56 + 10105: 53,55 + 10106: 53,55 + 10107: 49,47 + 10108: 49,48 + 10109: 49,49 + 10110: 50,49 + 10111: 51,47 + 10112: 51,47 + 10113: 50,47 + 10114: 50,48 + 10115: 51,49 + 10116: 51,48 + 10117: 50,49 + 10118: 49,49 + 10119: 52,48 + 10120: 52,47 + 10121: 53,47 + 10122: 53,48 + 10123: 54,47 + 10124: 54,47 + 10125: 53,49 + 10126: 53,48 + 10127: 54,48 + 10128: 54,47 + 10129: 52,47 + 10130: 38,56 + 10131: 39,57 + 10132: 40,57 + 10133: 41,55 + 10134: 43,55 + 10135: 45,55 + 10136: 42,55 + 10137: 40,56 + 10138: 38,57 + 10139: 36,57 + 10140: 36,59 + 10141: 36,61 + 10142: 37,62 + 10143: 37,64 + 10144: 36,65 + 10145: 35,66 + 10146: 34,66 + 10147: 32,67 + 10148: 32,66 + 10149: 30,67 + 10150: 31,67 + 10151: 29,67 + 10152: 28,67 + 10153: 28,66 + 10154: 25,66 + 10155: 24,66 + 10156: 22,67 + 10157: 23,65 + 10158: 32,64 + 10159: 30,64 + 10160: 30,64 + 10161: 21,62 + 10162: 21,62 + 10163: 22,62 + 10164: 17,62 + 10165: 18,62 + 10166: 19,62 + 10167: 17,62 + 10168: 18,65 + 10169: 17,66 + 10170: 20,66 + 10171: 21,66 + 10172: 23,66 + 10173: 23,67 + 10174: 23,67 + 10175: 13,62 + 10176: 14,62 + 10177: 15,62 + 10178: 16,62 + 10179: 15,61 + 10180: 12,63 + 10181: 12,65 + 10182: 13,70 + 10183: 13,69 + 10184: 13,68 + 10185: 12,72 + 10186: 12,73 + 10187: 13,74 + 10188: 13,76 + 10189: 13,75 + 10190: 14,74 + 10191: 12,76 + 10192: 12,78 + 10193: 13,78 + 10194: 13,79 + 10195: 12,79 + 10196: 14,81 + 10197: 15,80 + 10198: 14,79 + 10199: 13,80 + 10200: 14,80 + 10201: 13,78 + 10202: 13,77 + 10203: 14,76 + 10204: 10,59 + 10205: 10,58 + 10206: 12,59 + 10207: 12,58 + 10208: 13,57 + 10209: 13,56 + 10210: 11,54 + 10211: 12,54 + 10212: 12,52 + 10213: 12,50 + 10214: 12,49 + 10215: 12,48 + 10216: 12,46 + 10217: 12,44 + 10218: 12,42 + 10219: 12,40 + 10220: 10,42 + 10221: 9,41 + 10222: 10,44 + 10223: 10,42 + 10224: 10,41 + 10225: 10,40 + 10226: 12,40 + 10227: 12,40 + 10432: 74,16 + 10433: 75,18 + 10434: 75,18 + 10435: 77,17 + 10436: 79,17 + 10437: 81,17 + 10438: 82,17 + 10439: 83,17 + 10440: 84,17 + 10441: 85,18 + 10442: 82,17 + 10443: 80,17 + 10444: 80,17 + 10445: 80,18 + 10446: 79,18 + 10447: 78,19 + 10448: 78,17 + 10449: 78,15 + 10450: 78,15 + 10451: 79,15 + 10452: 80,17 + 10453: 81,17 + 10454: 83,17 + 10455: 85,17 + 10456: 85,17 + 10457: 83,16 + 10458: 83,16 + 10459: 84,15 + 10460: 83,16 + 10461: 81,17 + 10462: 80,17 + 10463: 80,16 + 10464: 79,19 + 10465: 79,19 + 10466: 79,19 + 10467: 79,18 + 10468: 80,17 + 10469: 83,17 + 10470: 81,6 + 10471: 79,7 + 10472: 80,6 + 10473: 80,6 + 10474: 80,7 + 10475: 83,6 + 10476: 83,6 + 10477: 83,6 + 10478: 84,6 + 10479: 83,7 + 10480: 83,7 + 10481: 83,8 + 10482: 81,8 + 10483: 81,8 + 10484: 80,8 + 10485: 79,8 + 10486: 78,8 + 10487: 77,8 + 10488: 76,7 + 10489: 76,7 + 10490: 76,6 + 10491: 78,6 + 10492: 76,6 + 10493: 76,8 + 10494: 75,8 + 10495: 75,6 + 10496: 77,6 + 10497: 78,6 + 10498: 77,7 + 10499: 75,7 + 10500: 78,7 + 10501: 78,7 + 10502: 75,8 + 10503: 76,8 + 10504: 77,9 + 10505: 77,9 + 10506: 76,9 + 10507: 84,8 + 10508: 82,8 + 10509: 92,21 + 10510: 92,20 + 10511: 93,19 + 10512: 93,19 + 10513: 93,21 + 10514: 92,19 + 10515: 93,20 + 10516: 96,16 + 10517: 94,16 + 10518: 94,16 + 10519: 91,16 + 10520: 90,15 + 10521: 89,16 + 10522: 89,16 + 10523: 68,17 + 10524: 67,18 + 10525: 67,19 + 10526: 68,21 + 10527: 50,32 + 10528: 49,31 + 10529: 52,31 + 10530: 52,30 + 10531: 50,26 + 10532: 49,27 + 10533: 49,26 + 10534: 50,28 + 10535: 53,27 + 10536: 54,27 + 10537: 53,26 + 10538: 52,27 + 10539: 40,41 + 10540: 42,41 + 10541: 40,41 + 10542: 42,41 + 10543: 43,41 + 10544: 41,40 + 10545: 40,41 + 10546: 41,41 + 10547: 41,41 + 10548: 41,41 + 10549: 41,41 + 10550: 41,41 + 10551: 41,41 + 10552: 40,41 + 10553: 40,41 + 10554: 40,41 + 10555: 39,41 + 10556: 39,41 + 10557: 39,41 + 10558: 42,40 + 10559: 41,40 + 10560: 40,40 + 10561: 39,40 + 10562: 42,42 + 10563: 41,42 + 10564: 40,42 + 10565: 39,42 + 10566: 1,16 + 10567: 0,16 + 10568: 0,17 + 10569: 1,17 + 10570: -9,21 + 10571: -9,20 + 10572: -8,22 + 10573: -7,21 + 10574: -8,20 + 10575: -7,20 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -6122,6 +7203,495 @@ entities: 7287: 26,-12 8362: 31,54 8366: 29,58 + 8904: 57,23 + 8905: 54,21 + 8906: 51,22 + 8907: 51,23 + 8908: 48,22 + 8909: 44,22 + 8910: 43,21 + 8911: 43,18 + 8912: 43,16 + 8913: 43,17 + 8914: 43,17 + 8915: 43,17 + 8916: 40,16 + 8917: 45,16 + 8918: 46,16 + 8919: 47,16 + 8920: 39,19 + 8921: 39,19 + 8922: 39,19 + 8923: 39,22 + 8924: 39,23 + 8925: 39,23 + 8926: 47,19 + 8927: 46,19 + 8928: 47,20 + 8929: 45,24 + 8930: 47,23 + 8931: 48,23 + 8932: 46,28 + 8933: 47,29 + 8934: 46,30 + 8935: 46,31 + 8936: 47,35 + 8937: 45,34 + 8938: 47,33 + 8939: 46,32 + 8940: 40,31 + 8941: 42,31 + 8942: 42,31 + 8943: 40,31 + 8944: 41,30 + 8945: 40,27 + 8946: 40,26 + 8947: 42,27 + 8948: 42,28 + 8949: 43,27 + 8950: 43,26 + 8951: 62,21 + 8952: 60,21 + 8953: 61,23 + 8954: 57,22 + 8955: 55,21 + 8956: 53,20 + 8957: 50,20 + 8958: 51,17 + 8959: 50,16 + 8960: 50,16 + 8961: 51,16 + 8962: 51,17 + 8963: 51,18 + 8964: 51,18 + 8965: 50,18 + 8966: 49,18 + 8978: 58,22 + 8979: 64,20 + 8980: 64,21 + 8981: 61,16 + 8982: 62,18 + 8983: 61,18 + 8984: 63,17 + 9486: 24,-24 + 9487: 24,-24 + 9488: 24,-22 + 9489: 49,4 + 9490: 44,4 + 9491: 41,3 + 9492: 54,4 + 9493: 52,3 + 9494: 42,9 + 9495: 41,8 + 9496: 41,6 + 9497: 35,10 + 9498: 37,9 + 9499: 37,4 + 9500: 36,5 + 9501: 37,6 + 9502: 37,3 + 9503: 36,0 + 9504: 36,-2 + 9505: 40,-4 + 9506: 40,-1 + 9507: 40,0 + 9508: 44,-5 + 9509: 45,-7 + 9510: 44,-9 + 9511: 45,-10 + 9512: 47,-11 + 9513: 50,-11 + 9514: 48,-7 + 9515: 47,-6 + 9516: 49,-5 + 9517: 45,-5 + 9518: 44,-2 + 9519: 45,1 + 9520: 48,-1 + 9521: 49,-1 + 9522: 49,-2 + 9523: 47,-3 + 9524: 53,-1 + 9525: 53,-5 + 9526: 55,-5 + 9527: 55,-4 + 9528: 54,-4 + 9529: 56,-5 + 9530: 57,-5 + 9531: 56,-5 + 9532: 55,-5 + 9533: 56,-3 + 9534: 55,-4 + 9535: 55,-4 + 9536: 55,-4 + 9537: 55,-4 + 9538: 53,4 + 9539: 53,4 + 9540: 53,4 + 9541: 49,3 + 9542: 49,3 + 9543: 48,3 + 9544: 48,3 + 9545: 47,4 + 9546: 46,4 + 9547: 47,6 + 9548: 46,9 + 9549: 46,10 + 9550: 46,9 + 9551: 46,8 + 9552: 41,9 + 9553: 41,9 + 9554: 41,9 + 9555: 41,9 + 9556: 35,9 + 9557: 35,9 + 9558: 35,6 + 9559: 35,4 + 9560: 41,3 + 9561: 40,4 + 9562: 42,4 + 9563: 43,3 + 9564: 43,4 + 9565: 42,3 + 9566: 40,3 + 9567: 45,3 + 9568: 45,4 + 9569: 47,3 + 9570: 60,3 + 9571: 60,3 + 9572: 59,3 + 9573: 59,2 + 9574: 64,8 + 9575: 64,9 + 9576: 67,8 + 9577: 68,8 + 9578: 68,9 + 9579: 65,8 + 9580: 64,10 + 9581: 64,6 + 9582: 65,6 + 9583: 65,5 + 9584: 64,5 + 9585: 64,6 + 9586: 65,6 + 9587: 65,5 + 9588: 64,5 + 9589: 65,6 + 9590: 65,5 + 9591: 64,5 + 9592: 64,6 + 9593: 65,6 + 9594: 65,5 + 9595: 64,5 + 9596: 64,6 + 9597: 68,12 + 9598: 28,27 + 9599: 28,25 + 9600: 27,24 + 9601: 27,27 + 9602: 26,28 + 9603: 23,28 + 9604: 20,26 + 9605: 20,25 + 9606: 20,24 + 9607: 21,26 + 9608: 20,28 + 9609: 22,28 + 9610: 22,25 + 9611: 22,24 + 9612: 29,25 + 9613: 29,24 + 9614: 29,21 + 9615: 15,25 + 9616: 18,26 + 9617: 19,25 + 9618: 11,25 + 9619: 13,25 + 9620: 13,21 + 9621: 11,21 + 9622: 3,29 + 9623: 1,29 + 9624: 3,31 + 9625: 4,33 + 9626: 5,32 + 9627: 7,32 + 9628: 8,33 + 9629: 4,33 + 9630: 3,32 + 9631: 2,31 + 9632: 1,11 + 9633: 3,13 + 9634: 4,14 + 9635: 5,14 + 9636: 2,12 + 9637: 2,6 + 9638: 3,7 + 9639: 6,7 + 9640: 7,7 + 9641: 8,6 + 9642: 8,8 + 9643: 8,6 + 9644: 9,5 + 9645: 6,6 + 9646: 4,7 + 9647: 3,6 + 9648: 1,7 + 9649: 1,8 + 9650: -1,6 + 9651: 3,7 + 9652: 3,5 + 9653: 6,7 + 9654: 6,8 + 9655: 4,7 + 9656: 5,6 + 9657: 7,9 + 9658: 8,10 + 9659: 9,10 + 9660: 9,9 + 9661: 9,13 + 9662: 8,14 + 9663: 8,14 + 9664: 6,2 + 9665: 6,3 + 9666: 5,2 + 9667: 21,0 + 9668: 23,-2 + 9669: 24,-1 + 9670: 24,5 + 9671: 23,4 + 9672: 26,4 + 9673: 26,6 + 9674: 26,9 + 9675: 24,12 + 9676: 24,14 + 9677: 25,14 + 9678: 28,14 + 9679: 30,11 + 9786: 10,3 + 9787: 9,2 + 9788: 13,1 + 9789: 17,1 + 9790: 16,1 + 9791: 11,7 + 9792: 11,6 + 9793: 11,-4 + 9794: 11,-3 + 9795: 11,-15 + 9796: 11,-15 + 9797: 16,-19 + 9798: 16,-19 + 9799: 20,-19 + 9800: 20,-19 + 9801: 29,-17 + 9802: 29,-15 + 9803: 27,-11 + 9804: 28,-11 + 9805: 28,-12 + 9806: 26,-9 + 9807: 26,-8 + 9808: 30,-13 + 9809: 30,-13 + 9810: 30,-7 + 9811: 30,-7 + 9812: 33,-4 + 9813: 33,-4 + 9814: 32,0 + 9815: 32,0 + 9816: 36,-10 + 9817: 37,-12 + 9818: 37,-12 + 9819: 36,-7 + 9820: 36,-6 + 9821: 36,-6 + 9822: 48,-14 + 9823: 50,-14 + 9824: 52,-14 + 9825: 53,-12 + 9826: 52,-9 + 9827: 54,-9 + 9828: 57,-9 + 9829: 58,-8 + 9830: 59,-7 + 9831: 59,-5 + 9832: 59,-5 + 9833: 59,-5 + 9834: 62,-1 + 9835: 62,1 + 9836: 62,1 + 9837: 62,1 + 9838: 62,1 + 9839: 62,1 + 9840: 62,1 + 9841: 62,1 + 9842: 62,1 + 9843: 62,1 + 9844: 62,3 + 9845: 62,3 + 9846: 62,3 + 9847: 62,7 + 9848: 62,8 + 9849: 62,9 + 9850: 61,9 + 9851: 58,10 + 9852: 52,10 + 9853: 52,10 + 9854: 51,10 + 9855: 50,9 + 9856: 50,9 + 9857: 50,10 + 9858: 68,4 + 9859: 70,4 + 9860: 68,4 + 9861: 70,8 + 9862: 70,9 + 9863: 70,7 + 9864: 71,7 + 9865: 72,9 + 9866: 73,7 + 9867: 81,10 + 9868: 82,10 + 9869: 83,10 + 9870: 84,10 + 9871: 81,24 + 9872: 82,24 + 9873: 81,24 + 9874: 75,23 + 9875: 74,23 + 9876: 75,23 + 9877: 75,37 + 9878: 76,37 + 9879: 80,37 + 9880: 81,38 + 9881: 80,36 + 9882: 83,39 + 9883: 82,41 + 9884: 81,41 + 9885: 81,40 + 9886: 82,43 + 9887: 82,46 + 9888: 81,47 + 9889: 81,48 + 9890: 83,48 + 9891: 77,53 + 9892: 75,53 + 9893: 78,53 + 9894: 77,52 + 9895: 75,55 + 9896: 72,55 + 9897: 71,56 + 9898: 70,55 + 9899: 71,57 + 9900: 71,58 + 9901: 70,60 + 9902: 69,60 + 9903: 70,63 + 9904: 70,65 + 9905: 72,65 + 9906: 71,64 + 9907: 70,64 + 9908: 76,65 + 9909: 77,65 + 9910: 79,65 + 9911: 81,64 + 9912: 81,63 + 9913: 81,62 + 9914: 82,59 + 9915: 82,57 + 9916: 80,56 + 9917: 80,55 + 9918: 82,56 + 9919: 77,55 + 9920: 82,55 + 9921: 80,56 + 9922: 81,59 + 9923: 77,59 + 9924: 76,59 + 9925: 78,61 + 9926: 75,62 + 9927: 75,59 + 9928: 76,61 + 9929: 76,61 + 9930: 82,63 + 9931: 86,63 + 9932: 85,57 + 9933: 86,57 + 9934: 79,68 + 9935: 74,68 + 10228: 12,52 + 10229: 12,53 + 10230: 12,46 + 10360: 39,61 + 10361: 40,60 + 10362: 41,60 + 10363: 42,60 + 10364: 40,62 + 10365: 41,63 + 10366: 44,62 + 10367: 44,62 + 10368: 43,60 + 10369: 45,60 + 10370: 45,60 + 10371: 39,63 + 10372: 40,61 + 10373: 40,60 + 10374: 40,60 + 10375: 47,60 + 10376: 47,63 + 10377: 47,64 + 10378: 51,65 + 10379: 53,65 + 10380: 53,65 + 10381: 54,63 + 10382: 49,68 + 10383: 46,70 + 10384: 47,69 + 10385: 47,71 + 10386: 47,72 + 10387: 51,72 + 10388: 51,73 + 10389: 54,72 + 10390: 52,72 + 10391: 52,72 + 10392: 53,72 + 10393: 53,71 + 10394: 50,72 + 10395: 50,72 + 10396: 47,71 + 10397: 47,71 + 10398: 44,71 + 10399: 43,70 + 10400: 43,72 + 10401: 42,75 + 10402: 42,76 + 10403: 43,76 + 10404: 43,74 + 10405: 43,74 + 10406: 47,77 + 10407: 47,77 + 10408: 47,79 + 10409: 48,79 + 10410: 48,78 + 10411: 51,82 + 10412: 51,82 + 10413: 50,84 + 10414: 49,85 + 10415: 49,83 + 10416: 49,82 + 10417: 54,81 + 10418: 54,82 + 10419: 57,81 + 10420: 57,82 + 10421: 57,83 + 10422: 57,82 + 10423: 51,86 + 10424: 50,86 + 10425: 48,85 + 10426: 47,85 + 10427: 75,17 + 10428: 75,16 + 10429: 74,17 + 10430: 74,17 + 10431: 74,17 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile @@ -6193,6 +7763,9 @@ entities: 8808: 18,-40 8809: 18,-40 8810: 20,-38 + 8977: 58,22 + 10231: 12,47 + 10232: 12,47 - node: cleanable: True color: '#FF5C5CFF' @@ -6383,6 +7956,134 @@ entities: 8817: 19,-44 8818: 19,-43 8819: 19,-42 + 8976: 58,22 + 10233: 11,61 + 10234: 13,63 + 10235: 13,63 + 10236: 13,63 + 10237: 20,62 + 10238: 21,62 + 10239: 21,60 + 10240: 22,61 + 10241: 23,61 + 10242: 22,57 + 10243: 22,58 + 10244: 23,67 + 10245: 20,66 + 10246: 21,66 + 10247: 21,66 + 10248: 26,66 + 10249: 27,66 + 10250: 27,66 + 10251: 29,67 + 10252: 29,67 + 10253: 29,67 + 10254: 30,67 + 10255: 33,67 + 10256: 34,67 + 10257: 33,66 + 10258: 35,65 + 10259: 35,66 + 10260: 36,66 + 10261: 36,64 + 10262: 33,63 + 10263: 31,63 + 10264: 31,63 + 10265: 33,64 + 10266: 34,62 + 10267: 34,61 + 10268: 36,60 + 10269: 35,58 + 10270: 38,57 + 10271: 40,56 + 10272: 44,55 + 10273: 43,55 + 10274: 43,55 + 10275: 44,55 + 10276: 49,56 + 10277: 48,56 + 10278: 48,57 + 10279: 50,56 + 10280: 48,60 + 10281: 48,61 + 10282: 48,64 + 10283: 48,66 + 10284: 47,65 + 10285: 47,63 + 10286: 47,61 + 10287: 52,59 + 10288: 52,59 + 10289: 53,60 + 10290: 54,63 + 10291: 54,66 + 10292: 51,65 + 10293: 50,64 + 10294: 50,61 + 10295: 53,60 + 10296: 47,69 + 10297: 47,71 + 10298: 47,73 + 10299: 48,72 + 10300: 47,77 + 10301: 46,79 + 10302: 48,80 + 10303: 48,80 + 10304: 48,78 + 10305: 47,77 + 10306: 48,77 + 10307: 50,82 + 10308: 50,81 + 10309: 48,82 + 10310: 46,82 + 10311: 45,82 + 10312: 46,84 + 10313: 46,85 + 10314: 47,81 + 10315: 45,81 + 10316: 42,81 + 10317: 41,81 + 10318: 40,82 + 10319: 39,79 + 10320: 39,79 + 10321: 38,80 + 10322: 36,82 + 10323: 34,80 + 10324: 37,80 + 10325: 35,82 + 10326: 35,82 + 10327: 37,81 + 10328: 36,79 + 10329: 37,77 + 10330: 33,76 + 10331: 36,73 + 10332: 37,72 + 10333: 35,71 + 10334: 35,69 + 10335: 34,70 + 10336: 32,67 + 10337: 34,66 + 10338: 35,65 + 10339: 36,66 + 10340: 44,66 + 10341: 43,65 + 10342: 43,63 + 10343: 44,63 + 10344: 40,62 + 10345: 39,61 + 10346: 42,60 + 10347: 44,61 + 10348: 42,62 + 10349: 39,63 + 10350: 40,63 + 10351: 40,62 + 10352: 40,61 + 10353: 43,61 + 10354: 43,60 + 10355: 41,59 + 10356: 43,59 + 10357: 44,60 + 10358: 45,60 + 10359: 31,66 - node: color: '#FFFFFFFF' id: DirtMedium @@ -6590,16 +8291,20 @@ entities: 8822: 19,-38 8823: 21,-38 8824: 19,-39 + 8967: 52,18 + 8968: 50,18 + 8969: 49,16 + 8970: 57,17 + 8971: 54,17 + 8972: 58,16 + 8973: 58,17 + 8974: 57,21 + 8975: 58,22 - node: color: '#FFFFFFFF' id: FlowersBROne decals: 272: 85,60 - - node: - color: '#FFFFFFFF' - id: FlowersBRThree - decals: - 255: 77,53 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -6619,13 +8324,6 @@ entities: 7273: 30.655012,7.1687403 7274: 30.811262,8.340615 7275: 29.108137,8.76249 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 249: 75,52 - 250: 74,53 - 251: 78,52 - node: color: '#FFFFFFFF' id: Flowerspv1 @@ -6652,9 +8350,6 @@ entities: color: '#FFFFFFFF' id: Flowerspv3 decals: - 252: 76,52 - 253: 75,53 - 254: 79,53 263: 79,58 264: 79,62 265: 74,63 @@ -6667,14 +8362,6 @@ entities: 7268: 28.280012,8.715615 7269: 30.639387,8.621865 7270: 28.373762,5.3562403 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 245: 74,52 - 246: 76,53 - 247: 77,52 - 248: 78,53 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -6684,7 +8371,6 @@ entities: color: '#FFFFFFFF' id: Flowersy4 decals: - 256: 79,52 257: 74,57 258: 73,59 259: 73,62 @@ -8180,6 +9866,16 @@ entities: 332: 74.93003,46.092968 333: 75.414406,46.077343 334: 75.851906,46.030468 + - node: + color: '#B02E26FF' + id: pawprint + decals: + 9000: 76.46453,59.34658 + 9001: 75.49578,60.737206 + 9002: 76.480156,60.69033 + 9003: 75.62078,59.31533 + 9004: 74.99578,60.19033 + 9005: 76.83953,60.080956 - node: cleanable: True color: '#FFFFFFFF' @@ -8690,27 +10386,27 @@ entities: 5: 32896 5,20: 0: 13107 - 7: 128 + 6: 128 5: 32768 6,17: 0: 61440 6,18: 4: 240 - 6: 61440 + 7: 61440 6,19: 5: 61680 7,17: 0: 30304 7,18: 4: 16 - 6: 4096 + 7: 4096 0: 17476 7,19: 5: 4112 0: 17476 7,20: 0: 17476 - 7: 16 + 6: 16 5: 4096 8,16: 1: 65303 @@ -8725,7 +10421,7 @@ entities: 5,22: 0: 3983 6,20: - 7: 240 + 6: 240 5: 61440 6,22: 0: 3855 @@ -8847,7 +10543,8 @@ entities: 11,12: 1: 61166 12,8: - 1: 61678 + 1: 61646 + 8: 32 12,9: 1: 13066 0: 34816 @@ -8999,7 +10696,8 @@ entities: 13,6: 1: 63343 13,7: - 1: 56583 + 1: 56579 + 8: 4 13,8: 1: 12317 0: 34816 @@ -9870,10 +11568,10 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -9885,10 +11583,25 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 6666.982 + - 0 + - 0 + - 0 - 0 - 0 - 0 - - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 - 0 - 0 - 0 @@ -10047,7 +11760,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAA version: 6 0,1: ind: 0,1 @@ -10099,11 +11812,11 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -12045,17 +13758,6 @@ entities: - 9970 - 10074 - 7811 - - uid: 74 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 10002 - - 437 - - 7837 - uid: 75 components: - type: Transform @@ -13122,6 +14824,17 @@ entities: - 21687 - 21684 - 21690 + - uid: 20470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 10002 + - 437 + - 7837 - uid: 21668 components: - type: Transform @@ -13183,6 +14896,11 @@ entities: rot: 3.141592653589793 rad pos: 15.5,39.5 parent: 2 + - type: DeviceList + devices: + - 21334 + - 21335 + - 10679 - proto: AirCanister entities: - uid: 140 @@ -13338,16 +15056,13 @@ entities: - type: Transform pos: 76.5,9.5 parent: 2 -- proto: AirlockAtmosphericsGlassLocked +- proto: AirlockAtmosphericsLocked entities: - uid: 165 components: - type: Transform - rot: 1.5707963267948966 rad pos: 44.5,67.5 parent: 2 -- proto: AirlockAtmosphericsLocked - entities: - uid: 166 components: - type: Transform @@ -13356,12 +15071,12 @@ entities: - uid: 167 components: - type: Transform - pos: 41.5,71.5 + pos: 43.5,73.5 parent: 2 - uid: 168 components: - type: Transform - pos: 43.5,73.5 + pos: 41.5,71.5 parent: 2 - uid: 169 components: @@ -14115,11 +15830,6 @@ entities: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 281 - components: - - type: Transform - pos: 3.5,30.5 - parent: 2 - uid: 2373 components: - type: Transform @@ -14153,6 +15863,12 @@ entities: - type: Transform pos: 12.5,4.5 parent: 16504 + - uid: 22211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,54.5 + parent: 2 - proto: AirlockHatch entities: - uid: 282 @@ -14506,6 +16222,12 @@ entities: - type: Transform pos: 46.5,37.5 parent: 2 + - uid: 13082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 - uid: 15688 components: - type: Transform @@ -15214,6 +16936,9 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20470 - uid: 438 components: - type: Transform @@ -15637,7 +17362,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-11.5 parent: 2 - - type: DeviceNetwork - uid: 507 components: - type: Transform @@ -15740,6 +17464,9 @@ entities: rot: 3.141592653589793 rad pos: 15.5,40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 - proto: AirTankFilled entities: - uid: 511 @@ -16116,8 +17843,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,31.5 parent: 2 - - type: Apc - hasAccess: True - type: PowerNetworkBattery loadingNetworkDemand: 2625 currentReceiving: 2625.0105 @@ -16260,8 +17985,6 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 2 - - type: Apc - hasAccess: True - uid: 16547 components: - type: Transform @@ -23468,6 +25191,11 @@ entities: - type: Transform pos: 91.5,15.5 parent: 2 + - uid: 9352 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 - proto: BannerSyndicate entities: - uid: 17597 @@ -23656,6 +25384,16 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,21.5 parent: 2 + - uid: 11496 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 - uid: 17610 components: - type: Transform @@ -24276,6 +26014,216 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,2.5 parent: 2 +- proto: BenchColorfulComfy + entities: + - uid: 281 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,62.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,64.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,64.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,64.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,64.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,64.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,64.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,63.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,61.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,59.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,58.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,57.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: 79.5,56.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: 78.5,56.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: 75.5,56.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 74.5,56.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 73.5,56.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,57.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,58.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,59.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,61.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,62.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,63.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,59.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,58.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,60.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,61.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,62.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 22235 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 22236 + components: + - type: Transform + pos: 76.5,66.5 + parent: 2 + - uid: 22237 + components: + - type: Transform + pos: 77.5,66.5 + parent: 2 + - uid: 22238 + components: + - type: Transform + pos: 78.5,66.5 + parent: 2 + - uid: 22239 + components: + - type: Transform + pos: 73.5,66.5 + parent: 2 + - uid: 22240 + components: + - type: Transform + pos: 80.5,66.5 + parent: 2 - proto: BenchComfy entities: - uid: 17648 @@ -25235,6 +27183,13 @@ entities: - type: Transform pos: 60.34469,61.56679 parent: 2 +- proto: BookChemicalCompendium + entities: + - uid: 18623 + components: + - type: Transform + pos: 40.528683,53.30423 + parent: 2 - proto: BookMedicalReferenceBook entities: - uid: 1015 @@ -25665,6 +27620,14 @@ entities: - type: Transform pos: 37.560665,69.60916 parent: 2 +- proto: BoxingBell + entities: + - uid: 6606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,29.5 + parent: 2 - proto: BoxLatexGloves entities: - uid: 1098 @@ -25828,6 +27791,11 @@ entities: parent: 2 - proto: BrokenEnergyShield entities: + - uid: 10409 + components: + - type: Transform + pos: 12.973543,58.14522 + parent: 2 - uid: 17720 components: - type: Transform @@ -25896,6 +27864,23 @@ entities: - type: Transform pos: 11.308048,28.964308 parent: 16504 + - uid: 18655 + components: + - type: Transform + pos: 37.542587,48.78989 + parent: 2 + - uid: 19388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.995712,49.555515 + parent: 2 + - uid: 19600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.120712,53.72739 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 1122 @@ -40596,6 +42581,101 @@ entities: - type: Transform pos: -6.5,23.5 parent: 2 + - uid: 22212 + components: + - type: Transform + pos: 77.5,54.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + pos: 77.5,52.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - uid: 22215 + components: + - type: Transform + pos: 76.5,52.5 + parent: 2 + - uid: 22216 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 22217 + components: + - type: Transform + pos: 74.5,52.5 + parent: 2 + - uid: 22218 + components: + - type: Transform + pos: 78.5,52.5 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: 79.5,52.5 + parent: 2 + - uid: 22255 + components: + - type: Transform + pos: 44.5,68.5 + parent: 2 + - uid: 22256 + components: + - type: Transform + pos: 44.5,66.5 + parent: 2 + - uid: 22323 + components: + - type: Transform + pos: 43.5,81.5 + parent: 2 + - uid: 22324 + components: + - type: Transform + pos: 43.5,82.5 + parent: 2 + - uid: 22325 + components: + - type: Transform + pos: 43.5,83.5 + parent: 2 + - uid: 22326 + components: + - type: Transform + pos: 43.5,84.5 + parent: 2 + - uid: 22327 + components: + - type: Transform + pos: 42.5,84.5 + parent: 2 + - uid: 22328 + components: + - type: Transform + pos: 41.5,84.5 + parent: 2 + - uid: 22329 + components: + - type: Transform + pos: 40.5,84.5 + parent: 2 + - uid: 22330 + components: + - type: Transform + pos: 39.5,84.5 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: 38.5,84.5 + parent: 2 - proto: CableApcStack entities: - uid: 3441 @@ -41497,11 +43577,6 @@ entities: - type: Transform pos: 50.5,70.5 parent: 2 - - uid: 3598 - components: - - type: Transform - pos: -4.5,53.5 - parent: 2 - uid: 3647 components: - type: Transform @@ -51487,6 +53562,41 @@ entities: - type: Transform pos: 30.5,22.5 parent: 16504 + - uid: 20501 + components: + - type: Transform + pos: -10.5,6.5 + parent: 16504 + - uid: 20502 + components: + - type: Transform + pos: -6.5,4.5 + parent: 16504 + - uid: 20506 + components: + - type: Transform + pos: -6.5,5.5 + parent: 16504 + - uid: 20507 + components: + - type: Transform + pos: -6.5,3.5 + parent: 16504 + - uid: 20509 + components: + - type: Transform + pos: -11.5,6.5 + parent: 16504 + - uid: 20510 + components: + - type: Transform + pos: -7.5,6.5 + parent: 16504 + - uid: 20512 + components: + - type: Transform + pos: -6.5,2.5 + parent: 16504 - uid: 21246 components: - type: Transform @@ -51777,6 +53887,76 @@ entities: - type: Transform pos: 27.5,48.5 parent: 2 + - uid: 22147 + components: + - type: Transform + pos: -8.5,6.5 + parent: 16504 + - uid: 22192 + components: + - type: Transform + pos: -9.5,6.5 + parent: 16504 + - uid: 22193 + components: + - type: Transform + pos: -7.5,2.5 + parent: 16504 + - uid: 22194 + components: + - type: Transform + pos: -7.5,1.5 + parent: 16504 + - uid: 22195 + components: + - type: Transform + pos: -7.5,0.5 + parent: 16504 + - uid: 22196 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 16504 + - uid: 22197 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 16504 + - uid: 22198 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 16504 + - uid: 22199 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 16504 + - uid: 22200 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 16504 + - uid: 22201 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 16504 + - uid: 22202 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 16504 + - uid: 22203 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 16504 + - uid: 22204 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 16504 - proto: CableMVStack entities: - uid: 5293 @@ -51874,6 +54054,286 @@ entities: - type: Transform pos: 30.5,-38.5 parent: 2 +- proto: CandleBlackInfinite + entities: + - uid: 22259 + components: + - type: Transform + pos: 75.810104,53.624706 + parent: 2 +- proto: CandleBlackSmallInfinite + entities: + - uid: 22247 + components: + - type: Transform + pos: 83.011406,58.080956 + parent: 2 + - uid: 22248 + components: + - type: Transform + pos: 82.99578,62.080956 + parent: 2 + - uid: 22249 + components: + - type: Transform + pos: 79.105156,66.02582 + parent: 2 + - uid: 22250 + components: + - type: Transform + pos: 74.948906,65.97894 + parent: 2 + - uid: 22251 + components: + - type: Transform + pos: 73.48771,60.5649 + parent: 2 + - uid: 22252 + components: + - type: Transform + pos: 76.51896,63.549274 + parent: 2 + - uid: 22253 + components: + - type: Transform + pos: 79.503334,60.5024 + parent: 2 + - uid: 22254 + components: + - type: Transform + pos: 76.42521,57.5649 + parent: 2 + - uid: 22266 + components: + - type: Transform + pos: 26.495583,47.54221 + parent: 2 + - uid: 22280 + components: + - type: Transform + pos: 24.81799,41.79083 + parent: 2 + - uid: 22281 + components: + - type: Transform + pos: 21.896114,41.44708 + parent: 2 + - uid: 22282 + components: + - type: Transform + pos: 22.56799,42.400204 + parent: 2 + - uid: 22283 + components: + - type: Transform + pos: 19.25549,47.337704 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: 19.66174,47.743954 + parent: 2 + - uid: 22285 + components: + - type: Transform + pos: 16.38049,48.88458 + parent: 2 + - uid: 22286 + components: + - type: Transform + pos: 15.458614,49.587704 + parent: 2 + - uid: 22287 + components: + - type: Transform + pos: 16.16174,43.650204 + parent: 2 + - uid: 22288 + components: + - type: Transform + pos: 16.63049,45.181454 + parent: 2 + - uid: 22289 + components: + - type: Transform + pos: 21.09924,51.666508 + parent: 2 + - uid: 22290 + components: + - type: Transform + pos: 23.279367,51.541508 + parent: 2 + - uid: 22291 + components: + - type: Transform + pos: 29.17732,51.588383 + parent: 2 + - uid: 22292 + components: + - type: Transform + pos: 31.39607,51.463383 + parent: 2 + - uid: 22297 + components: + - type: Transform + pos: 26.385162,29.337965 + parent: 2 + - uid: 22298 + components: + - type: Transform + pos: 24.010162,29.10359 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: 21.369537,28.91609 + parent: 2 + - uid: 22300 + components: + - type: Transform + pos: 24.619537,26.150465 + parent: 2 + - uid: 22301 + components: + - type: Transform + pos: 23.994537,27.66609 + parent: 2 + - uid: 22302 + components: + - type: Transform + pos: 25.072662,27.60359 + parent: 2 + - uid: 22303 + components: + - type: Transform + pos: 28.478912,5.6795936 + parent: 2 + - uid: 22304 + components: + - type: Transform + pos: 31.414473,5.6014686 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: 31.351973,9.242094 + parent: 2 + - uid: 22306 + components: + - type: Transform + pos: 29.070723,9.304594 + parent: 2 + - uid: 22307 + components: + - type: Transform + pos: 30.101973,5.6483436 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: 29.898848,9.413969 + parent: 2 + - uid: 22309 + components: + - type: Transform + pos: 28.633223,7.8670936 + parent: 2 + - uid: 22310 + components: + - type: Transform + pos: 31.508223,7.4295936 + parent: 2 +- proto: CandleBlueInfinite + entities: + - uid: 22257 + components: + - type: Transform + pos: 74.528854,53.45283 + parent: 2 + - uid: 22261 + components: + - type: Transform + pos: 76.966354,53.70283 + parent: 2 +- proto: CandleBlueSmallInfinite + entities: + - uid: 22265 + components: + - type: Transform + pos: 23.308083,47.432835 + parent: 2 +- proto: CandleGreenInfinite + entities: + - uid: 22263 + components: + - type: Transform + pos: 79.144394,53.45283 + parent: 2 +- proto: CandleGreenSmallInfinite + entities: + - uid: 22267 + components: + - type: Transform + pos: 25.401833,47.47971 + parent: 2 +- proto: CandlePurpleInfinite + entities: + - uid: 22258 + components: + - type: Transform + pos: 74.997604,53.17158 + parent: 2 + - uid: 22260 + components: + - type: Transform + pos: 76.091354,53.17158 + parent: 2 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 22264 + components: + - type: Transform + pos: 24.714333,47.557835 + parent: 2 +- proto: CandleRedInfinite + entities: + - uid: 22262 + components: + - type: Transform + pos: 78.19127,53.17158 + parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 22241 + components: + - type: Transform + pos: 76.105156,59.97158 + parent: 2 + - uid: 22242 + components: + - type: Transform + pos: 75.511406,60.799706 + parent: 2 + - uid: 22243 + components: + - type: Transform + pos: 75.980156,61.362206 + parent: 2 + - uid: 22244 + components: + - type: Transform + pos: 77.02703,61.393456 + parent: 2 + - uid: 22245 + components: + - type: Transform + pos: 77.355156,60.737206 + parent: 2 + - uid: 22246 + components: + - type: Transform + pos: 76.948906,59.924706 + parent: 2 - proto: CandyBowl entities: - uid: 5310 @@ -52088,12 +54548,47 @@ entities: parent: 2 - proto: CarpetBlack entities: + - uid: 3606 + components: + - type: Transform + pos: 25.5,47.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 23.5,47.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 - uid: 5222 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,54.5 parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 26.5,47.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 26.5,46.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: 26.5,48.5 + parent: 2 - uid: 5341 components: - type: Transform @@ -52160,6 +54655,16 @@ entities: - type: Transform pos: 14.5,47.5 parent: 2 + - uid: 5931 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 - uid: 6517 components: - type: Transform @@ -52172,12 +54677,27 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,42.5 parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 - uid: 6522 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,53.5 parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 - uid: 9953 components: - type: Transform @@ -52938,159 +55458,266 @@ entities: rot: 3.141592653589793 rad pos: 37.5,68.5 parent: 2 -- proto: CarpetPink +- proto: CarpetPurple entities: - - uid: 5218 + - uid: 5217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,48.5 + rot: -1.5707963267948966 rad + pos: 33.5,44.5 parent: 2 - - uid: 5219 + - uid: 6519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,46.5 + rot: -1.5707963267948966 rad + pos: 33.5,46.5 parent: 2 - - uid: 5220 +- proto: CarpetSBlue + entities: + - uid: 5438 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,47.5 + pos: 17.5,21.5 parent: 2 - - uid: 5223 + - uid: 5439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,48.5 + pos: 18.5,19.5 parent: 2 - - uid: 5224 + - uid: 5440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,46.5 + pos: 18.5,20.5 parent: 2 - - uid: 5306 + - uid: 5441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,46.5 + pos: 18.5,21.5 parent: 2 - - uid: 6520 + - uid: 5442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,46.5 + pos: 19.5,21.5 parent: 2 - - uid: 6523 + - uid: 5443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,48.5 + pos: 19.5,20.5 parent: 2 - - uid: 7565 + - uid: 5444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,48.5 + pos: 19.5,22.5 parent: 2 - - uid: 8150 + - uid: 5445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,47.5 + pos: 19.5,19.5 parent: 2 - - uid: 10906 + - uid: 5764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,47.5 + rot: -1.5707963267948966 rad + pos: 30.5,44.5 parent: 2 - - uid: 14023 + - uid: 5808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,47.5 + rot: -1.5707963267948966 rad + pos: 31.5,42.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5217 + - uid: 5810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,44.5 + pos: 31.5,44.5 parent: 2 - - uid: 6519 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,46.5 + pos: 30.5,42.5 parent: 2 -- proto: CarpetSBlue +- proto: CarvedPumpkin entities: - - uid: 5438 + - uid: 22231 components: - type: Transform - pos: 17.5,21.5 + pos: 83.503845,58.44033 parent: 2 - - uid: 5439 + - uid: 22232 components: - type: Transform - pos: 18.5,19.5 + pos: 83.410095,62.53408 parent: 2 - - uid: 5440 + - uid: 22233 components: - type: Transform - pos: 18.5,20.5 + pos: 78.535095,66.72157 parent: 2 - - uid: 5441 + - uid: 22234 components: - type: Transform - pos: 18.5,21.5 + pos: 75.347595,66.6747 parent: 2 - - uid: 5442 + - uid: 22277 components: - type: Transform - pos: 19.5,21.5 + pos: 19.472406,48.429424 parent: 2 - - uid: 5443 + - uid: 22278 components: - type: Transform - pos: 19.5,20.5 + pos: 19.441156,46.679424 parent: 2 - - uid: 5444 + - uid: 22293 components: - type: Transform - pos: 19.5,22.5 + pos: 21.978912,29.709923 parent: 2 - - uid: 5445 + - uid: 22294 components: - type: Transform - pos: 19.5,19.5 + pos: 24.557037,29.741173 parent: 2 - - uid: 5764 + - uid: 22295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,44.5 + pos: 27.150787,29.694298 parent: 2 - - uid: 5808 + - uid: 22296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,42.5 + pos: 28.775787,29.147423 parent: 2 - - uid: 5810 + - uid: 22315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,44.5 + pos: 30.805098,6.3670936 parent: 2 - - uid: 14008 +- proto: CarvedPumpkinLarge + entities: + - uid: 8036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,42.5 + pos: 29.195723,8.851469 + parent: 2 + - uid: 22230 + components: + - type: Transform + pos: 76.472595,60.705956 + parent: 2 + - uid: 22269 + components: + - type: Transform + pos: 21.445248,47.82346 + parent: 2 + - uid: 22270 + components: + - type: Transform + pos: 29.691423,53.7557 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: 23.22424,41.82208 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 10547 + components: + - type: Transform + pos: 77.45697,62.549706 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: 78.42572,61.65908 + parent: 2 + - uid: 10551 + components: + - type: Transform + pos: 74.48822,61.56533 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: 75.535095,62.455956 + parent: 2 + - uid: 22226 + components: + - type: Transform + pos: 78.566345,59.47158 + parent: 2 + - uid: 22227 + components: + - type: Transform + pos: 77.566345,58.643456 + parent: 2 + - uid: 22228 + components: + - type: Transform + pos: 75.347595,58.65908 + parent: 2 + - uid: 22229 + components: + - type: Transform + pos: 74.45697,59.455956 + parent: 2 + - uid: 22268 + components: + - type: Transform + pos: 24.31805,47.57346 + parent: 2 + - uid: 22271 + components: + - type: Transform + pos: 38.566933,49.4432 + parent: 2 + - uid: 22272 + components: + - type: Transform + pos: 37.238808,49.615074 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: 38.613808,48.41195 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: 37.441933,48.41195 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: 25.862555,46.429424 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: 24.550055,46.44505 + parent: 2 + - uid: 22311 + components: + - type: Transform + pos: 28.898848,7.8983436 + parent: 2 + - uid: 22312 + components: + - type: Transform + pos: 30.008223,7.7577186 + parent: 2 + - uid: 22313 + components: + - type: Transform + pos: 30.226973,8.351469 + parent: 2 + - uid: 22314 + components: + - type: Transform + pos: 29.461348,7.8202186 parent: 2 - proto: Catwalk entities: @@ -54930,12 +57557,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,73.5 parent: 2 - - uid: 5763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,27.5 - parent: 2 - uid: 5765 components: - type: Transform @@ -54954,24 +57575,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,15.5 parent: 2 - - uid: 5769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 2 - - uid: 5770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 2 - - uid: 5771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 2 - uid: 5772 components: - type: Transform @@ -55714,51 +58317,6 @@ entities: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 18616 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 16504 - - uid: 18617 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 16504 - - uid: 18618 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 16504 - - uid: 18619 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 16504 - - uid: 18620 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 16504 - - uid: 18621 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 16504 - - uid: 18622 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 16504 - - uid: 18623 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 16504 - - uid: 18624 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 16504 - uid: 18625 components: - type: Transform @@ -55854,16 +58412,6 @@ entities: - type: Transform pos: 7.5,-10.5 parent: 16504 - - uid: 18644 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 16504 - - uid: 18645 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 16504 - uid: 18646 components: - type: Transform @@ -55884,11 +58432,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 16504 - - uid: 18650 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 16504 - uid: 18651 components: - type: Transform @@ -55909,11 +58452,6 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 16504 - - uid: 18655 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 16504 - uid: 18656 components: - type: Transform @@ -55929,11 +58467,6 @@ entities: - type: Transform pos: -1.5,-12.5 parent: 16504 - - uid: 18659 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 16504 - uid: 18660 components: - type: Transform @@ -56396,6 +58929,16 @@ entities: - type: Transform pos: -17.5,12.5 parent: 16504 + - uid: 20508 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 16504 + - uid: 20513 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 16504 - uid: 21209 components: - type: Transform @@ -56602,6 +59145,11 @@ entities: - type: Transform pos: 51.5,-19.5 parent: 2 + - uid: 22148 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 16504 - proto: Chair entities: - uid: 5952 @@ -56645,11 +59193,6 @@ entities: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 5959 - components: - - type: Transform - pos: 74.5,56.5 - parent: 2 - uid: 5960 components: - type: Transform @@ -56662,21 +59205,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,59.5 parent: 2 - - uid: 5962 - components: - - type: Transform - pos: 77.5,56.5 - parent: 2 - - uid: 5963 - components: - - type: Transform - pos: 79.5,56.5 - parent: 2 - - uid: 5964 - components: - - type: Transform - pos: 78.5,56.5 - parent: 2 - uid: 5966 components: - type: Transform @@ -56782,164 +59310,16 @@ entities: rot: 3.141592653589793 rad pos: 68.5,56.5 parent: 2 - - uid: 5985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,58.5 - parent: 2 - - uid: 5986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,59.5 - parent: 2 - - uid: 5987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,57.5 - parent: 2 - - uid: 5988 - components: - - type: Transform - pos: 75.5,56.5 - parent: 2 - uid: 5989 components: - type: Transform pos: 77.5,62.5 parent: 2 - - uid: 5990 - components: - - type: Transform - pos: 73.5,56.5 - parent: 2 - - uid: 5991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,57.5 - parent: 2 - - uid: 5992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,58.5 - parent: 2 - - uid: 5993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,59.5 - parent: 2 - - uid: 5994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,61.5 - parent: 2 - - uid: 5995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,62.5 - parent: 2 - - uid: 5996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,63.5 - parent: 2 - - uid: 5997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,64.5 - parent: 2 - - uid: 5998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,64.5 - parent: 2 - - uid: 5999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,64.5 - parent: 2 - - uid: 6000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,64.5 - parent: 2 - - uid: 6001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,64.5 - parent: 2 - - uid: 6002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,64.5 - parent: 2 - - uid: 6003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,63.5 - parent: 2 - - uid: 6004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,62.5 - parent: 2 - - uid: 6005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,61.5 - parent: 2 - uid: 6006 components: - type: Transform pos: 68.5,64.5 parent: 2 - - uid: 6007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,62.5 - parent: 2 - - uid: 6008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,61.5 - parent: 2 - - uid: 6009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,60.5 - parent: 2 - - uid: 6010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,59.5 - parent: 2 - - uid: 6011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,58.5 - parent: 2 - uid: 6012 components: - type: Transform @@ -57586,6 +59966,11 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,34.5 parent: 16504 + - uid: 22321 + components: + - type: Transform + pos: 60.56198,23.590954 + parent: 2 - proto: ChairOfficeLight entities: - uid: 6087 @@ -57981,6 +60366,11 @@ entities: - type: Transform pos: 18.5,-14.5 parent: 2 + - uid: 18622 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 - proto: ChessBoard entities: - uid: 6135 @@ -58125,6 +60515,18 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,48.5 parent: 2 + - uid: 22395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,47.5 + parent: 2 + - uid: 22396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,49.5 + parent: 2 - proto: CloningPod entities: - uid: 6143 @@ -59424,6 +61826,34 @@ entities: - type: Transform pos: -18.156078,32.72587 parent: 16504 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 6605 + components: + - type: Transform + pos: 0.2772286,30.85181 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 13884 + components: + - type: Transform + pos: 0.5272286,30.867435 + parent: 2 +- proto: ClothingHandsGlovesBoxingRigged + entities: + - uid: 15429 + components: + - type: Transform + pos: 0.5584786,30.85181 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 12965 + components: + - type: Transform + pos: 0.6678536,30.867435 + parent: 2 - proto: ClothingHandsGlovesColorGray entities: - uid: 6271 @@ -59866,6 +62296,13 @@ entities: - type: Transform pos: 59.294624,34.75396 parent: 2 +- proto: ClothingHeadHelmetHardsuitSyndie + entities: + - uid: 22318 + components: + - type: Transform + pos: 29.479342,7.717128 + parent: 2 - proto: ClothingHeadHelmetMerc entities: - uid: 298 @@ -59897,28 +62334,31 @@ entities: - uid: 6308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.6636822,30.43489 + pos: 74.30056,52.60349 parent: 2 - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.7370658,30.86296 + pos: 79.597435,52.587864 + parent: 2 +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 22225 + components: + - type: Transform + pos: 75.36306,52.60349 parent: 2 - proto: ClothingHeadPyjamaSyndicateRed entities: - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.28453374,30.777348 + pos: 78.659935,52.587864 parent: 2 - uid: 6311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.28453374,30.43489 + pos: 76.159935,52.556614 parent: 2 - proto: ClothingHeadRastaHat entities: @@ -60605,12 +63045,12 @@ entities: - uid: 6404 components: - type: Transform - pos: 3.6236908,26.323994 + pos: 76.59434,53.742016 parent: 2 - uid: 6405 components: - type: Transform - pos: 3.6382983,26.57229 + pos: 76.42246,53.94514 parent: 2 - uid: 6406 components: @@ -61070,6 +63510,11 @@ entities: - type: Transform pos: 76.5,11.5 parent: 2 + - uid: 12574 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 18839 components: - type: Transform @@ -61114,6 +63559,12 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 16504 + - uid: 20473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,19.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 6452 @@ -62275,8 +64726,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -62293,11 +64744,11 @@ entities: showEnts: False occludes: True ents: - - 6595 - - 6593 - - 6592 - - 6591 - 6594 + - 6591 + - 6592 + - 6593 + - 6595 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -62392,33 +64843,45 @@ entities: rot: -1.5707963267948966 rad pos: 42.20802,-26.697763 parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 22394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,38.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 6605 + - uid: 22220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,27.5 + rot: 3.141592653589793 rad + pos: 74.5,52.5 parent: 2 - - uid: 6606 + - uid: 22221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 + rot: 3.141592653589793 rad + pos: 75.5,52.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,52.5 parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 6607 + - uid: 22223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,28.5 + pos: 79.5,52.5 parent: 2 - - uid: 6608 + - uid: 22224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,27.5 + pos: 78.5,52.5 parent: 2 - proto: CryoPod entities: @@ -62507,16 +64970,15 @@ entities: - type: Transform pos: 41.5,66.5 parent: 2 - - uid: 7894 + - uid: 8150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,40.5 + pos: 31.5,40.5 parent: 2 - - uid: 11496 + - uid: 18644 components: - type: Transform - pos: 32.5,48.5 + pos: 32.5,47.5 parent: 2 - proto: CurtainsOrangeOpen entities: @@ -62548,6 +65010,17 @@ entities: rot: -1.5707963267948966 rad pos: 38.584244,-26.582815 parent: 2 +- proto: DefaultStationBeacon + entities: + - uid: 22391 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - type: NavMapBeacon + text: Воксбокс + - type: WarpPoint + location: Воксбокс - proto: DefaultStationBeaconAISatellite entities: - uid: 21883 @@ -62714,6 +65187,15 @@ entities: - type: Transform pos: 3.5,28.5 parent: 2 + - type: NavMapBeacon + text: Боксёрский ринг + - type: WarpPoint + location: Боксёрский ринг + - uid: 10550 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 - type: NavMapBeacon text: Криосон - type: WarpPoint @@ -68550,7 +71032,7 @@ entities: - type: Label currentLabel: кофейный ликёр - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.024522448 + sprayFizzinessThresholdRoll: 0.8787781 - type: NameModifier baseName: бутылка кофейного ликёра - type: ContainerContainer @@ -68832,7 +71314,7 @@ entities: - type: Label currentLabel: ром - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.27521503 + sprayFizzinessThresholdRoll: 0.018483283 - type: NameModifier baseName: кубинский пряный ром капитана Пита - type: ContainerContainer @@ -68869,7 +71351,7 @@ entities: - type: Label currentLabel: текила - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.9392517 + sprayFizzinessThresholdRoll: 0.15202008 - type: NameModifier baseName: бутылка текилы Каккаво гарантированного качества - type: ContainerContainer @@ -68910,7 +71392,7 @@ entities: - type: Label currentLabel: вермут - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.31759587 + sprayFizzinessThresholdRoll: 0.680888 - type: NameModifier baseName: бутылка вермута Золотой глаз - type: ContainerContainer @@ -68933,7 +71415,7 @@ entities: - type: Label currentLabel: водка - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.7674419 + sprayFizzinessThresholdRoll: 0.8828969 - type: NameModifier baseName: бутылка водки - type: ContainerContainer @@ -69001,7 +71483,7 @@ entities: - type: Label currentLabel: вино - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.64443517 + sprayFizzinessThresholdRoll: 0.73476493 - type: NameModifier baseName: особое двухбородое бородатое вино - type: ContainerContainer @@ -70045,6 +72527,13 @@ entities: parent: 7611 - type: Physics canCollide: False +- proto: EnergyCutlass + entities: + - uid: 19855 + components: + - type: Transform + pos: 74.66137,0.62739515 + parent: 2 - proto: EnergyShield entities: - uid: 19046 @@ -70344,6 +72833,18 @@ entities: - type: Transform pos: 18.5,4.5 parent: 16504 +- proto: FenceMetalBroken + entities: + - uid: 12580 + components: + - type: Transform + pos: 11.5,61.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 - proto: FigureSpawner entities: - uid: 7655 @@ -71396,6 +73897,14 @@ entities: - type: Transform pos: -14.5,8.5 parent: 16504 + - uid: 22332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,72.5 + parent: 2 + missingComponents: + - AccessReader - proto: FireAxeCabinetOpen entities: - uid: 19055 @@ -72681,6 +75190,7 @@ entities: - 7660 - 7702 - 134 + - 20470 - uid: 7838 components: - type: Transform @@ -74164,6 +76674,19 @@ entities: - type: Transform pos: 45.913815,99.340836 parent: 2 +- proto: FloodlightBroken + entities: + - uid: 12524 + components: + - type: Transform + pos: 12.644675,55.259033 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.447285,17.120422 + parent: 2 - proto: FloorDrain entities: - uid: 7974 @@ -74538,32 +77061,13 @@ entities: - type: Transform pos: 82.5,19.5 parent: 2 -- proto: FloraTree03 - entities: - - uid: 8033 - components: - - type: Transform - pos: 75.15459,52.569176 - parent: 2 - proto: FloraTree05 entities: - - uid: 8034 - components: - - type: Transform - pos: 78.75324,52.506676 - parent: 2 - uid: 8035 components: - type: Transform pos: 76.18449,48.718914 parent: 2 -- proto: FloraTreeLarge03 - entities: - - uid: 8036 - components: - - type: Transform - pos: 29.949375,6.7081037 - parent: 2 - proto: FloraTreeSnow03 entities: - uid: 8037 @@ -75018,31 +77522,49 @@ entities: entities: - uid: 21300 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.983978,49.740993 parent: 2 - uid: 21301 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 16.205364,50.040474 parent: 2 - uid: 21305 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.749568,50.040474 parent: 2 - uid: 21306 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.944909,50.352974 parent: 2 - uid: 21307 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 16.37466,50.365993 parent: 2 - uid: 21309 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.5412035,50.352974 parent: 2 @@ -76549,6 +79071,18 @@ entities: color: '#FF0000FF' - proto: GasPipeBroken entities: + - uid: 10393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,10.5 + parent: 2 - uid: 19124 components: - type: Transform @@ -92414,6 +94948,9 @@ entities: rot: 3.141592653589793 rad pos: 55.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20470 - type: AtmosPipeColor color: '#4169E1FF' - uid: 10003 @@ -93213,12 +95750,6 @@ entities: - 16256 - type: AtmosPipeColor color: '#4169E1FF' - - uid: 21483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-42.5 - parent: 2 - uid: 21620 components: - type: Transform @@ -93236,6 +95767,9 @@ entities: - type: Transform pos: 16.5,40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 - type: AtmosPipeColor color: '#4169E1FF' - proto: GasVentScrubber @@ -94854,6 +97388,9 @@ entities: - type: Transform pos: 17.5,41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVolumePump @@ -94880,7 +97417,13 @@ entities: - type: Transform pos: 0.5,26.5 parent: 16504 + - uid: 20519 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 16504 - type: Gateway + cooldown: 1 enabled: True - uid: 21815 components: @@ -94947,7 +97490,7 @@ entities: - type: PowerSupplier supplyRampRate: 1500 supplyRampTolerance: 1500 - supplyRate: 25000 + supplyRate: 55000 - proto: GeneratorRTG entities: - uid: 9512 @@ -95479,11 +98022,6 @@ entities: - type: Transform pos: 58.5,44.5 parent: 2 - - uid: 10220 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - uid: 10221 components: - type: Transform @@ -95747,12 +98285,6 @@ entities: rot: 3.141592653589793 rad pos: 75.5,68.5 parent: 2 - - uid: 10269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - uid: 10270 components: - type: Transform @@ -96180,16 +98712,6 @@ entities: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 10355 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 10356 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - uid: 10357 components: - type: Transform @@ -96336,21 +98858,6 @@ entities: - type: Transform pos: 11.5,75.5 parent: 2 - - uid: 10391 - components: - - type: Transform - pos: 9.5,71.5 - parent: 2 - - uid: 10392 - components: - - type: Transform - pos: 9.5,69.5 - parent: 2 - - uid: 10393 - components: - - type: Transform - pos: 11.5,69.5 - parent: 2 - uid: 10394 components: - type: Transform @@ -96361,11 +98868,6 @@ entities: - type: Transform pos: -1.5,22.5 parent: 2 - - uid: 10396 - components: - - type: Transform - pos: 11.5,71.5 - parent: 2 - uid: 10397 components: - type: Transform @@ -96381,11 +98883,6 @@ entities: - type: Transform pos: 10.5,71.5 parent: 2 - - uid: 10400 - components: - - type: Transform - pos: 11.5,73.5 - parent: 2 - uid: 10401 components: - type: Transform @@ -96396,41 +98893,16 @@ entities: - type: Transform pos: 10.5,77.5 parent: 2 - - uid: 10403 - components: - - type: Transform - pos: 9.5,79.5 - parent: 2 - - uid: 10404 - components: - - type: Transform - pos: 9.5,77.5 - parent: 2 - - uid: 10405 - components: - - type: Transform - pos: 11.5,79.5 - parent: 2 - uid: 10406 components: - type: Transform pos: 10.5,79.5 parent: 2 - - uid: 10407 - components: - - type: Transform - pos: 9.5,81.5 - parent: 2 - uid: 10408 components: - type: Transform pos: 10.5,81.5 parent: 2 - - uid: 10409 - components: - - type: Transform - pos: 11.5,81.5 - parent: 2 - uid: 10410 components: - type: Transform @@ -96441,21 +98913,11 @@ entities: - type: Transform pos: 11.5,83.5 parent: 2 - - uid: 10412 - components: - - type: Transform - pos: 9.5,73.5 - parent: 2 - uid: 10413 components: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 10414 - components: - - type: Transform - pos: 11.5,77.5 - parent: 2 - uid: 10415 components: - type: Transform @@ -96466,11 +98928,6 @@ entities: - type: Transform pos: 10.5,20.5 parent: 2 - - uid: 10417 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 2 - uid: 10418 components: - type: Transform @@ -97088,11 +99545,6 @@ entities: - type: Transform pos: 30.5,-20.5 parent: 2 - - uid: 10541 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 2 - uid: 10542 components: - type: Transform @@ -97118,36 +99570,6 @@ entities: - type: Transform pos: 40.5,-13.5 parent: 2 - - uid: 10547 - components: - - type: Transform - pos: 78.5,54.5 - parent: 2 - - uid: 10548 - components: - - type: Transform - pos: 74.5,54.5 - parent: 2 - - uid: 10549 - components: - - type: Transform - pos: 79.5,54.5 - parent: 2 - - uid: 10550 - components: - - type: Transform - pos: 75.5,54.5 - parent: 2 - - uid: 10551 - components: - - type: Transform - pos: 76.5,54.5 - parent: 2 - - uid: 10552 - components: - - type: Transform - pos: 77.5,54.5 - parent: 2 - uid: 10553 components: - type: Transform @@ -98502,12 +100924,6 @@ entities: - type: Transform pos: 38.5,85.5 parent: 2 - - uid: 10833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 2 - uid: 10834 components: - type: Transform @@ -98518,12 +100934,6 @@ entities: - type: Transform pos: 32.5,85.5 parent: 2 - - uid: 10836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 2 - uid: 10837 components: - type: Transform @@ -98545,11 +100955,6 @@ entities: - type: Transform pos: 62.5,39.5 parent: 2 - - uid: 10841 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - uid: 10842 components: - type: Transform @@ -99159,6 +101564,48 @@ entities: - type: Transform pos: 23.5,34.5 parent: 16504 + - uid: 20377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-18.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-17.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-15.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,34.5 + parent: 16504 - uid: 21242 components: - type: Transform @@ -99190,6 +101637,162 @@ entities: - type: Transform pos: -11.5,17.5 parent: 2 + - uid: 22152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,32.5 + parent: 16504 + - uid: 22153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 16504 + - uid: 22154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,29.5 + parent: 16504 + - uid: 22156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,28.5 + parent: 16504 + - uid: 22157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,30.5 + parent: 16504 + - uid: 22158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,27.5 + parent: 16504 + - uid: 22159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,26.5 + parent: 16504 + - uid: 22160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 16504 + - uid: 22161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 16504 + - uid: 22162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 16504 + - uid: 22163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 16504 + - uid: 22165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,20.5 + parent: 16504 + - uid: 22166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,34.5 + parent: 16504 + - uid: 22168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,32.5 + parent: 16504 + - uid: 22169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,30.5 + parent: 16504 + - uid: 22170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,29.5 + parent: 16504 + - uid: 22171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,31.5 + parent: 16504 + - uid: 22172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,27.5 + parent: 16504 + - uid: 22173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,26.5 + parent: 16504 + - uid: 22174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,25.5 + parent: 16504 + - uid: 22175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,24.5 + parent: 16504 + - uid: 22177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,22.5 + parent: 16504 + - uid: 22178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,21.5 + parent: 16504 + - uid: 22179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,20.5 + parent: 16504 + - uid: 22189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,33.5 + parent: 16504 + - uid: 22190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,33.5 + parent: 16504 - proto: GrilleBroken entities: - uid: 3170 @@ -99497,17 +102100,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,22.5 parent: 16504 - - uid: 19387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,33.5 - parent: 16504 - - uid: 19388 - components: - - type: Transform - pos: -23.5,33.5 - parent: 16504 - uid: 21477 components: - type: Transform @@ -99532,6 +102124,69 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 2 + - uid: 22155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,28.5 + parent: 16504 + - uid: 22164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,31.5 + parent: 16504 + - uid: 22167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,33.5 + parent: 16504 + - uid: 22176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,28.5 + parent: 16504 + - uid: 22180 + components: + - type: Transform + pos: -33.5,28.5 + parent: 16504 + - uid: 22181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 16504 + - uid: 22182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 16504 + - uid: 22183 + components: + - type: Transform + pos: -33.5,23.5 + parent: 16504 + - uid: 22184 + components: + - type: Transform + pos: -32.5,31.5 + parent: 16504 + - uid: 22185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,33.5 + parent: 16504 + - uid: 22186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,21.5 + parent: 16504 - proto: GrilleDiagonal entities: - uid: 13350 @@ -99567,6 +102222,12 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 16504 + - uid: 20533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,33.5 + parent: 16504 - proto: GrilleSpawner entities: - uid: 10979 @@ -100675,13 +103336,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11116 - components: - - type: Transform - parent: 11115 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Joint entities: - uid: 11119 @@ -101599,6 +104253,13 @@ entities: showEnts: False occludes: True ent: null +- proto: LockerBrigmedicFilled + entities: + - uid: 11116 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 - proto: LockerCaptainFilled entities: - uid: 7455 @@ -102083,11 +104744,6 @@ entities: - type: Transform pos: 50.5,-11.5 parent: 2 - - uid: 11200 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - proto: LockerParamedicFilled entities: - uid: 6673 @@ -104105,11 +106761,11 @@ entities: - type: InsideEntityStorage - proto: PaintingSkeletonCigarette entities: - - uid: 11384 + - uid: 6607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,30.5 + rot: 1.5707963267948966 rad + pos: 4.5,29.5 parent: 2 - proto: PaladinCircuitBoard entities: @@ -105614,6 +108270,15 @@ entities: - type: Transform pos: 14.074409,-16.219566 parent: 2 +- proto: PlushieGhost + entities: + - uid: 22393 + components: + - type: MetaData + name: wejf + - type: Transform + pos: 26.558538,34.536873 + parent: 2 - proto: PlushieHampter entities: - uid: 11537 @@ -105642,7 +108307,7 @@ entities: - uid: 11539 components: - type: MetaData - name: Vyach + name: ktlnkrnl - type: Transform pos: 25.603819,34.057175 parent: 2 @@ -105700,6 +108365,15 @@ entities: - type: Transform pos: 80.44124,27.42845 parent: 2 +- proto: PlushiePenguin + entities: + - uid: 10836 + components: + - type: MetaData + name: mofkkol + - type: Transform + pos: 26.140245,33.71122 + parent: 2 - proto: PlushieRGBee entities: - uid: 6403 @@ -105712,6 +108386,8 @@ entities: entities: - uid: 11546 components: + - type: MetaData + name: eugurt - type: Transform pos: 82.32806,19.43744 parent: 2 @@ -105747,6 +108423,15 @@ entities: - type: Transform pos: 24.708048,48.448303 parent: 2 +- proto: PlushieSlime + entities: + - uid: 22392 + components: + - type: MetaData + name: meowstushka + - type: Transform + pos: 24.433538,32.505623 + parent: 2 - proto: PlushieVox entities: - uid: 3877 @@ -108606,27 +111291,20 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 19600 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 16504 - uid: 19601 components: - type: Transform pos: 6.5,-10.5 parent: 16504 -- proto: PoweredLightPostSmallEmpty - entities: - - uid: 19602 + - uid: 20515 components: - type: Transform - pos: -5.5,-10.5 + pos: -3.5,-13.5 parent: 16504 - - uid: 19603 + - uid: 22149 components: - type: Transform - pos: 4.5,-12.5 + pos: 4.5,-13.5 parent: 16504 - proto: PoweredlightRed entities: @@ -108719,7 +111397,8 @@ entities: pos: 28.5,47.5 parent: 2 - type: PointLight - energy: 1 + energy: 1.2 + radius: 5 - uid: 5816 components: - type: Transform @@ -108727,7 +111406,16 @@ entities: pos: 14.5,41.5 parent: 2 - type: PointLight - energy: 0.3 + energy: 1.2 + radius: 12 + - uid: 7894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,45.5 + parent: 2 + - type: PointLight + energy: 1.2 - uid: 10376 components: - type: Transform @@ -108746,7 +111434,23 @@ entities: pos: 18.5,50.5 parent: 2 - type: PointLight - energy: 1 + energy: 1.2 + - uid: 18645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,46.5 + parent: 2 + - type: PointLight + energy: 1.2 + - uid: 18650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,45.5 + parent: 2 + - type: PointLight + energy: 1.2 - uid: 19604 components: - type: Transform @@ -108763,14 +111467,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,23.5 parent: 16504 - - uid: 21469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,40.5 - parent: 2 - - type: PointLight - energy: 0.3 - uid: 21488 components: - type: Transform @@ -108784,13 +111480,15 @@ entities: pos: 23.5,40.5 parent: 2 - type: PointLight - energy: 0.1 + energy: 1.2 - uid: 21861 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,41.5 parent: 2 + - type: PointLight + energy: 1.5 - uid: 21869 components: - type: Transform @@ -109923,6 +112621,18 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 +- proto: PresentRandomUnsafe + entities: + - uid: 22319 + components: + - type: Transform + pos: 30.682467,7.779628 + parent: 2 + - uid: 22320 + components: + - type: Transform + pos: 24.187166,41.68083 + parent: 2 - proto: PrinterDoc entities: - uid: 12102 @@ -110450,12 +113160,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,42.5 parent: 2 - - uid: 19669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 16504 - uid: 19670 components: - type: Transform @@ -110672,6 +113376,35 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,34.5 parent: 16504 + - uid: 20511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 16504 + - uid: 20514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 16504 + - uid: 20522 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 16504 + - uid: 20526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 16504 + - uid: 20527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 16504 - uid: 21896 components: - type: Transform @@ -110760,24 +113493,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 16504 - - uid: 19709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 16504 - - uid: 19710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 16504 - - uid: 19711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 16504 - uid: 19712 components: - type: Transform @@ -110815,6 +113530,18 @@ entities: - type: Transform pos: 35.5,25.5 parent: 16504 + - uid: 20518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 16504 + - uid: 20523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 16504 - uid: 21776 components: - type: Transform @@ -110875,24 +113602,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 16504 - - uid: 19722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 16504 - - uid: 19723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 16504 - - uid: 19724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 16504 - uid: 19725 components: - type: Transform @@ -110974,6 +113683,17 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 + - uid: 22150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 16504 + - uid: 22151 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 16504 - proto: RailingRound entities: - uid: 3218 @@ -111014,6 +113734,11 @@ entities: - type: Transform pos: 18.5,-7.5 parent: 2 + - uid: 20435 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 - proto: RandomBoard entities: - uid: 12187 @@ -112660,6 +115385,26 @@ entities: - type: Transform pos: 8.5,34.5 parent: 16504 + - uid: 20516 + components: + - type: Transform + pos: -26.5,32.5 + parent: 16504 + - uid: 20531 + components: + - type: Transform + pos: -23.5,32.5 + parent: 16504 + - uid: 20532 + components: + - type: Transform + pos: -25.5,33.5 + parent: 16504 + - uid: 22187 + components: + - type: Transform + pos: -24.5,33.5 + parent: 16504 - proto: ReinforcedPlasmaWindowDiagonal entities: - uid: 19833 @@ -112673,6 +115418,28 @@ entities: - type: Transform pos: -2.5,22.5 parent: 16504 + - uid: 20517 + components: + - type: Transform + pos: -26.5,33.5 + parent: 16504 + - uid: 20530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,33.5 + parent: 16504 + - uid: 22188 + components: + - type: Transform + pos: -27.5,32.5 + parent: 16504 + - uid: 22191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 16504 - proto: ReinforcedUraniumWindow entities: - uid: 12376 @@ -112714,6 +115481,23 @@ entities: - type: Transform pos: 26.5,-35.5 parent: 2 + - uid: 10417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 - uid: 11800 components: - type: Transform @@ -112866,12 +115650,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,63.5 parent: 2 - - uid: 12404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 2 - uid: 12405 components: - type: Transform @@ -112900,12 +115678,6 @@ entities: - type: Transform pos: 86.5,56.5 parent: 2 - - uid: 12411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 2 - uid: 12412 components: - type: Transform @@ -112968,11 +115740,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,2.5 parent: 2 - - uid: 12423 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - uid: 12424 components: - type: Transform @@ -113439,12 +116206,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 12514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 2 - uid: 12515 components: - type: Transform @@ -113490,11 +116251,6 @@ entities: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 12524 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - uid: 12525 components: - type: Transform @@ -113676,11 +116432,6 @@ entities: - type: Transform pos: -1.5,22.5 parent: 2 - - uid: 12566 - components: - - type: Transform - pos: 11.5,77.5 - parent: 2 - uid: 12567 components: - type: Transform @@ -113691,11 +116442,6 @@ entities: - type: Transform pos: 10.5,73.5 parent: 2 - - uid: 12569 - components: - - type: Transform - pos: 9.5,69.5 - parent: 2 - uid: 12570 components: - type: Transform @@ -113711,16 +116457,6 @@ entities: - type: Transform pos: 11.5,67.5 parent: 2 - - uid: 12573 - components: - - type: Transform - pos: 9.5,71.5 - parent: 2 - - uid: 12574 - components: - - type: Transform - pos: 9.5,73.5 - parent: 2 - uid: 12575 components: - type: Transform @@ -113736,31 +116472,6 @@ entities: - type: Transform pos: 11.5,82.5 parent: 2 - - uid: 12578 - components: - - type: Transform - pos: 9.5,81.5 - parent: 2 - - uid: 12579 - components: - - type: Transform - pos: 11.5,71.5 - parent: 2 - - uid: 12580 - components: - - type: Transform - pos: 9.5,79.5 - parent: 2 - - uid: 12581 - components: - - type: Transform - pos: 11.5,69.5 - parent: 2 - - uid: 12582 - components: - - type: Transform - pos: 11.5,79.5 - parent: 2 - uid: 12583 components: - type: Transform @@ -113771,11 +116482,6 @@ entities: - type: Transform pos: 10.5,79.5 parent: 2 - - uid: 12585 - components: - - type: Transform - pos: 9.5,77.5 - parent: 2 - uid: 12586 components: - type: Transform @@ -113786,16 +116492,6 @@ entities: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 12588 - components: - - type: Transform - pos: 11.5,73.5 - parent: 2 - - uid: 12589 - components: - - type: Transform - pos: 11.5,81.5 - parent: 2 - uid: 12590 components: - type: Transform @@ -114457,12 +117153,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,23.5 parent: 2 - - uid: 12723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - uid: 12724 components: - type: Transform @@ -114486,12 +117176,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,44.5 parent: 2 - - uid: 12728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,44.5 - parent: 2 - uid: 12729 components: - type: Transform @@ -114532,11 +117216,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,40.5 parent: 2 - - uid: 12736 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - uid: 12737 components: - type: Transform @@ -114630,11 +117309,6 @@ entities: - type: Transform pos: 51.5,58.5 parent: 2 - - uid: 13884 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 2 - uid: 14651 components: - type: Transform @@ -114676,10 +117350,11 @@ entities: - type: Transform pos: 49.5,61.5 parent: 2 - - uid: 16159 + - uid: 16212 components: - type: Transform - pos: 26.5,-20.5 + rot: 1.5707963267948966 rad + pos: 74.5,54.5 parent: 2 - uid: 16311 components: @@ -114753,16 +117428,6 @@ entities: - type: Transform pos: -7.5,26.5 parent: 16504 - - uid: 19845 - components: - - type: Transform - pos: -26.5,32.5 - parent: 16504 - - uid: 19846 - components: - - type: Transform - pos: -23.5,32.5 - parent: 16504 - uid: 19847 components: - type: Transform @@ -114810,24 +117475,30 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,50.5 parent: 2 -- proto: ReinforcedWindowDiagonal - entities: - - uid: 19854 + - uid: 22207 components: - type: Transform - pos: -27.5,32.5 - parent: 16504 - - uid: 19855 + rot: 1.5707963267948966 rad + pos: 75.5,54.5 + parent: 2 + - uid: 22208 components: - type: Transform - pos: -26.5,33.5 - parent: 16504 - - uid: 19856 + rot: 1.5707963267948966 rad + pos: 76.5,54.5 + parent: 2 + - uid: 22209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 16504 + rot: 1.5707963267948966 rad + pos: 78.5,54.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 21499 @@ -114978,6 +117649,13 @@ entities: - type: Transform pos: 34.806297,-10.467799 parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 20485 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 - proto: SalvageHumanCorpseSpawner entities: - uid: 19860 @@ -115049,6 +117727,271 @@ entities: - type: Transform pos: -8.5,24.5 parent: 16504 +- proto: SalvageSpawnerEquipment + entities: + - uid: 20375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-24.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 2 +- proto: SalvageSpawnerScrapCommon + entities: + - uid: 20374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,2.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,30.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,53.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,66.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,68.5 + parent: 2 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 20385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-0.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,1.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,44.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,38.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,68.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,66.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,99.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,87.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,90.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,87.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,83.5 + parent: 2 + - uid: 20415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,78.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,74.5 + parent: 2 + - uid: 20417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,71.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable + entities: + - uid: 20384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,9.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,33.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 19724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-20.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,51.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,95.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,60.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,66.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,97.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,93.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,89.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,90.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,88.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,73.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,69.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,70.5 + parent: 2 - proto: Scalpel entities: - uid: 12767 @@ -115056,6 +117999,87 @@ entities: - type: Transform pos: 49.51219,-8.302678 parent: 2 +- proto: ScrapAirlock1 + entities: + - uid: 10391 + components: + - type: Transform + pos: 20.6236,62.39603 + parent: 2 + - uid: 20228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.438484,7.7291594 + parent: 2 + - uid: 20421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.825943,69.96823 + parent: 2 + - uid: 20425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.411263,71.63489 + parent: 2 + - uid: 20429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.067757,86.4586 + parent: 2 + - uid: 20436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.387238,94.4507 + parent: 2 + - uid: 22339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.7403755,-9.606357 + parent: 2 + - uid: 22376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.6857185,20.808674 + parent: 2 +- proto: ScrapAirlock2 + entities: + - uid: 20227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.98536,4.9947844 + parent: 2 + - uid: 20336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.81374,23.54584 + parent: 2 + - uid: 20457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.810314,45.569664 + parent: 2 + - uid: 20458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.20094,40.507164 + parent: 2 + - uid: 22348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.490383,-7.7806845 + parent: 2 - proto: ScrapBucket entities: - uid: 13202 @@ -115063,13 +118087,174 @@ entities: - type: Transform pos: 42.308426,-27.460276 parent: 2 + - uid: 19387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.573837,48.52055 + parent: 2 + - uid: 19602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.870712,53.670414 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: 65.88283,3.6273952 + parent: 2 + - uid: 20461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.482185,44.49154 + parent: 2 - uid: 21385 components: - type: Transform pos: 9.384015,53.228157 parent: 2 + - uid: 22347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.537258,-9.640644 + parent: 2 + - uid: 22361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.765663,-11.55441 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: 46.45009,-13.644562 + parent: 2 + - uid: 22368 + components: + - type: Transform + pos: 11.677515,10.385842 + parent: 2 +- proto: ScrapCamera + entities: + - uid: 20474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.181656,23.526672 + parent: 2 + - uid: 22382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.54509354,22.308674 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.766598,42.22448 + parent: 2 + - uid: 22384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.782223,42.75573 + parent: 2 +- proto: ScrapCanister1 + entities: + - uid: 12423 + components: + - type: Transform + pos: 20.6861,61.43157 + parent: 2 + - uid: 20466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.92364,38.39779 + parent: 2 +- proto: ScrapCanister2 + entities: + - uid: 19709 + components: + - type: Transform + pos: 33.51522,66.79636 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: 26.331015,66.57761 + parent: 2 + - uid: 19711 + components: + - type: Transform + pos: 40.656876,56.83481 + parent: 2 + - uid: 20432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.38652,93.413376 + parent: 2 + - uid: 20433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.964645,88.350876 + parent: 2 - proto: ScrapCloset entities: + - uid: 20234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.320724,10.405152 + parent: 2 + - uid: 20235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.55222,10.577027 + parent: 2 + - uid: 20236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.97849,17.161118 + parent: 2 + - uid: 20237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.32224,23.035412 + parent: 2 + - uid: 20250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.94724,24.535412 + parent: 2 + - uid: 20264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.877525,23.426037 + parent: 2 + - uid: 20423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.54277,92.194626 + parent: 2 + - uid: 20430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.317757,90.350876 + parent: 2 - uid: 21248 components: - type: Transform @@ -115081,15 +118266,101 @@ entities: - type: Transform pos: 9.49688,53.505936 parent: 2 + - uid: 22350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.412258,-10.311934 + parent: 2 + - uid: 22351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.224758,-7.5306845 + parent: 2 + - uid: 22363 + components: + - type: Transform + pos: 50.351883,-13.519562 + parent: 2 + - uid: 22365 + components: + - type: Transform + pos: 11.670607,1.7783926 + parent: 2 + - uid: 22377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.43928146,20.449299 + parent: 2 + - uid: 22378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.54865646,22.699299 + parent: 2 + - uid: 22386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.547848,53.146114 + parent: 2 + - uid: 22389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.616801,62.49832 + parent: 2 + - uid: 22390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.851176,64.2327 + parent: 2 - proto: ScrapFaxMachine entities: + - uid: 20488 + components: + - type: Transform + pos: 32.26686,16.557922 + parent: 2 - uid: 21386 components: - type: Transform pos: 9.478001,50.663925 parent: 2 + - uid: 22345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.623405,-19.60445 + parent: 2 - proto: ScrapFireExtinguisher entities: + - uid: 10392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.32804,10.310881 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 12.582918,63.52532 + parent: 2 + - uid: 20465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.501766,38.36654 + parent: 2 + - uid: 20472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.57228,17.120422 + parent: 2 - uid: 21249 components: - type: Transform @@ -115100,6 +118371,33 @@ entities: - type: Transform pos: 10.608158,52.9417 parent: 2 + - uid: 22359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.486443,-11.360081 + parent: 2 + - uid: 22360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.361443,-8.563206 + parent: 2 + - uid: 22369 + components: + - type: Transform + pos: 11.53689,8.401467 + parent: 2 + - uid: 22370 + components: + - type: Transform + pos: 1.3732185,20.527424 + parent: 2 + - uid: 22371 + components: + - type: Transform + pos: 1.2794685,23.105549 + parent: 2 - proto: ScrapFirelock1 entities: - uid: 10197 @@ -115108,6 +118406,74 @@ entities: rot: -1.5707963267948966 rad pos: 38.467503,-27.380741 parent: 2 + - uid: 19603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.972996,56.66772 + parent: 2 + - uid: 20422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.513443,77.02246 + parent: 2 + - uid: 20428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.769695,89.3336 + parent: 2 + - uid: 20439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.54469,40.600914 + parent: 2 + - uid: 22356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.74942,-1.5367069 + parent: 2 + - uid: 22379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4825935,19.449299 + parent: 2 + - uid: 22387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.610348,56.334045 + parent: 2 +- proto: ScrapFirelock2 + entities: + - uid: 20229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.094734,9.639527 + parent: 2 + - uid: 20437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.63009,67.3504 + parent: 2 + - uid: 22341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.3653755,-12.64996 + parent: 2 + - uid: 22355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.843168,-7.602831 + parent: 2 - proto: ScrapFirelock3 entities: - uid: 6095 @@ -115115,36 +118481,301 @@ entities: - type: Transform pos: 38.597733,-27.484907 parent: 2 + - uid: 19722 + components: + - type: Transform + pos: 36.698025,57.791893 + parent: 2 + - uid: 20316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.96994,-6.2986417 + parent: 2 + - uid: 20426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.536263,82.04932 + parent: 2 + - uid: 20434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.44902,93.54445 + parent: 2 + - uid: 20438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.16134,67.49103 + parent: 2 + - uid: 20440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.54469,45.257164 + parent: 2 + - uid: 22349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.631008,-12.749434 + parent: 2 + - uid: 22375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.6075935,23.246174 + parent: 2 + - uid: 22385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.547848,49.53674 + parent: 2 + - uid: 22388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.688473,61.545197 + parent: 2 - proto: ScrapGlass entities: + - uid: 18617 + components: + - type: Transform + pos: 18.060389,65.418015 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: 24.56631,67.418015 + parent: 2 + - uid: 20327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.75893,-14.323473 + parent: 2 + - uid: 20330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.49447,-6.567425 + parent: 2 + - uid: 20333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.333572,9.121813 + parent: 2 + - uid: 20334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.55717,10.275419 + parent: 2 + - uid: 20335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.79299,24.373964 + parent: 2 + - uid: 20427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.442513,77.955765 + parent: 2 - uid: 21377 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.686295,51.39656 parent: 2 + - uid: 22353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.631008,-4.5306845 + parent: 2 + - uid: 22354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.593168,-7.134081 + parent: 2 + - uid: 22367 + components: + - type: Transform + pos: 15.326857,1.4033926 + parent: 2 - proto: ScrapIntercom entities: + - uid: 12964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.474758,-10.750019 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: 62.510433,4.355604 + parent: 2 + - uid: 20462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.345516,45.49154 + parent: 2 - uid: 21387 components: - type: Transform rot: 3.141592653589793 rad pos: 10.29561,51.3792 parent: 2 + - uid: 22364 + components: + - type: Transform + pos: 9.123732,2.9502676 + parent: 2 - proto: ScrapJetpack entities: + - uid: 20471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.603535,18.401672 + parent: 2 - uid: 21252 components: - type: Transform pos: 42.24936,-27.23892 parent: 2 + - uid: 22343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.6153755,-18.5732 + parent: 2 + - uid: 22346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.560905,-19.6357 + parent: 2 - proto: ScrapMedkit entities: + - uid: 3598 + components: + - type: Transform + pos: 50.54714,9.420256 + parent: 2 + - uid: 20337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.236057,-0.2451626 + parent: 2 + - uid: 20338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.958508,-7.592559 + parent: 2 + - uid: 20339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.446583,-7.233184 + parent: 2 + - uid: 20370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.31334,-3.5972953 + parent: 2 + - uid: 20371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.578964,-4.7847953 + parent: 2 - uid: 21250 components: - type: Transform pos: 41.012196,-27.017567 parent: 2 + - uid: 22344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.844482,-19.463825 + parent: 2 + - uid: 22380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.37678146,19.324299 + parent: 2 + - uid: 22381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4357185,21.230549 + parent: 2 +- proto: ScrapMopBucket + entities: + - uid: 12569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.312878,10.592131 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.427883,-19.5732 + parent: 2 + - uid: 20464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.36114,40.632164 + parent: 2 +- proto: ScrapPAI + entities: + - uid: 19846 + components: + - type: Transform + pos: 63.041683,2.9413962 + parent: 2 + - uid: 20463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.876766,38.24154 + parent: 2 + - uid: 22340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.516598,47.00549 + parent: 2 + - uid: 22342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5997505,-19.5732 + parent: 2 + - uid: 22374 + components: + - type: Transform + pos: 1.4982185,23.652424 + parent: 2 - proto: ScrapSteel entities: - uid: 877 @@ -115152,6 +118783,41 @@ entities: - type: Transform pos: 42.43168,-26.666004 parent: 2 + - uid: 19669 + components: + - type: Transform + pos: 36.593346,61.456043 + parent: 2 + - uid: 20265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.462944,24.129162 + parent: 2 + - uid: 20266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.43203,10.521615 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.91886,4.0267277 + parent: 2 + - uid: 20286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.43869,-1.3013976 + parent: 2 + - uid: 20431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.433395,93.4915 + parent: 2 - uid: 21243 components: - type: Transform @@ -115163,14 +118829,59 @@ entities: rot: 1.5707963267948966 rad pos: 9.470834,53.505936 parent: 2 + - uid: 22206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.8653755,-9.575107 + parent: 2 + - uid: 22352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.662258,-7.3588095 + parent: 2 + - uid: 22366 + components: + - type: Transform + pos: 11.858107,6.044018 + parent: 2 - proto: ScrapTube entities: + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.27541,16.370422 + parent: 2 - uid: 13237 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.064285,-26.418608 parent: 2 + - uid: 22357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.65567,-11.672581 + parent: 2 + - uid: 22358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.546295,-11.235081 + parent: 2 + - uid: 22372 + components: + - type: Transform + pos: 1.2482185,21.933674 + parent: 2 + - uid: 22373 + components: + - type: Transform + pos: 0.95134354,21.121174 + parent: 2 - proto: Screen entities: - uid: 2358 @@ -115441,6 +119152,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 10414 + components: + - type: Transform + pos: 58.507942,4.5845747 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: 23.535854,10.694848 + parent: 2 - uid: 12800 components: - type: Transform @@ -115462,6 +119183,11 @@ entities: - type: Transform pos: 35.45207,79.576096 parent: 2 + - uid: 22322 + components: + - type: Transform + pos: 67.63421,41.5463 + parent: 2 - proto: SheetGlass10 entities: - uid: 12804 @@ -115533,6 +119259,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 10841 + components: + - type: Transform + pos: 58.664192,4.5845747 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: 24.52023,10.694848 + parent: 2 - uid: 12812 components: - type: Transform @@ -115564,6 +119300,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 10355 + components: + - type: Transform + pos: 24.02023,10.726098 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: 58.242317,4.6470747 + parent: 2 - uid: 12814 components: - type: Transform @@ -115827,6 +119573,42 @@ entities: - type: Transform pos: -15.5,24.5 parent: 16504 +- proto: ShotGunCabinetFilled + entities: + - uid: 22333 + components: + - type: Transform + pos: 39.5,70.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,9.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 - proto: Shovel entities: - uid: 12824 @@ -116245,26 +120027,6 @@ entities: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 12894 - components: - - type: Transform - pos: 45.5,20.5 - parent: 2 - - uid: 12895 - components: - - type: Transform - pos: 45.5,17.5 - parent: 2 - - uid: 12896 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 12897 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - uid: 19912 components: - type: Transform @@ -117120,8 +120882,6 @@ entities: - Pressed: Toggle 12855: - Pressed: Toggle - 12896: - - Pressed: Toggle - uid: 12922 components: - type: Transform @@ -117134,8 +120894,6 @@ entities: - Pressed: Toggle 12854: - Pressed: Toggle - 12897: - - Pressed: Toggle - uid: 12923 components: - type: Transform @@ -117334,10 +121092,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12894: - - Pressed: Toggle - uid: 12940 components: - type: Transform @@ -117358,8 +121112,6 @@ entities: linkedPorts: 12893: - Pressed: Toggle - 12895: - - Pressed: Toggle - proto: SignalControlledValve entities: - uid: 19940 @@ -117648,10 +121400,10 @@ entities: parent: 2 - proto: SignCryo entities: - - uid: 12956 + - uid: 10548 components: - type: Transform - pos: 4.5,30.5 + pos: 73.5,54.5 parent: 2 - proto: SignCryogenicsMed entities: @@ -117709,16 +121461,23 @@ entities: parent: 2 - proto: SignDirectionalCryo entities: - - uid: 12964 + - uid: 16103 components: - type: Transform - pos: 2.5,30.5 + rot: 1.5707963267948966 rad + pos: 68.5,54.5 parent: 2 - - uid: 12965 + - uid: 16104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,34.5 + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,39.5 parent: 2 - proto: SignDirectionalDorms entities: @@ -118301,6 +122060,23 @@ entities: - type: Transform pos: 52.5,1.5 parent: 2 +- proto: SignVox + entities: + - uid: 18618 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 - proto: SignXenobio entities: - uid: 13039 @@ -118346,6 +122122,18 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,37.5 parent: 2 + - uid: 18621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,47.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,52.5 + parent: 2 - uid: 21342 components: - type: Transform @@ -118639,35 +122427,11 @@ entities: - type: Transform pos: -2.5,53.5 parent: 2 - - uid: 3606 - components: - - type: Transform - pos: -4.5,53.5 - parent: 2 - uid: 12788 components: - type: Transform pos: 5.5,52.5 parent: 2 - - uid: 13075 - components: - - type: Transform - pos: -0.5,47.5 - parent: 2 - - uid: 13076 - components: - - type: Transform - pos: -2.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13078 - components: - - type: Transform - pos: -4.5,51.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13079 components: - type: Transform @@ -118675,20 +122439,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13081 - components: - - type: Transform - pos: -4.5,47.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13082 - components: - - type: Transform - pos: -4.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13083 components: - type: Transform @@ -118759,13 +122509,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13095 - components: - - type: Transform - pos: -0.5,48.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13097 components: - type: Transform @@ -118773,13 +122516,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13098 - components: - - type: Transform - pos: 1.5,51.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13099 components: - type: Transform @@ -118787,13 +122523,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13100 - components: - - type: Transform - pos: 1.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13101 components: - type: Transform @@ -118843,13 +122572,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13112 - components: - - type: Transform - pos: 5.5,51.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13113 components: - type: Transform @@ -118857,13 +122579,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13114 - components: - - type: Transform - pos: 5.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13115 components: - type: Transform @@ -119130,11 +122845,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13159 - components: - - type: Transform - pos: -0.5,47.5 - parent: 2 - proto: SolarPanelBroken entities: - uid: 3679 @@ -119152,6 +122862,11 @@ entities: - type: Transform pos: 55.5,-26.5 parent: 2 + - uid: 10356 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 - uid: 11514 components: - type: Transform @@ -119162,11 +122877,72 @@ entities: - type: Transform pos: 55.5,-22.5 parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 - uid: 13132 components: - type: Transform pos: 58.5,-26.5 parent: 2 + - uid: 20372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-16.5 + parent: 2 - proto: SolarTracker entities: - uid: 13160 @@ -121622,16 +125398,14 @@ entities: - type: Transform pos: 49.5,33.5 parent: 2 - - type: Lock - locked: False - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -121648,7 +125422,6 @@ entities: showEnts: False occludes: True ents: - - 11116 - 11117 - proto: SuitStorageNTSRA entities: @@ -125587,7 +129360,7 @@ entities: components: - type: MetaData desc: Приготовьтесь к отрыву башки... - name: Сборник песен Серёги Пирата + name: Сборник песен Серёги Дегенерата - type: Transform pos: 7.0318546,28.292011 parent: 2 @@ -126521,6 +130294,30 @@ entities: - type: Transform pos: 17.5,19.5 parent: 2 +- proto: UniformShortsRed + entities: + - uid: 11200 + components: + - type: Transform + pos: 0.7616036,30.60181 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: 0.7616036,30.35181 + parent: 2 +- proto: UniformShortsRedWithTop + entities: + - uid: 6608 + components: + - type: Transform + pos: 0.2928536,30.53931 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: 0.2459786,30.57056 + parent: 2 - proto: UprightPianoInstrument entities: - uid: 6924 @@ -126593,6 +130390,13 @@ entities: parent: 2 missingComponents: - AccessReader +- proto: VendingMachineBoozeSyndicate + entities: + - uid: 19845 + components: + - type: Transform + pos: 12.5,68.5 + parent: 2 - proto: VendingMachineCargoDrobe entities: - uid: 13797 @@ -126831,6 +130635,18 @@ entities: - type: Transform pos: 9.5,20.5 parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 22316 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 22317 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 - proto: VendingMachineMedical entities: - uid: 13825 @@ -126860,6 +130676,13 @@ entities: - type: Transform pos: 60.5,1.5 parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 13095 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 - proto: VendingMachineRestockBooze entities: - uid: 20219 @@ -127179,21 +131002,6 @@ entities: parent: 16504 - proto: WallPlastitanium entities: - - uid: 20227 - components: - - type: Transform - pos: 6.5,38.5 - parent: 16504 - - uid: 20228 - components: - - type: Transform - pos: -5.5,35.5 - parent: 16504 - - uid: 20229 - components: - - type: Transform - pos: -11.5,26.5 - parent: 16504 - uid: 20230 components: - type: Transform @@ -127215,26 +131023,6 @@ entities: - type: Transform pos: 3.5,-7.5 parent: 16504 - - uid: 20234 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 16504 - - uid: 20235 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 16504 - - uid: 20236 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 16504 - - uid: 20237 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 16504 - uid: 20238 components: - type: Transform @@ -127295,11 +131083,6 @@ entities: - type: Transform pos: 7.5,7.5 parent: 16504 - - uid: 20250 - components: - - type: Transform - pos: 9.5,12.5 - parent: 16504 - uid: 20251 components: - type: Transform @@ -127365,21 +131148,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 16504 - - uid: 20264 - components: - - type: Transform - pos: 4.5,13.5 - parent: 16504 - - uid: 20265 - components: - - type: Transform - pos: 5.5,13.5 - parent: 16504 - - uid: 20266 - components: - - type: Transform - pos: 6.5,13.5 - parent: 16504 - uid: 20267 components: - type: Transform @@ -127440,11 +131208,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 16504 - - uid: 20279 - components: - - type: Transform - pos: 11.5,12.5 - parent: 16504 - uid: 20280 components: - type: Transform @@ -127475,11 +131238,6 @@ entities: - type: Transform pos: -4.5,13.5 parent: 16504 - - uid: 20286 - components: - - type: Transform - pos: -5.5,13.5 - parent: 16504 - uid: 20287 components: - type: Transform @@ -127625,11 +131383,6 @@ entities: - type: Transform pos: -7.5,6.5 parent: 16504 - - uid: 20316 - components: - - type: Transform - pos: 10.5,12.5 - parent: 16504 - uid: 20317 components: - type: Transform @@ -127680,11 +131433,6 @@ entities: - type: Transform pos: -8.5,-0.5 parent: 16504 - - uid: 20327 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 16504 - uid: 20328 components: - type: Transform @@ -127695,11 +131443,6 @@ entities: - type: Transform pos: -16.5,5.5 parent: 16504 - - uid: 20330 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 16504 - uid: 20331 components: - type: Transform @@ -127710,41 +131453,6 @@ entities: - type: Transform pos: -12.5,-7.5 parent: 16504 - - uid: 20333 - components: - - type: Transform - pos: 12.5,12.5 - parent: 16504 - - uid: 20334 - components: - - type: Transform - pos: 12.5,11.5 - parent: 16504 - - uid: 20335 - components: - - type: Transform - pos: 13.5,11.5 - parent: 16504 - - uid: 20336 - components: - - type: Transform - pos: 13.5,10.5 - parent: 16504 - - uid: 20337 - components: - - type: Transform - pos: 14.5,10.5 - parent: 16504 - - uid: 20338 - components: - - type: Transform - pos: 14.5,9.5 - parent: 16504 - - uid: 20339 - components: - - type: Transform - pos: 15.5,9.5 - parent: 16504 - uid: 20340 components: - type: Transform @@ -127895,121 +131603,6 @@ entities: - type: Transform pos: -6.5,6.5 parent: 16504 - - uid: 20370 - components: - - type: Transform - pos: 6.5,20.5 - parent: 16504 - - uid: 20371 - components: - - type: Transform - pos: -5.5,14.5 - parent: 16504 - - uid: 20372 - components: - - type: Transform - pos: -5.5,15.5 - parent: 16504 - - uid: 20373 - components: - - type: Transform - pos: -4.5,19.5 - parent: 16504 - - uid: 20374 - components: - - type: Transform - pos: -5.5,17.5 - parent: 16504 - - uid: 20375 - components: - - type: Transform - pos: -5.5,18.5 - parent: 16504 - - uid: 20376 - components: - - type: Transform - pos: 6.5,14.5 - parent: 16504 - - uid: 20377 - components: - - type: Transform - pos: 6.5,15.5 - parent: 16504 - - uid: 20378 - components: - - type: Transform - pos: -5.5,19.5 - parent: 16504 - - uid: 20379 - components: - - type: Transform - pos: 6.5,17.5 - parent: 16504 - - uid: 20380 - components: - - type: Transform - pos: 6.5,18.5 - parent: 16504 - - uid: 20381 - components: - - type: Transform - pos: 6.5,19.5 - parent: 16504 - - uid: 20382 - components: - - type: Transform - pos: 5.5,19.5 - parent: 16504 - - uid: 20383 - components: - - type: Transform - pos: 1.5,19.5 - parent: 16504 - - uid: 20384 - components: - - type: Transform - pos: -3.5,19.5 - parent: 16504 - - uid: 20385 - components: - - type: Transform - pos: -0.5,19.5 - parent: 16504 - - uid: 20386 - components: - - type: Transform - pos: -2.5,19.5 - parent: 16504 - - uid: 20387 - components: - - type: Transform - pos: 3.5,19.5 - parent: 16504 - - uid: 20388 - components: - - type: Transform - pos: -1.5,19.5 - parent: 16504 - - uid: 20389 - components: - - type: Transform - pos: 4.5,19.5 - parent: 16504 - - uid: 20390 - components: - - type: Transform - pos: 2.5,19.5 - parent: 16504 - - uid: 20391 - components: - - type: Transform - pos: -19.5,17.5 - parent: 16504 - - uid: 20392 - components: - - type: Transform - pos: -9.5,19.5 - parent: 16504 - uid: 20393 components: - type: Transform @@ -128020,236 +131613,16 @@ entities: - type: Transform pos: -11.5,14.5 parent: 16504 - - uid: 20395 - components: - - type: Transform - pos: -11.5,17.5 - parent: 16504 - uid: 20396 components: - type: Transform pos: -11.5,16.5 parent: 16504 - - uid: 20397 - components: - - type: Transform - pos: -11.5,19.5 - parent: 16504 - - uid: 20398 - components: - - type: Transform - pos: -6.5,19.5 - parent: 16504 - - uid: 20399 - components: - - type: Transform - pos: -10.5,19.5 - parent: 16504 - - uid: 20400 - components: - - type: Transform - pos: -7.5,19.5 - parent: 16504 - - uid: 20401 - components: - - type: Transform - pos: -11.5,18.5 - parent: 16504 - - uid: 20402 - components: - - type: Transform - pos: -18.5,17.5 - parent: 16504 - - uid: 20403 - components: - - type: Transform - pos: -17.5,17.5 - parent: 16504 - - uid: 20404 - components: - - type: Transform - pos: -16.5,17.5 - parent: 16504 - - uid: 20405 - components: - - type: Transform - pos: -15.5,17.5 - parent: 16504 - - uid: 20406 - components: - - type: Transform - pos: -14.5,17.5 - parent: 16504 - - uid: 20407 - components: - - type: Transform - pos: -13.5,17.5 - parent: 16504 - - uid: 20408 - components: - - type: Transform - pos: -12.5,17.5 - parent: 16504 - - uid: 20409 - components: - - type: Transform - pos: -5.5,20.5 - parent: 16504 - - uid: 20410 - components: - - type: Transform - pos: -5.5,21.5 - parent: 16504 - - uid: 20411 - components: - - type: Transform - pos: -5.5,22.5 - parent: 16504 - - uid: 20412 - components: - - type: Transform - pos: -5.5,23.5 - parent: 16504 - - uid: 20413 - components: - - type: Transform - pos: -5.5,24.5 - parent: 16504 - - uid: 20414 - components: - - type: Transform - pos: -5.5,25.5 - parent: 16504 - - uid: 20415 - components: - - type: Transform - pos: -5.5,26.5 - parent: 16504 - - uid: 20416 - components: - - type: Transform - pos: -5.5,27.5 - parent: 16504 - - uid: 20417 - components: - - type: Transform - pos: 6.5,21.5 - parent: 16504 - - uid: 20418 - components: - - type: Transform - pos: 6.5,22.5 - parent: 16504 - - uid: 20419 - components: - - type: Transform - pos: 6.5,23.5 - parent: 16504 - - uid: 20420 - components: - - type: Transform - pos: 6.5,24.5 - parent: 16504 - - uid: 20421 - components: - - type: Transform - pos: 6.5,25.5 - parent: 16504 - - uid: 20422 - components: - - type: Transform - pos: 6.5,26.5 - parent: 16504 - - uid: 20423 - components: - - type: Transform - pos: 6.5,27.5 - parent: 16504 - uid: 20424 components: - type: Transform pos: 10.5,19.5 parent: 16504 - - uid: 20425 - components: - - type: Transform - pos: -5.5,28.5 - parent: 16504 - - uid: 20426 - components: - - type: Transform - pos: -5.5,29.5 - parent: 16504 - - uid: 20427 - components: - - type: Transform - pos: -5.5,30.5 - parent: 16504 - - uid: 20428 - components: - - type: Transform - pos: -5.5,31.5 - parent: 16504 - - uid: 20429 - components: - - type: Transform - pos: -4.5,31.5 - parent: 16504 - - uid: 20430 - components: - - type: Transform - pos: -3.5,31.5 - parent: 16504 - - uid: 20431 - components: - - type: Transform - pos: -2.5,31.5 - parent: 16504 - - uid: 20432 - components: - - type: Transform - pos: -1.5,31.5 - parent: 16504 - - uid: 20433 - components: - - type: Transform - pos: 2.5,31.5 - parent: 16504 - - uid: 20434 - components: - - type: Transform - pos: 3.5,31.5 - parent: 16504 - - uid: 20435 - components: - - type: Transform - pos: 4.5,31.5 - parent: 16504 - - uid: 20436 - components: - - type: Transform - pos: 5.5,31.5 - parent: 16504 - - uid: 20437 - components: - - type: Transform - pos: 6.5,31.5 - parent: 16504 - - uid: 20438 - components: - - type: Transform - pos: 6.5,30.5 - parent: 16504 - - uid: 20439 - components: - - type: Transform - pos: 6.5,29.5 - parent: 16504 - - uid: 20440 - components: - - type: Transform - pos: 6.5,28.5 - parent: 16504 - uid: 20441 components: - type: Transform @@ -128330,16 +131703,6 @@ entities: - type: Transform pos: 9.5,28.5 parent: 16504 - - uid: 20457 - components: - - type: Transform - pos: 7.5,31.5 - parent: 16504 - - uid: 20458 - components: - - type: Transform - pos: 7.5,32.5 - parent: 16504 - uid: 20459 components: - type: Transform @@ -128350,81 +131713,6 @@ entities: - type: Transform pos: 9.5,31.5 parent: 16504 - - uid: 20461 - components: - - type: Transform - pos: 10.5,20.5 - parent: 16504 - - uid: 20462 - components: - - type: Transform - pos: 10.5,21.5 - parent: 16504 - - uid: 20463 - components: - - type: Transform - pos: 10.5,22.5 - parent: 16504 - - uid: 20464 - components: - - type: Transform - pos: 10.5,23.5 - parent: 16504 - - uid: 20465 - components: - - type: Transform - pos: 10.5,24.5 - parent: 16504 - - uid: 20466 - components: - - type: Transform - pos: 10.5,25.5 - parent: 16504 - - uid: 20467 - components: - - type: Transform - pos: 10.5,26.5 - parent: 16504 - - uid: 20468 - components: - - type: Transform - pos: 10.5,27.5 - parent: 16504 - - uid: 20469 - components: - - type: Transform - pos: 10.5,28.5 - parent: 16504 - - uid: 20470 - components: - - type: Transform - pos: 10.5,29.5 - parent: 16504 - - uid: 20471 - components: - - type: Transform - pos: 10.5,30.5 - parent: 16504 - - uid: 20472 - components: - - type: Transform - pos: 10.5,31.5 - parent: 16504 - - uid: 20473 - components: - - type: Transform - pos: 10.5,32.5 - parent: 16504 - - uid: 20474 - components: - - type: Transform - pos: 10.5,33.5 - parent: 16504 - - uid: 20475 - components: - - type: Transform - pos: 10.5,34.5 - parent: 16504 - uid: 20476 components: - type: Transform @@ -128473,11 +131761,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,19.5 parent: 16504 - - uid: 20485 - components: - - type: Transform - pos: -11.5,28.5 - parent: 16504 - uid: 20486 components: - type: Transform @@ -128490,12 +131773,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,19.5 parent: 16504 - - uid: 20488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 16504 - uid: 20489 components: - type: Transform @@ -128511,11 +131788,6 @@ entities: - type: Transform pos: -13.5,26.5 parent: 16504 - - uid: 20492 - components: - - type: Transform - pos: -11.5,27.5 - parent: 16504 - uid: 20493 components: - type: Transform @@ -128536,37 +131808,6 @@ entities: - type: Transform pos: -17.5,26.5 parent: 16504 - - uid: 20497 - components: - - type: Transform - pos: -8.5,31.5 - parent: 16504 - - uid: 20498 - components: - - type: Transform - pos: -7.5,31.5 - parent: 16504 - - uid: 20499 - components: - - type: Transform - pos: -6.5,31.5 - parent: 16504 - - uid: 20500 - components: - - type: Transform - pos: -19.5,18.5 - parent: 16504 - - uid: 20501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,12.5 - parent: 16504 - - uid: 20502 - components: - - type: Transform - pos: 17.5,8.5 - parent: 16504 - uid: 20503 components: - type: Transform @@ -128584,193 +131825,12 @@ entities: - type: Transform pos: 18.5,-1.5 parent: 16504 - - uid: 20506 - components: - - type: Transform - pos: -11.5,30.5 - parent: 16504 - - uid: 20507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 16504 - - uid: 20508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 16504 - - uid: 20509 - components: - - type: Transform - pos: -10.5,30.5 - parent: 16504 - - uid: 20510 - components: - - type: Transform - pos: -10.5,31.5 - parent: 16504 - - uid: 20511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 16504 - - uid: 20512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,11.5 - parent: 16504 - - uid: 20513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,11.5 - parent: 16504 - - uid: 20514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,11.5 - parent: 16504 - - uid: 20515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,11.5 - parent: 16504 - - uid: 20516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,11.5 - parent: 16504 - - uid: 20517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,12.5 - parent: 16504 - - uid: 20518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,11.5 - parent: 16504 - - uid: 20519 - components: - - type: Transform - pos: -11.5,29.5 - parent: 16504 - - uid: 20520 - components: - - type: Transform - pos: -9.5,31.5 - parent: 16504 - - uid: 20521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 16504 - - uid: 20522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,14.5 - parent: 16504 - - uid: 20523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 16504 - uid: 20524 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,14.5 parent: 16504 - - uid: 20525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 16504 - - uid: 20526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,18.5 - parent: 16504 - - uid: 20527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,19.5 - parent: 16504 - - uid: 20528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,20.5 - parent: 16504 - - uid: 20529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,21.5 - parent: 16504 - - uid: 20530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,22.5 - parent: 16504 - - uid: 20531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,23.5 - parent: 16504 - - uid: 20532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,24.5 - parent: 16504 - - uid: 20533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,25.5 - parent: 16504 - - uid: 20534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,26.5 - parent: 16504 - - uid: 20535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,27.5 - parent: 16504 - - uid: 20536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,28.5 - parent: 16504 - - uid: 20537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,29.5 - parent: 16504 - uid: 20538 components: - type: Transform @@ -128789,11 +131849,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,29.5 parent: 16504 - - uid: 20541 - components: - - type: Transform - pos: 11.5,34.5 - parent: 16504 - uid: 20542 components: - type: Transform @@ -129141,41 +132196,16 @@ entities: - type: Transform pos: 18.5,-6.5 parent: 16504 - - uid: 20605 - components: - - type: Transform - pos: 18.5,8.5 - parent: 16504 - uid: 20606 components: - type: Transform pos: 19.5,8.5 parent: 16504 - - uid: 20607 - components: - - type: Transform - pos: 19.5,7.5 - parent: 16504 - - uid: 20608 - components: - - type: Transform - pos: 20.5,7.5 - parent: 16504 - uid: 20609 components: - type: Transform pos: 18.5,-2.5 parent: 16504 - - uid: 20610 - components: - - type: Transform - pos: 20.5,6.5 - parent: 16504 - - uid: 20611 - components: - - type: Transform - pos: 20.5,5.5 - parent: 16504 - uid: 20612 components: - type: Transform @@ -129211,567 +132241,612 @@ entities: - type: Transform pos: 22.5,13.5 parent: 16504 - - uid: 20619 + - uid: 20645 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,36.5 + pos: -0.5,36.5 parent: 16504 - - uid: 20620 + - uid: 20646 components: - type: Transform - pos: 7.5,34.5 + rot: 3.141592653589793 rad + pos: 0.5,36.5 parent: 16504 - - uid: 20621 + - uid: 20647 components: - type: Transform - pos: 7.5,35.5 + rot: 3.141592653589793 rad + pos: 1.5,36.5 parent: 16504 - - uid: 20622 + - uid: 20648 components: - type: Transform - pos: 7.5,36.5 + rot: 3.141592653589793 rad + pos: 3.5,36.5 parent: 16504 - - uid: 20623 + - uid: 20649 components: - type: Transform - pos: 7.5,37.5 + rot: 3.141592653589793 rad + pos: 4.5,36.5 parent: 16504 - - uid: 20624 + - uid: 20650 components: - type: Transform - pos: 7.5,38.5 + rot: 3.141592653589793 rad + pos: 5.5,36.5 parent: 16504 - - uid: 20625 + - uid: 20651 components: - type: Transform - pos: 9.5,34.5 + rot: 3.141592653589793 rad + pos: 6.5,36.5 parent: 16504 - - uid: 20626 + - uid: 20663 components: - type: Transform - pos: 9.5,35.5 + pos: 22.5,21.5 parent: 16504 - - uid: 20627 + - uid: 20664 components: - type: Transform - pos: 9.5,36.5 + pos: 21.5,18.5 parent: 16504 - - uid: 20628 + - uid: 20665 components: - type: Transform - pos: 9.5,37.5 + pos: 19.5,18.5 parent: 16504 - - uid: 20629 + - uid: 20666 components: - type: Transform - pos: 9.5,38.5 + pos: 22.5,20.5 parent: 16504 - - uid: 20630 + - uid: 20667 components: - type: Transform - pos: 8.5,38.5 + pos: 22.5,22.5 parent: 16504 - - uid: 20631 + - uid: 20668 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,39.5 + pos: 22.5,23.5 parent: 16504 - - uid: 20632 + - uid: 20669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,38.5 + pos: 22.5,24.5 parent: 16504 - - uid: 20633 + - uid: 20670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,39.5 + pos: 22.5,25.5 parent: 16504 - - uid: 20634 + - uid: 20671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,33.5 + pos: 23.5,22.5 parent: 16504 - - uid: 20635 + - uid: 20672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,32.5 + pos: 24.5,22.5 parent: 16504 - - uid: 20636 + - uid: 20673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,39.5 + pos: 25.5,22.5 parent: 16504 - - uid: 20637 + - uid: 20674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,39.5 + pos: 26.5,22.5 parent: 16504 - - uid: 20638 + - uid: 20675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,39.5 + pos: 27.5,22.5 parent: 16504 - - uid: 20639 + - uid: 20676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,39.5 + pos: 28.5,22.5 parent: 16504 - - uid: 20640 + - uid: 20677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,39.5 + pos: 29.5,22.5 parent: 16504 - - uid: 20641 + - uid: 20678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,39.5 + pos: 30.5,22.5 parent: 16504 - - uid: 20642 + - uid: 20679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,36.5 + pos: 31.5,22.5 parent: 16504 - - uid: 20643 + - uid: 20680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,36.5 + pos: 32.5,22.5 parent: 16504 - - uid: 20644 + - uid: 20681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,36.5 + pos: 22.5,29.5 parent: 16504 - - uid: 20645 + - uid: 20682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,36.5 + pos: 22.5,28.5 parent: 16504 - - uid: 20646 + - uid: 20683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,36.5 + pos: 22.5,27.5 parent: 16504 - - uid: 20647 + - uid: 20684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,36.5 + pos: 19.5,30.5 parent: 16504 - - uid: 20648 + - uid: 20685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,36.5 + pos: 21.5,30.5 parent: 16504 - - uid: 20649 + - uid: 20686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 + pos: 22.5,30.5 parent: 16504 - - uid: 20650 + - uid: 20687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,36.5 + pos: 22.5,31.5 parent: 16504 - - uid: 20651 + - uid: 20688 + components: + - type: Transform + pos: 23.5,35.5 + parent: 16504 + - uid: 20689 + components: + - type: Transform + pos: 24.5,35.5 + parent: 16504 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 20713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 16504 + - uid: 20714 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,36.5 + pos: -22.5,24.5 parent: 16504 - - uid: 20652 + - uid: 20715 components: - type: Transform - pos: 18.5,36.5 + rot: -1.5707963267948966 rad + pos: -22.5,23.5 parent: 16504 - - uid: 20653 + - uid: 20716 components: - type: Transform - pos: 18.5,35.5 + pos: -27.5,23.5 parent: 16504 - - uid: 20654 + - uid: 20717 components: - type: Transform - pos: 18.5,34.5 + rot: -1.5707963267948966 rad + pos: -27.5,28.5 parent: 16504 - - uid: 20655 + - uid: 20718 components: - type: Transform - pos: 18.5,33.5 + pos: -22.5,28.5 parent: 16504 - - uid: 20656 + - uid: 20719 components: - type: Transform - pos: 18.5,32.5 + pos: -28.5,31.5 parent: 16504 - - uid: 20657 + - uid: 20720 components: - type: Transform - pos: 18.5,31.5 + rot: -1.5707963267948966 rad + pos: -21.5,31.5 parent: 16504 - - uid: 20658 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 20499 components: - type: Transform - pos: 18.5,30.5 + pos: -6.5,-10.5 parent: 16504 - - uid: 20659 + - uid: 20500 components: - type: Transform - pos: 12.5,34.5 + pos: -6.5,-9.5 parent: 16504 - - uid: 20660 + - uid: 20520 components: - type: Transform - pos: 12.5,35.5 + pos: -6.5,-11.5 parent: 16504 - - uid: 20661 + - uid: 20521 components: - type: Transform - pos: 12.5,36.5 + pos: -6.5,-12.5 parent: 16504 - - uid: 20662 + - uid: 20525 components: - type: Transform - pos: 12.5,37.5 + pos: -5.5,-12.5 parent: 16504 - - uid: 20663 + - uid: 20528 components: - type: Transform - pos: 22.5,21.5 + pos: -4.5,-12.5 parent: 16504 - - uid: 20664 + - uid: 20534 components: - type: Transform - pos: 21.5,18.5 + pos: 6.5,38.5 parent: 16504 - - uid: 20665 + - uid: 20535 components: - type: Transform - pos: 19.5,18.5 + pos: -5.5,35.5 parent: 16504 - - uid: 20666 + - uid: 20536 components: - type: Transform - pos: 22.5,20.5 + pos: -11.5,26.5 parent: 16504 - - uid: 20667 + - uid: 20537 components: - type: Transform - pos: 22.5,22.5 + pos: -4.5,-3.5 parent: 16504 - - uid: 20668 + - uid: 20541 components: - type: Transform - pos: 22.5,23.5 + pos: -4.5,-2.5 parent: 16504 - - uid: 20669 + - uid: 20605 components: - type: Transform - pos: 22.5,24.5 + pos: -4.5,-1.5 parent: 16504 - - uid: 20670 + - uid: 20607 components: - type: Transform - pos: 22.5,25.5 + pos: -4.5,-0.5 parent: 16504 - - uid: 20671 + - uid: 20608 components: - type: Transform - pos: 23.5,22.5 + pos: 9.5,12.5 parent: 16504 - - uid: 20672 + - uid: 20610 components: - type: Transform - pos: 24.5,22.5 + pos: 4.5,13.5 parent: 16504 - - uid: 20673 + - uid: 20611 components: - type: Transform - pos: 25.5,22.5 + pos: 5.5,13.5 parent: 16504 - - uid: 20674 + - uid: 20619 components: - type: Transform - pos: 26.5,22.5 + pos: 6.5,13.5 parent: 16504 - - uid: 20675 + - uid: 20620 components: - type: Transform - pos: 27.5,22.5 + pos: 11.5,12.5 parent: 16504 - - uid: 20676 + - uid: 20621 components: - type: Transform - pos: 28.5,22.5 + pos: -5.5,13.5 parent: 16504 - - uid: 20677 + - uid: 20622 components: - type: Transform - pos: 29.5,22.5 + pos: 10.5,12.5 parent: 16504 - - uid: 20678 + - uid: 20623 components: - type: Transform - pos: 30.5,22.5 + pos: -6.5,-1.5 parent: 16504 - - uid: 20679 + - uid: 20624 components: - type: Transform - pos: 31.5,22.5 + pos: -6.5,-3.5 parent: 16504 - - uid: 20680 + - uid: 20625 components: - type: Transform - pos: 32.5,22.5 + pos: 12.5,12.5 parent: 16504 - - uid: 20681 + - uid: 20626 components: - type: Transform - pos: 22.5,29.5 + pos: 12.5,11.5 parent: 16504 - - uid: 20682 + - uid: 20627 components: - type: Transform - pos: 22.5,28.5 + pos: 13.5,11.5 parent: 16504 - - uid: 20683 + - uid: 20628 components: - type: Transform - pos: 22.5,27.5 + pos: 13.5,10.5 parent: 16504 - - uid: 20684 + - uid: 20629 components: - type: Transform - pos: 19.5,30.5 + pos: 14.5,10.5 parent: 16504 - - uid: 20685 + - uid: 20630 components: - type: Transform - pos: 21.5,30.5 + pos: 14.5,9.5 parent: 16504 - - uid: 20686 + - uid: 20631 components: - type: Transform - pos: 22.5,30.5 + pos: 15.5,9.5 parent: 16504 - - uid: 20687 + - uid: 20632 components: - type: Transform - pos: 22.5,31.5 + pos: 6.5,20.5 parent: 16504 - - uid: 20688 + - uid: 20633 components: - type: Transform - pos: 23.5,35.5 + pos: -5.5,14.5 parent: 16504 - - uid: 20689 + - uid: 20634 components: - type: Transform - pos: 24.5,35.5 + pos: -5.5,15.5 parent: 16504 - - uid: 20690 + - uid: 20635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,40.5 + pos: -4.5,19.5 parent: 16504 - - uid: 20691 + - uid: 20636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,40.5 + pos: -5.5,17.5 parent: 16504 - - uid: 20692 + - uid: 20637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,40.5 + pos: -5.5,18.5 parent: 16504 - - uid: 20693 + - uid: 20638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,41.5 + pos: 6.5,14.5 parent: 16504 - - uid: 20694 + - uid: 20639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,42.5 + pos: 6.5,15.5 parent: 16504 - - uid: 20695 + - uid: 20640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,43.5 + pos: -5.5,19.5 parent: 16504 - - uid: 20696 + - uid: 20641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,44.5 + pos: 6.5,17.5 parent: 16504 - - uid: 20697 + - uid: 20642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,44.5 + pos: 6.5,18.5 parent: 16504 - - uid: 20698 + - uid: 20643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,44.5 + pos: 6.5,19.5 parent: 16504 - - uid: 20699 + - uid: 20644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,44.5 + pos: 5.5,19.5 parent: 16504 - - uid: 20700 + - uid: 20652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 + pos: 1.5,19.5 parent: 16504 - - uid: 20701 + - uid: 20653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,44.5 + pos: -3.5,19.5 parent: 16504 - - uid: 20702 + - uid: 20654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,44.5 + pos: -0.5,19.5 parent: 16504 - - uid: 20703 + - uid: 20655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,43.5 + pos: -2.5,19.5 parent: 16504 - - uid: 20704 + - uid: 20656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,42.5 + pos: 3.5,19.5 parent: 16504 - - uid: 20705 + - uid: 20657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,41.5 + pos: -1.5,19.5 parent: 16504 - - uid: 20706 + - uid: 20658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,40.5 + pos: 4.5,19.5 parent: 16504 - - uid: 20707 + - uid: 20659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,40.5 + pos: 2.5,19.5 parent: 16504 - - uid: 20708 + - uid: 20660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,40.5 + pos: -19.5,17.5 parent: 16504 - - uid: 20709 + - uid: 20661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,40.5 + pos: -9.5,19.5 parent: 16504 - - uid: 20710 + - uid: 20662 components: - type: Transform - pos: -6.5,36.5 + pos: -11.5,17.5 parent: 16504 - - uid: 20711 + - uid: 20690 components: - type: Transform - pos: -6.5,38.5 + pos: -11.5,19.5 parent: 16504 - - uid: 20712 + - uid: 20691 components: - type: Transform - pos: -6.5,37.5 + pos: -6.5,19.5 parent: 16504 -- proto: WallPlastitaniumDiagonal - entities: - - uid: 20713 + - uid: 20692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,24.5 + pos: -10.5,19.5 parent: 16504 - - uid: 20714 + - uid: 20693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,24.5 + pos: -7.5,19.5 parent: 16504 - - uid: 20715 + - uid: 20694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,23.5 + pos: -11.5,18.5 parent: 16504 - - uid: 20716 + - uid: 20695 components: - type: Transform - pos: -27.5,23.5 + pos: -18.5,17.5 parent: 16504 - - uid: 20717 + - uid: 20696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,28.5 + pos: -17.5,17.5 parent: 16504 - - uid: 20718 + - uid: 20697 components: - type: Transform - pos: -22.5,28.5 + pos: -16.5,17.5 parent: 16504 - - uid: 20719 + - uid: 20698 components: - type: Transform - pos: -28.5,31.5 + pos: -15.5,17.5 parent: 16504 - - uid: 20720 + - uid: 20699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,31.5 + pos: -14.5,17.5 + parent: 16504 + - uid: 20700 + components: + - type: Transform + pos: -13.5,17.5 + parent: 16504 + - uid: 20701 + components: + - type: Transform + pos: -12.5,17.5 + parent: 16504 + - uid: 20702 + components: + - type: Transform + pos: -5.5,20.5 + parent: 16504 + - uid: 20703 + components: + - type: Transform + pos: -5.5,21.5 + parent: 16504 + - uid: 20704 + components: + - type: Transform + pos: -5.5,22.5 + parent: 16504 + - uid: 20705 + components: + - type: Transform + pos: -5.5,23.5 + parent: 16504 + - uid: 20706 + components: + - type: Transform + pos: -5.5,24.5 + parent: 16504 + - uid: 20707 + components: + - type: Transform + pos: -5.5,25.5 + parent: 16504 + - uid: 20708 + components: + - type: Transform + pos: -5.5,26.5 + parent: 16504 + - uid: 20709 + components: + - type: Transform + pos: -5.5,27.5 + parent: 16504 + - uid: 20710 + components: + - type: Transform + pos: 6.5,21.5 + parent: 16504 + - uid: 20711 + components: + - type: Transform + pos: 6.5,22.5 + parent: 16504 + - uid: 20712 + components: + - type: Transform + pos: 6.5,23.5 parent: 16504 -- proto: WallPlastitaniumIndestructible - entities: - uid: 20721 components: - type: Transform @@ -129825,17 +132900,17 @@ entities: - uid: 20731 components: - type: Transform - pos: -5.5,41.5 + pos: 6.5,24.5 parent: 16504 - uid: 20732 components: - type: Transform - pos: -5.5,40.5 + pos: 6.5,25.5 parent: 16504 - uid: 20733 components: - type: Transform - pos: -4.5,41.5 + pos: 6.5,26.5 parent: 16504 - uid: 20734 components: @@ -129995,7 +133070,7 @@ entities: - uid: 20765 components: - type: Transform - pos: -6.5,-4.5 + pos: 6.5,27.5 parent: 16504 - uid: 20766 components: @@ -130095,7 +133170,7 @@ entities: - uid: 20785 components: - type: Transform - pos: 2.5,13.5 + pos: -5.5,28.5 parent: 16504 - uid: 20786 components: @@ -130145,7 +133220,7 @@ entities: - uid: 20795 components: - type: Transform - pos: 3.5,13.5 + pos: -5.5,29.5 parent: 16504 - uid: 20796 components: @@ -130255,17 +133330,17 @@ entities: - uid: 20817 components: - type: Transform - pos: -9.5,-4.5 + pos: -5.5,30.5 parent: 16504 - uid: 20818 components: - type: Transform - pos: -8.5,-4.5 + pos: -5.5,31.5 parent: 16504 - uid: 20819 components: - type: Transform - pos: -7.5,-4.5 + pos: -4.5,31.5 parent: 16504 - uid: 20820 components: @@ -130420,22 +133495,22 @@ entities: - uid: 20850 components: - type: Transform - pos: -19.5,20.5 + pos: -3.5,31.5 parent: 16504 - uid: 20851 components: - type: Transform - pos: -19.5,25.5 + pos: -2.5,31.5 parent: 16504 - uid: 20852 components: - type: Transform - pos: -19.5,26.5 + pos: -1.5,31.5 parent: 16504 - uid: 20853 components: - type: Transform - pos: -19.5,19.5 + pos: 2.5,31.5 parent: 16504 - uid: 20854 components: @@ -130765,12 +133840,12 @@ entities: - uid: 20919 components: - type: Transform - pos: -5.5,39.5 + pos: 3.5,31.5 parent: 16504 - uid: 20920 components: - type: Transform - pos: 5.5,39.5 + pos: 4.5,31.5 parent: 16504 - uid: 20921 components: @@ -130780,7 +133855,7 @@ entities: - uid: 20922 components: - type: Transform - pos: 6.5,39.5 + pos: 5.5,31.5 parent: 16504 - uid: 20923 components: @@ -130835,52 +133910,52 @@ entities: - uid: 20933 components: - type: Transform - pos: -6.5,39.5 + pos: 6.5,31.5 parent: 16504 - uid: 20934 components: - type: Transform - pos: 10.5,39.5 + pos: 6.5,30.5 parent: 16504 - uid: 20935 components: - type: Transform - pos: 11.5,39.5 + pos: 6.5,29.5 parent: 16504 - uid: 20936 components: - type: Transform - pos: 12.5,39.5 + pos: 6.5,28.5 parent: 16504 - uid: 20937 components: - type: Transform - pos: 13.5,39.5 + pos: 7.5,31.5 parent: 16504 - uid: 20938 components: - type: Transform - pos: 14.5,39.5 + pos: 7.5,32.5 parent: 16504 - uid: 20939 components: - type: Transform - pos: 15.5,39.5 + pos: 10.5,20.5 parent: 16504 - uid: 20940 components: - type: Transform - pos: 16.5,39.5 + pos: 10.5,21.5 parent: 16504 - uid: 20941 components: - type: Transform - pos: 17.5,39.5 + pos: 10.5,22.5 parent: 16504 - uid: 20942 components: - type: Transform - pos: 18.5,39.5 + pos: 10.5,23.5 parent: 16504 - uid: 20943 components: @@ -130895,12 +133970,12 @@ entities: - uid: 20945 components: - type: Transform - pos: 18.5,38.5 + pos: 10.5,24.5 parent: 16504 - uid: 20946 components: - type: Transform - pos: 18.5,37.5 + pos: 10.5,25.5 parent: 16504 - uid: 20947 components: @@ -131215,17 +134290,17 @@ entities: - uid: 21009 components: - type: Transform - pos: 5.5,-1.5 + pos: 10.5,26.5 parent: 16504 - uid: 21010 components: - type: Transform - pos: 5.5,-2.5 + pos: 10.5,27.5 parent: 16504 - uid: 21011 components: - type: Transform - pos: 5.5,-3.5 + pos: 10.5,28.5 parent: 16504 - uid: 21012 components: @@ -131355,12 +134430,12 @@ entities: - uid: 21037 components: - type: Transform - pos: 9.5,-2.5 + pos: 10.5,29.5 parent: 16504 - uid: 21038 components: - type: Transform - pos: 9.5,-3.5 + pos: 10.5,30.5 parent: 16504 - uid: 21039 components: @@ -131375,12 +134450,12 @@ entities: - uid: 21041 components: - type: Transform - pos: 9.5,-0.5 + pos: 10.5,31.5 parent: 16504 - uid: 21042 components: - type: Transform - pos: 9.5,-1.5 + pos: 10.5,32.5 parent: 16504 - uid: 21043 components: @@ -131427,6 +134502,726 @@ entities: - type: Transform pos: -24.5,23.5 parent: 16504 + - uid: 21069 + components: + - type: Transform + pos: 10.5,33.5 + parent: 16504 + - uid: 21469 + components: + - type: Transform + pos: 10.5,34.5 + parent: 16504 + - uid: 21483 + components: + - type: Transform + pos: -11.5,28.5 + parent: 16504 + - uid: 21581 + components: + - type: Transform + pos: 16.5,13.5 + parent: 16504 + - uid: 21863 + components: + - type: Transform + pos: -11.5,27.5 + parent: 16504 + - uid: 21868 + components: + - type: Transform + pos: -8.5,31.5 + parent: 16504 + - uid: 22010 + components: + - type: Transform + pos: -7.5,31.5 + parent: 16504 + - uid: 22011 + components: + - type: Transform + pos: -6.5,31.5 + parent: 16504 + - uid: 22012 + components: + - type: Transform + pos: -19.5,18.5 + parent: 16504 + - uid: 22013 + components: + - type: Transform + pos: 15.5,12.5 + parent: 16504 + - uid: 22014 + components: + - type: Transform + pos: 17.5,8.5 + parent: 16504 + - uid: 22015 + components: + - type: Transform + pos: -11.5,30.5 + parent: 16504 + - uid: 22016 + components: + - type: Transform + pos: 17.5,9.5 + parent: 16504 + - uid: 22017 + components: + - type: Transform + pos: 16.5,9.5 + parent: 16504 + - uid: 22018 + components: + - type: Transform + pos: -10.5,30.5 + parent: 16504 + - uid: 22019 + components: + - type: Transform + pos: -10.5,31.5 + parent: 16504 + - uid: 22020 + components: + - type: Transform + pos: 22.5,11.5 + parent: 16504 + - uid: 22021 + components: + - type: Transform + pos: 21.5,11.5 + parent: 16504 + - uid: 22022 + components: + - type: Transform + pos: 20.5,11.5 + parent: 16504 + - uid: 22023 + components: + - type: Transform + pos: 19.5,11.5 + parent: 16504 + - uid: 22024 + components: + - type: Transform + pos: 18.5,11.5 + parent: 16504 + - uid: 22025 + components: + - type: Transform + pos: 17.5,11.5 + parent: 16504 + - uid: 22026 + components: + - type: Transform + pos: 16.5,12.5 + parent: 16504 + - uid: 22027 + components: + - type: Transform + pos: 16.5,11.5 + parent: 16504 + - uid: 22028 + components: + - type: Transform + pos: -11.5,29.5 + parent: 16504 + - uid: 22029 + components: + - type: Transform + pos: -9.5,31.5 + parent: 16504 + - uid: 22030 + components: + - type: Transform + pos: 18.5,13.5 + parent: 16504 + - uid: 22031 + components: + - type: Transform + pos: 18.5,14.5 + parent: 16504 + - uid: 22032 + components: + - type: Transform + pos: 18.5,15.5 + parent: 16504 + - uid: 22033 + components: + - type: Transform + pos: 18.5,17.5 + parent: 16504 + - uid: 22034 + components: + - type: Transform + pos: 18.5,18.5 + parent: 16504 + - uid: 22035 + components: + - type: Transform + pos: 18.5,19.5 + parent: 16504 + - uid: 22036 + components: + - type: Transform + pos: 18.5,20.5 + parent: 16504 + - uid: 22037 + components: + - type: Transform + pos: 18.5,21.5 + parent: 16504 + - uid: 22038 + components: + - type: Transform + pos: 18.5,22.5 + parent: 16504 + - uid: 22039 + components: + - type: Transform + pos: 18.5,23.5 + parent: 16504 + - uid: 22040 + components: + - type: Transform + pos: 18.5,24.5 + parent: 16504 + - uid: 22041 + components: + - type: Transform + pos: 18.5,25.5 + parent: 16504 + - uid: 22042 + components: + - type: Transform + pos: 18.5,26.5 + parent: 16504 + - uid: 22043 + components: + - type: Transform + pos: 18.5,27.5 + parent: 16504 + - uid: 22044 + components: + - type: Transform + pos: 18.5,28.5 + parent: 16504 + - uid: 22045 + components: + - type: Transform + pos: 18.5,29.5 + parent: 16504 + - uid: 22046 + components: + - type: Transform + pos: 11.5,34.5 + parent: 16504 + - uid: 22047 + components: + - type: Transform + pos: 18.5,8.5 + parent: 16504 + - uid: 22048 + components: + - type: Transform + pos: 19.5,7.5 + parent: 16504 + - uid: 22049 + components: + - type: Transform + pos: 20.5,7.5 + parent: 16504 + - uid: 22050 + components: + - type: Transform + pos: 20.5,6.5 + parent: 16504 + - uid: 22051 + components: + - type: Transform + pos: 20.5,5.5 + parent: 16504 + - uid: 22052 + components: + - type: Transform + pos: -5.5,36.5 + parent: 16504 + - uid: 22053 + components: + - type: Transform + pos: 7.5,34.5 + parent: 16504 + - uid: 22054 + components: + - type: Transform + pos: 7.5,35.5 + parent: 16504 + - uid: 22055 + components: + - type: Transform + pos: 7.5,36.5 + parent: 16504 + - uid: 22056 + components: + - type: Transform + pos: 7.5,37.5 + parent: 16504 + - uid: 22057 + components: + - type: Transform + pos: 7.5,38.5 + parent: 16504 + - uid: 22058 + components: + - type: Transform + pos: 9.5,34.5 + parent: 16504 + - uid: 22059 + components: + - type: Transform + pos: 9.5,35.5 + parent: 16504 + - uid: 22060 + components: + - type: Transform + pos: 9.5,36.5 + parent: 16504 + - uid: 22061 + components: + - type: Transform + pos: 9.5,37.5 + parent: 16504 + - uid: 22062 + components: + - type: Transform + pos: 9.5,38.5 + parent: 16504 + - uid: 22063 + components: + - type: Transform + pos: 8.5,38.5 + parent: 16504 + - uid: 22064 + components: + - type: Transform + pos: -4.5,39.5 + parent: 16504 + - uid: 22065 + components: + - type: Transform + pos: -5.5,38.5 + parent: 16504 + - uid: 22066 + components: + - type: Transform + pos: -0.5,39.5 + parent: 16504 + - uid: 22067 + components: + - type: Transform + pos: -5.5,33.5 + parent: 16504 + - uid: 22068 + components: + - type: Transform + pos: -5.5,32.5 + parent: 16504 + - uid: 22069 + components: + - type: Transform + pos: -2.5,39.5 + parent: 16504 + - uid: 22070 + components: + - type: Transform + pos: -3.5,39.5 + parent: 16504 + - uid: 22071 + components: + - type: Transform + pos: 3.5,39.5 + parent: 16504 + - uid: 22072 + components: + - type: Transform + pos: -1.5,39.5 + parent: 16504 + - uid: 22073 + components: + - type: Transform + pos: 1.5,39.5 + parent: 16504 + - uid: 22074 + components: + - type: Transform + pos: 2.5,39.5 + parent: 16504 + - uid: 22075 + components: + - type: Transform + pos: -4.5,36.5 + parent: 16504 + - uid: 22076 + components: + - type: Transform + pos: -3.5,36.5 + parent: 16504 + - uid: 22077 + components: + - type: Transform + pos: -2.5,36.5 + parent: 16504 + - uid: 22078 + components: + - type: Transform + pos: 18.5,36.5 + parent: 16504 + - uid: 22079 + components: + - type: Transform + pos: 18.5,35.5 + parent: 16504 + - uid: 22080 + components: + - type: Transform + pos: 18.5,34.5 + parent: 16504 + - uid: 22081 + components: + - type: Transform + pos: 18.5,33.5 + parent: 16504 + - uid: 22082 + components: + - type: Transform + pos: 18.5,32.5 + parent: 16504 + - uid: 22083 + components: + - type: Transform + pos: 18.5,31.5 + parent: 16504 + - uid: 22084 + components: + - type: Transform + pos: 18.5,30.5 + parent: 16504 + - uid: 22085 + components: + - type: Transform + pos: 12.5,34.5 + parent: 16504 + - uid: 22086 + components: + - type: Transform + pos: 12.5,35.5 + parent: 16504 + - uid: 22087 + components: + - type: Transform + pos: 12.5,36.5 + parent: 16504 + - uid: 22088 + components: + - type: Transform + pos: 12.5,37.5 + parent: 16504 + - uid: 22089 + components: + - type: Transform + pos: -1.5,40.5 + parent: 16504 + - uid: 22090 + components: + - type: Transform + pos: -3.5,40.5 + parent: 16504 + - uid: 22091 + components: + - type: Transform + pos: -2.5,40.5 + parent: 16504 + - uid: 22092 + components: + - type: Transform + pos: -2.5,41.5 + parent: 16504 + - uid: 22093 + components: + - type: Transform + pos: -2.5,42.5 + parent: 16504 + - uid: 22094 + components: + - type: Transform + pos: -2.5,43.5 + parent: 16504 + - uid: 22095 + components: + - type: Transform + pos: -2.5,44.5 + parent: 16504 + - uid: 22096 + components: + - type: Transform + pos: -1.5,44.5 + parent: 16504 + - uid: 22097 + components: + - type: Transform + pos: -0.5,44.5 + parent: 16504 + - uid: 22098 + components: + - type: Transform + pos: 0.5,44.5 + parent: 16504 + - uid: 22099 + components: + - type: Transform + pos: 1.5,44.5 + parent: 16504 + - uid: 22100 + components: + - type: Transform + pos: 2.5,44.5 + parent: 16504 + - uid: 22101 + components: + - type: Transform + pos: 3.5,44.5 + parent: 16504 + - uid: 22102 + components: + - type: Transform + pos: 3.5,43.5 + parent: 16504 + - uid: 22103 + components: + - type: Transform + pos: 3.5,42.5 + parent: 16504 + - uid: 22104 + components: + - type: Transform + pos: 3.5,41.5 + parent: 16504 + - uid: 22105 + components: + - type: Transform + pos: 3.5,40.5 + parent: 16504 + - uid: 22106 + components: + - type: Transform + pos: -0.5,40.5 + parent: 16504 + - uid: 22107 + components: + - type: Transform + pos: 1.5,40.5 + parent: 16504 + - uid: 22108 + components: + - type: Transform + pos: 2.5,40.5 + parent: 16504 + - uid: 22109 + components: + - type: Transform + pos: -6.5,36.5 + parent: 16504 + - uid: 22110 + components: + - type: Transform + pos: -6.5,38.5 + parent: 16504 + - uid: 22111 + components: + - type: Transform + pos: -6.5,37.5 + parent: 16504 + - uid: 22112 + components: + - type: Transform + pos: -5.5,41.5 + parent: 16504 + - uid: 22113 + components: + - type: Transform + pos: -5.5,40.5 + parent: 16504 + - uid: 22114 + components: + - type: Transform + pos: -4.5,41.5 + parent: 16504 + - uid: 22115 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 16504 + - uid: 22116 + components: + - type: Transform + pos: 2.5,13.5 + parent: 16504 + - uid: 22117 + components: + - type: Transform + pos: 3.5,13.5 + parent: 16504 + - uid: 22118 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 16504 + - uid: 22119 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 16504 + - uid: 22120 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 16504 + - uid: 22121 + components: + - type: Transform + pos: -19.5,20.5 + parent: 16504 + - uid: 22122 + components: + - type: Transform + pos: -19.5,25.5 + parent: 16504 + - uid: 22123 + components: + - type: Transform + pos: -19.5,26.5 + parent: 16504 + - uid: 22124 + components: + - type: Transform + pos: -19.5,19.5 + parent: 16504 + - uid: 22125 + components: + - type: Transform + pos: -5.5,39.5 + parent: 16504 + - uid: 22126 + components: + - type: Transform + pos: 5.5,39.5 + parent: 16504 + - uid: 22127 + components: + - type: Transform + pos: 6.5,39.5 + parent: 16504 + - uid: 22128 + components: + - type: Transform + pos: -6.5,39.5 + parent: 16504 + - uid: 22129 + components: + - type: Transform + pos: 10.5,39.5 + parent: 16504 + - uid: 22130 + components: + - type: Transform + pos: 11.5,39.5 + parent: 16504 + - uid: 22131 + components: + - type: Transform + pos: 12.5,39.5 + parent: 16504 + - uid: 22132 + components: + - type: Transform + pos: 13.5,39.5 + parent: 16504 + - uid: 22133 + components: + - type: Transform + pos: 14.5,39.5 + parent: 16504 + - uid: 22134 + components: + - type: Transform + pos: 15.5,39.5 + parent: 16504 + - uid: 22135 + components: + - type: Transform + pos: 16.5,39.5 + parent: 16504 + - uid: 22136 + components: + - type: Transform + pos: 17.5,39.5 + parent: 16504 + - uid: 22137 + components: + - type: Transform + pos: 18.5,39.5 + parent: 16504 + - uid: 22138 + components: + - type: Transform + pos: 18.5,38.5 + parent: 16504 + - uid: 22139 + components: + - type: Transform + pos: 18.5,37.5 + parent: 16504 + - uid: 22140 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 16504 + - uid: 22141 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 16504 + - uid: 22142 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 16504 + - uid: 22143 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 16504 + - uid: 22144 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 16504 + - uid: 22145 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 16504 + - uid: 22146 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 16504 + - uid: 22205 + components: + - type: Transform + pos: -5.5,16.5 + parent: 16504 - proto: WallReinforced entities: - uid: 687 @@ -131644,11 +135439,61 @@ entities: - type: Transform pos: 44.5,15.5 parent: 2 + - uid: 9589 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 - uid: 10162 components: - type: Transform pos: 41.5,53.5 parent: 2 + - uid: 10220 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: 11.5,71.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: 11.5,79.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 9.5,81.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 11.5,69.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 - uid: 10890 components: - type: Transform @@ -131681,6 +135526,51 @@ entities: rot: 3.141592653589793 rad pos: 53.5,74.5 parent: 2 + - uid: 12404 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + pos: 9.5,69.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: 9.5,79.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: 9.5,71.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 11.5,73.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: 11.5,81.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 - uid: 13020 components: - type: Transform @@ -135565,11 +139455,6 @@ entities: - type: Transform pos: 59.5,18.5 parent: 2 - - uid: 14689 - components: - - type: Transform - pos: 59.5,17.5 - parent: 2 - uid: 14690 components: - type: Transform @@ -139110,6 +142995,18 @@ entities: rot: 3.141592653589793 rad pos: 8.5,54.5 parent: 2 + - uid: 22397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 + - uid: 22398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 - proto: WallReinforcedDiagonal entities: - uid: 2412 @@ -139984,18 +143881,6 @@ entities: - type: Transform pos: 63.5,10.5 parent: 2 - - uid: 15429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,30.5 - parent: 2 - - uid: 15430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,30.5 - parent: 2 - uid: 15431 components: - type: Transform @@ -142547,6 +146432,11 @@ entities: - type: Transform pos: 34.5,51.5 parent: 2 + - uid: 18624 + components: + - type: Transform + pos: 22.5,45.5 + parent: 2 - uid: 21182 components: - type: Transform @@ -143038,11 +146928,6 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 21581 - components: - - type: Transform - pos: 40.5,51.5 - parent: 2 - proto: WaterVaporCanister entities: - uid: 15969 @@ -143183,55 +147068,47 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponTurretHostile +- proto: WeaponTurretNanoTrasen entities: - - uid: 5931 + - uid: 13098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 + pos: 17.5,-37.5 parent: 2 - - uid: 5932 + - uid: 13100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-39.5 + pos: 20.5,-33.5 parent: 2 - - uid: 9352 + - uid: 13112 components: - type: Transform - rot: 1.5707963267948966 rad pos: 18.5,-42.5 parent: 2 - - uid: 9589 + - uid: 13114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-39.5 + pos: 24.5,-33.5 parent: 2 - - uid: 12597 + - uid: 13159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-42.5 + pos: 17.5,-39.5 parent: 2 - - uid: 13018 + - uid: 14023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-37.5 + pos: 27.5,-37.5 parent: 2 - - uid: 21863 + - uid: 14689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-33.5 + pos: 27.5,-39.5 parent: 2 - - uid: 21868 + - uid: 18616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-33.5 + pos: 26.5,-42.5 parent: 2 - proto: WeaponTurretSyndicate entities: @@ -143242,11 +147119,21 @@ entities: parent: 16504 - proto: WeaponTurretSyndicateBroken entities: - - uid: 21069 + - uid: 20467 components: - type: Transform - pos: -4.5,-11.5 - parent: 16504 + pos: 45.5,34.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 - uid: 21070 components: - type: Transform @@ -143575,6 +147462,16 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 + - uid: 5763 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 - uid: 16006 components: - type: Transform @@ -144104,21 +148001,6 @@ entities: - type: Transform pos: 75.5,63.5 parent: 2 - - uid: 16095 - components: - - type: Transform - pos: 79.5,54.5 - parent: 2 - - uid: 16096 - components: - - type: Transform - pos: 78.5,54.5 - parent: 2 - - uid: 16097 - components: - - type: Transform - pos: 77.5,54.5 - parent: 2 - uid: 16098 components: - type: Transform @@ -144129,11 +148011,6 @@ entities: - type: Transform pos: 79.5,58.5 parent: 2 - - uid: 16100 - components: - - type: Transform - pos: 74.5,54.5 - parent: 2 - uid: 16101 components: - type: Transform @@ -144144,16 +148021,6 @@ entities: - type: Transform pos: 78.5,57.5 parent: 2 - - uid: 16103 - components: - - type: Transform - pos: 75.5,54.5 - parent: 2 - - uid: 16104 - components: - - type: Transform - pos: 76.5,54.5 - parent: 2 - uid: 16105 components: - type: Transform @@ -144216,6 +148083,29 @@ entities: parent: 2 - proto: WindowDirectional entities: + - uid: 8033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 - uid: 16117 components: - type: Transform @@ -144707,6 +148597,16 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-26.5 parent: 2 + - uid: 5770 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 - uid: 9700 components: - type: Transform @@ -144810,12 +148710,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-10.5 parent: 2 - - uid: 16212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,51.5 - parent: 2 - uid: 16223 components: - type: Transform diff --git a/Resources/Maps/corvax_pilgrim.yml b/Resources/Maps/corvax_pilgrim.yml index fa0a4f805ae..246ace7ff51 100644 --- a/Resources/Maps/corvax_pilgrim.yml +++ b/Resources/Maps/corvax_pilgrim.yml @@ -120,7 +120,6 @@ entities: - type: Parallax parallax: PilgrimAiur - type: MapLight - ambientLightColor: '#2E0F01FF' - type: MapAtmosphere space: False mixture: @@ -151,243 +150,243 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ewAAAAACewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAACJAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAACXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAADJAAAAAADDQAAAAAAJAAAAAAAJAAAAAACJAAAAAABJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAABZQAAAAACZQAAAAABZQAAAAADewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAACewAAAAADJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAABXQAAAAACXQAAAAABXQAAAAABJAAAAAADHwAAAAACIwAAAAACIwAAAAAAHwAAAAADJAAAAAABfgAAAAAAaAAAAAABNAAAAAAANAAAAAACNAAAAAACaAAAAAACfgAAAAAAfgAAAAAAJwAAAAACfgAAAAAAJAAAAAACHwAAAAAAIwAAAAADIwAAAAAAHwAAAAAAJAAAAAABfgAAAAAAaAAAAAADaAAAAAADaAAAAAABaAAAAAACaAAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAACJAAAAAABHwAAAAADIwAAAAACIwAAAAABHwAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAADegAAAAAAcQAAAAADcQAAAAABcAAAAAAAcQAAAAADcQAAAAACdQAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADcQAAAAACdgAAAAAAcAAAAAABdgAAAAAAcQAAAAABdQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAADewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAcQAAAAABdQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAAAewAAAAABJwAAAAAAJwAAAAADJwAAAAACJwAAAAAAcQAAAAAAdgAAAAAAcAAAAAADdgAAAAAAcQAAAAABdQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAADewAAAAACfgAAAAAAJwAAAAADJwAAAAACJwAAAAACcQAAAAACcQAAAAACcAAAAAADcQAAAAAAcQAAAAACdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAABAwAAAAAGAwAAAAAEAwAAAAAEfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAADIwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAAwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAAC + tiles: ewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAACewAAAAAAJAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAABXQAAAAAAXQAAAAADXQAAAAACJAAAAAAAJAAAAAADDQAAAAAAJAAAAAABJAAAAAAAJAAAAAACJAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAACZQAAAAAAZQAAAAAAZQAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAACewAAAAAAJAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAABXQAAAAABXQAAAAAAXQAAAAADJAAAAAACHwAAAAAAIwAAAAABIwAAAAADHwAAAAAAJAAAAAACfgAAAAAAaAAAAAAANAAAAAADNAAAAAAANAAAAAACaAAAAAABfgAAAAAAfgAAAAAAJwAAAAABfgAAAAAAJAAAAAAAHwAAAAABIwAAAAADIwAAAAABHwAAAAAAJAAAAAACfgAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAAAaAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACJAAAAAABHwAAAAACIwAAAAAAIwAAAAABHwAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAAAcQAAAAABcQAAAAAAcAAAAAAAcQAAAAADcQAAAAACdQAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABcQAAAAAAdgAAAAAAcAAAAAADdgAAAAAAcQAAAAAAdQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAAAewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAcQAAAAAAdQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAewAAAAABewAAAAAAewAAAAAAJwAAAAADJwAAAAADJwAAAAADJwAAAAABcQAAAAABdgAAAAAAcAAAAAAAdgAAAAAAcQAAAAABdQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAAAewAAAAAAfgAAAAAAJwAAAAAAJwAAAAACJwAAAAACcQAAAAAAcQAAAAABcAAAAAAAcQAAAAADcQAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAADIwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAAwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADIwAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAACHwAAAAADIwAAAAAAIwAAAAACIwAAAAABIwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAHwAAAAABIwAAAAADIwAAAAADIwAAAAABIwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAADHwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAABHwAAAAADfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAABJAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAABXQAAAAADXQAAAAAAXQAAAAAAJAAAAAADJAAAAAADDQAAAAADJAAAAAAAJAAAAAACJAAAAAACJAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAZQAAAAABZQAAAAAAZQAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAACewAAAAACewAAAAAAJAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAXQAAAAABXQAAAAABXQAAAAADegAAAAACegAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAAANAAAAAADNAAAAAAANAAAAAACXQAAAAAAegAAAAACDQAAAAABDQAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAANAAAAAAANAAAAAABHwAAAAABJAAAAAABHwAAAAACNAAAAAADNAAAAAAANAAAAAACXQAAAAABegAAAAADDQAAAAADegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAANAAAAAACNAAAAAACHwAAAAABJAAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAAAegAAAAACDQAAAAABegAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAANAAAAAAANAAAAAADIgAAAAADJAAAAAADIgAAAAACIgAAAAAAIgAAAAABHwAAAAABXQAAAAABegAAAAAADQAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAANAAAAAADNAAAAAABIgAAAAAAJAAAAAAAIgAAAAADIgAAAAADIgAAAAADHwAAAAABXQAAAAADegAAAAADDQAAAAACegAAAAADegAAAAABegAAAAAAegAAAAADfgAAAAAANAAAAAAANAAAAAADIgAAAAACJAAAAAABIgAAAAAAIgAAAAADIgAAAAADHwAAAAACXQAAAAADegAAAAABDQAAAAADegAAAAACegAAAAABegAAAAADegAAAAABfgAAAAAANAAAAAAANAAAAAADHwAAAAACJAAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAACegAAAAACDQAAAAADDQAAAAACegAAAAABegAAAAACegAAAAABfgAAAAAANAAAAAAANAAAAAADHwAAAAABJAAAAAACHwAAAAABNAAAAAADNAAAAAACNAAAAAAAXQAAAAABegAAAAAAegAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACNAAAAAADNAAAAAABNAAAAAAAXQAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAHwAAAAACIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAACHwAAAAADIwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAHwAAAAACIwAAAAADIwAAAAADIwAAAAADIwAAAAABHwAAAAABfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAABXQAAAAABXQAAAAABXQAAAAADJAAAAAADJAAAAAADDQAAAAACJAAAAAADJAAAAAACJAAAAAACJAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAZQAAAAACZQAAAAADZQAAAAABewAAAAACewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAABJAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAADXQAAAAAAXQAAAAAAXQAAAAAAegAAAAADegAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAANAAAAAACNAAAAAABNAAAAAADXQAAAAACegAAAAADDQAAAAADDQAAAAACegAAAAABegAAAAADegAAAAABfgAAAAAANAAAAAACNAAAAAACHwAAAAABJAAAAAACHwAAAAADNAAAAAADNAAAAAADNAAAAAABXQAAAAABFQAAAAAEDQAAAAABegAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAANAAAAAAANAAAAAACHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAABegAAAAAADQAAAAAAegAAAAADegAAAAABegAAAAADegAAAAADfgAAAAAANAAAAAADNAAAAAACIgAAAAACJAAAAAADIgAAAAADIgAAAAAAIgAAAAADHwAAAAACXQAAAAAAegAAAAABDQAAAAACegAAAAACegAAAAABegAAAAADegAAAAABfgAAAAAANAAAAAADNAAAAAABIgAAAAABJAAAAAABIgAAAAACIgAAAAADIgAAAAAAHwAAAAAAXQAAAAAAegAAAAABDQAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAANAAAAAACNAAAAAABIgAAAAAAJAAAAAACIgAAAAADIgAAAAAAIgAAAAABHwAAAAADXQAAAAAAegAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAANAAAAAADNAAAAAAAHwAAAAAAJAAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAXQAAAAACegAAAAADDQAAAAAADQAAAAACegAAAAABegAAAAADegAAAAAAfgAAAAAANAAAAAAANAAAAAADHwAAAAABJAAAAAACHwAAAAACNAAAAAADNAAAAAAANAAAAAADXQAAAAACFQAAAAAAegAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAANAAAAAACNAAAAAABNAAAAAABXQAAAAAD version: 6 -1,0: ind: -1,0 - tiles: XQAAAAADXQAAAAADXQAAAAADXQAAAAAAaAAAAAABewAAAAACewAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADXQAAAAAAZQAAAAACZQAAAAAAZQAAAAAAaAAAAAADJAAAAAAAJAAAAAACJAAAAAADDQAAAAACJAAAAAABJAAAAAADJAAAAAADJAAAAAACDQAAAAACJAAAAAAAJAAAAAABZQAAAAADXQAAAAACXQAAAAACXQAAAAACaAAAAAABewAAAAABewAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAADewAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAACaAAAAAADfgAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAZQAAAAABXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADHwAAAAACfgAAAAAAXQAAAAADZQAAAAAAXQAAAAADfgAAAAAANwAAAAADNwAAAAADfgAAAAAAfgAAAAAAHwAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABHwAAAAAAfgAAAAAAXQAAAAADZQAAAAACXQAAAAAAfgAAAAAANwAAAAAANwAAAAABNgAAAAACfgAAAAAAIwAAAAADIwAAAAABIwAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAACfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAAAfgAAAAAANwAAAAADNwAAAAABNgAAAAACfgAAAAAAIwAAAAABOQAAAAABOQAAAAADOQAAAAABOQAAAAACbwAAAAAAIwAAAAAAfgAAAAAAXQAAAAABDQAAAAADXQAAAAABfgAAAAAANgAAAAADNgAAAAADNgAAAAADfgAAAAAAIwAAAAACOQAAAAABOQAAAAAAOQAAAAABbwAAAAAAEgAAAAABIwAAAAABfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAABaAAAAAACNQAAAAACNQAAAAAANgAAAAACfgAAAAAAIwAAAAAAOQAAAAADOQAAAAABbwAAAAAAEgAAAAAAEgAAAAABIwAAAAADfgAAAAAAXQAAAAAAZQAAAAABXQAAAAADfgAAAAAANQAAAAACNQAAAAAANgAAAAACfgAAAAAAIwAAAAACOQAAAAAAbwAAAAAAEgAAAAACEgAAAAADEgAAAAABIwAAAAABfgAAAAAAXQAAAAABZQAAAAACXQAAAAADfgAAAAAANgAAAAADNgAAAAAANgAAAAADfgAAAAAAIwAAAAACbwAAAAAAEgAAAAAAEgAAAAACEgAAAAADEgAAAAAAIwAAAAADfgAAAAAAXQAAAAABZQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAADQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABXQAAAAACZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZQAAAAAAXQAAAAABfgAAAAAA + tiles: XQAAAAAAXQAAAAACXQAAAAADXQAAAAADaAAAAAAAewAAAAADewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAACewAAAAABewAAAAAAewAAAAABXQAAAAABZQAAAAACZQAAAAADZQAAAAADaAAAAAACJAAAAAAAJAAAAAABJAAAAAACDQAAAAACJAAAAAADJAAAAAAAJAAAAAADJAAAAAAADQAAAAAAJAAAAAAAJAAAAAAAZQAAAAACXQAAAAAAXQAAAAACXQAAAAABaAAAAAADewAAAAACewAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAACfgAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAAAHwAAAAAAfgAAAAAAXQAAAAABZQAAAAACXQAAAAABfgAAAAAANwAAAAABNwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAHwAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAABfgAAAAAANwAAAAACNwAAAAACNgAAAAADfgAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAADfgAAAAAAXQAAAAACZQAAAAAAXQAAAAABfgAAAAAANwAAAAADNwAAAAABNgAAAAACfgAAAAAAIwAAAAACOQAAAAACOQAAAAACOQAAAAABOQAAAAACbwAAAAAAIwAAAAADfgAAAAAAXQAAAAADDQAAAAAAXQAAAAADfgAAAAAANgAAAAAANgAAAAABNgAAAAAAfgAAAAAAIwAAAAADOQAAAAAAOQAAAAABOQAAAAADbwAAAAAAEgAAAAABIwAAAAABfgAAAAAAXQAAAAACZQAAAAABXQAAAAABaAAAAAADNQAAAAAANQAAAAABNgAAAAADfgAAAAAAIwAAAAACOQAAAAABOQAAAAABbwAAAAAAEgAAAAABEgAAAAACIwAAAAADfgAAAAAAXQAAAAAAZQAAAAADXQAAAAADfgAAAAAANQAAAAABNQAAAAABNgAAAAADfgAAAAAAIwAAAAADOQAAAAABbwAAAAAAEgAAAAADEgAAAAADEgAAAAABIwAAAAACfgAAAAAAXQAAAAABZQAAAAAAXQAAAAACfgAAAAAANgAAAAACNgAAAAADNgAAAAAAfgAAAAAAIwAAAAAAbwAAAAAAEgAAAAAAEgAAAAABEgAAAAAAEgAAAAACIwAAAAADfgAAAAAAXQAAAAADZQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAADQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADXQAAAAACZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAAAfgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: fgAAAAAAegAAAAAAegAAAAACQAAAAAAAegAAAAABegAAAAABegAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAAXQAAAAABZQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAegAAAAABegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAAAfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACegAAAAACegAAAAADegAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAABaAAAAAAAfgAAAAAAZQAAAAABXQAAAAADXQAAAAAAXQAAAAAAaAAAAAADewAAAAABewAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAACewAAAAABewAAAAACewAAAAABewAAAAADXQAAAAADZQAAAAAAZQAAAAADZQAAAAAAaAAAAAADJAAAAAAAJAAAAAACJAAAAAAADQAAAAABJAAAAAACJAAAAAABJAAAAAADJAAAAAADDQAAAAADJAAAAAADJAAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADaAAAAAABewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAADewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADDQAAAAACDQAAAAAADQAAAAABDQAAAAACegAAAAABegAAAAADfAAAAAADfAAAAAABfAAAAAABfgAAAAAAfAAAAAACfAAAAAABfAAAAAACfAAAAAACegAAAAABegAAAAACDQAAAAABDQAAAAABDQAAAAACDQAAAAAAegAAAAAAegAAAAADfAAAAAAAfAAAAAADfAAAAAABfAAAAAADfAAAAAAAegAAAAACegAAAAABfAAAAAAAegAAAAABegAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABegAAAAACegAAAAAAfAAAAAAAegAAAAACegAAAAABDQAAAAAADQAAAAABDQAAAAACDQAAAAABegAAAAAAegAAAAADXwAAAAACXwAAAAAAXwAAAAAAfgAAAAAAfAAAAAADegAAAAACegAAAAAAfAAAAAADegAAAAAAegAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAAAegAAAAADegAAAAAAHwAAAAAAHwAAAAABHwAAAAACaAAAAAABfAAAAAABegAAAAADegAAAAADfAAAAAACegAAAAABegAAAAAADQAAAAACDQAAAAABDQAAAAABDQAAAAACegAAAAADegAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfAAAAAACegAAAAACegAAAAACfAAAAAADegAAAAACegAAAAADDQAAAAABDQAAAAABDQAAAAABDQAAAAABegAAAAAAegAAAAACXwAAAAAAXwAAAAAAXwAAAAABfgAAAAAAfAAAAAABfAAAAAACfAAAAAAAfAAAAAADegAAAAAAegAAAAADDQAAAAAADQAAAAACDQAAAAAADQAAAAADegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAAAegAAAAAAegAAAAAC + tiles: fgAAAAAAegAAAAADegAAAAACQAAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABQAAAAAAAegAAAAADegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAABZQAAAAABXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAAAfgAAAAAAZQAAAAABXQAAAAAAXQAAAAAAXQAAAAADaAAAAAABewAAAAACewAAAAABewAAAAAAewAAAAACewAAAAACewAAAAABewAAAAACewAAAAACewAAAAABewAAAAAAewAAAAAAXQAAAAACZQAAAAAAZQAAAAACZQAAAAADaAAAAAABJAAAAAAAJAAAAAAAJAAAAAABDQAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAACDQAAAAADJAAAAAAAJAAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAaAAAAAACewAAAAACewAAAAABewAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAABewAAAAACewAAAAABewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACDQAAAAADDQAAAAACDQAAAAACDQAAAAAAegAAAAACegAAAAACfAAAAAAAfAAAAAAAfAAAAAADfgAAAAAAfAAAAAACfAAAAAACfAAAAAAAfAAAAAAAegAAAAABegAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADegAAAAACegAAAAADfAAAAAABfAAAAAABfAAAAAADfAAAAAADfAAAAAABegAAAAACegAAAAACfAAAAAAAegAAAAADegAAAAACDQAAAAADDQAAAAADDQAAAAACDQAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAegAAAAACegAAAAACfAAAAAAAegAAAAADegAAAAACDQAAAAAADQAAAAACDQAAAAADDQAAAAACegAAAAAAegAAAAACXwAAAAABXwAAAAAAXwAAAAADfgAAAAAAfAAAAAAAegAAAAABegAAAAAAfAAAAAAAegAAAAAAegAAAAABDQAAAAACDQAAAAABDQAAAAACDQAAAAABegAAAAAAegAAAAABHwAAAAACHwAAAAABHwAAAAABaAAAAAABfAAAAAACegAAAAABegAAAAACfAAAAAADegAAAAACegAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAADegAAAAAAegAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfAAAAAABegAAAAABegAAAAADfAAAAAABegAAAAAAegAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAABFQAAAAACegAAAAACXwAAAAAAXwAAAAACXwAAAAAAfgAAAAAAfAAAAAACfAAAAAAAfAAAAAABfAAAAAABegAAAAADegAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADDQAAAAADDQAAAAADDQAAAAAADQAAAAACegAAAAABegAAAAAD version: 6 -2,0: ind: -2,0 - tiles: YgAAAAACfgAAAAAAXQAAAAACDQAAAAABXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAADZQAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABXQAAAAACHwAAAAABfgAAAAAAXQAAAAABZQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAXQAAAAAAZQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACDQAAAAACHwAAAAACfgAAAAAAXQAAAAACZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZQAAAAACXQAAAAACHwAAAAAAfgAAAAAAXQAAAAAADQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADZQAAAAADXQAAAAABXQAAAAABJAAAAAAAfgAAAAAAXQAAAAACZQAAAAADXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAABZQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAYgAAAAADfgAAAAAAXQAAAAACZQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAADQAAAAADXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAYgAAAAACfgAAAAAAXQAAAAACZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZQAAAAACXQAAAAADXQAAAAADfgAAAAAAJAAAAAAAfgAAAAAAYgAAAAABfgAAAAAAXQAAAAADZQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAANgAAAAAANgAAAAACfgAAAAAAfgAAAAAAXQAAAAACDQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAADZQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNQAAAAABHwAAAAADfgAAAAAAXQAAAAACZQAAAAAAaAAAAAADXQAAAAADXQAAAAABDQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANgAAAAABNQAAAAACHwAAAAACfgAAAAAAXQAAAAABaAAAAAACXQAAAAADXQAAAAAAZQAAAAABXQAAAAADXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAACHwAAAAABfgAAAAAAaAAAAAACZQAAAAAAXQAAAAACZQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAZQAAAAAAZQAAAAABXQAAAAABXQAAAAABHwAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAACDQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: YgAAAAAAfgAAAAAAXQAAAAABDQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAABfgAAAAAAXQAAAAAAZQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABXQAAAAABHwAAAAAAfgAAAAAAXQAAAAACZQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADDQAAAAACHwAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZQAAAAAAXQAAAAABHwAAAAACfgAAAAAAXQAAAAABDQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZQAAAAADXQAAAAACXQAAAAADJAAAAAACfgAAAAAAXQAAAAADZQAAAAACXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAADZQAAAAAAXQAAAAACXQAAAAABfgAAAAAAYgAAAAADfgAAAAAAXQAAAAAAZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABDQAAAAACXQAAAAADXQAAAAABHwAAAAABfgAAAAAAYgAAAAADfgAAAAAAXQAAAAACZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZQAAAAABXQAAAAAAXQAAAAACfgAAAAAAJAAAAAACfgAAAAAAYgAAAAACfgAAAAAAXQAAAAACZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAACfgAAAAAAfgAAAAAAXQAAAAADDQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAZQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABNQAAAAAAHwAAAAACfgAAAAAAXQAAAAAAZQAAAAADaAAAAAACXQAAAAADXQAAAAABDQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANgAAAAABNQAAAAADHwAAAAABfgAAAAAAXQAAAAAAaAAAAAADXQAAAAACXQAAAAACZQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAADHwAAAAADfgAAAAAAaAAAAAABZQAAAAAAXQAAAAABZQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADZQAAAAACZQAAAAABXQAAAAADXQAAAAAAHwAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABDQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: fgAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZQAAAAACXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADDQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACXQAAAAACXQAAAAAAZQAAAAADXQAAAAACXQAAAAAAbAAAAAAAJAAAAAACXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAADaAAAAAACfgAAAAAAXQAAAAABXQAAAAAAZQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADDQAAAAAANQAAAAACfgAAAAAAXQAAAAABZQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABNQAAAAACfgAAAAAAXQAAAAABZQAAAAADXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACNQAAAAACaAAAAAABXQAAAAABDQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAXQAAAAADZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAewAAAAABfgAAAAAAcAAAAAAAcAAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAANQAAAAABfgAAAAAAXQAAAAADZQAAAAAAXQAAAAAAfgAAAAAAewAAAAADegAAAAAAfAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAewAAAAADegAAAAABfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACaAAAAAABJAAAAAADJAAAAAAAJAAAAAAAJAAAAAADfgAAAAAAZQAAAAABaAAAAAAAZQAAAAAADQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAAAXwAAAAADXwAAAAAAXwAAAAABXwAAAAABXwAAAAACXwAAAAADXwAAAAACXQAAAAABaAAAAAABXQAAAAADZQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABZQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACYgAAAAACfgAAAAAAXQAAAAACZQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAABXwAAAAABYgAAAAACfgAAAAAAXQAAAAADZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAABXwAAAAADXwAAAAADXwAAAAACXwAAAAADXwAAAAABfgAAAAAA + tiles: fgAAAAAAfgAAAAAAXQAAAAABZQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADZQAAAAADXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABDQAAAAABXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAXQAAAAAAXQAAAAADZQAAAAADXQAAAAADXQAAAAADbAAAAAAAJAAAAAAAXQAAAAABZQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAADaAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACDQAAAAADNQAAAAADfgAAAAAAXQAAAAADZQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAANQAAAAACfgAAAAAAXQAAAAABZQAAAAABXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAANQAAAAADaAAAAAAAXQAAAAABDQAAAAACXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAfgAAAAAANQAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAewAAAAADfgAAAAAAcAAAAAAAcAAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAANQAAAAACfgAAAAAAXQAAAAABZQAAAAAAXQAAAAABfgAAAAAAewAAAAAAegAAAAACfAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAADfgAAAAAAewAAAAAAegAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAACXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAADXQAAAAADZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACaAAAAAADJAAAAAABJAAAAAACJAAAAAACJAAAAAACfgAAAAAAZQAAAAADaAAAAAAAZQAAAAADDQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAABXwAAAAADXwAAAAABXwAAAAACXwAAAAAAXwAAAAAAXwAAAAABXwAAAAABXQAAAAADaAAAAAACXQAAAAACZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAACYgAAAAABfgAAAAAAXQAAAAABZQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADXwAAAAADYgAAAAACfgAAAAAAXQAAAAADZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAADXwAAAAACXwAAAAAAXwAAAAABXwAAAAADXwAAAAACfgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: NQAAAAAANwAAAAACNQAAAAADDAAAAAABDAAAAAADDAAAAAABaAAAAAACaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAANgAAAAAANQAAAAABNQAAAAABDAAAAAACDAAAAAADDAAAAAAAKQAAAAAAKQAAAAADKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAABNQAAAAABNgAAAAAADAAAAAADDAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAADAAAAAABNwAAAAADNQAAAAACNwAAAAADNQAAAAACDAAAAAAADAAAAAACDAAAAAAADAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACewAAAAABfgAAAAAADAAAAAABNgAAAAABNgAAAAADNQAAAAAANQAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAACegAAAAAAegAAAAADDAAAAAABDAAAAAABNQAAAAADNgAAAAACNQAAAAADNQAAAAABDAAAAAACDAAAAAAADAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADewAAAAABfgAAAAAAegAAAAABDAAAAAACDAAAAAAANQAAAAACNQAAAAADNwAAAAACDAAAAAACDAAAAAADDAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADDAAAAAADDAAAAAAANQAAAAABNgAAAAAANgAAAAADDAAAAAADKQAAAAAEKQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAewAAAAADegAAAAABDAAAAAAANQAAAAACNQAAAAABNgAAAAAANQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfAAAAAADfgAAAAAAfgAAAAAADAAAAAABDAAAAAABNwAAAAADNwAAAAABNQAAAAACKQAAAAACKQAAAAAAKQAAAAADKQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAADfAAAAAABfAAAAAACDAAAAAABNQAAAAAANgAAAAABNQAAAAACNQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACfAAAAAACfAAAAAABDAAAAAABNQAAAAAANQAAAAACNwAAAAAADAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAACfAAAAAADfAAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAADQAAAAAAegAAAAABegAAAAACXQAAAAACXQAAAAABZQAAAAAAXQAAAAABZQAAAAABfgAAAAAAegAAAAADegAAAAACDAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAACZQAAAAADZQAAAAAADQAAAAABXQAAAAAAZQAAAAACaAAAAAACegAAAAABegAAAAAADAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACZQAAAAAAfgAAAAAAegAAAAADegAAAAACDAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAC + tiles: NQAAAAACNwAAAAAANQAAAAACDAAAAAACDAAAAAADDAAAAAACaAAAAAADaAAAAAACaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAANgAAAAABNQAAAAABNQAAAAABDAAAAAAADAAAAAADDAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAACNQAAAAACNgAAAAADDAAAAAACDAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAADAAAAAABNwAAAAAANQAAAAADNwAAAAADNQAAAAACDAAAAAABDAAAAAACDAAAAAABDAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAewAAAAAAfgAAAAAADAAAAAACNgAAAAAANgAAAAAANQAAAAADNQAAAAABDAAAAAADDAAAAAAADAAAAAADDAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAAAegAAAAACegAAAAADDAAAAAADDAAAAAAANQAAAAADNgAAAAAANQAAAAADNQAAAAAADAAAAAACDAAAAAABDAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADewAAAAAAfgAAAAAAegAAAAACDAAAAAADDAAAAAAANQAAAAABNQAAAAAANwAAAAACDAAAAAABDAAAAAABDAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADDAAAAAABDAAAAAACNQAAAAACNgAAAAADNgAAAAACDAAAAAABKQAAAAAAKQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAewAAAAADegAAAAADDAAAAAAANQAAAAACNQAAAAACNgAAAAAANQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfgAAAAAAfgAAAAAADAAAAAABDAAAAAABNwAAAAAANwAAAAACNQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAAAfAAAAAAAfAAAAAAADAAAAAACNQAAAAADNgAAAAACNQAAAAADNQAAAAACKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACfAAAAAADfAAAAAACDAAAAAACNQAAAAAANQAAAAABNwAAAAAADAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAACfAAAAAADfAAAAAAAfgAAAAAAaAAAAAAAaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACDQAAAAAAegAAAAACegAAAAABXQAAAAACXQAAAAAAZQAAAAABXQAAAAABZQAAAAACfgAAAAAAegAAAAADegAAAAAADAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAZQAAAAADZQAAAAAADQAAAAAAXQAAAAABZQAAAAAAaAAAAAAAegAAAAAAegAAAAABDAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAZQAAAAABfgAAAAAAegAAAAABegAAAAADDAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAC version: 6 -1,-2: ind: -1,-2 - tiles: cAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADaAAAAAABNwAAAAABNQAAAAABNgAAAAABNQAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAADAAAAAADDAAAAAACDAAAAAADDAAAAAADfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAABfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJAAAAAABDAAAAAABDAAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAABDAAAAAADegAAAAAAegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAABDAAAAAAAegAAAAACegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAADegAAAAADegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAABegAAAAABegAAAAACegAAAAADegAAAAAAfgAAAAAAXQAAAAADDQAAAAAAZQAAAAACZQAAAAACegAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAADZQAAAAADXQAAAAAAXQAAAAAA + tiles: cAAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAADaAAAAAACNwAAAAABNQAAAAABNgAAAAABNQAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAACfgAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAABDAAAAAACDAAAAAADDAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJAAAAAAADAAAAAADDAAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADDAAAAAACegAAAAADegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAABDAAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABegAAAAACegAAAAABegAAAAACegAAAAACfgAAAAAAXQAAAAADDQAAAAAAZQAAAAADZQAAAAACegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAABXQAAAAAD version: 6 -2,-2: ind: -2,-2 - tiles: YgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAADaAAAAAADcAAAAAABcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAAAZQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAAAXQAAAAACHwAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADZQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACDQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZQAAAAADZQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfAAAAAADfAAAAAAAfAAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAYwAAAAABfgAAAAAAaAAAAAABZQAAAAAAXQAAAAABZQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfAAAAAAAfAAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACXQAAAAADXQAAAAABZQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfAAAAAACfAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAdQAAAAADHwAAAAADXQAAAAACZQAAAAACaAAAAAADXQAAAAADXQAAAAADDQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAACXQAAAAACDQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABZQAAAAADXQAAAAADXQAAAAACHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAdQAAAAABHwAAAAADXQAAAAACZQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADZQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYwAAAAABfgAAAAAAXQAAAAAAZQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACDQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAA + tiles: YgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAABYgAAAAABaAAAAAAAcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAABZQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAADXQAAAAABXQAAAAACHwAAAAABJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADDQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAXQAAAAADZQAAAAAAZQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfAAAAAADfAAAAAABfAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAYwAAAAAAfgAAAAAAaAAAAAAAZQAAAAABXQAAAAAAZQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABXQAAAAAAZQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAdQAAAAADHwAAAAACXQAAAAAAZQAAAAADaAAAAAAAXQAAAAACXQAAAAAADQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAACXQAAAAAADQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAACZQAAAAABXQAAAAACXQAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAdQAAAAADHwAAAAAAXQAAAAACZQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAZQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAYwAAAAACfgAAAAAAXQAAAAADZQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADDQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: cwAAAAABcAAAAAACdQAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAJAAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADaAAAAAADcAAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAADfgAAAAAAHwAAAAAAHwAAAAACJAAAAAAAXQAAAAACZQAAAAAAXQAAAAACXQAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABdQAAAAABdQAAAAABfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZQAAAAAAXQAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAADAAAAAABcAAAAAAAXQAAAAAAXQAAAAADDQAAAAAAdgAAAAAADQAAAAADdgAAAAAAcAAAAAAAdQAAAAADdgAAAAAADQAAAAABcQAAAAADDQAAAAACdgAAAAAAdQAAAAAAcwAAAAABcwAAAAACcwAAAAACXQAAAAAAXQAAAAACdgAAAAAADQAAAAAAdgAAAAAAcAAAAAABfgAAAAAAdgAAAAAAcQAAAAADcQAAAAAAcQAAAAADdgAAAAAAfgAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAXQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAcAAAAAABdQAAAAAAdgAAAAAADQAAAAACcQAAAAAADQAAAAAAdgAAAAAAdQAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAAADQAAAAADdgAAAAAADQAAAAACcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAABDAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdgAAAAAADQAAAAADdgAAAAAAcAAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAABcAAAAAADcAAAAAAAcAAAAAABYwAAAAADYwAAAAAAdgAAAAAADQAAAAACdgAAAAAAcAAAAAADdQAAAAABdgAAAAAADQAAAAABDQAAAAACDQAAAAACdgAAAAAAdQAAAAACcAAAAAAADQAAAAABcAAAAAAAYwAAAAAAYwAAAAACcAAAAAABcAAAAAABcAAAAAADcAAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAABcAAAAAAAXQAAAAACcAAAAAACcAAAAAACcAAAAAACfgAAAAAAdQAAAAADdQAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABXQAAAAAAXQAAAAACDQAAAAAAcAAAAAACdQAAAAACcAAAAAAAcwAAAAABcAAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAJAAAAAABcAAAAAADXQAAAAADcAAAAAAAcAAAAAACcAAAAAADdQAAAAADcAAAAAABcwAAAAADcAAAAAAAdQAAAAACdgAAAAAAcQAAAAAAcQAAAAADdgAAAAAAfgAAAAAAewAAAAAAcAAAAAACDQAAAAACcAAAAAADYwAAAAABYwAAAAADdQAAAAAAcAAAAAACcwAAAAACcAAAAAAAfgAAAAAAdgAAAAAAcQAAAAACcQAAAAADdgAAAAAAfgAAAAAAJAAAAAADcAAAAAACcAAAAAAAcAAAAAADYwAAAAADYwAAAAAC + tiles: cwAAAAABcAAAAAACdQAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAJAAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACaAAAAAADcAAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAADfgAAAAAAHwAAAAACHwAAAAADJAAAAAABXQAAAAABZQAAAAADXQAAAAADXQAAAAABdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACdQAAAAACdQAAAAABfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACZQAAAAACXQAAAAADQgAAAAADQgAAAAACQgAAAAABQgAAAAACfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAADAAAAAAAcAAAAAADXQAAAAACXQAAAAABDQAAAAABdgAAAAAADQAAAAABdgAAAAAAQgAAAAAAdQAAAAABdgAAAAAADQAAAAAAcQAAAAABDQAAAAAAdgAAAAAAdQAAAAABcwAAAAABcwAAAAAAcwAAAAABXQAAAAABXQAAAAACdgAAAAAADQAAAAABdgAAAAAAQgAAAAAAfgAAAAAAdgAAAAAAcQAAAAACcQAAAAADcQAAAAABdgAAAAAAfgAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAXQAAAAABdgAAAAAAQgAAAAABdgAAAAAAQgAAAAADdQAAAAADdgAAAAAADQAAAAABcQAAAAAADQAAAAACdgAAAAAAdQAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAABDQAAAAADQgAAAAADDQAAAAAAQgAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAADAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAADdgAAAAAAQgAAAAADdgAAAAAAQgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdgAAAAAADQAAAAABdgAAAAAAQgAAAAACfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAACcAAAAAABcAAAAAAAcAAAAAACYwAAAAABYwAAAAADdgAAAAAADQAAAAABdgAAAAAAQgAAAAADdQAAAAABdgAAAAAADQAAAAADDQAAAAAADQAAAAACdgAAAAAAdQAAAAAAcAAAAAABDQAAAAABcAAAAAAAYwAAAAAAYwAAAAACQgAAAAADQgAAAAADQgAAAAACQgAAAAACfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAACcAAAAAACXQAAAAACcAAAAAABcAAAAAACcAAAAAABfgAAAAAAdQAAAAAAdQAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAXQAAAAABDQAAAAACcAAAAAAAdQAAAAACcAAAAAACcwAAAAAAcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAJAAAAAAAcAAAAAACXQAAAAAAcAAAAAABcAAAAAACcAAAAAACdQAAAAACcAAAAAADcwAAAAACcAAAAAABdQAAAAABdgAAAAAAcQAAAAABcQAAAAACdgAAAAAAfgAAAAAAewAAAAAAcAAAAAACDQAAAAACcAAAAAACYwAAAAACYwAAAAACdQAAAAAAcAAAAAAAcwAAAAADcAAAAAACfgAAAAAAdgAAAAAAcQAAAAACcQAAAAAAdgAAAAAAfgAAAAAAJAAAAAABcAAAAAADcAAAAAAAcAAAAAACYwAAAAABYwAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: dQAAAAACcAAAAAAAcwAAAAABcAAAAAABfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAegAAAAABegAAAAABHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABegAAAAABfgAAAAAANQAAAAADNQAAAAACegAAAAACNQAAAAACNQAAAAADNQAAAAADfgAAAAAANQAAAAADNQAAAAADNQAAAAACNQAAAAADfAAAAAACfAAAAAACfAAAAAADfAAAAAACfgAAAAAANQAAAAACNQAAAAADegAAAAAANQAAAAADNQAAAAABNQAAAAACfgAAAAAANQAAAAABZwAAAAADZwAAAAABZwAAAAACfAAAAAACfAAAAAACegAAAAADegAAAAABfgAAAAAANQAAAAABNQAAAAAAegAAAAABNQAAAAABNQAAAAADNQAAAAADfgAAAAAANQAAAAABZwAAAAABZwAAAAABZwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAABfgAAAAAANQAAAAADZwAAAAADZwAAAAAAZwAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAABfgAAAAAAfAAAAAACfAAAAAABewAAAAACewAAAAACewAAAAABewAAAAADfgAAAAAANQAAAAACNQAAAAABNQAAAAAANQAAAAAAegAAAAACegAAAAAAegAAAAABIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAewAAAAADewAAAAABewAAAAACIwAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABegAAAAACegAAAAADegAAAAADIwAAAAAADQAAAAADZQAAAAABZQAAAAAAZQAAAAAAZQAAAAAADQAAAAABZQAAAAABZQAAAAACZQAAAAABZQAAAAACDQAAAAADZQAAAAACIwAAAAADIwAAAAADIwAAAAACIwAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIAAAAAABIAAAAAACIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAADfgAAAAAAHwAAAAAAIwAAAAABIAAAAAAAIAAAAAABIwAAAAAAHwAAAAAAfgAAAAAAYgAAAAADYgAAAAACfgAAAAAAYgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAIwAAAAAAIAAAAAAAIAAAAAABIwAAAAABHwAAAAAAfgAAAAAAYgAAAAADYgAAAAAAfgAAAAAAYgAAAAAA + tiles: dQAAAAADcAAAAAABcwAAAAACcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAABHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAANQAAAAACNQAAAAADegAAAAABNQAAAAABNQAAAAABNQAAAAACfgAAAAAANQAAAAACNQAAAAACNQAAAAAANQAAAAACfAAAAAAAfAAAAAADfAAAAAADfAAAAAAAfgAAAAAANQAAAAACNQAAAAADegAAAAABNQAAAAADNQAAAAADNQAAAAABfgAAAAAANQAAAAADZwAAAAADZwAAAAADZwAAAAABfAAAAAADfAAAAAACegAAAAACegAAAAABfgAAAAAANQAAAAABNQAAAAACegAAAAAANQAAAAACNQAAAAACNQAAAAABfgAAAAAANQAAAAABZwAAAAAAZwAAAAACZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfAAAAAACewAAAAACewAAAAADewAAAAABewAAAAABfgAAAAAANQAAAAACZwAAAAADZwAAAAADZwAAAAADIwAAAAAAIwAAAAADIwAAAAABIwAAAAACfgAAAAAAfAAAAAABfAAAAAACewAAAAACewAAAAABewAAAAADewAAAAABfgAAAAAANQAAAAABNQAAAAADNQAAAAADNQAAAAACegAAAAABegAAAAADegAAAAACIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAewAAAAACewAAAAADewAAAAACIwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACegAAAAADegAAAAADegAAAAAAIwAAAAACDQAAAAACZQAAAAACZQAAAAABZQAAAAABZQAAAAACDQAAAAADZQAAAAABZQAAAAACZQAAAAACZQAAAAABDQAAAAACZQAAAAACIwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAIwAAAAAAIAAAAAAAIAAAAAABIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAABJAAAAAACfgAAAAAAHwAAAAAAIwAAAAADIAAAAAABIAAAAAADIwAAAAACHwAAAAACfgAAAAAAYgAAAAADYgAAAAAAfgAAAAAAYgAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAADIwAAAAAAIAAAAAAAIAAAAAACIwAAAAACHwAAAAABfgAAAAAAYgAAAAADYgAAAAACfgAAAAAAYgAAAAAD version: 6 -3,0: ind: -3,0 - tiles: HwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAIwAAAAADIAAAAAABIAAAAAACIwAAAAABHwAAAAACfgAAAAAAYgAAAAADYgAAAAAAfgAAAAAAYgAAAAACfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAYgAAAAAAYgAAAAABfgAAAAAAYgAAAAAAYgAAAAABfgAAAAAAYgAAAAABcAAAAAAAcQAAAAADcQAAAAAAcAAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAYgAAAAACYgAAAAAAfgAAAAAAYgAAAAADYgAAAAADfgAAAAAAYgAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAYgAAAAADYgAAAAAAfgAAAAAAYgAAAAABYgAAAAADfgAAAAAAYgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAABfgAAAAAAJAAAAAACHwAAAAADJAAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAACJAAAAAACJAAAAAADJAAAAAACJAAAAAACJAAAAAADJAAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAACHwAAAAADJAAAAAABJAAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAJAAAAAACHwAAAAAAHwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAADHwAAAAADJAAAAAADJAAAAAADJQAAAAAAJAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAC + tiles: HwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACIwAAAAAAIAAAAAABIAAAAAAAIwAAAAADHwAAAAADfgAAAAAAYgAAAAABYgAAAAACfgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAYgAAAAADYgAAAAADfgAAAAAAYgAAAAAAYgAAAAADfgAAAAAAYgAAAAAAcAAAAAAAcQAAAAAAcQAAAAADcAAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAYgAAAAAAYgAAAAADfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAYgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAYgAAAAABYgAAAAAAfgAAAAAAYgAAAAADYgAAAAADfgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABJAAAAAADJAAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABIwAAAAAAIwAAAAABIwAAAAADIwAAAAACfgAAAAAAJAAAAAABHwAAAAABJAAAAAADJAAAAAABJAAAAAADJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAACJAAAAAACJQAAAAAAJAAAAAACfgAAAAAAJAAAAAABHwAAAAACHwAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAABHwAAAAADJAAAAAABJAAAAAABJQAAAAAAJAAAAAACfgAAAAAAJAAAAAADHwAAAAABHwAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAADHwAAAAABJAAAAAABJAAAAAACJQAAAAAAJAAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: HwAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABYgAAAAAAYgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAIwAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACIwAAAAADIwAAAAADIAAAAAADIAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAIwAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIwAAAAAAIwAAAAACIAAAAAAAIAAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAIAAAAAAAIAAAAAABIwAAAAADIwAAAAABIwAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAIAAAAAABIAAAAAABIwAAAAABIwAAAAABIwAAAAACIAAAAAAAIAAAAAACIwAAAAABIwAAAAAAIAAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAABIAAAAAACIwAAAAABIwAAAAACIwAAAAADIAAAAAADIAAAAAABIwAAAAAAIwAAAAAAIAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIAAAAAAAIAAAAAABIAAAAAACIwAAAAADfgAAAAAAHwAAAAABYgAAAAAA + tiles: HwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAWAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADYgAAAAADYgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADIwAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIwAAAAABIwAAAAAAIAAAAAABIAAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACIwAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIwAAAAAAIwAAAAAAIAAAAAAAIAAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAIAAAAAABIAAAAAACIwAAAAACIwAAAAABIwAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACIAAAAAACIAAAAAABIwAAAAAAIwAAAAADIwAAAAACIAAAAAACIAAAAAABIwAAAAAAIwAAAAAAIAAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAADIAAAAAAAIwAAAAABIwAAAAAAIwAAAAABIAAAAAACIAAAAAADIwAAAAACIwAAAAACIAAAAAACHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIAAAAAACIAAAAAABIAAAAAACIwAAAAABfgAAAAAAHwAAAAACYgAAAAAC version: 6 -3,1: ind: -3,1 - tiles: JAAAAAABJAAAAAADJQAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAWAAAAAACWAAAAAACIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAABbAAAAAAAbQAAAAAAfgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAIwAAAAABWAAAAAAAWAAAAAACIwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAYgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAIAAAAAACIAAAAAAAIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAADIAAAAAADIAAAAAADIwAAAAACfgAAAAAADAAAAAABbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABIAAAAAAAIAAAAAADIAAAAAABfgAAAAAADAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIAAAAAABIwAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIAAAAAAAIwAAAAADIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAADewAAAAABewAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAABewAAAAACewAAAAADewAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAABewAAAAACewAAAAADegAAAAABfAAAAAADfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: JAAAAAADJAAAAAACJQAAAAAAJAAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACWAAAAAACWAAAAAABIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADbAAAAAAAbQAAAAAAfgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAABIwAAAAAAWAAAAAADWAAAAAABIwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAYgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACIAAAAAADIAAAAAABIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAACIAAAAAADIAAAAAAAIwAAAAADfgAAAAAADAAAAAADbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACIAAAAAABIAAAAAAAIAAAAAAAfgAAAAAADAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIAAAAAAAIwAAAAADIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIAAAAAABIwAAAAABIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAADewAAAAADewAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAABegAAAAADfAAAAAACfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: egAAAAABegAAAAADegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAACaAAAAAADXQAAAAAAZQAAAAABXQAAAAADJAAAAAACegAAAAADegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAACZQAAAAADXQAAAAAAfgAAAAAAfAAAAAADfAAAAAADfAAAAAADfAAAAAACegAAAAACfAAAAAABfAAAAAACfAAAAAADfAAAAAABfAAAAAADegAAAAAAfgAAAAAAXQAAAAAADQAAAAADXQAAAAAAfgAAAAAAfAAAAAAAfAAAAAADfAAAAAACfAAAAAACegAAAAABfAAAAAAAfAAAAAADfAAAAAAAfAAAAAACfAAAAAAAegAAAAACfgAAAAAAXQAAAAAAZQAAAAACXQAAAAAAfgAAAAAAfAAAAAABfAAAAAABfAAAAAABfAAAAAABegAAAAACfAAAAAAAfAAAAAACfAAAAAABfAAAAAAAfAAAAAAAegAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAXQAAAAAAZQAAAAABXQAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAABDQAAAAAAXQAAAAADaAAAAAABegAAAAACegAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAADfgAAAAAAXQAAAAACZQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACXQAAAAACDQAAAAADXQAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAABIgAAAAABIgAAAAADIgAAAAADHwAAAAABYgAAAAAAYgAAAAADYgAAAAADHwAAAAADfgAAAAAAHwAAAAACXQAAAAACXQAAAAAAHwAAAAABJAAAAAABHwAAAAACHwAAAAACIgAAAAADDAAAAAACIgAAAAABHwAAAAAB + tiles: egAAAAADegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAACegAAAAADegAAAAADegAAAAACegAAAAAAaAAAAAACXQAAAAABZQAAAAACXQAAAAABJAAAAAABegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAABegAAAAADegAAAAADfgAAAAAAXQAAAAADZQAAAAAAXQAAAAACfgAAAAAAfAAAAAACfAAAAAADfAAAAAACfAAAAAAAegAAAAABfAAAAAAAfAAAAAADfAAAAAADfAAAAAABfAAAAAAAegAAAAACfgAAAAAAXQAAAAACDQAAAAAAXQAAAAACfgAAAAAAfAAAAAACfAAAAAABfAAAAAABfAAAAAABegAAAAACfAAAAAACfAAAAAAAfAAAAAAAfAAAAAADfAAAAAABegAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAACfgAAAAAAfAAAAAADfAAAAAAAfAAAAAABfAAAAAAAegAAAAAAfAAAAAABfAAAAAABfAAAAAADfAAAAAACfAAAAAACegAAAAADfgAAAAAAXQAAAAABZQAAAAADXQAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAADegAAAAACegAAAAACegAAAAACegAAAAACegAAAAACfgAAAAAAXQAAAAABZQAAAAABXQAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAAXQAAAAABDQAAAAADXQAAAAADaAAAAAACegAAAAABegAAAAACegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAACegAAAAABegAAAAABegAAAAABegAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAABegAAAAABegAAAAADegAAAAADegAAAAABegAAAAABegAAAAAAegAAAAACfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAADDQAAAAABXQAAAAACaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAABaAAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACIgAAAAAAIgAAAAADIgAAAAACHwAAAAAAYgAAAAACYgAAAAAAYgAAAAABHwAAAAACfgAAAAAAHwAAAAACXQAAAAADXQAAAAACHwAAAAAAJAAAAAADHwAAAAACHwAAAAABIgAAAAADDAAAAAADIgAAAAACHwAAAAAC version: 6 0,1: ind: 0,1 - tiles: HwAAAAACOAAAAAAAHwAAAAAAfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAACJAAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAIAAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAADIQAAAAAAfgAAAAAAIAAAAAADJAAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAFAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAABJAAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAQAAAAAAAegAAAAAAegAAAAADegAAAAACQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAegAAAAADegAAAAAAegAAAAACQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAdQAAAAADdQAAAAADdQAAAAACfgAAAAAAHwAAAAADQAAAAAAAegAAAAADegAAAAAAegAAAAABQAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdAAAAAABdAAAAAAAdAAAAAAAcAAAAAAAcAAAAAAAdQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdAAAAAACdAAAAAABdAAAAAAAcAAAAAACcAAAAAADfgAAAAAAHwAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdAAAAAABdAAAAAAAdAAAAAADcAAAAAABcAAAAAABfgAAAAAAHwAAAAABbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAHwAAAAABJAAAAAACfgAAAAAAdQAAAAACdQAAAAADdQAAAAADfgAAAAAAHwAAAAABHwAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAADJAAAAAADfgAAAAAAdQAAAAABdQAAAAACdQAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABHwAAAAADJAAAAAACfgAAAAAAdQAAAAAAdQAAAAAAdQAAAAACfgAAAAAAHwAAAAAB + tiles: HwAAAAACOAAAAAAAHwAAAAAAfgAAAAAAAwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAADJAAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAIAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAACfgAAAAAAIAAAAAADJAAAAAABAwAAAAAFAwAAAAABAwAAAAAFAwAAAAADAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADJAAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAegAAAAACegAAAAADegAAAAABQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAegAAAAACegAAAAAAegAAAAABQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAdQAAAAADdQAAAAADdQAAAAADfgAAAAAAHwAAAAADQAAAAAAAegAAAAACegAAAAADegAAAAADQAAAAAAAfgAAAAAAfgAAAAAAJAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAACcAAAAAABfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAADdAAAAAAAdAAAAAADcAAAAAAAcAAAAAAAdQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAABdAAAAAAAdAAAAAABcAAAAAACcAAAAAABfgAAAAAAHwAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdAAAAAACdAAAAAADdAAAAAACcAAAAAABcAAAAAABfgAAAAAAHwAAAAABbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAHwAAAAADJAAAAAAAfgAAAAAAdQAAAAADdQAAAAAAdQAAAAACfgAAAAAAHwAAAAAAHwAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAACJAAAAAABfgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAADJAAAAAACfgAAAAAAdQAAAAABdQAAAAACdQAAAAAAfgAAAAAAHwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAACNwAAAAAALAAAAAABLAAAAAACLAAAAAACfgAAAAAAPAAAAAACPAAAAAADPwAAAAAAPAAAAAACPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACNwAAAAAAKgAAAAACKwAAAAABKwAAAAAAfgAAAAAAPAAAAAAAPAAAAAADPwAAAAABPAAAAAADPAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAADKgAAAAABKgAAAAAAKwAAAAACKwAAAAABfgAAAAAAPAAAAAAAPAAAAAADPwAAAAABPAAAAAADPAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAXQAAAAABfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADdAAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAADfgAAAAAAcAAAAAABcAAAAAAAdAAAAAADXQAAAAABfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADdAAAAAAAfgAAAAAAOgAAAAABOgAAAAADOwAAAAABOgAAAAACOgAAAAABfgAAAAAAPQAAAAAAPQAAAAADPQAAAAACPQAAAAAAPQAAAAADfgAAAAAAcAAAAAABcAAAAAAAdAAAAAACfgAAAAAAOgAAAAADOgAAAAAAOwAAAAAAOgAAAAADOgAAAAADfgAAAAAAPQAAAAADPQAAAAACPQAAAAAAPQAAAAAAPQAAAAABfgAAAAAAcAAAAAAAcAAAAAABdAAAAAACfgAAAAAAOgAAAAABOgAAAAADOwAAAAABOwAAAAAAOwAAAAAAfgAAAAAAPQAAAAACPQAAAAADPQAAAAABPQAAAAABPQAAAAAAfgAAAAAAcAAAAAACcAAAAAABdAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAdAAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAABaAAAAAACcAAAAAAAcAAAAAADcAAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAABNwAAAAADLAAAAAABLAAAAAAALAAAAAACfgAAAAAAPAAAAAADPAAAAAADPwAAAAADPAAAAAACPAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAABKgAAAAABKwAAAAABKwAAAAADfgAAAAAAPAAAAAADPAAAAAADPwAAAAACPAAAAAABPAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAADKgAAAAACKgAAAAADKwAAAAAAKwAAAAABfgAAAAAAPAAAAAACPAAAAAACPwAAAAAAPAAAAAADPAAAAAADfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABXQAAAAACfgAAAAAAfgAAAAAALAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACdAAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAABfgAAAAAAcAAAAAADcAAAAAABdAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADdAAAAAADfgAAAAAAOgAAAAAAOgAAAAABOwAAAAACOgAAAAABOgAAAAACfgAAAAAAPQAAAAAAPQAAAAABPQAAAAACPQAAAAABPQAAAAAAfgAAAAAAcAAAAAADcAAAAAACdAAAAAABfgAAAAAAOgAAAAAAOgAAAAABOwAAAAADOgAAAAADOgAAAAAAfgAAAAAAPQAAAAADPQAAAAACPQAAAAADPQAAAAADPQAAAAAAfgAAAAAAcAAAAAABcAAAAAABdAAAAAAAfgAAAAAAOgAAAAABOgAAAAABOwAAAAAAOwAAAAABOwAAAAACfgAAAAAAPQAAAAABPQAAAAADPQAAAAACPQAAAAABPQAAAAAAfgAAAAAAcAAAAAADcAAAAAADdAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACdAAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAAAaAAAAAACcAAAAAADcAAAAAACcAAAAAAD version: 6 -3,-3: ind: -3,-3 - tiles: bQAAAAAAHwAAAAABHwAAAAAAfgAAAAAADAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABbQAAAAAAHwAAAAAAfgAAAAAADAAAAAADDAAAAAABbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACcAAAAAABcAAAAAACcAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAcAAAAAABdQAAAAACcAAAAAACcAAAAAADcAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAXQAAAAACXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAYgAAAAACYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAYgAAAAACYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAAAZQAAAAABXQAAAAABaAAAAAACYgAAAAADYgAAAAADJAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAACZQAAAAADXQAAAAADaAAAAAACYgAAAAADYgAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAABXQAAAAACZQAAAAACZQAAAAAAXQAAAAAAaAAAAAABYgAAAAADYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAYgAAAAACYgAAAAADcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAABaAAAAAABfgAAAAAAYgAAAAADYgAAAAAAcwAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAABYgAAAAACcwAAAAAAcAAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACaAAAAAADYgAAAAAD + tiles: bQAAAAAAHwAAAAACHwAAAAABfgAAAAAADAAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABbQAAAAAAHwAAAAAAfgAAAAAADAAAAAABDAAAAAACbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAcAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAcAAAAAABdQAAAAAAcAAAAAABcAAAAAADcAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAXQAAAAADfgAAAAAAcAAAAAADXQAAAAABXQAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAYgAAAAAAYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAYgAAAAAAYgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAADZQAAAAACXQAAAAADaAAAAAACYgAAAAADYgAAAAAAJAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAABZQAAAAAAXQAAAAABaAAAAAAAYgAAAAACYgAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAACXQAAAAAAZQAAAAABZQAAAAADXQAAAAACaAAAAAAAYgAAAAADYgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAYgAAAAADYgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAAAaAAAAAADaAAAAAAAfgAAAAAAYgAAAAAAYgAAAAABcwAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAACcwAAAAABcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABaAAAAAADYgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: fgAAAAAAXQAAAAACYgAAAAAAYgAAAAABYgAAAAACXQAAAAACaAAAAAAAegAAAAADegAAAAADegAAAAADegAAAAAAaAAAAAACXQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAXQAAAAABYgAAAAADYgAAAAABYgAAAAACXQAAAAACfgAAAAAAewAAAAADewAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAACYgAAAAACYgAAAAABYgAAAAADXQAAAAABfgAAAAAAewAAAAABewAAAAADQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAewAAAAABewAAAAADQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAACdAAAAAABdAAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAAAdAAAAAADdAAAAAADdAAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADdAAAAAADdAAAAAADZwAAAAABZwAAAAABIwAAAAADIwAAAAACIwAAAAADIwAAAAADdAAAAAADcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADdAAAAAABdAAAAAACZwAAAAAAZwAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABdAAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABdAAAAAADdAAAAAABZwAAAAACZwAAAAABIwAAAAABIwAAAAAAIwAAAAABIwAAAAADdAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAABdAAAAAAAZwAAAAADZwAAAAACIwAAAAACIwAAAAABIwAAAAAAIwAAAAADdAAAAAADcAAAAAACcAAAAAABfgAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAADdAAAAAACdAAAAAABZwAAAAABZwAAAAABIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAdAAAAAABcAAAAAADcAAAAAAAfgAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAACdAAAAAADdAAAAAACdAAAAAABdAAAAAACdAAAAAAAdAAAAAACdAAAAAABdAAAAAABdAAAAAACcAAAAAACcAAAAAABfgAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAABcAAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADaAAAAAACNQAAAAABNgAAAAABNwAAAAADNQAAAAAB + tiles: fgAAAAAAXQAAAAADYgAAAAABYgAAAAACYgAAAAACXQAAAAABaAAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAaAAAAAADQgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAXQAAAAAAYgAAAAAAYgAAAAABYgAAAAADXQAAAAABfgAAAAAAewAAAAAAewAAAAADQAAAAAAAQAAAAAAAfgAAAAAAQgAAAAAAQgAAAAABQgAAAAADQgAAAAAAfgAAAAAAXQAAAAAAYgAAAAABYgAAAAACYgAAAAAAXQAAAAAAfgAAAAAAewAAAAABewAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAewAAAAABewAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAADdAAAAAACdAAAAAADdAAAAAACdAAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAABdAAAAAADcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABdAAAAAADdAAAAAADZwAAAAACZwAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAAAdAAAAAABcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACdAAAAAAAdAAAAAADZwAAAAAAZwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADdAAAAAADcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACdAAAAAABdAAAAAAAZwAAAAABZwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAACdAAAAAACcAAAAAACcAAAAAABfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAADdAAAAAAAZwAAAAADZwAAAAADIwAAAAABIwAAAAABIwAAAAACIwAAAAACdAAAAAAAcAAAAAADcAAAAAABfgAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAAdAAAAAABdAAAAAACZwAAAAACZwAAAAABIwAAAAAAIwAAAAAAIwAAAAABIwAAAAACdAAAAAABcAAAAAABcAAAAAACfgAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAABdAAAAAACdAAAAAADdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAACdAAAAAADdAAAAAACcAAAAAAAcAAAAAACfgAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAABcAAAAAABcAAAAAADcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAADcAAAAAADcAAAAAADaAAAAAADNQAAAAABNgAAAAACNwAAAAABNQAAAAAB version: 6 0,-3: ind: 0,-3 - tiles: aQAAAAAAXQAAAAADXQAAAAACXQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAXQAAAAACaAAAAAADXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAaAAAAAADaAAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZwAAAAAAXQAAAAACXQAAAAAAXQAAAAABZwAAAAAAfgAAAAAAaQAAAAAAYgAAAAABaQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAZwAAAAACXQAAAAADXQAAAAADXQAAAAADZwAAAAADaAAAAAABYgAAAAADYgAAAAACaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZwAAAAACXQAAAAAAXQAAAAACXQAAAAAAZwAAAAADfgAAAAAAaQAAAAAAYgAAAAABaQAAAAAAfgAAAAAAWAAAAAADfgAAAAAAewAAAAACewAAAAADewAAAAACewAAAAADJAAAAAADaAAAAAACaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAYgAAAAABaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAABZwAAAAAAXQAAAAABXQAAAAACXQAAAAADZwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAADZwAAAAAAXQAAAAACXQAAAAADXQAAAAAAZwAAAAADfgAAAAAAXQAAAAAAZwAAAAAAZwAAAAABZwAAAAACXQAAAAACfgAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAABZwAAAAACXQAAAAACXQAAAAADXQAAAAAAZwAAAAACaAAAAAAAXQAAAAACZwAAAAAAZwAAAAADZwAAAAACXQAAAAAAfgAAAAAAewAAAAABewAAAAADewAAAAACewAAAAAAZwAAAAADXQAAAAACXQAAAAADXQAAAAACZwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACDAAAAAADNQAAAAADNgAAAAAANQAAAAADDAAAAAACDAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAewAAAAACegAAAAABDAAAAAAANQAAAAADNgAAAAACNQAAAAADDAAAAAADDAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAaQAAAAAAagAAAAAAaQAAAAAAfgAAAAAAewAAAAACegAAAAABNQAAAAABNgAAAAACNQAAAAACNQAAAAACDAAAAAACDAAAAAADaAAAAAABaAAAAAADaAAAAAACfgAAAAAAaQAAAAAAagAAAAADaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAACNQAAAAADNQAAAAABNgAAAAACNQAAAAAANQAAAAADNQAAAAABaAAAAAACaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAA + tiles: aQAAAAAAXQAAAAABXQAAAAACXQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQgAAAAADaAAAAAAAXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQgAAAAACXQAAAAADXQAAAAADXQAAAAABQgAAAAACQgAAAAAAQgAAAAABQgAAAAADQgAAAAABfgAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAaAAAAAABaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAXQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZwAAAAACXQAAAAABXQAAAAAAXQAAAAACZwAAAAACfgAAAAAAaQAAAAAAYgAAAAADaQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABZwAAAAAAXQAAAAADXQAAAAAAXQAAAAACZwAAAAAAaAAAAAACYgAAAAADYgAAAAACaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZwAAAAACXQAAAAADXQAAAAAAXQAAAAACZwAAAAADfgAAAAAAaQAAAAAAYgAAAAADaQAAAAAAfgAAAAAAWAAAAAACfgAAAAAAewAAAAABewAAAAACewAAAAABewAAAAABJAAAAAABaAAAAAACaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAYgAAAAADaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAZwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAZwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAewAAAAABewAAAAACewAAAAABewAAAAAAZwAAAAABXQAAAAAAXQAAAAACXQAAAAADZwAAAAABfgAAAAAAXQAAAAAAZwAAAAACZwAAAAACZwAAAAADXQAAAAADfgAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAACZwAAAAADXQAAAAAAXQAAAAAAXQAAAAAAZwAAAAABaAAAAAACXQAAAAAAZwAAAAACZwAAAAABZwAAAAACXQAAAAADfgAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAABZwAAAAACXQAAAAADXQAAAAADXQAAAAADZwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAABegAAAAADfgAAAAAAaAAAAAACaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACDAAAAAABNQAAAAACNgAAAAACNQAAAAADDAAAAAACDAAAAAACKQAAAAAAKQAAAAAAKQAAAAAFfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAewAAAAABegAAAAABDAAAAAACNQAAAAABNgAAAAABNQAAAAABDAAAAAACDAAAAAADKQAAAAADKQAAAAAAKQAAAAAAfgAAAAAAaQAAAAAAagAAAAADaQAAAAAAfgAAAAAAewAAAAAAegAAAAADNQAAAAACNgAAAAADNQAAAAAANQAAAAADDAAAAAABDAAAAAADaAAAAAAAaAAAAAACaAAAAAACfgAAAAAAaQAAAAAAagAAAAABaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAADNQAAAAABNQAAAAADNQAAAAAANQAAAAAANgAAAAAANQAAAAACNQAAAAABNQAAAAACaAAAAAADaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAA version: 6 0,2: ind: 0,2 - tiles: HwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHwAAAAABJAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABdQAAAAABHwAAAAABcwAAAAADcwAAAAAAHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAcwAAAAAAcwAAAAADHwAAAAADdQAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACcwAAAAABcwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAdQAAAAABHwAAAAAAcwAAAAABcwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABHwAAAAADJAAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACdQAAAAABHwAAAAACcwAAAAABcwAAAAACHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcwAAAAABcwAAAAACHwAAAAACdQAAAAABJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACcwAAAAACcwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAdQAAAAABHwAAAAAAcwAAAAADcwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,2: ind: -1,2 - tiles: YgAAAAADYgAAAAAAYgAAAAAAHwAAAAACfgAAAAAAHwAAAAADXQAAAAADXQAAAAABHwAAAAADJAAAAAADHwAAAAADHwAAAAADIgAAAAACDAAAAAABIgAAAAAAHwAAAAADYgAAAAABYgAAAAACYgAAAAADHwAAAAACfgAAAAAAHwAAAAAAXQAAAAACXQAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAADAAAAAADIgAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAADAAAAAABHwAAAAACIgAAAAAAIgAAAAACIgAAAAABHwAAAAADfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAJAAAAAADHwAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAABfgAAAAAAJAAAAAADHwAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACHwAAAAAAJAAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAJAAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAACfgAAAAAAHwAAAAADXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABXQAAAAAAHwAAAAAAfgAAAAAAJAAAAAADHwAAAAAAXQAAAAABHwAAAAACHwAAAAABfgAAAAAAJAAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAABfgAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAACfgAAAAAAHwAAAAABXQAAAAABXQAAAAADXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADHwAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAADfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAABHwAAAAAAJAAAAAABHwAAAAACHwAAAAAAXQAAAAADHwAAAAADJAAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAAAHwAAAAAAfgAAAAAA + tiles: YgAAAAACYgAAAAAAYgAAAAABHwAAAAACfgAAAAAAHwAAAAACXQAAAAACXQAAAAACHwAAAAABJAAAAAABHwAAAAABHwAAAAABIgAAAAACDAAAAAADIgAAAAABHwAAAAADYgAAAAABYgAAAAACYgAAAAACHwAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAIgAAAAAADAAAAAACIgAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAADAAAAAACHwAAAAABIgAAAAACIgAAAAAAIgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAJAAAAAADHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAJAAAAAACHwAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACHwAAAAACJAAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAJAAAAAAAJAAAAAADJAAAAAAAJAAAAAAAJAAAAAABfgAAAAAAHwAAAAADXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACHwAAAAABHwAAAAADJAAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAHwAAAAACXQAAAAAAHwAAAAAAfgAAAAAAJAAAAAABHwAAAAACXQAAAAADHwAAAAADHwAAAAABfgAAAAAAJAAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAHwAAAAADfgAAAAAAJAAAAAABJAAAAAACJAAAAAABJAAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAABfgAAAAAAJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAACXQAAAAADHwAAAAADJAAAAAAAHwAAAAABHwAAAAACXQAAAAABHwAAAAACJAAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAACHwAAAAADfgAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AwAAAAAGAwAAAAADAwAAAAACAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAAAfgAAAAAAIwAAAAABIAAAAAACIAAAAAACIAAAAAACIwAAAAADfgAAAAAAHwAAAAADYgAAAAADAwAAAAAFAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIAAAAAAAIAAAAAAAIAAAAAACIwAAAAADfgAAAAAAHwAAAAADYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAIwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIwAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAIAAAAAADIAAAAAADHwAAAAAAfgAAAAAAIwAAAAADIAAAAAABIAAAAAADIAAAAAACIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABIAAAAAABIAAAAAABHwAAAAADJAAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAAAJAAAAAADJAAAAAABfgAAAAAAHwAAAAACIAAAAAACIAAAAAAAHwAAAAACfgAAAAAAHwAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADHwAAAAADAwAAAAAFAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACBQAAAAAEAwAAAAABAwAAAAAEAwAAAAABAwAAAAAAAwAAAAABAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABQAAAAAGBQAAAAAHBQAAAAAHBQAAAAAFBQAAAAAFBQAAAAAAAwAAAAAEbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAADAwAAAAAEAwAAAAAEBQAAAAAFBAAAAAADBAAAAAAABQAAAAAFAwAAAAAGbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbgAAAAAAfgAAAAAAAwAAAAAEBQAAAAADBQAAAAADBAAAAAABBQAAAAADAwAAAAAFbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbgAAAAACfgAAAAAAAwAAAAAFAwAAAAAFBQAAAAAHBQAAAAABBQAAAAABAwAAAAAGbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbgAAAAADfgAAAAAAfgAAAAAAAwAAAAABAwAAAAACAwAAAAAGBQAAAAAFAwAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAADfQAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAACAwAAAAAFAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAEfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAA + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAGAwAAAAAAAwAAAAAAAwAAAAACfgAAAAAAIwAAAAAAIAAAAAABIAAAAAADIAAAAAADIwAAAAACfgAAAAAAHwAAAAABYgAAAAACAwAAAAADAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADIAAAAAACIAAAAAABIAAAAAAAIwAAAAACfgAAAAAAHwAAAAABYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAAIwAAAAABIAAAAAABIAAAAAADIAAAAAABIwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABIAAAAAABIAAAAAAAHwAAAAADfgAAAAAAIwAAAAACIAAAAAAAIAAAAAABIAAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADIAAAAAADIAAAAAACHwAAAAABJAAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACJAAAAAADJAAAAAABfgAAAAAAHwAAAAAAIAAAAAADIAAAAAAAHwAAAAADfgAAAAAAHwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAAABQAAAAAEAwAAAAAEAwAAAAAFAwAAAAABAwAAAAAGAwAAAAACAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABQAAAAAGBQAAAAAHBQAAAAADBQAAAAAFBQAAAAADBQAAAAAHAwAAAAAEbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAACAwAAAAAAAwAAAAAFBQAAAAAHBAAAAAAABAAAAAABBQAAAAAAAwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbgAAAAACfgAAAAAAAwAAAAACBQAAAAAHBQAAAAABBAAAAAABBQAAAAADAwAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbgAAAAACfgAAAAAAAwAAAAAAAwAAAAAEBQAAAAADBQAAAAAHBQAAAAACAwAAAAAEbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAADAwAAAAAEBQAAAAAHAwAAAAAFbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAABfQAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAAGAwAAAAAFAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAA version: 6 -3,2: ind: -3,2 - tiles: fgAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAADegAAAAACfAAAAAABfAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAGfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAACfAAAAAAAfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAADAwAAAAABfgAAAAAAfgAAAAAAewAAAAAAewAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAABewAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACfgAAAAAAAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADDAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAADAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAAFfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGBQAAAAADAwAAAAABAwAAAAAEAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAFAwAAAAAGAwAAAAAFAwAAAAAFAwAAAAACAwAAAAACAwAAAAAGAwAAAAACBQAAAAAHAwAAAAAEAwAAAAAGAwAAAAAAAwAAAAAGAwAAAAAAAwAAAAAEAwAAAAAEAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAGAwAAAAAFAwAAAAAAAwAAAAAFAwAAAAADAwAAAAADAwAAAAADAwAAAAABfgAAAAAAAwAAAAAFAwAAAAAEAwAAAAAEfgAAAAAAAwAAAAACAwAAAAAEAwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAFAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: fgAAAAAAewAAAAADewAAAAACewAAAAACewAAAAACegAAAAABfAAAAAABfAAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAFfgAAAAAAfgAAAAAAewAAAAAAewAAAAACegAAAAABegAAAAAAfAAAAAAAfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAAAwAAAAABfgAAAAAAfgAAAAAAewAAAAAAewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADfgAAAAAAAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADDAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAADAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAAFfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAAAAwAAAAAEAwAAAAAGAwAAAAADAwAAAAAEAwAAAAAGAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABQAAAAACAwAAAAAEAwAAAAAFAwAAAAADAwAAAAAGAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAGAwAAAAABAwAAAAAEAwAAAAABAwAAAAAEAwAAAAADAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAABAwAAAAAGfgAAAAAAAwAAAAAFAwAAAAAFAwAAAAAEfgAAAAAAAwAAAAAFAwAAAAABAwAAAAAGfgAAAAAAAwAAAAAFAwAAAAABAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 1,1: ind: 1,1 - tiles: JAAAAAABJAAAAAACIAAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABJAAAAAABJAAAAAABIAAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAJAAAAAADIAAAAAADHwAAAAADHwAAAAAAHwAAAAACJAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAJAAAAAABHwAAAAADcwAAAAAADAAAAAAADAAAAAACcwAAAAABcwAAAAADcwAAAAADDAAAAAADDAAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADdQAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAADcwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAABJAAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAcwAAAAAAcwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACdQAAAAABcwAAAAADHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACcwAAAAADcwAAAAAAHwAAAAADfgAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAHwAAAAAAcwAAAAAAcwAAAAACHwAAAAABfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAACcwAAAAADcwAAAAABHwAAAAADfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAXQAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAXQAAAAABOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAABcwAAAAACcwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAXQAAAAADOAAAAAAAdgAAAAAAOAAAAAAAXQAAAAADOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAABcwAAAAABcwAAAAABHwAAAAACfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAXQAAAAADOAAAAAAAdgAAAAAAOAAAAAAAXQAAAAACOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAADcwAAAAABcwAAAAACHwAAAAACfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAB + tiles: JAAAAAAAJAAAAAAAIAAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAJAAAAAABJAAAAAADIAAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAADJAAAAAADIAAAAAABHwAAAAABHwAAAAABHwAAAAADJAAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABJAAAAAABHwAAAAAAcwAAAAADDAAAAAAADAAAAAADcwAAAAADcwAAAAAAcwAAAAAADAAAAAAADAAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAAAdQAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAABcwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABJAAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAcwAAAAAAcwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABdQAAAAABcwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADcwAAAAAAcwAAAAACHwAAAAACfgAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAHwAAAAACcwAAAAABcwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAAAcwAAAAABcwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAXQAAAAACOAAAAAAAdgAAAAAAOAAAAAAAXQAAAAABOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAAAcwAAAAAAcwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAXQAAAAABOAAAAAAAdgAAAAAAOAAAAAAAXQAAAAACOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAAAcwAAAAACcwAAAAABHwAAAAAAfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAXQAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAXQAAAAADOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAACcwAAAAABcwAAAAABHwAAAAABfgAAAAAAbAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAA version: 6 1,0: ind: 1,0 - tiles: ZQAAAAABXQAAAAADZQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAADZwAAAAAAZwAAAAAANQAAAAACfgAAAAAAHwAAAAABJAAAAAACJAAAAAAAJAAAAAADXQAAAAADXQAAAAAAXQAAAAACZQAAAAACaAAAAAACXQAAAAACfgAAAAAAfgAAAAAANQAAAAACZwAAAAAANQAAAAAAfgAAAAAAHwAAAAACJAAAAAABJAAAAAACJAAAAAADXQAAAAAAXQAAAAAAXQAAAAABaAAAAAACZQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAANgAAAAABNgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAXQAAAAACXQAAAAABDQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAZQAAAAABXQAAAAABXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAXQAAAAADXQAAAAAAZQAAAAABXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAZQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAADQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAZQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADcwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAADZQAAAAAAZQAAAAABDQAAAAABZQAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACcwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABIgAAAAADIgAAAAABJAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADIgAAAAAAIgAAAAABJAAAAAABfgAAAAAAHwAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAADHwAAAAACfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAACIwAAAAAAJAAAAAADIgAAAAACIgAAAAACJAAAAAADfgAAAAAAHwAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAACHwAAAAABfgAAAAAAHwAAAAACIwAAAAACIwAAAAAAIwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAcQAAAAACcQAAAAACcQAAAAABcQAAAAADHwAAAAACfgAAAAAAHwAAAAAA + tiles: ZQAAAAABXQAAAAABZQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAANQAAAAADZwAAAAAAZwAAAAADNQAAAAABfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAABJAAAAAABXQAAAAAAXQAAAAABXQAAAAABZQAAAAABaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAANQAAAAAAZwAAAAADNQAAAAACfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAABJAAAAAABXQAAAAABXQAAAAACXQAAAAACaAAAAAAAZQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAANgAAAAADNgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAADXQAAAAAADQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABZQAAAAABXQAAAAABXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAXQAAAAADXQAAAAACZQAAAAACXQAAAAABXQAAAAABHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABDQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAXQAAAAADXQAAAAACZQAAAAACZQAAAAADDQAAAAAAZQAAAAAAcwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADIgAAAAAAIgAAAAACJAAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADIgAAAAACIgAAAAACJAAAAAACfgAAAAAAHwAAAAADcQAAAAADcQAAAAABcQAAAAADcQAAAAACHwAAAAADfgAAAAAAfgAAAAAAIwAAAAACIwAAAAAAIwAAAAAAJAAAAAACIgAAAAAAIgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADHwAAAAACfgAAAAAAHwAAAAADIwAAAAAAIwAAAAAAIwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACcQAAAAAAcQAAAAAAcQAAAAADcQAAAAABHwAAAAACfgAAAAAAHwAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: egAAAAACIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADZQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADIgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADZQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAADQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAaAAAAAACdgAAAAAAdgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAABXQAAAAADaAAAAAACZQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAaAAAAAADdgAAAAAAdgAAAAAAcAAAAAABfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAZQAAAAACaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAaAAAAAABdgAAAAAAdgAAAAAAcAAAAAADaAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAZQAAAAACXQAAAAAAZQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAaAAAAAACdgAAAAAAdgAAAAAAaAAAAAAAcAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABDQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAaAAAAAACdgAAAAAAdgAAAAAAcAAAAAAAaAAAAAABcAAAAAADaAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAXQAAAAABZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADdgAAAAAAcAAAAAABcAAAAAAAaAAAAAAAcAAAAAAAaAAAAAADfgAAAAAAbgAAAAABfgAAAAAAXQAAAAAAZQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAABXQAAAAABXQAAAAAAaAAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABZQAAAAAAZQAAAAAAZQAAAAABZQAAAAABaAAAAAACDQAAAAACZQAAAAACZQAAAAABZQAAAAABZQAAAAADDQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAABXQAAAAACZQAAAAADXQAAAAAAXQAAAAAAXQAAAAACaAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAACfgAAAAAAfgAAAAAANgAAAAABNQAAAAADNQAAAAAANQAAAAABNQAAAAADNQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADXQAAAAADDQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAANQAAAAAAZwAAAAACZwAAAAADZwAAAAADNQAAAAAAfgAAAAAAHwAAAAABJAAAAAAAJAAAAAAAJAAAAAAB + tiles: egAAAAADIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADZQAAAAABXQAAAAADXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADZQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAABIgAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADZQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADDQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAaAAAAAADdgAAAAAAdgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAABXQAAAAABaAAAAAAAZQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAADdgAAAAAAdgAAAAAAcAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAABXQAAAAAAXQAAAAACZQAAAAADaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAaAAAAAABdgAAAAAAdgAAAAAAcAAAAAACaAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAZQAAAAADXQAAAAACZQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAaAAAAAABdgAAAAAAdgAAAAAAaAAAAAACcAAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABDQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAaAAAAAADdgAAAAAAdgAAAAAAcAAAAAACaAAAAAADcAAAAAAAaAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAXQAAAAABZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACdgAAAAAAcAAAAAABcAAAAAACaAAAAAACcAAAAAADaAAAAAABfgAAAAAAbgAAAAADfgAAAAAAXQAAAAACZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAADXQAAAAADXQAAAAAAXQAAAAAAaAAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAABZQAAAAADZQAAAAAAZQAAAAABZQAAAAACaAAAAAADDQAAAAACZQAAAAAAZQAAAAADZQAAAAAAZQAAAAADDQAAAAAAZQAAAAAAZQAAAAABZQAAAAAAZQAAAAABXQAAAAACZQAAAAACXQAAAAADXQAAAAADXQAAAAABaAAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAACXQAAAAACfgAAAAAAfgAAAAAANgAAAAAANQAAAAABNQAAAAABNQAAAAAANQAAAAAANQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACXQAAAAACDQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAANQAAAAABZwAAAAABZwAAAAACZwAAAAACNQAAAAACfgAAAAAAHwAAAAAAJAAAAAACJAAAAAABJAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: bAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHAAAAAABHAAAAAAAHAAAAAACfgAAAAAAaQAAAAAADQAAAAAAaQAAAAAAaQAAAAAADAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAfgAAAAAAaQAAAAAADQAAAAABaQAAAAAAaQAAAAAADAAAAAADewAAAAADegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAACfgAAAAAAaQAAAAAADQAAAAACaQAAAAAAaQAAAAAADAAAAAAAewAAAAADegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAADHAAAAAADfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAewAAAAABegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAACfgAAAAAAaQAAAAAADQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAfgAAAAAAaQAAAAAADQAAAAABDQAAAAAAaQAAAAAAaQAAAAAAfAAAAAABewAAAAAAewAAAAADewAAAAADfgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAACfgAAAAAAaQAAAAAADQAAAAABDQAAAAACDQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABHAAAAAADHAAAAAACfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfAAAAAABfAAAAAABfAAAAAACDQAAAAABfgAAAAAAbAAAAAAAJAAAAAABHAAAAAACHAAAAAADHAAAAAABfgAAAAAAZwAAAAAAfgAAAAAAZwAAAAABfgAAAAAAHwAAAAAAfAAAAAACfAAAAAABfAAAAAAADQAAAAADfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABfgAAAAAAaAAAAAACfgAAAAAAaAAAAAADfgAAAAAAHwAAAAAAfAAAAAABfAAAAAACfAAAAAABDQAAAAACfgAAAAAAIAAAAAAAHwAAAAADHwAAAAACfgAAAAAAHQAAAAAAfgAAAAAAZwAAAAADfgAAAAAAZwAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAADDQAAAAABIAAAAAAAIAAAAAAAJAAAAAABJAAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACaAAAAAADHwAAAAACegAAAAADIgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAaAAAAAACfgAAAAAAegAAAAADIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAADaAAAAAADfgAAAAAAegAAAAAAIgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACDQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: bAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHAAAAAABHAAAAAACHAAAAAACfgAAAAAAaQAAAAAADQAAAAACaQAAAAAAaQAAAAAADAAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABHAAAAAABHAAAAAACfgAAAAAAaQAAAAAADQAAAAADaQAAAAAAaQAAAAAADAAAAAABewAAAAABegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAAAfgAAAAAAaQAAAAAADQAAAAAAaQAAAAAAaQAAAAAADAAAAAABewAAAAADegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABHAAAAAABHAAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAewAAAAABegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAABfgAAAAAAaQAAAAAADQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADfgAAAAAAaQAAAAAADQAAAAACDQAAAAADaQAAAAAAaQAAAAAAfAAAAAAAewAAAAADewAAAAACewAAAAACfgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAACfgAAAAAAaQAAAAAADQAAAAADDQAAAAAADQAAAAACaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAADHAAAAAADfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfAAAAAADfAAAAAADfAAAAAADDQAAAAABfgAAAAAAbAAAAAAAJAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAfgAAAAAAZwAAAAABfgAAAAAAZwAAAAAAfgAAAAAAHwAAAAABfAAAAAABfAAAAAABfAAAAAADDQAAAAABfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAHwAAAAAAfAAAAAABfAAAAAADfAAAAAADDQAAAAABfgAAAAAAIAAAAAABHwAAAAAAHwAAAAABfgAAAAAAHQAAAAADfgAAAAAAZwAAAAAAfgAAAAAAZwAAAAADfgAAAAAAHwAAAAAAegAAAAACegAAAAAAegAAAAAADQAAAAADIAAAAAADIAAAAAABJAAAAAACJAAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABaAAAAAACHwAAAAADegAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADaAAAAAADfgAAAAAAegAAAAACIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADaAAAAAADaAAAAAACaAAAAAABfgAAAAAAegAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAADQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: bQAAAAAAXQAAAAACfgAAAAAAAwAAAAABBQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADegAAAAABegAAAAADbQAAAAAAXQAAAAABfgAAAAAAAwAAAAAEBQAAAAAFBAAAAAACBAAAAAABBwAAAAACBwAAAAABfAAAAAAAegAAAAACegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAACbQAAAAAAXQAAAAABfgAAAAAAAwAAAAAFBQAAAAAABQAAAAAEBAAAAAABBwAAAAACBwAAAAADegAAAAABegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAADegAAAAACXQAAAAABXQAAAAAAfgAAAAAAAwAAAAACBQAAAAADBQAAAAAEBAAAAAACBAAAAAADBwAAAAADegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAABBQAAAAAABQAAAAAGBAAAAAACBQAAAAAEBQAAAAABBQAAAAADBQAAAAABBAAAAAAABAAAAAAABQAAAAADNwAAAAACewAAAAAAegAAAAABfgAAAAAAAwAAAAAGBQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAABAwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAACNwAAAAABNQAAAAABewAAAAABegAAAAACfgAAAAAAAwAAAAAFAwAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAEAwAAAAAAAwAAAAABAwAAAAABNQAAAAAANgAAAAAANwAAAAABewAAAAACegAAAAABfgAAAAAAAwAAAAACBQAAAAABAwAAAAAGAwAAAAABfgAAAAAAJAAAAAADfgAAAAAAAwAAAAACAwAAAAAFfgAAAAAAJAAAAAADfgAAAAAAJAAAAAACewAAAAAAegAAAAAAfgAAAAAAAwAAAAABAwAAAAAGBQAAAAAFAwAAAAAGfgAAAAAAHwAAAAACfgAAAAAAAwAAAAADAwAAAAAGfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAewAAAAADegAAAAACfgAAAAAAAwAAAAAFAwAAAAAGBQAAAAAEAwAAAAACfgAAAAAAHwAAAAABfgAAAAAAAwAAAAAEAwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAegAAAAAAegAAAAABfgAAAAAAAwAAAAADAwAAAAAFAwAAAAADAwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAFAwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAADewAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAewAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZwAAAAACZwAAAAACZwAAAAACXQAAAAAAaAAAAAAAaQAAAAAADQAAAAACDQAAAAABDQAAAAABaQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZwAAAAACZwAAAAABZwAAAAACXQAAAAADfgAAAAAAaQAAAAAADQAAAAACDQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAaQAAAAAADQAAAAADaQAAAAAAaQAAAAAAaQAAAAAA + tiles: bQAAAAAAXQAAAAADfgAAAAAAAwAAAAADBQAAAAAEBAAAAAADBAAAAAAABAAAAAAABAAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABegAAAAADbQAAAAAAXQAAAAACfgAAAAAAAwAAAAADBQAAAAAEBAAAAAAABAAAAAADBwAAAAADBwAAAAABfAAAAAADegAAAAABegAAAAABegAAAAACegAAAAABegAAAAACegAAAAACbQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAFBQAAAAAFBQAAAAAGBAAAAAABBwAAAAACBwAAAAADegAAAAABegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAFBQAAAAABBQAAAAAABAAAAAACBAAAAAACBwAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGBQAAAAAEBQAAAAACBQAAAAAGBAAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAAHBAAAAAABBAAAAAABBQAAAAAFNwAAAAABewAAAAACegAAAAADfgAAAAAAAwAAAAADBQAAAAABBQAAAAACBQAAAAAGBQAAAAAGBQAAAAABAwAAAAABBQAAAAACBQAAAAAGBQAAAAACBQAAAAADNwAAAAACNQAAAAAAewAAAAAAegAAAAABfgAAAAAAAwAAAAADAwAAAAAABQAAAAAEAwAAAAAGAwAAAAACAwAAAAACAwAAAAAGAwAAAAADAwAAAAAGAwAAAAAFNQAAAAABNgAAAAACNwAAAAADewAAAAADegAAAAADfgAAAAAAAwAAAAAFBQAAAAACAwAAAAABAwAAAAAFfgAAAAAAJAAAAAADfgAAAAAAAwAAAAADAwAAAAAEfgAAAAAAJAAAAAABfgAAAAAAJAAAAAACewAAAAAAegAAAAABfgAAAAAAAwAAAAAFAwAAAAADBQAAAAABAwAAAAACfgAAAAAAHwAAAAACfgAAAAAAAwAAAAABAwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAewAAAAAAegAAAAABfgAAAAAAAwAAAAAAAwAAAAADBQAAAAAGAwAAAAAFfgAAAAAAHwAAAAADfgAAAAAAAwAAAAAAAwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAAAfgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAACAwAAAAACfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAJAAAAAADewAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAewAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAZwAAAAADZwAAAAACZwAAAAACXQAAAAACaAAAAAABaQAAAAAADQAAAAABDQAAAAACDQAAAAABaQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZwAAAAACZwAAAAADZwAAAAABXQAAAAAAfgAAAAAAaQAAAAAADQAAAAAADQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAaQAAAAAADQAAAAADaQAAAAAAaQAAAAAAaQAAAAAA version: 6 1,2: ind: 1,2 - tiles: dQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADIwAAAAADIwAAAAACNQAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABcAAAAAACHwAAAAADcwAAAAABHwAAAAADJAAAAAACHwAAAAABfgAAAAAAIwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACcAAAAAAAcAAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADIwAAAAABIwAAAAACHwAAAAADHwAAAAABHwAAAAACNQAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAADHwAAAAADfgAAAAAAIwAAAAACHwAAAAACJAAAAAACTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAHwAAAAADIwAAAAAAIwAAAAABHwAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAADNQAAAAAAIwAAAAADIwAAAAABfgAAAAAAJAAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIwAAAAABIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAABHwAAAAAAIwAAAAADIwAAAAABHwAAAAAAJAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAACNQAAAAADfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAACNQAAAAABfgAAAAAAIwAAAAACHwAAAAADJAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAABIwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAJAAAAAADfgAAAAAAJAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANQAAAAACNQAAAAACHwAAAAACJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: dQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAIwAAAAACIwAAAAAANQAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACcAAAAAADHwAAAAACcwAAAAACHwAAAAAAJAAAAAACHwAAAAABfgAAAAAAIwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAACcAAAAAABcAAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACIwAAAAADIwAAAAADHwAAAAABHwAAAAACHwAAAAADNQAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAAAHwAAAAABfgAAAAAAIwAAAAADHwAAAAACJAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAHwAAAAACIwAAAAACIwAAAAABHwAAAAABfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAABNQAAAAACIwAAAAAAIwAAAAADfgAAAAAAJAAAAAADTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIwAAAAABIwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAABHwAAAAACIwAAAAACIwAAAAABHwAAAAADJAAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAAANQAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAABNQAAAAADfgAAAAAAIwAAAAABHwAAAAABJAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAAAIwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAJAAAAAABfgAAAAAAJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAABHwAAAAADJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAADfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: bAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAGBQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAGAwAAAAAABQAAAAACBQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAACAwAAAAACAwAAAAAFJAAAAAAAegAAAAACegAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGewAAAAADewAAAAACewAAAAADegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADewAAAAAAewAAAAAAewAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABewAAAAAAewAAAAADewAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAACegAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAADAAAAAACDAAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAJAAAAAACHwAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAACJAAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABJAAAAAABewAAAAACewAAAAABDQAAAAACZQAAAAABZQAAAAADXQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACewAAAAABewAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADJAAAAAABewAAAAACewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAABJAAAAAADHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAACHwAAAAACJAAAAAABHwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAADAAAAAAADAAAAAAAfgAAAAAA + tiles: bAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAACBQAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAFAwAAAAABBQAAAAACBQAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAAwAAAAACAwAAAAABAwAAAAAEAwAAAAAAJAAAAAADegAAAAACegAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFewAAAAACewAAAAABewAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADewAAAAADewAAAAAAewAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABewAAAAABewAAAAACewAAAAABfgAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAAAegAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABDAAAAAAADAAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADJAAAAAAAHwAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAAJAAAAAACHwAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAJAAAAAACewAAAAAAewAAAAACDQAAAAAAZQAAAAADZQAAAAACXQAAAAACfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAAAewAAAAADewAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABJAAAAAACewAAAAACewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAAAJAAAAAADHwAAAAADHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABJAAAAAABHwAAAAACJAAAAAABHwAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAADAAAAAACDAAAAAAAfgAAAAAA version: 6 2,0: ind: 2,0 - tiles: HwAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAABegAAAAAAegAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAewAAAAADewAAAAAAewAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADegAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABewAAAAAAewAAAAAAewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABegAAAAACegAAAAADfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAEAwAAAAACAwAAAAAFfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJAAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAAwAAAAAGAwAAAAAGBQAAAAAHBQAAAAABBQAAAAAGfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACcQAAAAADdQAAAAABdQAAAAAAfgAAAAAAAwAAAAAABQAAAAAFBQAAAAAABQAAAAAABAAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAABcQAAAAACcQAAAAACHwAAAAABfgAAAAAAAwAAAAAGBQAAAAAHBQAAAAABBQAAAAAABAAAAAABcwAAAAACcwAAAAACcwAAAAAAcwAAAAABcwAAAAABfgAAAAAAHwAAAAADcQAAAAABdQAAAAABdQAAAAAAfgAAAAAAAwAAAAACBQAAAAABBQAAAAADBAAAAAABBAAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAACfgAAAAAAHwAAAAACcQAAAAADdQAAAAABdQAAAAABfgAAAAAAAwAAAAABBQAAAAAFBQAAAAADBAAAAAACBAAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAABfgAAAAAAHwAAAAACcQAAAAABcQAAAAABHwAAAAADfgAAAAAAAwAAAAABBQAAAAAABQAAAAAGBQAAAAAABAAAAAADEQAAAAAAcwAAAAADcwAAAAADEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAABcQAAAAADdQAAAAAAdQAAAAABfgAAAAAAAwAAAAACBQAAAAADBQAAAAADBAAAAAADBAAAAAACEQAAAAAAcwAAAAADcwAAAAAAEQAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAAwAAAAAFBQAAAAABBQAAAAACBwAAAAAABwAAAAABfgAAAAAAdQAAAAACdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAACNgAAAAACNgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAANwAAAAADNwAAAAAANwAAAAACNwAAAAABNwAAAAADNwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAHwAAAAAAdQAAAAABNwAAAAACNwAAAAADNwAAAAACNwAAAAABNwAAAAADNwAAAAAB + tiles: HwAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADewAAAAABewAAAAACewAAAAACfgAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACegAAAAABegAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAewAAAAACewAAAAADewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAEAwAAAAAEAwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJAAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAAwAAAAAFAwAAAAABBQAAAAAEBQAAAAAEBQAAAAAEfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACcQAAAAACdQAAAAADdQAAAAACfgAAAAAAAwAAAAAFBQAAAAAEBQAAAAADBQAAAAAGBAAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAcQAAAAADcQAAAAACHwAAAAAAfgAAAAAAAwAAAAAEBQAAAAADBQAAAAAGBQAAAAACBAAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAABfgAAAAAAHwAAAAABcQAAAAACdQAAAAADdQAAAAAAfgAAAAAAAwAAAAADBQAAAAAEBQAAAAAHBAAAAAABBAAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAABfgAAAAAAHwAAAAADcQAAAAADdQAAAAABdQAAAAAAfgAAAAAAAwAAAAACBQAAAAADBQAAAAACBAAAAAADBAAAAAADcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAAAfgAAAAAAHwAAAAACcQAAAAACcQAAAAACHwAAAAAAfgAAAAAAAwAAAAABBQAAAAAHBQAAAAAFBQAAAAAABAAAAAADEQAAAAAAcwAAAAAAcwAAAAADEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAACcQAAAAADdQAAAAAAdQAAAAACfgAAAAAAAwAAAAAEBQAAAAABBQAAAAABBAAAAAABBAAAAAACEQAAAAAAcwAAAAAAcwAAAAACEQAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAAwAAAAAFBQAAAAAABQAAAAACBwAAAAACBwAAAAAAfgAAAAAAdQAAAAABdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAABNgAAAAADNgAAAAADNgAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAABfgAAAAAANwAAAAAANwAAAAADNwAAAAACNwAAAAADNwAAAAACNwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAABcwAAAAACHwAAAAADdQAAAAABNwAAAAACNwAAAAAANwAAAAABNwAAAAACNwAAAAACNwAAAAAD version: 6 2,-2: ind: 2,-2 - tiles: DAAAAAABDAAAAAABaQAAAAAADAAAAAADDAAAAAADfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADAAAAAABaQAAAAAAaQAAAAAADQAAAAACaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAaQAAAAAADQAAAAAADQAAAAAADQAAAAADaQAAAAAADAAAAAADaQAAAAAAaQAAAAAADQAAAAADaQAAAAAAfgAAAAAAJAAAAAADJAAAAAABHwAAAAAAJAAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADAAAAAAAaQAAAAAAaQAAAAAADQAAAAABaQAAAAAAfgAAAAAAJAAAAAABJAAAAAAAHwAAAAAAJAAAAAADfgAAAAAADAAAAAAADAAAAAABaQAAAAAADAAAAAAADAAAAAADfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAJAAAAAABJAAAAAACHwAAAAABJAAAAAACfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAABaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAACDQAAAAADaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAADQAAAAADDQAAAAABDQAAAAADaQAAAAAAaQAAAAAADQAAAAABDQAAAAABDQAAAAACaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAADcQAAAAACcAAAAAACfgAAAAAAAwAAAAAEBQAAAAAFAwAAAAAGAwAAAAAFBQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAABcAAAAAABfgAAAAAAAwAAAAABAwAAAAAEAwAAAAAABQAAAAACBQAAAAAHfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAACfgAAAAAAAwAAAAABAwAAAAABAwAAAAAGBQAAAAAABAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFBQAAAAAGBQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACAwAAAAAEBQAAAAAG + tiles: DAAAAAABDAAAAAACaQAAAAAADAAAAAADDAAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADAAAAAAAaQAAAAAAaQAAAAAADQAAAAACaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAaQAAAAAADQAAAAAADQAAAAACDQAAAAADaQAAAAAADAAAAAAAaQAAAAAAaQAAAAAADQAAAAADaQAAAAAAfgAAAAAAJAAAAAADJAAAAAADHwAAAAAAJAAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADAAAAAACaQAAAAAAaQAAAAAADQAAAAAAaQAAAAAAfgAAAAAAJAAAAAACJAAAAAABHwAAAAAAJAAAAAACfgAAAAAADAAAAAADDAAAAAAAaQAAAAAADAAAAAADDAAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAJAAAAAACJAAAAAADHwAAAAADJAAAAAACfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAADaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAAADQAAAAABaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAADQAAAAABDQAAAAACDQAAAAACaQAAAAAAaQAAAAAADQAAAAABDQAAAAACDQAAAAADaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAAwAAAAAFAwAAAAAAAwAAAAADAwAAAAAEAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAAAcAAAAAACfgAAAAAAAwAAAAAFBQAAAAAGAwAAAAAAAwAAAAABBQAAAAAHfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcQAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAACAwAAAAAGBQAAAAADBQAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAABfgAAAAAAAwAAAAACAwAAAAADAwAAAAAABQAAAAABBAAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFBQAAAAAHBQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAABBQAAAAAE version: 6 2,-3: ind: 2,-3 - tiles: BAAAAAAABAAAAAACBAAAAAABNQAAAAAANwAAAAABNgAAAAABNgAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBgAAAAABBgAAAAADBAAAAAABBAAAAAAABAAAAAADNgAAAAACNQAAAAADNwAAAAADNgAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBgAAAAAABAAAAAAABAAAAAABNwAAAAADNQAAAAACNwAAAAACNgAAAAADNwAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBgAAAAAANQAAAAADNwAAAAADNgAAAAACNQAAAAABNgAAAAADNgAAAAADNgAAAAADNQAAAAAABAAAAAAABAAAAAABBQAAAAAEBQAAAAACBQAAAAAGBAAAAAAABAAAAAACBAAAAAADNgAAAAAANgAAAAACNwAAAAADNQAAAAAANQAAAAAANwAAAAABNgAAAAABNwAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAAGBQAAAAAFBQAAAAAABAAAAAABBAAAAAAANQAAAAABNwAAAAADBQAAAAAGBQAAAAAFBQAAAAAGNQAAAAAANgAAAAABNgAAAAABBQAAAAAEAwAAAAAFAwAAAAAEBQAAAAAFBQAAAAAAAwAAAAACBQAAAAACBQAAAAAHAwAAAAAFAwAAAAAEBQAAAAADAwAAAAAAAwAAAAAGNgAAAAABNQAAAAADNwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAFBQAAAAAHfgAAAAAAAwAAAAADBQAAAAACAwAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAAwAAAAAFAwAAAAADfgAAAAAAJAAAAAADfgAAAAAAAwAAAAAFBQAAAAAEfgAAAAAAAwAAAAACBQAAAAAFAwAAAAAEfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAFAwAAAAAGfgAAAAAAHwAAAAABfgAAAAAAAwAAAAAABQAAAAAHfgAAAAAAAwAAAAACAwAAAAAEAwAAAAAGfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAwAAAAAAAwAAAAABfgAAAAAAHwAAAAACfgAAAAAAAwAAAAAGAwAAAAACfgAAAAAANAAAAAAANAAAAAAANAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAAwAAAAACAwAAAAABfgAAAAAAHwAAAAADfgAAAAAAAwAAAAABAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAaQAAAAAADQAAAAAADQAAAAADDQAAAAABaQAAAAAAaQAAAAAADQAAAAADDQAAAAAADQAAAAABaQAAAAAAfgAAAAAAHwAAAAABIwAAAAABIwAAAAADHwAAAAACfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAADDQAAAAADaQAAAAAAJAAAAAADHwAAAAACIwAAAAADIwAAAAABHwAAAAADfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAAAaQAAAAAAfgAAAAAAHwAAAAADIwAAAAADIwAAAAABHwAAAAACfgAAAAAA + tiles: BAAAAAAABAAAAAADBAAAAAAANQAAAAABNwAAAAADNgAAAAACNgAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACBgAAAAACBgAAAAAABAAAAAABBAAAAAAABAAAAAADNgAAAAABNQAAAAACNwAAAAABNgAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAABgAAAAACBAAAAAADBAAAAAAANwAAAAAANQAAAAADNwAAAAACNgAAAAAANwAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAABgAAAAADNQAAAAAANwAAAAAANgAAAAAANQAAAAACNgAAAAADNgAAAAAANgAAAAADNQAAAAACBAAAAAABBAAAAAADBQAAAAACBQAAAAAABQAAAAAHBAAAAAAABAAAAAAABAAAAAABNgAAAAAANgAAAAAANwAAAAABNQAAAAACNQAAAAADNwAAAAADNgAAAAACNwAAAAADBQAAAAAGBQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAABBAAAAAACBAAAAAADNQAAAAACNwAAAAADBQAAAAAFBQAAAAABBQAAAAAENQAAAAAANgAAAAABNgAAAAADBQAAAAADAwAAAAADAwAAAAAFBQAAAAAFBQAAAAABAwAAAAABBQAAAAACBQAAAAABAwAAAAACAwAAAAAABQAAAAAEAwAAAAABAwAAAAAFNgAAAAACNQAAAAABNwAAAAACAwAAAAAEAwAAAAAFAwAAAAACAwAAAAAAAwAAAAAFAwAAAAAGAwAAAAAABQAAAAABfgAAAAAAAwAAAAADBQAAAAAHAwAAAAADfgAAAAAAJAAAAAACfgAAAAAAJAAAAAACfgAAAAAAAwAAAAAGAwAAAAAAfgAAAAAAJAAAAAABfgAAAAAAAwAAAAAABQAAAAADfgAAAAAAAwAAAAADBQAAAAADAwAAAAABfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAAwAAAAADAwAAAAAEfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAABBQAAAAADfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAGfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAFAwAAAAAEfgAAAAAAHwAAAAADfgAAAAAAAwAAAAADAwAAAAACfgAAAAAANAAAAAAANAAAAAADNAAAAAADfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAEAwAAAAAGfgAAAAAAHwAAAAABfgAAAAAAAwAAAAAEAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAaQAAAAAADQAAAAABDQAAAAACDQAAAAACaQAAAAAAaQAAAAAADQAAAAACDQAAAAABDQAAAAABaQAAAAAAfgAAAAAAHwAAAAACIwAAAAAAIwAAAAABHwAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAADDQAAAAACaQAAAAAAJAAAAAADHwAAAAADIwAAAAAAIwAAAAADHwAAAAABfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAADQAAAAABaQAAAAAAfgAAAAAAHwAAAAADIwAAAAABIwAAAAABHwAAAAACfgAAAAAA version: 6 2,1: ind: 2,1 - tiles: cwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAADfgAAAAAANwAAAAADNwAAAAABNwAAAAACNwAAAAABNwAAAAADNwAAAAABdQAAAAABJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAANgAAAAACNgAAAAADNgAAAAACNgAAAAAAcwAAAAACHwAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAACewAAAAAAewAAAAAAewAAAAAAfgAAAAAAAwAAAAABBQAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAACcwAAAAABHwAAAAADdQAAAAABegAAAAABegAAAAABegAAAAACewAAAAAAewAAAAADewAAAAADfgAAAAAAAwAAAAACBQAAAAABBQAAAAADBAAAAAACBAAAAAACBAAAAAABcwAAAAACHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAAAewAAAAADfgAAAAAAAwAAAAADAwAAAAACBQAAAAABBQAAAAAEBAAAAAACBAAAAAADcwAAAAABHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAADewAAAAABfgAAAAAAAwAAAAAGAwAAAAAABQAAAAADBAAAAAABBAAAAAAABAAAAAACHwAAAAAAHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAADewAAAAADewAAAAADfgAAAAAAAwAAAAAFBQAAAAAEBQAAAAAABAAAAAAABAAAAAABBAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFBQAAAAABBAAAAAACBAAAAAAABgAAAAAABgAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAwAAAAACBQAAAAADBgAAAAADBgAAAAABBgAAAAABAAAAAAAAHwAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAABQAAAAACBgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAABQAAAAAEBgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAACfgAAAAAABgAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADaAAAAAADXQAAAAADXQAAAAABXQAAAAADYwAAAAABEQAAAAAAEQAAAAAAYwAAAAADfgAAAAAABgAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABaAAAAAACXQAAAAABXQAAAAAAXQAAAAACYwAAAAADEQAAAAAAEQAAAAAAYwAAAAACfgAAAAAABgAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAANwAAAAABNwAAAAAANwAAAAAANwAAAAACNwAAAAAANwAAAAABdQAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAACNgAAAAACNgAAAAAANgAAAAADNgAAAAAAcwAAAAABHwAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAADewAAAAADewAAAAABewAAAAABfgAAAAAAAwAAAAADBQAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAAAcwAAAAABHwAAAAACdQAAAAADegAAAAAAegAAAAABegAAAAAAewAAAAADewAAAAADewAAAAACfgAAAAAAAwAAAAABBQAAAAAHBQAAAAACBAAAAAABBAAAAAABBAAAAAAAcwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAABewAAAAABewAAAAADfgAAAAAAAwAAAAAFAwAAAAAEBQAAAAAFBQAAAAADBAAAAAAABAAAAAADcwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAABewAAAAABfgAAAAAAAwAAAAACAwAAAAAEBQAAAAAGBAAAAAAABAAAAAABBAAAAAABHwAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAACewAAAAAAfgAAAAAAAwAAAAAFBQAAAAACBQAAAAAHBAAAAAAABAAAAAAABAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADBQAAAAAABAAAAAACBAAAAAADBgAAAAACBgAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAAwAAAAAFBQAAAAADBgAAAAACBgAAAAABBgAAAAACAAAAAAAAHwAAAAABaAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAABQAAAAADBgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABfgAAAAAABQAAAAAGBgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAABfgAAAAAABgAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACaAAAAAABXQAAAAADXQAAAAABXQAAAAACYwAAAAADEQAAAAAAEQAAAAAAYwAAAAAAfgAAAAAABgAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACaAAAAAAAXQAAAAABXQAAAAACXQAAAAABYwAAAAACEQAAAAAAEQAAAAAAYwAAAAABfgAAAAAABgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: HwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAACcAAAAAADHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAACcAAAAAADHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAABHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAAAcAAAAAADHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: BQAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAHBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAFBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBQAAAAAHBQAAAAAGBAAAAAABBAAAAAABBAAAAAADBAAAAAADBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAEBQAAAAAHBQAAAAAEBAAAAAACBAAAAAADBAAAAAABBAAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAABQAAAAAHBAAAAAADBAAAAAABBAAAAAAABAAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADBQAAAAAHBQAAAAABBAAAAAACBAAAAAAABAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAADBQAAAAAHBQAAAAAHBQAAAAADBAAAAAABBAAAAAADBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAACBQAAAAAHBAAAAAACBQAAAAADBAAAAAADBAAAAAADBAAAAAABBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAABAwAAAAAGBQAAAAAFBAAAAAAABAAAAAABBAAAAAABBgAAAAABBgAAAAAABgAAAAABBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAAAwAAAAABBQAAAAAEBAAAAAABBAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAACBQAAAAAFBQAAAAAABAAAAAACBAAAAAABBgAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAFBQAAAAACBAAAAAABBAAAAAABBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAEBQAAAAAFBAAAAAABBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAFBQAAAAADBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAABBQAAAAAEBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBQAAAAACBQAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBQAAAAABBQAAAAAHBAAAAAABBAAAAAAABAAAAAABBAAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAFAwAAAAADBQAAAAAHBAAAAAAABAAAAAACBAAAAAAABAAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAABQAAAAAFBQAAAAAEBAAAAAAABAAAAAAABAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAFBQAAAAAABQAAAAAABQAAAAAFBAAAAAACBAAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAADBQAAAAAHBAAAAAAABQAAAAACBAAAAAADBAAAAAABBAAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAEAwAAAAACBQAAAAAFBAAAAAACBAAAAAABBAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAEAwAAAAABBQAAAAADBAAAAAACBAAAAAADBgAAAAADBgAAAAACBgAAAAACBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAADBQAAAAADBQAAAAADBAAAAAABBAAAAAACBgAAAAAABgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAABBQAAAAAFBAAAAAAABAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAGBQAAAAAFBAAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAEBQAAAAABBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAABQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABgAAAAABBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBAAAAAAABAAAAAAABAAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBAAAAAACBAAAAAADBAAAAAADBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAHBQAAAAAFBAAAAAABBAAAAAACBAAAAAADBgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAABBQAAAAAABAAAAAAABAAAAAABBAAAAAABfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAwAAAAAFBQAAAAAEBQAAAAABBAAAAAAABwAAAAADBgAAAAADBgAAAAADAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAGAwAAAAAABQAAAAAFBAAAAAABfgAAAAAABwAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAFAwAAAAAGBQAAAAAGBAAAAAAAfgAAAAAABwAAAAAAfgAAAAAABgAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAFAwAAAAAGBQAAAAADBwAAAAADfgAAAAAABwAAAAACfgAAAAAABgAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAwAAAAADBQAAAAAABAAAAAAABAAAAAADfgAAAAAABwAAAAACfgAAAAAABgAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAACBgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAHBAAAAAADBAAAAAACBAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABAAAAAABBAAAAAABBAAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBQAAAAAHBAAAAAABBAAAAAABBAAAAAADBgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAFBQAAAAACBAAAAAACBAAAAAAABAAAAAADfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAwAAAAAEBQAAAAABBQAAAAAEBAAAAAACBwAAAAADBgAAAAACBgAAAAADAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAACAwAAAAADBQAAAAAFBAAAAAADfgAAAAAABwAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAAAwAAAAAEBQAAAAACBAAAAAADfgAAAAAABwAAAAABfgAAAAAABgAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAAAwAAAAACBQAAAAAHBwAAAAAAfgAAAAAABwAAAAAAfgAAAAAABgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAwAAAAABBQAAAAAFBAAAAAACBAAAAAABfgAAAAAABwAAAAABfgAAAAAABgAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: AwAAAAADAwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADBQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAEfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAADBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAACNgAAAAACNgAAAAADNgAAAAADNgAAAAADNgAAAAABNgAAAAADNgAAAAACNgAAAAADNgAAAAADNgAAAAABNgAAAAADNgAAAAACNgAAAAADNgAAAAACNgAAAAABNwAAAAAANwAAAAADNwAAAAAANwAAAAABNwAAAAACNwAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAACNwAAAAABNwAAAAAANwAAAAACNwAAAAACNwAAAAAANwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAADNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAADNwAAAAABNwAAAAACNwAAAAAC + tiles: AwAAAAAAAwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAEfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAADBAAAAAACBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAACNgAAAAABNgAAAAADNgAAAAAANgAAAAADNgAAAAABNgAAAAAANgAAAAAANgAAAAADNgAAAAACNgAAAAACNgAAAAABNgAAAAACNgAAAAABNgAAAAAANgAAAAABNwAAAAACNwAAAAAANwAAAAABNwAAAAAANwAAAAACNwAAAAACNwAAAAABNwAAAAABNwAAAAACNwAAAAABNwAAAAAANwAAAAADNwAAAAAANwAAAAADNwAAAAAANwAAAAABNwAAAAADNwAAAAABNwAAAAAANwAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAADNwAAAAABNwAAAAABNwAAAAACNwAAAAADNwAAAAAANwAAAAABNwAAAAACNwAAAAAD version: 6 1,-4: ind: 1,-4 - tiles: BAAAAAADBgAAAAADBgAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAADBAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBgAAAAABBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABgAAAAADBgAAAAADBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAADBQAAAAABBAAAAAABBAAAAAAABQAAAAAEBQAAAAAFBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBgAAAAAABQAAAAACBQAAAAABBQAAAAAHBQAAAAAABQAAAAACBQAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADAwAAAAAFAwAAAAAGAwAAAAAGAwAAAAAEBQAAAAAHBAAAAAAABAAAAAABBAAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAACBAAAAAABBwAAAAAABwAAAAACBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAGBQAAAAAEBAAAAAAABAAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADegAAAAADegAAAAACfgAAAAAAAwAAAAADAwAAAAAABQAAAAAABAAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACegAAAAADegAAAAAAfgAAAAAAAwAAAAAFBQAAAAAHBQAAAAACBAAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAACBwAAAAAAegAAAAADegAAAAADfgAAAAAAAwAAAAAEBQAAAAABBAAAAAABBAAAAAAABAAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABegAAAAACegAAAAADfgAAAAAAAwAAAAADBQAAAAACBAAAAAACBAAAAAABBAAAAAABewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAACewAAAAACewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAABBQAAAAAABAAAAAADBAAAAAACewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAABXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAFAwAAAAAGBQAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABbQAAAAAAXQAAAAAAfgAAAAAAAwAAAAACAwAAAAAABQAAAAAFBAAAAAACBAAAAAACBAAAAAADegAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAAC + tiles: BAAAAAACBgAAAAACBgAAAAABBgAAAAAABgAAAAABBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAABAAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAADBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABgAAAAAABgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBgAAAAABBgAAAAABBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAABBQAAAAAFBAAAAAADBAAAAAACBQAAAAACBQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBgAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAAABQAAAAAEBQAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADAwAAAAAGAwAAAAADAwAAAAAAAwAAAAACBQAAAAAABAAAAAABBAAAAAAABAAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAADBAAAAAABBwAAAAAABwAAAAABBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADAwAAAAAGBQAAAAADBAAAAAABBAAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACegAAAAAAegAAAAAAfgAAAAAAAwAAAAAFAwAAAAAFBQAAAAAABAAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAACegAAAAABegAAAAADfgAAAAAAAwAAAAABBQAAAAACBQAAAAAFBAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAAegAAAAAAegAAAAADfgAAAAAAAwAAAAAABQAAAAAGBAAAAAABBAAAAAADBAAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAABegAAAAACegAAAAADfgAAAAAAAwAAAAAGBQAAAAAFBAAAAAADBAAAAAAABAAAAAAAewAAAAABewAAAAADewAAAAACewAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACBQAAAAAEBQAAAAAABAAAAAADBAAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAACewAAAAABXQAAAAACXQAAAAAAfgAAAAAAAwAAAAADAwAAAAAEBQAAAAAGBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAABbQAAAAAAXQAAAAAAfgAAAAAAAwAAAAADAwAAAAAEBQAAAAACBAAAAAADBAAAAAACBAAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABegAAAAABegAAAAADegAAAAAD version: 6 0,-4: ind: 0,-4 - tiles: bAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABAAAAAAABAAAAAADBAAAAAACNwAAAAAANwAAAAAANwAAAAADNwAAAAADNwAAAAAAbAAAAAAANwAAAAABNwAAAAACNwAAAAABNwAAAAADNwAAAAAAbAAAAAAANwAAAAADBAAAAAADBAAAAAACBAAAAAACXQAAAAACaAAAAAAAfgAAAAAAaAAAAAACXQAAAAAAfgAAAAAAAwAAAAABAwAAAAAFBQAAAAAFBQAAAAAEBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAwAAAAACAwAAAAAEAwAAAAACBQAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAFBQAAAAAEBQAAAAAFBQAAAAABBQAAAAADBQAAAAAEBQAAAAAGBQAAAAAABAAAAAADBAAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAwAAAAAFAwAAAAAGAwAAAAAFAwAAAAAFAwAAAAABAwAAAAADAwAAAAAFBAAAAAACBQAAAAACBQAAAAAGXQAAAAAAaAAAAAADfgAAAAAAaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAFAwAAAAAGBQAAAAAGBQAAAAAABQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAAGAwAAAAAFaQAAAAAAXQAAAAABXQAAAAACXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAXQAAAAAAXQAAAAACXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAACbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAXQAAAAABfgAAAAAAXQAAAAABZwAAAAADZwAAAAAAXQAAAAADfgAAAAAAegAAAAABbQAAAAAAXQAAAAACXQAAAAADXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAXQAAAAADaAAAAAABXQAAAAABZwAAAAACZwAAAAADXQAAAAAAaAAAAAADegAAAAACbQAAAAAAXQAAAAACXQAAAAADXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAegAAAAACbQAAAAAAXQAAAAAAXQAAAAABXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACaQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAXQAAAAAAaAAAAAACXQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA + tiles: bAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABAAAAAADBAAAAAABBAAAAAADNwAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAAAbAAAAAAANwAAAAAANwAAAAADNwAAAAACNwAAAAABNwAAAAABbAAAAAAANwAAAAABBAAAAAAABAAAAAADBAAAAAADXQAAAAABaAAAAAAAfgAAAAAAaAAAAAACXQAAAAACfgAAAAAAAwAAAAABAwAAAAABBQAAAAAEBQAAAAAFBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAAEBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAwAAAAAABQAAAAAEBQAAAAADBQAAAAAGBQAAAAACBQAAAAADBQAAAAABBQAAAAAFBAAAAAACBAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAAwAAAAAFAwAAAAADAwAAAAABAwAAAAAEAwAAAAABAwAAAAADAwAAAAAFBAAAAAACBQAAAAABBQAAAAAHXQAAAAACaAAAAAABfgAAAAAAaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAAAwAAAAAABQAAAAAGBQAAAAAFBQAAAAAHQgAAAAACXQAAAAAAXQAAAAACXQAAAAADQgAAAAABQgAAAAAAQgAAAAADQgAAAAABQgAAAAADfgAAAAAAAwAAAAADAwAAAAAFAwAAAAAEAwAAAAAEAwAAAAABAwAAAAADaQAAAAAAXQAAAAADXQAAAAAAXQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAXQAAAAACXQAAAAACXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAegAAAAADbQAAAAAAXQAAAAADXQAAAAADXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAQgAAAAACfgAAAAAAXQAAAAACZwAAAAABZwAAAAADXQAAAAAAfgAAAAAAegAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAQgAAAAADaAAAAAADXQAAAAABZwAAAAAAZwAAAAABXQAAAAADaAAAAAACegAAAAABbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAQgAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAegAAAAACbQAAAAAAXQAAAAABXQAAAAADXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAQgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADaQAAAAAAXQAAAAABXQAAAAABXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAQgAAAAACaAAAAAADXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: BAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAABAAAAAABBQAAAAAGBQAAAAAABQAAAAAHBQAAAAABBAAAAAABBAAAAAACBAAAAAAANwAAAAADbAAAAAAANwAAAAABNwAAAAACNwAAAAACNwAAAAADNwAAAAADbAAAAAAAAwAAAAAGBQAAAAAHAwAAAAADAwAAAAABBQAAAAAHBAAAAAABBAAAAAADBAAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAADBQAAAAAABQAAAAACAwAAAAABfgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAGAwAAAAAFBQAAAAAEBQAAAAAHBwAAAAADBwAAAAAABQAAAAAEBQAAAAACBQAAAAAFBQAAAAADBQAAAAAHAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADAwAAAAAEAwAAAAAEAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACAwAAAAADAwAAAAAFAwAAAAABBQAAAAAGBQAAAAACBQAAAAABAwAAAAAEAwAAAAACAwAAAAADAwAAAAAEAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAAHBQAAAAAABQAAAAABAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAADAwAAAAACAwAAAAADAwAAAAAGfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAABaAAAAAACaAAAAAAAaAAAAAAAaAAAAAACfgAAAAAAXQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAADZQAAAAACZQAAAAADZQAAAAABZQAAAAACXQAAAAADaAAAAAAAXQAAAAACaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAACaAAAAAACaAAAAAABaAAAAAABaAAAAAAAfgAAAAAAXQAAAAAAaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABfgAAAAAAXQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA + tiles: BAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAABAAAAAADBQAAAAACBQAAAAADBQAAAAAABQAAAAACBAAAAAADBAAAAAABBAAAAAABNwAAAAADbAAAAAAANwAAAAABNwAAAAABNwAAAAACNwAAAAABNwAAAAADbAAAAAAAAwAAAAACBQAAAAAHAwAAAAACAwAAAAAGBQAAAAAEBAAAAAADBAAAAAADBAAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAADBQAAAAAHBQAAAAAFAwAAAAADfgAAAAAAAwAAAAACAwAAAAAGAwAAAAAFAwAAAAAGAwAAAAAABQAAAAAEBQAAAAACBwAAAAAABwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADBQAAAAABAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADBQAAAAADBQAAAAAGBQAAAAABBQAAAAAGBQAAAAABBQAAAAAGBQAAAAAGBQAAAAACAwAAAAAAAwAAAAAEAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAABQAAAAAHBQAAAAAGBQAAAAAFAwAAAAAAAwAAAAAEAwAAAAAEAwAAAAAEAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGBQAAAAAEBQAAAAABBQAAAAAEAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAGfgAAAAAAQgAAAAACQgAAAAAAQgAAAAACQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAADfgAAAAAAQgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAQgAAAAADaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAACZQAAAAACZQAAAAACZQAAAAADZQAAAAADXQAAAAADaAAAAAABQgAAAAAAaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAQgAAAAADaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAAAaAAAAAADaAAAAAADaAAAAAADaAAAAAACfgAAAAAAQgAAAAAAaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAABaQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAQgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: BAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADfgAAAAAAfgAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBQAAAAAHBwAAAAACBwAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAABBQAAAAAABQAAAAAEfgAAAAAAfgAAAAAABwAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBQAAAAAEAwAAAAAGBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABQAAAAAGAwAAAAAEBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBQAAAAAGAwAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBQAAAAACAwAAAAAAAwAAAAACBQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAABBQAAAAACBQAAAAACAwAAAAAGBQAAAAAGBQAAAAAABQAAAAAGAwAAAAAAAwAAAAABBQAAAAAFBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABBQAAAAAGAwAAAAADAwAAAAAFAwAAAAAAAwAAAAADAwAAAAAFAwAAAAADBQAAAAAGBQAAAAADBAAAAAACBAAAAAADBAAAAAACAwAAAAACBAAAAAABBQAAAAACBQAAAAAGBQAAAAABAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAACAwAAAAAFBQAAAAABBQAAAAADBQAAAAABAwAAAAABBQAAAAAEBQAAAAACBQAAAAAHAwAAAAABAwAAAAABegAAAAABFQAAAAABegAAAAAAfgAAAAAAAwAAAAAGAwAAAAABAwAAAAAFAwAAAAAEAwAAAAAEAwAAAAAAAwAAAAAGAwAAAAABBQAAAAAFBQAAAAAGAwAAAAAFAwAAAAABegAAAAABfgAAAAAAFQAAAAADfgAAAAAAAwAAAAABAwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAEAwAAAAAEAwAAAAAGAwAAAAABAwAAAAADAwAAAAAGAwAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbwAAAAAAbwAAAAAAFQAAAAAEFQAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbwAAAAAAbwAAAAAA + tiles: BAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACfgAAAAAAfgAAAAAABwAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAAABQAAAAAABwAAAAACBwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACBQAAAAAHBQAAAAAHfgAAAAAAfgAAAAAABwAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAAABQAAAAAGAwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABQAAAAAGAwAAAAAEBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAADBQAAAAAGAwAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAABBQAAAAAAAwAAAAAFAwAAAAAEBQAAAAAFBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBQAAAAACBQAAAAADAwAAAAAGBQAAAAADBQAAAAAGBQAAAAADAwAAAAAEAwAAAAAABQAAAAAHBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBQAAAAADAwAAAAAEAwAAAAACAwAAAAACAwAAAAAEAwAAAAABAwAAAAAEBQAAAAAFBQAAAAAHBAAAAAADBAAAAAABBAAAAAACAwAAAAAEBAAAAAABBQAAAAAGBQAAAAADBQAAAAACAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAAAAwAAAAACBQAAAAABBQAAAAAABQAAAAADAwAAAAABBQAAAAAGBQAAAAAFBQAAAAAHAwAAAAAFAwAAAAABegAAAAABFQAAAAAGegAAAAAAfgAAAAAAAwAAAAAFAwAAAAABAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAABAwAAAAABAwAAAAAFBQAAAAAFBQAAAAADAwAAAAAFAwAAAAABegAAAAABfgAAAAAAFQAAAAAEfgAAAAAAAwAAAAAEAwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAGAwAAAAAFAwAAAAACAwAAAAAGAwAAAAAGAwAAAAABegAAAAAAegAAAAACegAAAAABfgAAAAAAAwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAAwAAAAAGfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbwAAAAAAbwAAAAAAFQAAAAADFQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbwAAAAAAbwAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: BAAAAAABBAAAAAACBAAAAAADBwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBwAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACBwAAAAADBwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABwAAAAADBAAAAAADBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABwAAAAAABAAAAAACBAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAADBAAAAAACBwAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABwAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABBwAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABQAAAAAHBQAAAAAEBQAAAAABBQAAAAAEBQAAAAADBwAAAAACAwAAAAABAwAAAAAEAwAAAAABBQAAAAADBAAAAAADBAAAAAACAwAAAAAAAwAAAAABAwAAAAACBQAAAAAFBQAAAAABAwAAAAACAwAAAAAGAwAAAAAAAwAAAAAGBwAAAAABAwAAAAAEAwAAAAAAAwAAAAADAwAAAAAFBQAAAAAHBQAAAAACAwAAAAAEAwAAAAABAwAAAAABBQAAAAAABQAAAAAGAwAAAAAEAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAFAwAAAAAEBQAAAAAEfgAAAAAAfgAAAAAAAwAAAAAEAwAAAAAFAwAAAAABAwAAAAAEAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAAAwAAAAADAwAAAAAEHwAAAAAAfgAAAAAAAwAAAAAFAwAAAAABAwAAAAADAwAAAAADAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACBQAAAAAHAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAFQAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAAwAAAAADAwAAAAADAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADFQAAAAAAegAAAAACegAAAAABHwAAAAAAbQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAACegAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAFQAAAAADegAAAAADfgAAAAAAFQAAAAABHwAAAAACHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADFQAAAAAAegAAAAADegAAAAAA + tiles: BAAAAAADBAAAAAADBAAAAAACBwAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBwAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABwAAAAAABwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAADBwAAAAAABAAAAAACBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAABBwAAAAABBAAAAAACBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAADBAAAAAAABwAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAAABwAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBwAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBQAAAAACBQAAAAADBQAAAAAFBQAAAAADBQAAAAACBwAAAAACAwAAAAAGAwAAAAACAwAAAAABBQAAAAABBAAAAAADBAAAAAADAwAAAAAFAwAAAAABAwAAAAAFBQAAAAAFBQAAAAAHAwAAAAAEAwAAAAABAwAAAAAFAwAAAAADBwAAAAAAAwAAAAAGAwAAAAADAwAAAAAFAwAAAAAABQAAAAAGBQAAAAADAwAAAAAFAwAAAAAEAwAAAAABBQAAAAAABQAAAAAAAwAAAAAFAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACAwAAAAAFAwAAAAAFBQAAAAADfgAAAAAAfgAAAAAAAwAAAAABAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAAGAwAAAAAFAwAAAAAEHwAAAAABfgAAAAAAAwAAAAAGAwAAAAAAAwAAAAAFAwAAAAADAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADBQAAAAAFAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABFQAAAAAEfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAAwAAAAAAAwAAAAAGAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADFQAAAAAEegAAAAADegAAAAAAHwAAAAABbQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAFQAAAAACegAAAAAAfgAAAAAAFQAAAAAFHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADFQAAAAAGegAAAAABegAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADbQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABXQAAAAAAfgAAAAAAcAAAAAABXQAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAACfgAAAAAAcAAAAAADdQAAAAABcAAAAAAAcAAAAAADcAAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAXQAAAAADcAAAAAACfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAADcAAAAAADcAAAAAABcAAAAAAAIQAAAAAAIQAAAAACIQAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABIQAAAAACJAAAAAAAIQAAAAAAfgAAAAAAdgAAAAAAdAAAAAABdAAAAAACdAAAAAABdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAIQAAAAADIQAAAAADIQAAAAABfgAAAAAAdgAAAAAAdAAAAAAAdAAAAAABdAAAAAACdgAAAAAAfgAAAAAAJAAAAAABHwAAAAABHwAAAAABfgAAAAAAcAAAAAADcAAAAAACHwAAAAADIgAAAAACHwAAAAABfgAAAAAAdgAAAAAAdAAAAAADdAAAAAAAdAAAAAADdgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAcAAAAAABcwAAAAADIgAAAAACIgAAAAAAHwAAAAAAfgAAAAAAdQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAcAAAAAACcAAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACXQAAAAACfgAAAAAAcAAAAAABXQAAAAADcAAAAAACcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAdQAAAAACcAAAAAACcAAAAAACcAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACcAAAAAACcAAAAAADcAAAAAACfgAAAAAAXQAAAAACcAAAAAADfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAABcAAAAAADcAAAAAAAcAAAAAADFQAAAAAFegAAAAABegAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABFQAAAAACegAAAAAAegAAAAACfgAAAAAAdgAAAAAAdAAAAAAAdAAAAAADdAAAAAACdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAegAAAAACegAAAAACFQAAAAADfgAAAAAAdgAAAAAAdAAAAAABdAAAAAACdAAAAAAAdgAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAACfgAAAAAAcAAAAAAAcAAAAAADegAAAAACegAAAAADegAAAAAAfgAAAAAAdgAAAAAAdAAAAAAAdAAAAAABdAAAAAABdgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAcAAAAAABcwAAAAADegAAAAAAegAAAAACegAAAAACfgAAAAAAdQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAcAAAAAACcAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: ewAAAAAAewAAAAABewAAAAADewAAAAACewAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAABBQAAAAABBQAAAAAHBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBQAAAAAHBQAAAAADBQAAAAACAwAAAAAEBAAAAAAABQAAAAAEBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACBQAAAAABAwAAAAABAwAAAAAAAwAAAAABBQAAAAAFBQAAAAAGBQAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABBQAAAAAGBQAAAAACBAAAAAAABQAAAAADAwAAAAAEAwAAAAABAwAAAAADAwAAAAAFAwAAAAABAwAAAAAFBAAAAAABBAAAAAADBAAAAAABBAAAAAADBQAAAAAFBQAAAAADBQAAAAACBAAAAAABBQAAAAABBQAAAAAAAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAAABQAAAAABBQAAAAAFAwAAAAAEAwAAAAACAwAAAAABBQAAAAAABQAAAAAGAwAAAAABAwAAAAAEfgAAAAAAHwAAAAABHwAAAAACbQAAAAAAHwAAAAABBQAAAAAABQAAAAAABQAAAAAEAwAAAAAGAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAABBQAAAAAGBQAAAAACBQAAAAADAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAADBQAAAAAGBQAAAAAABQAAAAACAwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADBQAAAAAGAwAAAAACAwAAAAAEAwAAAAAEfgAAAAAADAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAbQAAAAAAAwAAAAAAAwAAAAABAwAAAAAFAwAAAAAEfgAAAAAADAAAAAAADAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACbQAAAAAAHwAAAAABHwAAAAAAHwAAAAAC + tiles: ewAAAAADewAAAAABewAAAAADewAAAAACewAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBQAAAAAABQAAAAAEBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABBQAAAAACBQAAAAAGBQAAAAAAAwAAAAACBAAAAAABBQAAAAAHBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBQAAAAAHAwAAAAACAwAAAAABAwAAAAABBQAAAAABBQAAAAAGBQAAAAAEBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBQAAAAAEBQAAAAAHBAAAAAADBQAAAAACAwAAAAAFAwAAAAABAwAAAAACAwAAAAAEAwAAAAABAwAAAAAEBAAAAAAABAAAAAACBAAAAAAABAAAAAADBQAAAAABBQAAAAACBQAAAAADBAAAAAAABQAAAAAABQAAAAABAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAADBQAAAAAABQAAAAAFAwAAAAADAwAAAAADAwAAAAADBQAAAAAEBQAAAAACAwAAAAAAAwAAAAAFfgAAAAAAHwAAAAAAHwAAAAADbQAAAAAAHwAAAAABBQAAAAADBQAAAAAHBQAAAAAHAwAAAAACAwAAAAAFAwAAAAADAwAAAAAAAwAAAAADAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAAABQAAAAABBQAAAAAGBQAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACBQAAAAAFBQAAAAAABQAAAAACAwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADBQAAAAADAwAAAAAFAwAAAAAFAwAAAAAGfgAAAAAADAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAbQAAAAAAAwAAAAAGAwAAAAAGAwAAAAAEAwAAAAAFfgAAAAAADAAAAAACDAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAACbQAAAAAAHwAAAAABHwAAAAACHwAAAAAD version: 6 -5,-3: ind: -5,-3 - tiles: BwAAAAAADAAAAAAADAAAAAAADAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBQAAAAACBQAAAAAGAwAAAAAGfgAAAAAAfgAAAAAAHwAAAAABBAAAAAABBwAAAAAABwAAAAACDAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBQAAAAAFBAAAAAACBQAAAAAGAwAAAAACfgAAAAAAbAAAAAAAfgAAAAAABwAAAAADBwAAAAAABAAAAAAADAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBQAAAAACBQAAAAAGAwAAAAADAwAAAAAGfgAAAAAAbAAAAAAAfgAAAAAABgAAAAABBwAAAAABBAAAAAABDAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABBQAAAAAHAwAAAAAFAwAAAAAEfgAAAAAAbAAAAAAAfgAAAAAABwAAAAABBwAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAAABQAAAAAFBQAAAAADBQAAAAAGBQAAAAAGBQAAAAADAwAAAAAGAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABAAAAAABBwAAAAABBAAAAAACBQAAAAADAwAAAAAEBQAAAAAABQAAAAAFBAAAAAACBQAAAAAGBAAAAAABBQAAAAAFAwAAAAACAwAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAACBAAAAAACAwAAAAAEBQAAAAAHAwAAAAADAwAAAAAEAwAAAAAGAwAAAAADAwAAAAACBQAAAAADAwAAAAACAwAAAAAFAwAAAAADfgAAAAAAfgAAAAAABAAAAAABBAAAAAADBQAAAAABAwAAAAAGAwAAAAABAwAAAAAGAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAEAwAAAAABAwAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAADBQAAAAADBQAAAAABAwAAAAABfgAAAAAAJAAAAAAAfgAAAAAAAwAAAAAFAwAAAAAAAwAAAAAFAwAAAAABAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAABBAAAAAAAAwAAAAADAwAAAAAEfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAADBQAAAAABAwAAAAAEAwAAAAAEfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBQAAAAABBQAAAAAEAwAAAAAAAwAAAAAEfgAAAAAAHwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBQAAAAABAwAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAABIwAAAAABJAAAAAACJAAAAAABBAAAAAACBQAAAAAEAwAAAAAGfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAAAIwAAAAADHwAAAAACHwAAAAACNwAAAAAANwAAAAABNwAAAAACfgAAAAAAHwAAAAACXQAAAAADZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAAANwAAAAAANwAAAAACNwAAAAAAfgAAAAAAHwAAAAABXQAAAAABZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAADIgAAAAABIgAAAAACIgAAAAAAIgAAAAAB + tiles: BwAAAAAADAAAAAACDAAAAAABDAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABQAAAAAFBQAAAAAEAwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACBAAAAAACBwAAAAABBwAAAAAADAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBQAAAAAHBAAAAAADBQAAAAAAAwAAAAAFfgAAAAAAbAAAAAAAfgAAAAAABwAAAAADBwAAAAACBAAAAAACDAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBQAAAAAEBQAAAAAHAwAAAAAAAwAAAAAFfgAAAAAAbAAAAAAAfgAAAAAABgAAAAABBwAAAAAABAAAAAACDAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABQAAAAABAwAAAAAEAwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAABBwAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADBQAAAAAGBQAAAAAHBQAAAAAGBQAAAAABBQAAAAACAwAAAAAFAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBAAAAAADBwAAAAABBAAAAAABBQAAAAAEAwAAAAAGBQAAAAAABQAAAAAGBAAAAAADBQAAAAAGBAAAAAAABQAAAAAEAwAAAAAAAwAAAAAEfgAAAAAAfgAAAAAABAAAAAABBAAAAAABBAAAAAACAwAAAAACBQAAAAAGAwAAAAABAwAAAAABAwAAAAADAwAAAAAFAwAAAAABBQAAAAAAAwAAAAADAwAAAAAAAwAAAAABfgAAAAAAfgAAAAAABAAAAAADBAAAAAABBQAAAAAEAwAAAAADAwAAAAAEAwAAAAACAwAAAAAGAwAAAAAAAwAAAAAFAwAAAAAAAwAAAAACAwAAAAAGAwAAAAAEAwAAAAAEfgAAAAAAfgAAAAAABAAAAAACBAAAAAABBQAAAAAFBQAAAAAHAwAAAAAGfgAAAAAAJAAAAAABfgAAAAAAAwAAAAACAwAAAAAEAwAAAAAGAwAAAAAGAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAADBAAAAAABAwAAAAACAwAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAADBQAAAAAGAwAAAAAGAwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABQAAAAAGBQAAAAAAAwAAAAACAwAAAAAFfgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBQAAAAACAwAAAAAEAwAAAAAGfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAABAAAAAAABQAAAAAFAwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAAAFQAAAAAGegAAAAABNwAAAAAANwAAAAAANwAAAAABfgAAAAAAHwAAAAAAXQAAAAABZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAABegAAAAABNwAAAAADNwAAAAAANwAAAAADfgAAAAAAHwAAAAACXQAAAAABZQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABFQAAAAACegAAAAAAegAAAAADFQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: BAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAAfgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBwAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABwAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBwAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBwAAAAACBwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAABBwAAAAADBAAAAAACBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAADBwAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAAABAAAAAACBwAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBwAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAADBwAAAAADBAAAAAADBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAADBwAAAAACBAAAAAADBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAABBAAAAAABBwAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABwAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAABBwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAABBwAAAAABBAAAAAADBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAACBwAAAAAABAAAAAABBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: BAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABfgAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBwAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAABwAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAABwAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAABBwAAAAADBAAAAAABBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAAABwAAAAABBAAAAAADBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAACBAAAAAACBwAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAACBwAAAAACBAAAAAADBAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAACBwAAAAACBAAAAAAABAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAACBAAAAAABBwAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBwAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAABwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAAABwAAAAADBAAAAAACBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAAABwAAAAABBAAAAAADBAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: NwAAAAACNwAAAAABNwAAAAAAfgAAAAAAHwAAAAAAXQAAAAADZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAADJAAAAAABJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcwAAAAABcwAAAAAAcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAABXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACaAAAAAABXQAAAAAAZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZQAAAAADXQAAAAABJAAAAAACfgAAAAAAJAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAAAcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcwAAAAAAcwAAAAAAcwAAAAADcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAACcwAAAAACcwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcwAAAAACcwAAAAADcwAAAAAAcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAABaAAAAAACXQAAAAADZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADewAAAAAAewAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAJAAAAAADegAAAAAAewAAAAACewAAAAADewAAAAACegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAJAAAAAACfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAC + tiles: NwAAAAABNwAAAAABNwAAAAACfgAAAAAAHwAAAAACXQAAAAACZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcwAAAAAAcwAAAAADcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACaAAAAAACXQAAAAACZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABZQAAAAAAXQAAAAABJAAAAAAAfgAAAAAAJAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcwAAAAACcwAAAAADcwAAAAABcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAADcwAAAAAAcwAAAAACcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcwAAAAABcwAAAAABcwAAAAACcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADaAAAAAABXQAAAAADZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAewAAAAACewAAAAACewAAAAADegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZQAAAAADXQAAAAACfgAAAAAAfgAAAAAAJAAAAAAAegAAAAACewAAAAADewAAAAABewAAAAABegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZQAAAAABXQAAAAABJAAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAAAegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAABegAAAAACegAAAAAD version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADXQAAAAACZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAXQAAAAADZQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADXQAAAAACZQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADIwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAACIwAAAAADIwAAAAAAHwAAAAACfgAAAAAAZQAAAAACZQAAAAABZQAAAAADZQAAAAABZQAAAAADZQAAAAADZQAAAAADDQAAAAAADQAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAADQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAADXQAAAAABZQAAAAAAXQAAAAAAaAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABDAAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAADXQAAAAABZQAAAAADXQAAAAABaAAAAAACZQAAAAACZQAAAAACDQAAAAAAZQAAAAADZQAAAAADXQAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAADXQAAAAAAZQAAAAACXQAAAAACaAAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACDQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAADZQAAAAABZQAAAAACZQAAAAADZQAAAAACZQAAAAACZQAAAAADDQAAAAAADQAAAAAAXQAAAAADfgAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAACfgAAAAAAegAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAADfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAXQAAAAABZQAAAAABXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAXQAAAAADZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADaAAAAAADaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADIwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAIwAAAAABIwAAAAACHwAAAAAAfgAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAADZQAAAAAAZQAAAAACZQAAAAAADQAAAAACDQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABDQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAXQAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAADDAAAAAADDAAAAAABXQAAAAAAZQAAAAABXQAAAAAAaAAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAADDAAAAAABXQAAAAAAZQAAAAACXQAAAAABaAAAAAADZQAAAAABZQAAAAABDQAAAAABZQAAAAADZQAAAAABXQAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAAAXQAAAAAAZQAAAAAAXQAAAAACaAAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAADQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAADZQAAAAABZQAAAAABZQAAAAAAZQAAAAACZQAAAAACZQAAAAABDQAAAAACDQAAAAAAXQAAAAADfgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAACfgAAAAAAegAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAACfgAAAAAA version: 6 -5,0: ind: -5,0 - tiles: fAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfAAAAAAAfAAAAAADfAAAAAACfAAAAAAAfgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAAAfgAAAAAAewAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAegAAAAACegAAAAADfAAAAAADegAAAAADegAAAAAAegAAAAADfgAAAAAAIwAAAAADIwAAAAADIwAAAAABIwAAAAADfgAAAAAAewAAAAADfgAAAAAAAwAAAAAFfgAAAAAAegAAAAAAegAAAAADfAAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAAAfgAAAAAAewAAAAABfgAAAAAAAwAAAAAEfgAAAAAAegAAAAABegAAAAABfAAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAFAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAGAwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAAwAAAAAFAwAAAAABAwAAAAABAwAAAAACBQAAAAAABQAAAAADAwAAAAAABQAAAAABAwAAAAAFAwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACfgAAAAAABQAAAAAGAwAAAAACAwAAAAABBQAAAAAGBQAAAAAEAwAAAAAEAwAAAAABAwAAAAAGAwAAAAAFAwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAABQAAAAADBAAAAAAABQAAAAAFBAAAAAAABAAAAAADBAAAAAABBQAAAAACBQAAAAABAwAAAAAFAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAADMAAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAAAMAAAAAADMAAAAAABJAAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAAAMAAAAAACMAAAAAABMAAAAAABMAAAAAACMAAAAAADMAAAAAABMAAAAAABMAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBQAAAAABAwAAAAAFAwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABJAAAAAACJAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABQAAAAAEBQAAAAAEBQAAAAAEBQAAAAADAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBQAAAAACBQAAAAAABQAAAAAHBQAAAAACAwAAAAAAAwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAKgAAAAACKgAAAAABKQAAAAAABAAAAAAABAAAAAAABQAAAAAFBQAAAAABAwAAAAAABQAAAAAFBQAAAAADAwAAAAABAwAAAAAEfgAAAAAAQAAAAAAAQAAAAAAAKgAAAAADKgAAAAADKgAAAAAC + tiles: fAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfAAAAAAAfAAAAAADfAAAAAABfAAAAAAAfgAAAAAAIwAAAAADIwAAAAABIwAAAAABIwAAAAADfgAAAAAAewAAAAABfgAAAAAAAwAAAAAFfgAAAAAAegAAAAADegAAAAADfAAAAAABegAAAAAAegAAAAACegAAAAAAfgAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAfgAAAAAAewAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAegAAAAACegAAAAABfAAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAAAfgAAAAAAewAAAAABfgAAAAAAAwAAAAAEfgAAAAAAegAAAAAAegAAAAACfAAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAFAwAAAAACAwAAAAAAAwAAAAAEAwAAAAAAAwAAAAAEAwAAAAAGfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAAwAAAAADAwAAAAABAwAAAAAGAwAAAAAGBQAAAAAEBQAAAAACAwAAAAADBQAAAAAFAwAAAAACAwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAABQAAAAAFAwAAAAAEAwAAAAAFBQAAAAAHBQAAAAAHAwAAAAAGAwAAAAAAAwAAAAAEAwAAAAAEAwAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAABQAAAAAABAAAAAACBQAAAAACBAAAAAACBAAAAAADBAAAAAABBQAAAAAGBQAAAAAHAwAAAAADAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAAAMAAAAAABMAAAAAACMAAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAMAAAAAABMAAAAAACMAAAAAABMAAAAAACMAAAAAADMAAAAAABMAAAAAAAMAAAAAABMAAAAAACJAAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAABMAAAAAACMAAAAAAAMAAAAAACMAAAAAACMAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACBQAAAAABAwAAAAAFAwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAADJAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBQAAAAABBQAAAAAGBQAAAAADBQAAAAAGAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBQAAAAADBQAAAAAFBQAAAAAHBQAAAAAFAwAAAAABAwAAAAAEfgAAAAAAQAAAAAAAQAAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKQAAAAAABAAAAAADBAAAAAAABQAAAAACBQAAAAAGAwAAAAABBQAAAAAEBQAAAAAHAwAAAAAAAwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAKgAAAAADKgAAAAABKgAAAAAC version: 6 -5,1: ind: -5,1 - tiles: KQAAAAAEBQAAAAACBQAAAAAHBQAAAAABAwAAAAAEAwAAAAAAAwAAAAAFAwAAAAACAwAAAAAEAwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAKwAAAAAAKwAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAwAAAAAFAwAAAAACAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAACKwAAAAACKwAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAADHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAJAAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAYgAAAAACYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAFAwAAAAAFAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAAEAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABBQAAAAABAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAABQAAAAAEAwAAAAAAAwAAAAABAwAAAAAFfgAAAAAAYgAAAAACYgAAAAACYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADBAAAAAABBQAAAAAFBQAAAAAGAwAAAAACAwAAAAAGfgAAAAAAYgAAAAADYgAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAEBAAAAAACBQAAAAABBQAAAAADAwAAAAABAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAABAAAAAACBAAAAAADBQAAAAAHBQAAAAACAwAAAAAFAwAAAAAGfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABBAAAAAACBAAAAAACBAAAAAAABQAAAAACBAAAAAADBQAAAAAAAwAAAAAFfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: KQAAAAAABQAAAAAFBQAAAAACBQAAAAAHAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAFAwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAKwAAAAADKwAAAAABKwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAABAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAABKwAAAAADKwAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAYgAAAAADYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAEAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAAAAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAABYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABQAAAAACAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACKQAAAAAABQAAAAABAwAAAAADAwAAAAAEAwAAAAABfgAAAAAAYgAAAAACYgAAAAABYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAABBQAAAAADBQAAAAAHAwAAAAAFAwAAAAABfgAAAAAAYgAAAAADYgAAAAADYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAABAAAAAACBQAAAAAABQAAAAACAwAAAAABAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAAABQAAAAAGBQAAAAAAAwAAAAADAwAAAAAGfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAABBAAAAAACBQAAAAAEBAAAAAADBQAAAAAHAwAAAAABfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -5,2: ind: -5,2 - tiles: KQAAAAAAKQAAAAAAKQAAAAAEBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABQAAAAACBQAAAAADAwAAAAABfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABAAAAAAABAAAAAACBAAAAAADNwAAAAAANwAAAAADNwAAAAADNwAAAAADNwAAAAAABAAAAAAABQAAAAABBQAAAAAFAwAAAAAEfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAABAAAAAADBAAAAAACBAAAAAACNwAAAAACNwAAAAABNwAAAAADNwAAAAACNwAAAAACBAAAAAABBAAAAAADBQAAAAAHAwAAAAACAwAAAAAEfgAAAAAAfgAAAAAAPgAAAAAABAAAAAABBAAAAAAABAAAAAABNwAAAAACNwAAAAADNwAAAAADNwAAAAADNwAAAAADBAAAAAACBQAAAAAHBQAAAAADBQAAAAACAwAAAAAEAwAAAAAAfgAAAAAAfgAAAAAABAAAAAACBAAAAAACBAAAAAABNwAAAAABNwAAAAAANwAAAAADNwAAAAABNwAAAAABBAAAAAAABAAAAAACBAAAAAAABQAAAAABBQAAAAAFAwAAAAADAwAAAAAEAwAAAAAFBgAAAAABBAAAAAAABAAAAAACNwAAAAAANwAAAAAANwAAAAADNwAAAAACNwAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABBQAAAAAEBQAAAAAHBQAAAAAGBQAAAAAHBgAAAAACBgAAAAACBgAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAABBQAAAAAFBAAAAAACBQAAAAAEAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBQAAAAAFBAAAAAAABQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAADBgAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAACBgAAAAADBAAAAAAABAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAACBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KQAAAAAAKQAAAAAAKQAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABQAAAAADBQAAAAAGAwAAAAADfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABAAAAAABBAAAAAACBAAAAAADNwAAAAAANwAAAAACNwAAAAAANwAAAAADNwAAAAABBAAAAAACBQAAAAAEBQAAAAAGAwAAAAAGfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAABAAAAAAABAAAAAAABAAAAAAANwAAAAAANwAAAAADNwAAAAABNwAAAAADNwAAAAAABAAAAAACBAAAAAADBQAAAAABAwAAAAAFAwAAAAAGfgAAAAAAfgAAAAAAPgAAAAAABAAAAAAABAAAAAAABAAAAAAANwAAAAACNwAAAAACNwAAAAABNwAAAAAANwAAAAABBAAAAAABBQAAAAABBQAAAAAHBQAAAAAAAwAAAAAEAwAAAAADfgAAAAAAfgAAAAAABAAAAAACBAAAAAABBAAAAAABNwAAAAACNwAAAAAANwAAAAABNwAAAAAANwAAAAABBAAAAAADBAAAAAAABAAAAAACBQAAAAAEBQAAAAACAwAAAAABAwAAAAABAwAAAAAABgAAAAABBAAAAAADBAAAAAADNwAAAAABNwAAAAABNwAAAAAANwAAAAAANwAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBQAAAAACBQAAAAAFBQAAAAAGBQAAAAADBgAAAAADBgAAAAABBgAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBQAAAAAFBAAAAAABBQAAAAAEAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBQAAAAACBAAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAAABAAAAAACBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: BAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBQAAAAADBQAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABKQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAADBQAAAAAFBQAAAAAFBQAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABQAAAAAABQAAAAAABQAAAAAHBQAAAAAFBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABQAAAAAFBQAAAAAFBQAAAAAGBQAAAAAEBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAACBQAAAAAGBQAAAAAGBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAADfgAAAAAAfgAAAAAABwAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAADBwAAAAACBwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAAfgAAAAAAfgAAAAAABwAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBgAAAAACBwAAAAACBwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBgAAAAADBAAAAAACBgAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABBgAAAAADBwAAAAABBwAAAAACBwAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAABgAAAAACBgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAC + tiles: BAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABQAAAAAEBQAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABKQAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBQAAAAAEBQAAAAAHBQAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABQAAAAACBQAAAAAHBQAAAAACBQAAAAAFBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBQAAAAACBQAAAAAGBQAAAAAEBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABfgAAAAAAfgAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBwAAAAADBwAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADfgAAAAAAfgAAAAAABwAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBgAAAAAABwAAAAACBwAAAAAABwAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACBgAAAAAABAAAAAABBgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBgAAAAACBwAAAAABBwAAAAABBwAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBgAAAAADBgAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: HwAAAAABIgAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcwAAAAABcAAAAAAAcgAAAAACcgAAAAABcgAAAAADcAAAAAACcQAAAAADcgAAAAACfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAcAAAAAACcwAAAAABcAAAAAACcQAAAAACcQAAAAADcQAAAAACcAAAAAACcQAAAAABcgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdAAAAAABcAAAAAAAfgAAAAAAcAAAAAAAcwAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcQAAAAAAcgAAAAABfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAdAAAAAACcAAAAAADdQAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAADdQAAAAABcAAAAAABfgAAAAAAcAAAAAADdAAAAAABcAAAAAAAfgAAAAAAcAAAAAABcwAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcQAAAAACcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAcAAAAAAAcwAAAAADcAAAAAACcQAAAAADcQAAAAACcQAAAAABcQAAAAACcQAAAAACcQAAAAACfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAABcAAAAAACcgAAAAADcgAAAAABcgAAAAADcgAAAAACcgAAAAABcgAAAAACfgAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdQAAAAAAcAAAAAADcwAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAABfgAAAAAAcAAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcAAAAAAAdQAAAAADcAAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAADfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAAAcAAAAAADcgAAAAABdQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAACcwAAAAABcwAAAAADcwAAAAADcAAAAAABfgAAAAAAcAAAAAACcAAAAAADcgAAAAABcgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAADcwAAAAACdgAAAAAAcwAAAAACcAAAAAADfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAA + tiles: egAAAAADegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcwAAAAAAcAAAAAADcgAAAAABcgAAAAADcgAAAAAAcAAAAAAAcQAAAAABcgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAcAAAAAABcwAAAAADcAAAAAADcQAAAAACcQAAAAADcQAAAAABcAAAAAACcQAAAAACcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdAAAAAACcAAAAAADfgAAAAAAcAAAAAABcwAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcQAAAAACcgAAAAABfgAAAAAAQgAAAAACfgAAAAAAcAAAAAAAdAAAAAADcAAAAAACdQAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAABdQAAAAABQgAAAAABfgAAAAAAcAAAAAADdAAAAAADcAAAAAACfgAAAAAAcAAAAAABcwAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcQAAAAAAcAAAAAABfgAAAAAAQgAAAAACfgAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAABcwAAAAACcAAAAAADcQAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAAAcQAAAAABfgAAAAAAQgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcwAAAAADcAAAAAABcgAAAAADcgAAAAACcgAAAAABcgAAAAAAcgAAAAABcgAAAAAAfgAAAAAAQgAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAACdQAAAAABcAAAAAADcwAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAQgAAAAADfgAAAAAAcAAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcAAAAAACdQAAAAADQgAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAACcAAAAAADfgAAAAAAQgAAAAABfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAcAAAAAADcAAAAAACcgAAAAADdQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAABcwAAAAABcwAAAAACcwAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAADcgAAAAAAcgAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAAAcwAAAAACdgAAAAAAcwAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAACdgAAAAAAcwAAAAADcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAcAAAAAADcwAAAAACdgAAAAAAcwAAAAABcAAAAAACfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABHwAAAAAAdQAAAAADcAAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcAAAAAADfgAAAAAAcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAACfgAAAAAAcgAAAAABcgAAAAAAcgAAAAACfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcgAAAAADdQAAAAADcgAAAAACfgAAAAAAegAAAAADdQAAAAADdQAAAAAAdQAAAAADdQAAAAADdQAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcgAAAAACcgAAAAACcgAAAAACfgAAAAAAfAAAAAAAcgAAAAACcgAAAAABcgAAAAADcgAAAAABcgAAAAABfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAfAAAAAABdQAAAAAAdQAAAAADcgAAAAADdQAAAAABdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACIwAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAACegAAAAACegAAAAABegAAAAAAZQAAAAADZQAAAAAADQAAAAABZQAAAAAAZQAAAAACZQAAAAABZQAAAAAADQAAAAACIwAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAADewAAAAAAewAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAIwAAAAADegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACegAAAAAAegAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAIAAAAAADJAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAAAfgAAAAAAHwAAAAADHwAAAAABJAAAAAAAIAAAAAACJAAAAAADHwAAAAADIwAAAAAAJQAAAAAAIwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAADJAAAAAAAHwAAAAAAHwAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAABdgAAAAAAcwAAAAAAcAAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAcAAAAAAAcwAAAAAAdgAAAAAAcwAAAAACcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAACHwAAAAACdQAAAAAAcAAAAAABcwAAAAACcwAAAAADcwAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAQAAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcgAAAAADcgAAAAABcgAAAAADfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcgAAAAABdQAAAAAAcgAAAAAAfgAAAAAAegAAAAACdQAAAAAAdQAAAAAAdQAAAAACdQAAAAABdQAAAAADfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcgAAAAAAcgAAAAACcgAAAAADfgAAAAAAfAAAAAADcgAAAAACcgAAAAADcgAAAAACcgAAAAACcgAAAAABfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfAAAAAAAdQAAAAADdQAAAAADcgAAAAABdQAAAAABdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAADIwAAAAAAIwAAAAACIwAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAIwAAAAACegAAAAABegAAAAADegAAAAABegAAAAACegAAAAACegAAAAABegAAAAAAZQAAAAAAZQAAAAABDQAAAAABZQAAAAACZQAAAAACZQAAAAABZQAAAAAADQAAAAAAIwAAAAADewAAAAACewAAAAACewAAAAACewAAAAACewAAAAACewAAAAAAewAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABIwAAAAADegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAACegAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADIAAAAAADJAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAHwAAAAABHwAAAAADJAAAAAABIAAAAAAAJAAAAAADHwAAAAADIwAAAAADJQAAAAAAIwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADJAAAAAADHwAAAAADHwAAAAAB version: 6 -4,0: ind: -4,0 - tiles: JAAAAAAAIAAAAAAAJAAAAAACHwAAAAABJQAAAAAAHwAAAAAAJQAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAAAfgAAAAAAHwAAAAADHwAAAAADJAAAAAAAIAAAAAABJAAAAAAAHwAAAAACIwAAAAAAJQAAAAAAIwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAJAAAAAABfgAAAAAAJAAAAAAAIAAAAAADJAAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABJAAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAADIwAAAAACIwAAAAAAIwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADIwAAAAABIwAAAAADIwAAAAABHwAAAAACJAAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAADIwAAAAACIwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABJAAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACfgAAAAAAJAAAAAADJAAAAAAAIwAAAAABJAAAAAADJAAAAAAAJAAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABIwAAAAABJAAAAAAAJAAAAAACJQAAAAAAKwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAJAAAAAAAegAAAAACegAAAAACfgAAAAAAJAAAAAABJAAAAAADIwAAAAABJAAAAAABJAAAAAAAJQAAAAAAKwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAKgAAAAACKgAAAAACKgAAAAACfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAACJAAAAAACJAAAAAABJQAAAAAA + tiles: JAAAAAACIAAAAAACJAAAAAAAHwAAAAABJQAAAAAAHwAAAAAAJQAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAACHwAAAAABJAAAAAACIAAAAAAAJAAAAAABHwAAAAABIwAAAAADJQAAAAAAIwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAADfgAAAAAAJAAAAAADIAAAAAADJAAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADJAAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAHwAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAACIwAAAAAAIwAAAAADIwAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAACIwAAAAADIwAAAAAAIwAAAAAAHwAAAAABJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAABIwAAAAACIwAAAAABIwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAABfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAACIwAAAAACJAAAAAADJAAAAAABJQAAAAAAKwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAJAAAAAAAegAAAAADegAAAAACfgAAAAAAJAAAAAABJAAAAAACIwAAAAACJAAAAAAAJAAAAAADJQAAAAAAKwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAACJAAAAAACJAAAAAABJQAAAAAA version: 6 -4,1: ind: -4,1 - tiles: KwAAAAAAJAAAAAACHwAAAAABHwAAAAADHwAAAAAAJAAAAAACKgAAAAACKgAAAAACKgAAAAAAfgAAAAAAJAAAAAABJAAAAAACIwAAAAADJAAAAAACJAAAAAADJQAAAAAAKwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAKgAAAAAAKgAAAAABKgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHwAAAAABHwAAAAADHwAAAAACJAAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAJAAAAAABHwAAAAABHwAAAAAAHwAAAAACJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAABHwAAAAACHwAAAAACHwAAAAADJAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHwAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAaAAAAAABfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAHwAAAAACJAAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAYgAAAAAAYgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJAAAAAADJAAAAAACaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAABYgAAAAACYgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAGAwAAAAAAAwAAAAABAwAAAAAFaAAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAACYgAAAAAAYgAAAAABYgAAAAAAfgAAAAAAAwAAAAACAwAAAAAABQAAAAAHAwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAYgAAAAABYgAAAAAAYgAAAAACfgAAAAAAAwAAAAAAAwAAAAAFBQAAAAAHAwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABBQAAAAAGBAAAAAADAwAAAAAFfgAAAAAAPgAAAAAAXQAAAAABbwAAAAAAOQAAAAABOQAAAAADXQAAAAABaAAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAAwAAAAAEBQAAAAABBQAAAAABAwAAAAAGfgAAAAAAPgAAAAAAXQAAAAADEgAAAAAAbwAAAAAAOQAAAAABXQAAAAACaAAAAAABegAAAAAAegAAAAADegAAAAABfgAAAAAAAwAAAAABBQAAAAAGBAAAAAACAwAAAAAAfgAAAAAA + tiles: KwAAAAACJAAAAAADHwAAAAADHwAAAAAAHwAAAAABJAAAAAAAKgAAAAABKgAAAAACKgAAAAAAfgAAAAAAJAAAAAACJAAAAAABIwAAAAABJAAAAAABJAAAAAABJQAAAAAAKwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAAAHwAAAAABHwAAAAAAJAAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAJAAAAAADHwAAAAACHwAAAAACHwAAAAACJAAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAJAAAAAABHwAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAYgAAAAADYgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAACJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAYgAAAAADYgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJAAAAAABJAAAAAADaAAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACaAAAAAAAYgAAAAABYgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAAAwAAAAABAwAAAAABAwAAAAAGaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAADYgAAAAADYgAAAAABYgAAAAACfgAAAAAAAwAAAAABAwAAAAAFBQAAAAABAwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAfgAAAAAAAwAAAAAEAwAAAAABBQAAAAAEAwAAAAAGfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABBQAAAAAHBAAAAAADAwAAAAAGfgAAAAAAPgAAAAAAXQAAAAADbwAAAAAAOQAAAAACOQAAAAAAXQAAAAADaAAAAAACegAAAAABegAAAAACegAAAAADfgAAAAAAAwAAAAAFBQAAAAADBQAAAAAFAwAAAAAGfgAAAAAAPgAAAAAAXQAAAAACEgAAAAADbwAAAAAAOQAAAAAAXQAAAAACaAAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAAwAAAAABBQAAAAAFBAAAAAABAwAAAAAGfgAAAAAA version: 6 -4,2: ind: -4,2 - tiles: PgAAAAAAXQAAAAABEgAAAAADEgAAAAACbwAAAAAAXQAAAAACaAAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAAwAAAAADAwAAAAAGBQAAAAAAAwAAAAABfgAAAAAAPgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAaAAAAAAAaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAAwAAAAAFBQAAAAACBQAAAAAEAwAAAAACfgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAFBQAAAAAHBQAAAAAHAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADKAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABAwAAAAAGBQAAAAAFBQAAAAAHBAAAAAAABQAAAAAHAwAAAAADAwAAAAABfgAAAAAAJAAAAAADKAAAAAABJAAAAAACfgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAFBQAAAAAABQAAAAACBQAAAAAGBQAAAAAGBQAAAAAFAwAAAAAEAwAAAAAFfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAAHBQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAAAwAAAAAGAwAAAAAAAwAAAAAGAwAAAAADAwAAAAABAwAAAAAEAwAAAAAEAwAAAAAEAwAAAAADBQAAAAAGBAAAAAAABQAAAAACBAAAAAADBQAAAAAFBQAAAAAFBQAAAAAEAwAAAAAAfgAAAAAABQAAAAABBQAAAAAHBQAAAAAFBQAAAAABBQAAAAAABQAAAAADBQAAAAAGBQAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBQAAAAAABQAAAAAEAwAAAAABbAAAAAAABAAAAAABBAAAAAADBQAAAAAGBAAAAAAABQAAAAAFBQAAAAAGBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAABQAAAAADAwAAAAAGfgAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABQAAAAABBQAAAAAHBQAAAAADAwAAAAACAwAAAAAGBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBQAAAAAHBQAAAAADBQAAAAAEAwAAAAADAwAAAAAEAwAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBQAAAAAABQAAAAACBQAAAAAABQAAAAAEAwAAAAACfgAAAAAAfgAAAAAABgAAAAABBgAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACBQAAAAAHBQAAAAABBQAAAAADAwAAAAACAwAAAAAEfgAAAAAAfgAAAAAABgAAAAADBgAAAAADBgAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAAABQAAAAADBQAAAAAEBQAAAAACAwAAAAABAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABQAAAAAFAwAAAAACAwAAAAAFAwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAAABAAAAAABBQAAAAACBQAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: PgAAAAAAXQAAAAABEgAAAAACEgAAAAABbwAAAAAAXQAAAAAAaAAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAAwAAAAABAwAAAAAGBQAAAAACAwAAAAACfgAAAAAAPgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAADaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAACBQAAAAAFAwAAAAAFfgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAABfgAAAAAAfgAAAAAAAwAAAAADAwAAAAAGBQAAAAABBQAAAAAFAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABKAAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAABBQAAAAAGBQAAAAAEBAAAAAAABQAAAAACAwAAAAAGAwAAAAAAfgAAAAAAJAAAAAACKAAAAAAAJAAAAAAAfgAAAAAAAwAAAAAGAwAAAAACAwAAAAAAAwAAAAAABQAAAAAHBQAAAAADBQAAAAAFBQAAAAAABQAAAAAEAwAAAAAFAwAAAAAFfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAAwAAAAABBQAAAAAEBQAAAAADBQAAAAAGBQAAAAAGBQAAAAACBQAAAAAGBQAAAAACAwAAAAAEAwAAAAAEAwAAAAABAwAAAAABAwAAAAAAAwAAAAAGAwAAAAAGAwAAAAACAwAAAAAGBQAAAAACBAAAAAACBQAAAAADBAAAAAABBQAAAAAGBQAAAAAGBQAAAAAGAwAAAAAFfgAAAAAABQAAAAAHBQAAAAACBQAAAAAHBQAAAAAGBQAAAAABBQAAAAADBQAAAAAEBQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACBQAAAAAGBQAAAAAFAwAAAAAEbAAAAAAABAAAAAAABAAAAAABBQAAAAAEBAAAAAABBQAAAAAFBQAAAAAEBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBQAAAAAAAwAAAAACfgAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBQAAAAAABQAAAAACBQAAAAABAwAAAAAAAwAAAAAGBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBQAAAAAGBQAAAAABBQAAAAAHAwAAAAAAAwAAAAAEAwAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBQAAAAAEBQAAAAACBQAAAAAEBQAAAAAGAwAAAAAEfgAAAAAAfgAAAAAABgAAAAACBgAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAADBQAAAAAHBQAAAAAEBQAAAAADAwAAAAADAwAAAAABfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABQAAAAABBQAAAAACBQAAAAAHAwAAAAAEAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAABgAAAAABBgAAAAADBgAAAAAABgAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADBQAAAAAAAwAAAAAFAwAAAAAEAwAAAAAEfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAADBgAAAAACBAAAAAABBQAAAAADBQAAAAAFAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAACBgAAAAABBQAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBQAAAAAFAwAAAAAGfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAwAAAAACfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAAABgAAAAACBQAAAAAAAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBQAAAAADAwAAAAAEfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,3: ind: -3,3 @@ -395,11 +394,11 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAHwAAAAADXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAHwAAAAACXQAAAAADXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAegAAAAAAewAAAAABewAAAAABewAAAAABfgAAAAAAHwAAAAACXQAAAAADHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAegAAAAABewAAAAAAewAAAAADewAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAADAAAAAAAAfQAAAAAAfgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADIwAAAAAAIwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAACHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACHwAAAAADHwAAAAACJAAAAAADHwAAAAADHwAAAAABXQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAADIwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACXQAAAAADHwAAAAADAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAACXQAAAAACHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACXQAAAAABHwAAAAADJAAAAAABHwAAAAAAXQAAAAABHwAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAHwAAAAABXQAAAAABXQAAAAACAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABfgAAAAAAHwAAAAAAXQAAAAADXQAAAAACAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAegAAAAACewAAAAABewAAAAABewAAAAACfgAAAAAAHwAAAAACXQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABfgAAAAAAegAAAAAAewAAAAAAewAAAAABewAAAAABfgAAAAAAHwAAAAADXQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADXQAAAAAAHwAAAAACAAAAAAAAfQAAAAAAfgAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACHwAAAAACHwAAAAADJAAAAAAAHwAAAAABHwAAAAACXQAAAAADHwAAAAABfQAAAAAAfQAAAAAAfgAAAAAAIwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABXQAAAAADHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAACfgAAAAAAHwAAAAABXQAAAAADHwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAACJAAAAAAAHwAAAAADXQAAAAAAHwAAAAAA version: 6 -1,3: ind: -1,3 - tiles: XQAAAAADXQAAAAACXQAAAAADHwAAAAADJAAAAAACHwAAAAADHwAAAAAAHwAAAAACJAAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAACfgAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJAAAAAACHwAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAABJAAAAAACJAAAAAABfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAAAHwAAAAADHwAAAAABJAAAAAACfgAAAAAAJAAAAAADHwAAAAAAJAAAAAAAJAAAAAADfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAA + tiles: XQAAAAACXQAAAAAAXQAAAAACHwAAAAABJAAAAAAAHwAAAAADHwAAAAADHwAAAAACJAAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAHwAAAAADfgAAAAAAJAAAAAAAJAAAAAACJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACfgAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJAAAAAABHwAAAAABJAAAAAABfgAAAAAAJAAAAAAAHwAAAAADJAAAAAACJAAAAAACfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAAAHwAAAAADHwAAAAAAJAAAAAAAfgAAAAAAJAAAAAADHwAAAAACJAAAAAACJAAAAAADfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAA version: 6 0,3: ind: 0,3 @@ -411,31 +410,31 @@ entities: version: 6 -4,-5: ind: -4,-5 - tiles: KwAAAAADKgAAAAAACgAAAAAACgAAAAAADgAAAAAKDgAAAAAOCgAAAAAAewAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABNwAAAAACKwAAAAABKQAAAAAACgAAAAAADgAAAAABCgAAAAAAKQAAAAAEewAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADKQAAAAAAKwAAAAAAKgAAAAACKQAAAAADCgAAAAAACgAAAAAAewAAAAACewAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAAKgAAAAAAKwAAAAACKwAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAewAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAAewAAAAABLAAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAAAewAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABewAAAAADdAAAAAACdAAAAAADdAAAAAACbgAAAAADewAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAABewAAAAABdAAAAAACdAAAAAADewAAAAABewAAAAACewAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAAewAAAAACdAAAAAACdQAAAAABdAAAAAAAbgAAAAADewAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACewAAAAADdAAAAAABdAAAAAACewAAAAACewAAAAADewAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABewAAAAACdAAAAAABdAAAAAADdAAAAAADbgAAAAABewAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBwAAAAADewAAAAABLAAAAAACewAAAAABewAAAAACewAAAAABewAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADewAAAAADKgAAAAACKgAAAAAAKgAAAAABewAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAABBwAAAAAAewAAAAABKgAAAAACKgAAAAACKgAAAAADewAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAALAAAAAADKgAAAAABKgAAAAACKgAAAAAAewAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBwAAAAADewAAAAAAKgAAAAADKgAAAAAAKgAAAAABewAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAAewAAAAADKgAAAAACKgAAAAADKgAAAAABewAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBwAAAAAD + tiles: KwAAAAADKgAAAAADCgAAAAAACgAAAAAADgAAAAANDgAAAAAJCgAAAAAAewAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACNwAAAAABKwAAAAACKQAAAAACCgAAAAAADgAAAAAGCgAAAAAAKQAAAAAAewAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAKQAAAAAAKwAAAAACKgAAAAABKQAAAAAACgAAAAAACgAAAAAAewAAAAABewAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABKgAAAAACKwAAAAADKwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAewAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABewAAAAAAdAAAAAAAdAAAAAADdAAAAAADbgAAAAADewAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAABewAAAAAAdAAAAAAAdAAAAAAAewAAAAABewAAAAADewAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAAewAAAAACdAAAAAABdQAAAAACdAAAAAAAbgAAAAABewAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACewAAAAACdAAAAAAAdAAAAAABewAAAAAAewAAAAAAewAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAAewAAAAABdAAAAAAAdAAAAAACdAAAAAAAbgAAAAACewAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABwAAAAAAewAAAAADLAAAAAACewAAAAABewAAAAAAewAAAAAAewAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABewAAAAABKgAAAAACKgAAAAADKgAAAAAAewAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBwAAAAACewAAAAACKgAAAAAAKgAAAAAAKgAAAAADewAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACLAAAAAAAKgAAAAACKgAAAAADKgAAAAAAewAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAADBwAAAAADewAAAAACKgAAAAAAKgAAAAAAKgAAAAADewAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAABewAAAAABKgAAAAABKgAAAAABKgAAAAADewAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAABBwAAAAAB version: 6 -3,-6: ind: -3,-6 - tiles: BAAAAAACBAAAAAADBAAAAAABBQAAAAAABQAAAAAEBQAAAAADBQAAAAAGBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABBQAAAAAEBQAAAAAABQAAAAAABQAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAAEBQAAAAAEBQAAAAAFBAAAAAACBAAAAAACBAAAAAABBAAAAAACKQAAAAAAKQAAAAAAKQAAAAAACgAAAAAACgAAAAAAKQAAAAACBAAAAAADBAAAAAAABQAAAAABBQAAAAAHBQAAAAAHBQAAAAAEBAAAAAAABAAAAAAABAAAAAAAKQAAAAAAKQAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACgAAAAAABAAAAAADBAAAAAABBQAAAAACBQAAAAAFBQAAAAABBQAAAAAEBAAAAAABBAAAAAADKQAAAAAEKQAAAAAFCgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABQAAAAAFBQAAAAAEBQAAAAACBAAAAAADBAAAAAABBAAAAAAAKQAAAAAAKQAAAAAACgAAAAAACQAAAAAACQAAAAAACgAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAABBQAAAAAGBQAAAAAEBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAAAKQAAAAAAKQAAAAAACgAAAAAACgAAAAAAKQAAAAAAKQAAAAABKQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAAABQAAAAAGBAAAAAABBAAAAAACBAAAAAADBAAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAAFBAAAAAADBAAAAAADBAAAAAAABQAAAAAEBQAAAAACBQAAAAAFBQAAAAACBQAAAAAFBQAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAAHBQAAAAAABQAAAAADBQAAAAAHBQAAAAAABQAAAAAGBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABQAAAAAHBQAAAAAABQAAAAAEBQAAAAABBQAAAAAHBQAAAAAHBQAAAAADBQAAAAAFBQAAAAABBQAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBQAAAAADBQAAAAADBQAAAAACBAAAAAABBAAAAAACBQAAAAAEBQAAAAAEBQAAAAAFBQAAAAADBQAAAAAHBQAAAAAABQAAAAAABAAAAAAABAAAAAADBQAAAAAFBQAAAAAEBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAABQAAAAAFBQAAAAADBQAAAAAEBQAAAAAGBAAAAAABBAAAAAADBAAAAAABBAAAAAABBQAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAC + tiles: BAAAAAABBAAAAAABBAAAAAAABQAAAAABBQAAAAAHBQAAAAAGBQAAAAAHBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBQAAAAAHBQAAAAAGBQAAAAADBQAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAABAAAAAAABAAAAAAABAAAAAABBQAAAAAHBQAAAAACBQAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACKQAAAAAAKQAAAAAAKQAAAAAACgAAAAAACgAAAAAAKQAAAAADBAAAAAABBAAAAAABBQAAAAABBQAAAAAHBQAAAAACBQAAAAADBAAAAAAABAAAAAACBAAAAAAAKQAAAAAAKQAAAAABCgAAAAAACgAAAAAACQAAAAAACQAAAAAACgAAAAAABAAAAAADBAAAAAABBQAAAAAABQAAAAACBQAAAAAFBQAAAAAEBAAAAAABBAAAAAABKQAAAAAAKQAAAAABCgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAACBQAAAAAFBQAAAAADBQAAAAAFBAAAAAACBAAAAAAABAAAAAABKQAAAAAAKQAAAAAACgAAAAAACQAAAAAACQAAAAAACgAAAAAAKQAAAAADKQAAAAABBAAAAAADBAAAAAACBQAAAAAEBQAAAAAEBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABKQAAAAAAKQAAAAAACgAAAAAACgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABQAAAAAHBAAAAAAABAAAAAADBAAAAAAABAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAABBAAAAAACBAAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAAHBQAAAAAGBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACBQAAAAAABQAAAAAGBQAAAAADBQAAAAAGBQAAAAABBQAAAAADBQAAAAAHBQAAAAAABQAAAAAGBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAADBQAAAAABBQAAAAAABQAAAAAGBQAAAAAABQAAAAAABQAAAAABBQAAAAAHBQAAAAADBQAAAAAGBQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBQAAAAAEBQAAAAAEBQAAAAABBAAAAAAABAAAAAABBQAAAAAABQAAAAAGBQAAAAAGBQAAAAAHBQAAAAABBQAAAAAHBQAAAAABBAAAAAADBAAAAAACBQAAAAAGBQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBQAAAAABBQAAAAAABQAAAAAHBQAAAAAFBAAAAAACBAAAAAABBAAAAAABBAAAAAADBQAAAAAGBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAA version: 6 -6,0: ind: -6,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfAAAAAAAfAAAAAACfAAAAAAAAwAAAAAEAwAAAAAEAwAAAAAEAwAAAAAFAwAAAAAGAwAAAAACAwAAAAAFAwAAAAAFAwAAAAAEAwAAAAAFAwAAAAAAfgAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAACBQAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAAGBQAAAAADAwAAAAAFBQAAAAAFBQAAAAAAAwAAAAACAwAAAAABfgAAAAAAewAAAAACegAAAAAAegAAAAABegAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABQAAAAAGBAAAAAACBQAAAAAEAwAAAAADAwAAAAAABQAAAAAFAwAAAAAAfgAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAACBAAAAAAABQAAAAACBQAAAAABAwAAAAACAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABQAAAAAHBQAAAAAGAwAAAAADAwAAAAAAAwAAAAAFAwAAAAAFAwAAAAADAwAAAAAGXQAAAAACXQAAAAABJQAAAAAAfgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBQAAAAAFBQAAAAACBQAAAAACBQAAAAACBQAAAAAEBQAAAAACBQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAABQAAAAAABQAAAAABfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAAIAAAAAAAIAAAAAABIAAAAAACfgAAAAAABAAAAAABBAAAAAAABAAAAAABMAAAAAABMAAAAAACMAAAAAAAMAAAAAADMAAAAAADMAAAAAACMAAAAAABMAAAAAADMAAAAAADIAAAAAACIAAAAAADIAAAAAACfgAAAAAABAAAAAAABAAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAACMAAAAAACMAAAAAABMAAAAAAAMAAAAAACMAAAAAACMAAAAAADIAAAAAADIAAAAAACIAAAAAAAfgAAAAAABAAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMAAAAAAAMAAAAAADMAAAAAACMAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABMAAAAAACMAAAAAAAMAAAAAACMAAAAAADMAAAAAABMAAAAAABMAAAAAACMAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAAMAAAAAACMAAAAAAAMAAAAAACMAAAAAACMAAAAAADMAAAAAABMAAAAAACBAAAAAABBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAAAMAAAAAAAKQAAAAAEKQAAAAACKQAAAAAAKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAE + tiles: fgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfAAAAAACfAAAAAADfAAAAAABAwAAAAAEAwAAAAAGAwAAAAABAwAAAAADAwAAAAAGAwAAAAAEAwAAAAACAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAAFfgAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAADBQAAAAABAwAAAAADAwAAAAABBQAAAAAABQAAAAAGBQAAAAAAAwAAAAAEBQAAAAAFBQAAAAADAwAAAAAAAwAAAAADfgAAAAAAewAAAAAAegAAAAACegAAAAAAegAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAAABQAAAAACBAAAAAADBQAAAAACAwAAAAACAwAAAAAABQAAAAAAAwAAAAAEfgAAAAAAewAAAAABewAAAAACewAAAAABewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAAABAAAAAACBQAAAAAABQAAAAAGAwAAAAACAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBQAAAAAABQAAAAADAwAAAAADAwAAAAAAAwAAAAAGAwAAAAABAwAAAAAGAwAAAAAFXQAAAAACXQAAAAACJQAAAAAAfgAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBQAAAAAFBQAAAAAGBQAAAAACBQAAAAAFBQAAAAAABQAAAAABBQAAAAAHJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABBQAAAAADBQAAAAAFfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfgAAAAAABAAAAAADBAAAAAACBAAAAAAAMAAAAAADMAAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAABMAAAAAAAMAAAAAADMAAAAAADIAAAAAABIAAAAAACIAAAAAACfgAAAAAABAAAAAADBAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAACMAAAAAACMAAAAAABMAAAAAACMAAAAAAAMAAAAAADMAAAAAAAIAAAAAACIAAAAAABIAAAAAABfgAAAAAABAAAAAACMAAAAAACMAAAAAAAMAAAAAABMAAAAAABMAAAAAADMAAAAAACMAAAAAABMAAAAAACMAAAAAACMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAABMAAAAAABMAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAAMAAAAAADMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAADMAAAAAADMAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADMAAAAAACMAAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAADMAAAAAACBAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAACKQAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAABMAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAE version: 6 -6,-1: ind: -6,-1 - tiles: MAAAAAABMAAAAAAAMAAAAAADMAAAAAABHwAAAAACXQAAAAABZQAAAAADXQAAAAABHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAABfgAAAAAAXQAAAAAAZQAAAAABXQAAAAACHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABMAAAAAABMAAAAAACHwAAAAABXQAAAAAAZQAAAAADXQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAAGBQAAAAAHAwAAAAAGfgAAAAAAXQAAAAABZQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEAwAAAAAEAwAAAAAGAwAAAAAEfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABQAAAAACAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAADaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABAwAAAAACAwAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADDQAAAAAADQAAAAADZQAAAAADZQAAAAAAZQAAAAACZQAAAAACZQAAAAADZQAAAAACZQAAAAADDQAAAAACDQAAAAADDQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABDQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABZQAAAAAADQAAAAADZQAAAAADZwAAAAABXQAAAAABfgAAAAAAXQAAAAACZQAAAAADXQAAAAADDAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAAADAAAAAACXQAAAAABZQAAAAAAZwAAAAAAZQAAAAADZwAAAAADXQAAAAAAaAAAAAACXQAAAAABZQAAAAAAXQAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAACXQAAAAAAZQAAAAACZwAAAAACZQAAAAABZwAAAAAAXQAAAAADfgAAAAAAXQAAAAAAZQAAAAABXQAAAAACDAAAAAACDAAAAAADDAAAAAACDAAAAAAADAAAAAADDAAAAAABXQAAAAABZQAAAAADZwAAAAADZQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAACDQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAZQAAAAADDQAAAAAAZQAAAAADfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAAADQAAAAADDQAAAAACZQAAAAACZQAAAAADZQAAAAACZQAAAAAAZQAAAAADZQAAAAAAZQAAAAAADQAAAAABDQAAAAADDQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAAA + tiles: MAAAAAABMAAAAAABMAAAAAACMAAAAAAAHwAAAAAAXQAAAAADZQAAAAABXQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAACfgAAAAAAXQAAAAAAZQAAAAADXQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAADHwAAAAACXQAAAAABZQAAAAAAXQAAAAACHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAADBQAAAAACAwAAAAACfgAAAAAAXQAAAAABZQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAAGfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABQAAAAADAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABAwAAAAACAwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAADQAAAAADDQAAAAABZQAAAAABZQAAAAADZQAAAAADZQAAAAAAZQAAAAADZQAAAAAAZQAAAAACDQAAAAACDQAAAAACDQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAADQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADZQAAAAADDQAAAAADZQAAAAAAZwAAAAAAXQAAAAADfgAAAAAAXQAAAAADZQAAAAABXQAAAAABDAAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAAAXQAAAAADZQAAAAACZwAAAAABZQAAAAACZwAAAAADXQAAAAABaAAAAAADXQAAAAACZQAAAAADXQAAAAADDAAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAACXQAAAAADZQAAAAADZwAAAAACZQAAAAACZwAAAAACXQAAAAACfgAAAAAAXQAAAAAAZQAAAAADXQAAAAABDAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAAAXQAAAAADZQAAAAACZwAAAAABZQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAABDQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADZQAAAAADDQAAAAAAZQAAAAABfgAAAAAAJAAAAAACfgAAAAAAXQAAAAABDQAAAAABDQAAAAAAZQAAAAABZQAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAACZQAAAAAADQAAAAABDQAAAAAADQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAAC version: 6 -6,-2: ind: -6,-2 - tiles: BQAAAAAHBQAAAAAEAwAAAAAFfgAAAAAAHwAAAAACXQAAAAACZQAAAAACXQAAAAADHwAAAAACfgAAAAAANwAAAAAANwAAAAAANwAAAAACNwAAAAADNwAAAAAANwAAAAADBAAAAAABAwAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAXQAAAAABZQAAAAABXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADAwAAAAAGAwAAAAADAwAAAAABfgAAAAAAXQAAAAABZQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAHAwAAAAAAAwAAAAABfgAAAAAAXQAAAAAAZQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACAwAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAHAwAAAAAGAwAAAAABaAAAAAACaAAAAAACXQAAAAAAZQAAAAABXQAAAAACaAAAAAAAaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAwAAAAADAwAAAAADfgAAAAAAfgAAAAAAXQAAAAADZQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBQAAAAAHAwAAAAADAwAAAAADfgAAAAAAXQAAAAADZQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAADBQAAAAAFAwAAAAACfgAAAAAAXQAAAAABZQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAACBQAAAAAAAwAAAAAGfgAAAAAAXQAAAAABZQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAABAwAAAAACAwAAAAAGfgAAAAAAXQAAAAADZQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBQAAAAADAwAAAAABfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAAEAwAAAAABaAAAAAABaAAAAAABXQAAAAADZQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAADAwAAAAAEfgAAAAAAfgAAAAAAXQAAAAADZQAAAAADXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBQAAAAACAwAAAAAFAwAAAAAGfgAAAAAAXQAAAAAAZQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBQAAAAAHBQAAAAACAwAAAAAGfgAAAAAAXQAAAAABZQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAAHBQAAAAAHAwAAAAAGfgAAAAAAHwAAAAABXQAAAAACZQAAAAACXQAAAAACHwAAAAABfgAAAAAANwAAAAADNwAAAAABNwAAAAAANwAAAAACNwAAAAAANwAAAAACBAAAAAADAwAAAAACAwAAAAAEfgAAAAAAfgAAAAAAXQAAAAADZQAAAAACXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAwAAAAACAwAAAAAGAwAAAAAGfgAAAAAAXQAAAAADZQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBQAAAAABAwAAAAAEAwAAAAACfgAAAAAAXQAAAAAAZQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABAwAAAAADAwAAAAAFfgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFAwAAAAACAwAAAAADaAAAAAAAaAAAAAABXQAAAAAAZQAAAAADXQAAAAACaAAAAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAwAAAAABAwAAAAABfgAAAAAAfgAAAAAAXQAAAAABZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBQAAAAAHAwAAAAAAAwAAAAAEfgAAAAAAXQAAAAACZQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAGBQAAAAAAAwAAAAACfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAFBQAAAAACAwAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAABAwAAAAAFAwAAAAAEfgAAAAAAXQAAAAABZQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBQAAAAABAwAAAAAFfgAAAAAAfgAAAAAAXQAAAAACZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAHBQAAAAAFAwAAAAAGaAAAAAACaAAAAAADXQAAAAACZQAAAAACXQAAAAADaAAAAAABaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAADAwAAAAADfgAAAAAAfgAAAAAAXQAAAAADZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBQAAAAADAwAAAAADAwAAAAACfgAAAAAAXQAAAAAAZQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBQAAAAAFBQAAAAABAwAAAAAAfgAAAAAAXQAAAAACZQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: BAAAAAABBQAAAAAEBQAAAAACBQAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAADBwAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBwAAAAACBwAAAAADBAAAAAAABwAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAACBwAAAAADBwAAAAADBAAAAAABBwAAAAABBwAAAAADBAAAAAAABAAAAAACBAAAAAADBQAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAGBQAAAAAFBAAAAAADBAAAAAACBAAAAAAABwAAAAADBwAAAAABBwAAAAAABAAAAAAABAAAAAABBAAAAAADBQAAAAAEBQAAAAADBQAAAAADBQAAAAAHBQAAAAACAwAAAAAABQAAAAAGBQAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAADBQAAAAAEBQAAAAADAwAAAAACAwAAAAACAwAAAAAFAwAAAAACAwAAAAACBQAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAADBQAAAAAAAwAAAAACAwAAAAAFfgAAAAAAJAAAAAABfgAAAAAAAwAAAAADBQAAAAAGBQAAAAAHBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABAwAAAAACAwAAAAACfgAAAAAAHwAAAAADfgAAAAAAAwAAAAADAwAAAAABBQAAAAAFBQAAAAAEBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAABBQAAAAACAwAAAAAGfgAAAAAAHwAAAAACfgAAAAAAAwAAAAABAwAAAAADAwAAAAACBQAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBQAAAAAHBQAAAAAAAwAAAAABAwAAAAAEfgAAAAAAHwAAAAACfgAAAAAAAwAAAAAGAwAAAAACBQAAAAAEBQAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAAAwAAAAABAwAAAAABAwAAAAAEfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAEBQAAAAAEBAAAAAABBAAAAAAABAAAAAACBAAAAAAABQAAAAAHBQAAAAAEAwAAAAAEfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAAwAAAAAEBQAAAAAEBQAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAAFBQAAAAAEAwAAAAAGfgAAAAAAHwAAAAACXQAAAAACZQAAAAABXQAAAAAAHwAAAAABfgAAAAAANwAAAAADNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAAABQAAAAACBQAAAAADAwAAAAAGfgAAAAAAHwAAAAACXQAAAAACZQAAAAAAXQAAAAADHwAAAAAAfgAAAAAANwAAAAABNwAAAAADNwAAAAADNwAAAAACNwAAAAABNwAAAAAD + tiles: BAAAAAADBQAAAAAABQAAAAAEBQAAAAAGBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAABBwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAAABwAAAAACBwAAAAAABAAAAAAABwAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABBwAAAAAABwAAAAACBAAAAAADBwAAAAADBwAAAAABBAAAAAADBAAAAAABBAAAAAADBQAAAAABBAAAAAACBAAAAAACBQAAAAADBQAAAAAHBQAAAAABBAAAAAABBAAAAAAABAAAAAABBwAAAAAABwAAAAACBwAAAAABBAAAAAABBAAAAAADBAAAAAABBQAAAAAGBQAAAAADBQAAAAAHBQAAAAAFBQAAAAAGAwAAAAACBQAAAAAABQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAAABQAAAAAFBQAAAAAEAwAAAAAGAwAAAAADAwAAAAAAAwAAAAAEAwAAAAAEBQAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABQAAAAAFAwAAAAAFAwAAAAABfgAAAAAAJAAAAAADfgAAAAAAAwAAAAAGBQAAAAAHBQAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAACAwAAAAAAAwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAwAAAAAGAwAAAAAABQAAAAACBQAAAAAGBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBQAAAAAEBQAAAAACAwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAwAAAAAAAwAAAAABAwAAAAAEBQAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAAABQAAAAADBQAAAAADAwAAAAADAwAAAAADfgAAAAAAHwAAAAADfgAAAAAAAwAAAAABAwAAAAAABQAAAAAABQAAAAAFBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABAwAAAAACAwAAAAAEAwAAAAAFfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAEBQAAAAAFBAAAAAADBAAAAAABBAAAAAAABAAAAAABBQAAAAAABQAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAwAAAAAFBQAAAAACBQAAAAAGBAAAAAAABAAAAAABBAAAAAAABQAAAAADBQAAAAAAAwAAAAADfgAAAAAAHwAAAAACXQAAAAABZQAAAAABXQAAAAABHwAAAAACfgAAAAAANwAAAAADNwAAAAACNwAAAAADNwAAAAAANwAAAAAANwAAAAAABQAAAAAHBQAAAAACAwAAAAACfgAAAAAAHwAAAAADXQAAAAAAZQAAAAACXQAAAAABHwAAAAACfgAAAAAANwAAAAABNwAAAAABNwAAAAABNwAAAAAANwAAAAADNwAAAAAC version: 6 -7,-1: ind: -7,-1 - tiles: DwAAAAACDAAAAAABDwAAAAADDAAAAAABfgAAAAAABAAAAAABBAAAAAAABAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMQAAAAAAMQAAAAABMQAAAAADMQAAAAACMAAAAAAADwAAAAAADAAAAAABDwAAAAACDAAAAAAAfgAAAAAABAAAAAACBAAAAAAABAAAAAABMgAAAAACMAAAAAAAMQAAAAAAMAAAAAACMgAAAAABMQAAAAACMQAAAAAAMAAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAAADwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMgAAAAACMgAAAAACMQAAAAACDAAAAAADDAAAAAABMQAAAAABMAAAAAABEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAADDwAAAAAAEwAAAAAADwAAAAADMgAAAAAAMAAAAAAAMgAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABQAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAADDAAAAAADBAAAAAADBAAAAAABBAAAAAABBQAAAAAABQAAAAAABQAAAAAGDwAAAAAADAAAAAAADwAAAAABDAAAAAADfgAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADBQAAAAAEBQAAAAACBQAAAAACAwAAAAABAwAAAAAGDwAAAAABDAAAAAABDwAAAAADDAAAAAACfgAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABQAAAAACBQAAAAAAAwAAAAAAAwAAAAACAwAAAAAGAwAAAAAEDwAAAAABDAAAAAABfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBQAAAAAGBQAAAAACBQAAAAAFAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBQAAAAAGBQAAAAADAwAAAAABAwAAAAAEAwAAAAAFfgAAAAAAXQAAAAABXQAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABQAAAAABBQAAAAAHAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAABQAAAAADBQAAAAADAwAAAAABaAAAAAABXQAAAAADaAAAAAADXQAAAAADZwAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBQAAAAAEAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZwAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADBQAAAAABAwAAAAAAAwAAAAAGAwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAKQAAAAAABgAAAAACBgAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBQAAAAAGBQAAAAABAwAAAAAGAwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAKQAAAAAEBgAAAAACBgAAAAADBgAAAAADBgAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABBQAAAAAFBQAAAAAGAwAAAAACAwAAAAAGAwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMQAAAAADMQAAAAAAMQAAAAADMQAAAAAAMQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAA + tiles: DwAAAAACDAAAAAABDwAAAAAADAAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAACMAAAAAABMAAAAAAAMAAAAAABMQAAAAABMQAAAAAAMQAAAAACMQAAAAAAMAAAAAACDwAAAAACDAAAAAAADwAAAAABDAAAAAACfgAAAAAABAAAAAACBAAAAAACBAAAAAADMgAAAAACMAAAAAADMQAAAAADMAAAAAAAMgAAAAACMQAAAAABMQAAAAADMAAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMgAAAAACMgAAAAACMQAAAAADDAAAAAABDAAAAAABMQAAAAACMAAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAACEwAAAAACDwAAAAACEwAAAAAADwAAAAABMgAAAAAAMAAAAAADMgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBQAAAAAEDwAAAAADDwAAAAAADwAAAAABDwAAAAAADwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAACDAAAAAACBAAAAAAABAAAAAABBAAAAAAABQAAAAAGBQAAAAAABQAAAAAFDwAAAAABDAAAAAACDwAAAAABDAAAAAACfgAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBQAAAAAABQAAAAAGBQAAAAAAAwAAAAABAwAAAAAGDwAAAAACDAAAAAABDwAAAAACDAAAAAABfgAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABQAAAAAFBQAAAAAAAwAAAAAGAwAAAAABAwAAAAADAwAAAAABDwAAAAAADAAAAAACfgAAAAAAfgAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABQAAAAAGBQAAAAAEBQAAAAADAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAADBQAAAAAHBQAAAAAEAwAAAAADAwAAAAACAwAAAAAFfgAAAAAAXQAAAAAAXQAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABBQAAAAAEBQAAAAAFAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZwAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBQAAAAAHBQAAAAAEAwAAAAAFaAAAAAAAXQAAAAACaAAAAAADXQAAAAADZwAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBQAAAAACAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZwAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAABBQAAAAAFAwAAAAADAwAAAAABAwAAAAAEfgAAAAAAXQAAAAAAXQAAAAACKQAAAAAABgAAAAADBgAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAADBQAAAAACBQAAAAADAwAAAAADAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAKQAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBQAAAAACBQAAAAACAwAAAAADAwAAAAADAwAAAAAGfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAADMQAAAAADMQAAAAAAMQAAAAABMQAAAAACMQAAAAAAMQAAAAACMQAAAAABMQAAAAAAfgAAAAAA version: 6 1,5: ind: 1,5 @@ -447,11 +446,11 @@ entities: version: 6 -1,4: ind: -1,4 - tiles: fgAAAAAAJAAAAAADHwAAAAAAJAAAAAAAfgAAAAAAJAAAAAACHwAAAAADJAAAAAABJAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHwAAAAAAJAAAAAACfgAAAAAAJAAAAAACHwAAAAABJAAAAAAAJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAbQAAAAAAEQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAbQAAAAAAEQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA + tiles: fgAAAAAAJAAAAAADHwAAAAAAJAAAAAADfgAAAAAAJAAAAAAAHwAAAAADJAAAAAADJAAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACHwAAAAABJAAAAAAAfgAAAAAAJAAAAAACHwAAAAABJAAAAAABJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAbQAAAAAAEQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAbQAAAAAAEQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABXQAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 @@ -483,367 +482,367 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: AwAAAAADBQAAAAAFBQAAAAAEBAAAAAABfgAAAAAABwAAAAADfgAAAAAABgAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAGBQAAAAADBQAAAAACBQAAAAAHfgAAAAAABwAAAAAAfgAAAAAABgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAGBQAAAAAFBAAAAAABBAAAAAACBAAAAAACBwAAAAACBAAAAAADBgAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBQAAAAAABAAAAAAABAAAAAABBAAAAAACBwAAAAAABAAAAAADBgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAEBwAAAAAABAAAAAABBAAAAAAABAAAAAACBwAAAAADBAAAAAACBgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAEBwAAAAABBAAAAAADBAAAAAADBAAAAAACBwAAAAADBAAAAAAABgAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBAAAAAADBQAAAAAHfgAAAAAABwAAAAACfgAAAAAABgAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAADBQAAAAAHBQAAAAABBQAAAAAFfgAAAAAABwAAAAACfgAAAAAABgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAEBQAAAAAFBQAAAAAHBAAAAAABfgAAAAAABwAAAAADfgAAAAAABgAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAACBQAAAAAGBAAAAAABBwAAAAABfgAAAAAABwAAAAABfgAAAAAABgAAAAADfgAAAAAABgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAABQAAAAAGBQAAAAAEBAAAAAAABAAAAAACfgAAAAAABwAAAAABfgAAAAAABAAAAAACfgAAAAAABgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABQAAAAAEBAAAAAAABAAAAAACBAAAAAACfgAAAAAABwAAAAABfgAAAAAABAAAAAADfgAAAAAABgAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBwAAAAAABAAAAAABBwAAAAADBAAAAAAAfgAAAAAABgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABQAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAAABgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AwAAAAACBQAAAAADBQAAAAAGBAAAAAACfgAAAAAABwAAAAAAfgAAAAAABgAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAABQAAAAAHBQAAAAABBQAAAAAFfgAAAAAABwAAAAACfgAAAAAABgAAAAACfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAGBQAAAAACBAAAAAABBAAAAAACBAAAAAACBwAAAAAABAAAAAAABgAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBQAAAAABBAAAAAACBAAAAAADBAAAAAACBwAAAAAABAAAAAACBgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAABgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAADBwAAAAAABAAAAAACBAAAAAABBAAAAAADBwAAAAABBAAAAAABBgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAADBwAAAAADBAAAAAAABAAAAAACBAAAAAAABwAAAAABBAAAAAADBgAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABAAAAAADBQAAAAAAfgAAAAAABwAAAAABfgAAAAAABgAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAGBQAAAAAGBQAAAAAHBQAAAAAGfgAAAAAABwAAAAACfgAAAAAABgAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAAGBQAAAAAHBQAAAAADBAAAAAAAfgAAAAAABwAAAAADfgAAAAAABgAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAwAAAAABBQAAAAAHBAAAAAAABwAAAAAAfgAAAAAABwAAAAABfgAAAAAABgAAAAADfgAAAAAABgAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAABQAAAAABBQAAAAAFBAAAAAAABAAAAAABfgAAAAAABwAAAAABfgAAAAAABAAAAAACfgAAAAAABgAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABQAAAAAHBAAAAAABBAAAAAABBAAAAAABfgAAAAAABwAAAAAAfgAAAAAABAAAAAACfgAAAAAABgAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBwAAAAACBAAAAAABBwAAAAABBAAAAAAAfgAAAAAABgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABQAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAACBgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -7,0: ind: -7,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMQAAAAAAMQAAAAADMQAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAADMQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMQAAAAADMQAAAAACMQAAAAADMQAAAAADMQAAAAACMQAAAAACMQAAAAADMQAAAAADMQAAAAABMQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAABBQAAAAAGBQAAAAABBQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAADMQAAAAACMQAAAAADMQAAAAACMQAAAAAAMQAAAAAAMQAAAAABMQAAAAAAMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMgAAAAADMgAAAAAAMgAAAAABMQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAABMgAAAAADMgAAAAAAMQAAAAADfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAADMgAAAAADMgAAAAACMQAAAAAAJAAAAAAAJQAAAAAAXQAAAAADXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMgAAAAABMgAAAAACMgAAAAADMQAAAAABfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAABMgAAAAACMgAAAAABMQAAAAADfgAAAAAAewAAAAACegAAAAADewAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAAAMgAAAAADMgAAAAADMQAAAAADfgAAAAAAewAAAAADegAAAAAAewAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMgAAAAACMgAAAAABMgAAAAACMQAAAAADfgAAAAAAewAAAAABegAAAAACewAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAADMgAAAAAAMgAAAAACMQAAAAADfgAAAAAAewAAAAADegAAAAACewAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMgAAAAACMgAAAAABMgAAAAACMQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMgAAAAADMgAAAAAAMgAAAAABMQAAAAAAMQAAAAACMQAAAAADMQAAAAADMQAAAAADMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMgAAAAADMgAAAAAAMgAAAAACMgAAAAAAMgAAAAAAMgAAAAADMgAAAAAAMgAAAAACMQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAACMgAAAAABMgAAAAADMgAAAAADMgAAAAACMgAAAAADMgAAAAAAMgAAAAACMQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMQAAAAABMQAAAAABMQAAAAACMQAAAAABMQAAAAAAMQAAAAADMQAAAAACMQAAAAACMQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMQAAAAACMQAAAAABMQAAAAAAMQAAAAACMQAAAAAAMQAAAAABMQAAAAADMQAAAAABMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABBQAAAAADBQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMQAAAAABMQAAAAAAMQAAAAABMQAAAAABMQAAAAADMQAAAAAAMQAAAAABMQAAAAABMQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAADMgAAAAAAMgAAAAAAMQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAADMgAAAAACMgAAAAAAMQAAAAADfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMgAAAAAAMgAAAAAAMgAAAAADMQAAAAAAJAAAAAABJQAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAACMgAAAAADMgAAAAAAMQAAAAABfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAADMgAAAAACMgAAAAADMQAAAAABfgAAAAAAewAAAAAAegAAAAABewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAADMgAAAAADMgAAAAABMQAAAAAAfgAAAAAAewAAAAADegAAAAACewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAACMgAAAAADMgAAAAACMQAAAAADfgAAAAAAewAAAAAAegAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMgAAAAADMgAAAAAAMgAAAAADMQAAAAACfgAAAAAAewAAAAABegAAAAACewAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMQAAAAABMQAAAAACMQAAAAACMQAAAAABMQAAAAACMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMgAAAAACMgAAAAACMgAAAAAAMgAAAAABMgAAAAADMgAAAAACMgAAAAAAMgAAAAACMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABMgAAAAADMgAAAAAAMgAAAAABMgAAAAACMgAAAAACMgAAAAABMgAAAAADMgAAAAABMQAAAAAD version: 6 -4,-6: ind: -4,-6 - tiles: ewAAAAACKgAAAAACKgAAAAABKgAAAAADewAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABewAAAAACKgAAAAABKgAAAAACKgAAAAADewAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAAAewAAAAACewAAAAAALAAAAAAAewAAAAADewAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACLQAAAAACLQAAAAACLQAAAAAALQAAAAACewAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAAAewAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBQAAAAADBAAAAAABewAAAAABewAAAAABewAAAAAALAAAAAABewAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBQAAAAABBQAAAAAHBQAAAAAGBQAAAAAFCgAAAAAAKQAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAAABQAAAAAABQAAAAAGBQAAAAADBAAAAAADDgAAAAANCgAAAAAAKQAAAAAAKQAAAAABKQAAAAAAewAAAAADewAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACDgAAAAANDgAAAAABDgAAAAAJCgAAAAAAKQAAAAAAKQAAAAAAewAAAAAAewAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADDgAAAAAADgAAAAACDgAAAAANCgAAAAAACgAAAAAADAAAAAACKQAAAAAEewAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADCgAAAAAADgAAAAAKDgAAAAAOCgAAAAAADAAAAAACNwAAAAADDAAAAAACewAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAKQAAAAAADAAAAAADDAAAAAAAewAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABKQAAAAAACgAAAAAACgAAAAAAKQAAAAAAKQAAAAACCgAAAAAACgAAAAAAewAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABCgAAAAAACgAAAAAADgAAAAAKewAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABKgAAAAADKQAAAAAAKQAAAAAACgAAAAAADgAAAAAODgAAAAAODgAAAAANewAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACKwAAAAAAKwAAAAADCgAAAAAADgAAAAALDgAAAAAODgAAAAAADgAAAAANewAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAAA + tiles: ewAAAAAAKgAAAAAAKgAAAAACKgAAAAACewAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABewAAAAABKgAAAAABKgAAAAABKgAAAAADewAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADewAAAAADewAAAAABLAAAAAABewAAAAACewAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAADLQAAAAAALQAAAAADLQAAAAAALQAAAAADewAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABewAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBQAAAAAABAAAAAADewAAAAAAewAAAAADewAAAAAALAAAAAAAewAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBQAAAAADBQAAAAAEBQAAAAADBQAAAAAFCgAAAAAAKQAAAAAAewAAAAADewAAAAACewAAAAADewAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBQAAAAAFBQAAAAAGBQAAAAAFBAAAAAACDgAAAAAGCgAAAAAAKQAAAAADKQAAAAAAKQAAAAABewAAAAABewAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACDgAAAAAIDgAAAAADDgAAAAAGCgAAAAAAKQAAAAACKQAAAAAAewAAAAABewAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAADgAAAAABDgAAAAACDgAAAAAOCgAAAAAACgAAAAAADAAAAAACKQAAAAACewAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADCgAAAAAADgAAAAAJDgAAAAABCgAAAAAADAAAAAAANwAAAAADDAAAAAAAewAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAAKQAAAAADDAAAAAADDAAAAAADewAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADKQAAAAAACgAAAAAACgAAAAAAKQAAAAAAKQAAAAAACgAAAAAACgAAAAAAewAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAACgAAAAAACgAAAAAADgAAAAANewAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACKgAAAAACKQAAAAAAKQAAAAAACgAAAAAADgAAAAAKDgAAAAAEDgAAAAAHewAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACKwAAAAACKwAAAAADCgAAAAAADgAAAAAGDgAAAAACDgAAAAALDgAAAAAFewAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAB version: 6 -5,-4: ind: -5,-4 - tiles: BAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAACBAAAAAABewAAAAAAKwAAAAABKwAAAAAAewAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADewAAAAABLAAAAAACLAAAAAAAewAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAABMAAAAAAAMgAAAAACMgAAAAADMAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABMAAAAAADMgAAAAABMgAAAAADMAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABMAAAAAAAMQAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAADMAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADMgAAAAABMQAAAAADMAAAAAABMQAAAAAAMgAAAAAAMQAAAAACMAAAAAACMAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAAMQAAAAACMgAAAAACMAAAAAABMQAAAAADMQAAAAADMgAAAAADMAAAAAABMQAAAAAAMgAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADMAAAAAADMQAAAAACMAAAAAADMgAAAAAAMQAAAAACMgAAAAADMgAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACMgAAAAABMQAAAAACMAAAAAADMQAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABDAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABDAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACDAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAAADAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADDAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAAHBQAAAAAFBAAAAAADBQAAAAAGBQAAAAAABAAAAAADDAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBQAAAAAHBQAAAAABAwAAAAABAwAAAAAABQAAAAACBQAAAAACBAAAAAABDAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBQAAAAAHBQAAAAAGAwAAAAADAwAAAAACAwAAAAAAAwAAAAAFAwAAAAAB + tiles: BAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAACBAAAAAABewAAAAAAKwAAAAABKwAAAAAAewAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACewAAAAACLAAAAAAALAAAAAAAewAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAADMAAAAAAAMgAAAAACMgAAAAABMAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACMAAAAAAAMgAAAAAAMgAAAAABMAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADMAAAAAACMQAAAAADMAAAAAAAMAAAAAACMAAAAAADMAAAAAAAMAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAAMgAAAAADMQAAAAADMAAAAAADMQAAAAABMgAAAAABMQAAAAADMAAAAAACMAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAADMQAAAAABMgAAAAADMAAAAAABMQAAAAACMQAAAAAAMgAAAAABMAAAAAAAMQAAAAACMgAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADMAAAAAADMQAAAAADMAAAAAABMgAAAAAAMQAAAAADMgAAAAAAMgAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAAMgAAAAACMQAAAAAAMAAAAAABMQAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAADAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAADAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACDAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABDAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACDAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACBQAAAAAHBQAAAAAEBAAAAAADBQAAAAAGBQAAAAAHBAAAAAADDAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABQAAAAABBQAAAAAHAwAAAAAEAwAAAAAGBQAAAAAABQAAAAACBAAAAAAADAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADBQAAAAAGBQAAAAACAwAAAAABAwAAAAAEAwAAAAABAwAAAAAAAwAAAAAF version: 6 -5,-5: ind: -5,-5 - tiles: BAAAAAADBAAAAAABewAAAAABKQAAAAAACgAAAAAACgAAAAAAKQAAAAAAKQAAAAAAKwAAAAACKwAAAAABKwAAAAADKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAABAAAAAACBAAAAAAAewAAAAADDAAAAAADKQAAAAAAKQAAAAAANwAAAAABDAAAAAAAKgAAAAACKwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAAAewAAAAABewAAAAABDAAAAAABDAAAAAACDAAAAAADKwAAAAAAKwAAAAACKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAAEDAAAAAADBAAAAAABBAAAAAAABAAAAAADewAAAAABDAAAAAACDAAAAAACDAAAAAAAKwAAAAABKgAAAAABKQAAAAAADAAAAAACKQAAAAADKQAAAAAEKQAAAAAAKQAAAAAADAAAAAABBAAAAAABBAAAAAAABAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAACLAAAAAACewAAAAABewAAAAADewAAAAADewAAAAACewAAAAAAewAAAAABewAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAACewAAAAACbgAAAAADdAAAAAAAdAAAAAADdAAAAAAAewAAAAABKwAAAAAALAAAAAAAKwAAAAACewAAAAAAKgAAAAAAKgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAAewAAAAADewAAAAADewAAAAADdAAAAAACdAAAAAADewAAAAACKwAAAAACLAAAAAADKwAAAAABewAAAAABKgAAAAACKgAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADewAAAAADbgAAAAABdAAAAAABdQAAAAADdAAAAAADewAAAAADKwAAAAADLAAAAAABKwAAAAAAewAAAAABKgAAAAADewAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACewAAAAADewAAAAACewAAAAACdAAAAAABdAAAAAACewAAAAADKgAAAAACKgAAAAAAKgAAAAACKgAAAAADKgAAAAACKgAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAABewAAAAACbgAAAAACdAAAAAACdAAAAAABdAAAAAADewAAAAADKgAAAAADKgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAAALAAAAAACewAAAAACewAAAAADegAAAAACegAAAAADewAAAAABLAAAAAADewAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACewAAAAAAKgAAAAAAKgAAAAABKgAAAAAAewAAAAABKwAAAAADKgAAAAABKgAAAAABKgAAAAAAKgAAAAACKwAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAADewAAAAABKgAAAAACKgAAAAADKgAAAAADewAAAAAAKwAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAAAKwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABewAAAAAAKgAAAAACKgAAAAACKgAAAAAALAAAAAADKwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABKwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABewAAAAADKgAAAAAAKgAAAAAAKgAAAAACewAAAAADKwAAAAACKgAAAAACKgAAAAAAKgAAAAABKgAAAAABKwAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABewAAAAACKgAAAAAAKgAAAAABKgAAAAABewAAAAADewAAAAABewAAAAACKwAAAAACKwAAAAACewAAAAABewAAAAAD + tiles: BAAAAAAABAAAAAACewAAAAACKQAAAAAECgAAAAAACgAAAAAAKQAAAAAAKQAAAAAAKwAAAAABKwAAAAABKwAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAADewAAAAABDAAAAAAAKQAAAAAAKQAAAAAANwAAAAADDAAAAAABKgAAAAAAKwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABewAAAAABewAAAAACDAAAAAACDAAAAAADDAAAAAAAKwAAAAAAKwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAACBAAAAAADBAAAAAADBAAAAAACewAAAAAADAAAAAABDAAAAAABDAAAAAACKwAAAAAAKgAAAAADKQAAAAAADAAAAAAAKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAADDAAAAAADBAAAAAACBAAAAAACBAAAAAACewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAABLAAAAAACewAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACewAAAAADbgAAAAABdAAAAAACdAAAAAADdAAAAAABewAAAAADKwAAAAACLAAAAAACKwAAAAACewAAAAABKgAAAAADKgAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAABewAAAAABewAAAAADewAAAAAAdAAAAAADdAAAAAAAewAAAAABKwAAAAADLAAAAAABKwAAAAACewAAAAAAKgAAAAACKgAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAAewAAAAACbgAAAAADdAAAAAADdQAAAAAAdAAAAAADewAAAAAAKwAAAAACLAAAAAADKwAAAAABewAAAAABKgAAAAABewAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADewAAAAABewAAAAABewAAAAACdAAAAAABdAAAAAABewAAAAACKgAAAAAAKgAAAAADKgAAAAACKgAAAAADKgAAAAACKgAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACewAAAAADbgAAAAAAdAAAAAABdAAAAAABdAAAAAACewAAAAACKgAAAAAAKgAAAAAAKgAAAAACKgAAAAABKgAAAAACKgAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACewAAAAAAewAAAAADewAAAAAAewAAAAADLAAAAAAAewAAAAADewAAAAADegAAAAADegAAAAACewAAAAADLAAAAAACewAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAewAAAAABKgAAAAADKgAAAAABKgAAAAACewAAAAABKwAAAAADKgAAAAAAKgAAAAACKgAAAAABKgAAAAAAKwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABewAAAAABKgAAAAABKgAAAAADKgAAAAADewAAAAAAKwAAAAAAegAAAAADegAAAAADegAAAAADegAAAAACKwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAAewAAAAACKgAAAAADKgAAAAAAKgAAAAADLAAAAAADKwAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAKwAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACewAAAAABKgAAAAADKgAAAAAAKgAAAAACewAAAAACKwAAAAACKgAAAAAAKgAAAAACKgAAAAADKgAAAAADKwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACewAAAAADKgAAAAACKgAAAAACKgAAAAABewAAAAACewAAAAACewAAAAAAKwAAAAADKwAAAAAAewAAAAAAewAAAAAA version: 6 -5,-6: ind: -5,-6 - tiles: BAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAAAewAAAAABKgAAAAAAKgAAAAADKgAAAAADewAAAAACKwAAAAACKwAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABewAAAAABKgAAAAACKgAAAAABKgAAAAADewAAAAACKwAAAAABKwAAAAACKwAAAAAAKwAAAAAAKwAAAAADKwAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACewAAAAACewAAAAABLAAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAADLAAAAAABLAAAAAADewAAAAACewAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABewAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAABLQAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAAewAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADewAAAAACKgAAAAADewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAACewAAAAACewAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAAewAAAAACewAAAAAALAAAAAACewAAAAABBAAAAAADDAAAAAAAKQAAAAAAKQAAAAAACgAAAAAACgAAAAAADgAAAAAKDgAAAAAMBAAAAAAABAAAAAAABAAAAAACewAAAAABewAAAAACDAAAAAABKgAAAAABKwAAAAADKQAAAAADKQAAAAAAKQAAAAAACgAAAAAACgAAAAAADgAAAAABDgAAAAALDgAAAAAFBAAAAAAABAAAAAAAewAAAAABewAAAAADDAAAAAACDAAAAAAADAAAAAAAKgAAAAACKgAAAAADKQAAAAAACgAAAAAACgAAAAAADgAAAAAKDgAAAAAMDgAAAAAODgAAAAAKBAAAAAAABAAAAAACewAAAAADDAAAAAAACgAAAAAAKQAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAABAAAAAAABAAAAAAAewAAAAACCgAAAAAADgAAAAAACgAAAAAAKQAAAAABKQAAAAACKwAAAAADKwAAAAABKwAAAAADCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAAewAAAAABDgAAAAAADgAAAAAECgAAAAAACgAAAAAACgAAAAAACgAAAAAAKwAAAAAAKgAAAAABKwAAAAAADAAAAAADKQAAAAABKQAAAAAACgAAAAAABAAAAAADBAAAAAADewAAAAAADgAAAAAFDgAAAAAJDgAAAAAGDgAAAAAJDgAAAAAOCgAAAAAACgAAAAAAKwAAAAACKwAAAAADDAAAAAAANwAAAAABDAAAAAACKQAAAAAABAAAAAABBAAAAAACewAAAAABDgAAAAADDgAAAAAMDgAAAAAIDgAAAAAICgAAAAAACgAAAAAAKQAAAAAEKwAAAAACKgAAAAACKwAAAAABKwAAAAABKwAAAAAABAAAAAADBAAAAAAABAAAAAAAewAAAAADDgAAAAADDgAAAAAEKQAAAAAACgAAAAAACgAAAAAAKQAAAAACKgAAAAACKwAAAAAAKwAAAAADKgAAAAAAKgAAAAADKwAAAAAAKgAAAAACBAAAAAAABAAAAAACewAAAAACCgAAAAAACgAAAAAADgAAAAANCgAAAAAAKQAAAAAADAAAAAABKwAAAAAAKgAAAAADKQAAAAAAKQAAAAAABAAAAAADKwAAAAADKgAAAAAA + tiles: BAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAACewAAAAAAKgAAAAADKgAAAAABKgAAAAACewAAAAABKwAAAAADKwAAAAADKwAAAAACKwAAAAACKwAAAAABKwAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADewAAAAAAKgAAAAABKgAAAAACKgAAAAADewAAAAAAKwAAAAACKwAAAAACKwAAAAACKwAAAAACKwAAAAACKwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAABewAAAAACewAAAAAALAAAAAACewAAAAACewAAAAAAewAAAAACewAAAAAALAAAAAABLAAAAAABewAAAAABewAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAAewAAAAADLQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAAewAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAADLQAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABewAAAAAAKgAAAAACewAAAAACewAAAAABewAAAAADewAAAAADewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAAewAAAAACewAAAAACLAAAAAACewAAAAACBAAAAAACDAAAAAABKQAAAAAAKQAAAAAACgAAAAAACgAAAAAADgAAAAAHDgAAAAAGBAAAAAADBAAAAAACBAAAAAABewAAAAAAewAAAAADDAAAAAADKgAAAAADKwAAAAACKQAAAAAAKQAAAAAEKQAAAAAACgAAAAAACgAAAAAADgAAAAADDgAAAAAGDgAAAAAEBAAAAAADBAAAAAAAewAAAAACewAAAAABDAAAAAACDAAAAAABDAAAAAACKgAAAAADKgAAAAACKQAAAAACCgAAAAAACgAAAAAADgAAAAAFDgAAAAACDgAAAAADDgAAAAAHBAAAAAACBAAAAAADewAAAAAADAAAAAABCgAAAAAAKQAAAAAANwAAAAAAKgAAAAACKwAAAAAAKgAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAABAAAAAADBAAAAAAAewAAAAADCgAAAAAADgAAAAAOCgAAAAAAKQAAAAAAKQAAAAAAKwAAAAAAKwAAAAADKwAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAADewAAAAADDgAAAAAGDgAAAAAFCgAAAAAACgAAAAAACgAAAAAACgAAAAAAKwAAAAAAKgAAAAACKwAAAAABDAAAAAAAKQAAAAADKQAAAAAACgAAAAAABAAAAAACBAAAAAAAewAAAAADDgAAAAADDgAAAAADDgAAAAAMDgAAAAAMDgAAAAADCgAAAAAACgAAAAAAKwAAAAABKwAAAAACDAAAAAACNwAAAAAADAAAAAABKQAAAAAABAAAAAACBAAAAAACewAAAAAADgAAAAAJDgAAAAACDgAAAAAMDgAAAAACCgAAAAAACgAAAAAAKQAAAAAFKwAAAAADKgAAAAACKwAAAAAAKwAAAAABKwAAAAABBAAAAAABBAAAAAABBAAAAAACewAAAAADDgAAAAALDgAAAAACKQAAAAAACgAAAAAACgAAAAAAKQAAAAADKgAAAAACKwAAAAADKwAAAAABKgAAAAADKgAAAAADKwAAAAAAKgAAAAAABAAAAAACBAAAAAABewAAAAABCgAAAAAACgAAAAAADgAAAAADCgAAAAAAKQAAAAAADAAAAAAAKwAAAAAAKgAAAAABKQAAAAAAKQAAAAAABAAAAAADKwAAAAACKgAAAAAD version: 6 -6,-4: ind: -6,-4 - tiles: BAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAABBQAAAAABBQAAAAAEBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADMAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAADMAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBwAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABwAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAACMAAAAAABMgAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAAMQAAAAAAMgAAAAAAMQAAAAAAMQAAAAACMgAAAAAAMgAAAAACMQAAAAACMAAAAAABMAAAAAADMQAAAAACMgAAAAADMQAAAAAAMAAAAAACMQAAAAADMAAAAAADMgAAAAADMAAAAAAAMAAAAAACMgAAAAABMAAAAAACMAAAAAAAMgAAAAADMAAAAAACMAAAAAADMQAAAAAAMgAAAAADMAAAAAACMgAAAAACMgAAAAABMQAAAAABMAAAAAAAMQAAAAAAMQAAAAADMAAAAAAAMQAAAAAABwAAAAADBwAAAAABBwAAAAACBAAAAAADBAAAAAABMAAAAAABMQAAAAABMgAAAAAABAAAAAADMwAAAAAAMwAAAAABMwAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBwAAAAAABwAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACMwAAAAABBgAAAAAAMwAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBwAAAAACBwAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACMwAAAAADBgAAAAAAMwAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAAABwAAAAABBAAAAAAABwAAAAACBwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABMwAAAAAAMwAAAAACMwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBwAAAAAABAAAAAACBAAAAAACBAAAAAAABQAAAAACBQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAAC + tiles: BAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABQAAAAADBQAAAAAFBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABMAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAABMAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAADBwAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACMAAAAAAAMgAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADMQAAAAABMgAAAAADMQAAAAABMQAAAAABMgAAAAABMgAAAAABMQAAAAABMAAAAAACMAAAAAAAMQAAAAACMgAAAAAAMQAAAAAAMAAAAAACMQAAAAADMAAAAAACMgAAAAAAMAAAAAACMAAAAAAAMgAAAAACMAAAAAAAMAAAAAAAMgAAAAABMAAAAAADMAAAAAACMQAAAAADMgAAAAADMAAAAAABMgAAAAADMgAAAAABMQAAAAABMAAAAAAAMQAAAAAAMQAAAAACMAAAAAADMQAAAAADBwAAAAACBwAAAAABBwAAAAAABAAAAAAABAAAAAABMAAAAAAAMQAAAAADMgAAAAACBAAAAAAAMwAAAAADMwAAAAADMwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBwAAAAADBwAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADMwAAAAADBgAAAAABMwAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBwAAAAAABwAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAADMwAAAAAABgAAAAABMwAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBwAAAAACBAAAAAAABwAAAAAABwAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABMwAAAAABMwAAAAAAMwAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBwAAAAABBAAAAAABBAAAAAACBAAAAAACBQAAAAABBQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAD version: 6 -6,-5: ind: -6,-5 - tiles: KQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAAKQAAAAADKQAAAAAEKQAAAAACKQAAAAAAKQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACKQAAAAACKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAAABQAAAAAABAAAAAADBAAAAAADBAAAAAACKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBQAAAAADBAAAAAADBAAAAAADBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAADNwAAAAAANwAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBQAAAAACBQAAAAAABAAAAAACBAAAAAABKQAAAAABKQAAAAACKQAAAAAAKQAAAAAANwAAAAACNwAAAAADNwAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBQAAAAAHBQAAAAADBAAAAAADBAAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAANwAAAAADNwAAAAADNwAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBQAAAAAEBQAAAAADBQAAAAAFBAAAAAACBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBQAAAAABBQAAAAAFBQAAAAAHBAAAAAABBAAAAAACKQAAAAACKQAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAAABQAAAAAABQAAAAAGBQAAAAAGBQAAAAACBAAAAAACBAAAAAACJQAAAAAAJQAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABQAAAAAGBQAAAAAFBQAAAAADBAAAAAAABAAAAAACBAAAAAACJQAAAAAAJQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBQAAAAAGBQAAAAAHBQAAAAAEBQAAAAACBAAAAAADBAAAAAAABAAAAAACJQAAAAAAJQAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBQAAAAAEBQAAAAAHBQAAAAACBQAAAAADBAAAAAABBAAAAAADBAAAAAAAJQAAAAAAJQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADBQAAAAAEBQAAAAAHBQAAAAABBQAAAAAFBQAAAAAHBAAAAAABBAAAAAAABAAAAAAAJQAAAAAAJQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABBQAAAAABBQAAAAAHBQAAAAADBQAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAACJAAAAAADJAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACBQAAAAADBQAAAAAEBQAAAAAGBQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAA + tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAACBAAAAAABBAAAAAAABAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAABBQAAAAAEBAAAAAAABAAAAAAABAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADNwAAAAACNwAAAAABNwAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBQAAAAACBQAAAAADBAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAANwAAAAAANwAAAAABNwAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBQAAAAAGBQAAAAAGBAAAAAAABAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAABNwAAAAAANwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBQAAAAAABQAAAAACBQAAAAADBAAAAAADBAAAAAABKQAAAAAEKQAAAAAAKQAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACBQAAAAAEBQAAAAABBQAAAAAEBAAAAAAABAAAAAACKQAAAAAAKQAAAAAEBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBQAAAAABBQAAAAAEBQAAAAAEBQAAAAAEBAAAAAAABAAAAAAAJQAAAAAAJQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBQAAAAAGBQAAAAAHBQAAAAACBAAAAAACBAAAAAADBAAAAAABJQAAAAAAJQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADBQAAAAAABQAAAAAFBQAAAAACBQAAAAAHBAAAAAABBAAAAAABBAAAAAAAJQAAAAAAJQAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBQAAAAABBQAAAAAEBQAAAAADBQAAAAACBAAAAAACBAAAAAACBAAAAAABJQAAAAAAJQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABQAAAAACBQAAAAAABQAAAAAGBQAAAAABBQAAAAACBAAAAAADBAAAAAACBAAAAAACJQAAAAAAJQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABQAAAAABBQAAAAAGBQAAAAAGBQAAAAAEBAAAAAACBAAAAAABBAAAAAABBAAAAAABJAAAAAACJAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBQAAAAABBQAAAAAEBQAAAAADBQAAAAAEBAAAAAACBAAAAAACBAAAAAACBAAAAAAB version: 6 -6,-6: ind: -6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADBQAAAAABBQAAAAACBAAAAAACBAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEBAAAAAAABAAAAAABBAAAAAAABQAAAAAEBQAAAAAEBQAAAAACBQAAAAADBQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABBAAAAAABBAAAAAABBAAAAAACBQAAAAAEBQAAAAAHBQAAAAADBQAAAAABBQAAAAACBQAAAAAGBQAAAAACAAAAAAAAAAAAAAAALwAAAAABKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAADBAAAAAAABQAAAAAABQAAAAAGBQAAAAAGBQAAAAAGBQAAAAAFBQAAAAAEBQAAAAABLwAAAAADLwAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABBAAAAAABBAAAAAAABAAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAAABQAAAAAGBQAAAAADBAAAAAADLwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAABBAAAAAACBQAAAAABBQAAAAAFBQAAAAACBQAAAAAFBQAAAAAGBAAAAAAABAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBQAAAAAABQAAAAAEBQAAAAADBQAAAAAHBAAAAAAABAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABQAAAAADBQAAAAAEBQAAAAAFBAAAAAABBAAAAAABBAAAAAACKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBQAAAAAEBQAAAAACBAAAAAAABAAAAAACBAAAAAADKQAAAAAEKQAAAAAFKQAAAAADKQAAAAAAKQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBQAAAAAFBAAAAAABBAAAAAABBAAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAFKQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBQAAAAAHBQAAAAADBAAAAAACBAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAACBQAAAAAGBQAAAAACBQAAAAADBQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAACBQAAAAAGBQAAAAABBQAAAAABBQAAAAABBQAAAAAHBQAAAAAABQAAAAADAAAAAAAAAAAAAAAALwAAAAABKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAADBAAAAAADBQAAAAADBQAAAAAABQAAAAAFBQAAAAAFBQAAAAAFBQAAAAAHBQAAAAAHLwAAAAACLwAAAAADKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAAABQAAAAADBQAAAAABBQAAAAAGBQAAAAAGBQAAAAAHBQAAAAAABAAAAAABLwAAAAADKQAAAAAAKQAAAAADKQAAAAAEKQAAAAAAKQAAAAAEBAAAAAACBAAAAAABBAAAAAADBQAAAAAEBQAAAAABBQAAAAADBQAAAAAABQAAAAAFBAAAAAADBAAAAAACKQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAABKQAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAADBAAAAAAABAAAAAAAKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBQAAAAAHBQAAAAAHBQAAAAAABAAAAAADBAAAAAADBAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABBQAAAAAABQAAAAAGBAAAAAABBAAAAAACBAAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBQAAAAAFBAAAAAACBAAAAAABBAAAAAABKQAAAAAAKQAAAAADKQAAAAAFKQAAAAAAKQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAB version: 6 -7,-4: ind: -7,-4 - tiles: KQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMQAAAAAAMgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACBAAAAAABBAAAAAACBAAAAAAAKQAAAAABKQAAAAAFKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAMAAAAAADMQAAAAACMgAAAAADKQAAAAACKQAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAMQAAAAAAKQAAAAAABAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMQAAAAADMAAAAAACMQAAAAABBAAAAAABMAAAAAABMAAAAAABMAAAAAADMAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMgAAAAADMAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMAAAAAACMQAAAAACMgAAAAADBAAAAAABBAAAAAABBwAAAAADBAAAAAADKQAAAAAAKQAAAAAEKQAAAAABKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADMAAAAAABMgAAAAAAMAAAAAACBAAAAAACBAAAAAADBwAAAAABBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAABAAAAAABMgAAAAACMQAAAAAAMAAAAAADMQAAAAADBAAAAAAABAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAABBAAAAAACMAAAAAAAMgAAAAADMAAAAAABMQAAAAADBAAAAAAABAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAAABAAAAAADMgAAAAADMgAAAAADMAAAAAACMgAAAAABMQAAAAAAMgAAAAACKQAAAAADKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADMAAAAAACMAAAAAACMgAAAAACMAAAAAAAMAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAFBAAAAAADBAAAAAADBAAAAAABBAAAAAABMQAAAAAAMgAAAAACMAAAAAAAMQAAAAACMQAAAAACMQAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAADKQAAAAAABAAAAAAABAAAAAADBAAAAAADMQAAAAACMgAAAAABMQAAAAADMQAAAAABMAAAAAACBAAAAAAABAAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAACBAAAAAACBAAAAAAABAAAAAADMgAAAAAAMQAAAAACMQAAAAADMAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAEBAAAAAABMQAAAAAAMAAAAAACMQAAAAACMgAAAAADMgAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADMAAAAAADMgAAAAAAMQAAAAACMAAAAAAAMAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAACBQAAAAAHBQAAAAAE + tiles: KQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAMQAAAAABMgAAAAABKQAAAAAEKQAAAAAAKQAAAAACKQAAAAAABAAAAAACBAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMAAAAAADMQAAAAADMgAAAAABKQAAAAADKQAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABMQAAAAACKQAAAAAABAAAAAABMAAAAAABMAAAAAACMAAAAAAAMAAAAAADKQAAAAAFKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAACKQAAAAACKQAAAAADMQAAAAABMAAAAAACMQAAAAAABAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAACKQAAAAAEKQAAAAAFKQAAAAAEKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMgAAAAAAMAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMAAAAAADMQAAAAACMgAAAAABBAAAAAABBAAAAAACBwAAAAACBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAACKQAAAAAAKQAAAAAABAAAAAACMAAAAAADMgAAAAADMAAAAAAABAAAAAABBAAAAAABBwAAAAADBAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAEBAAAAAACMgAAAAADMQAAAAACMAAAAAACMQAAAAADBAAAAAAABAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEBAAAAAACBAAAAAADMAAAAAABMgAAAAADMAAAAAABMQAAAAADBAAAAAABBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAABAAAAAADBAAAAAABBAAAAAADMgAAAAABMgAAAAACMAAAAAABMgAAAAADMQAAAAABMgAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAAMAAAAAABMAAAAAADMgAAAAACMAAAAAADMAAAAAADKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAAMQAAAAAAMgAAAAAAMAAAAAACMQAAAAADMQAAAAAAMQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAADMQAAAAADMgAAAAADMQAAAAABMQAAAAAAMAAAAAADBAAAAAABBAAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAABAAAAAACBAAAAAAABAAAAAAAMgAAAAABMQAAAAADMQAAAAADMAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACKQAAAAAEKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADBAAAAAAAMQAAAAABMAAAAAADMQAAAAABMgAAAAAAMgAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACMAAAAAADMgAAAAACMQAAAAACMAAAAAABMAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBQAAAAADBQAAAAAC version: 6 -7,-5: ind: -7,-5 - tiles: LwAAAAADLwAAAAABLwAAAAACLwAAAAADLwAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAADKQAAAAAAKQAAAAAAKQAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAALwAAAAADLwAAAAABLwAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAALwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAADegAAAAAAegAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAACKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADegAAAAACegAAAAAAKQAAAAAAKQAAAAACKQAAAAAEKQAAAAAAKQAAAAAAMgAAAAACKQAAAAABKQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAewAAAAABewAAAAABewAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEMQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMAAAAAABMQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAEKQAAAAACJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMgAAAAABMQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAADKQAAAAAAKQAAAAAEKQAAAAABKQAAAAACMQAAAAADMAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAAMQAAAAADMAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADJAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACMQAAAAABMgAAAAABMQAAAAAAKQAAAAACKQAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAEKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAMgAAAAAAMAAAAAACKQAAAAAAKQAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAAA + tiles: LwAAAAADLwAAAAACLwAAAAADLwAAAAACLwAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAEewAAAAADKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAACKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAACKQAAAAAAewAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAALwAAAAACLwAAAAAALwAAAAACKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAABKQAAAAAEKQAAAAABLwAAAAADKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAegAAAAACegAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAegAAAAACegAAAAACegAAAAABegAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAegAAAAADegAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAMgAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABewAAAAACewAAAAADewAAAAADKQAAAAAAKQAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAMQAAAAABKQAAAAACKQAAAAACKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMAAAAAAAMQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACMgAAAAAAMQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAMQAAAAAAMAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMQAAAAADMAAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMQAAAAADMgAAAAAAMQAAAAACKQAAAAAAKQAAAAAAJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAMgAAAAACMAAAAAABKQAAAAAAKQAAAAAAJAAAAAABJAAAAAACJAAAAAABJAAAAAABJAAAAAABJAAAAAAB version: 6 -7,-6: ind: -7,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAABewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAABewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAABewAAAAACewAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAADewAAAAABLwAAAAABLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAAALwAAAAAALwAAAAACewAAAAADewAAAAAAewAAAAAALwAAAAACKQAAAAAELwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAACLwAAAAADLwAAAAABLwAAAAACLwAAAAACewAAAAACewAAAAACewAAAAADKQAAAAAAKQAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAAAKQAAAAAAKQAAAAAAewAAAAADewAAAAACewAAAAABKQAAAAABKQAAAAADLwAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAABLwAAAAABLwAAAAADKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAewAAAAACKQAAAAACKQAAAAAAKQAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAABLwAAAAADLwAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADewAAAAAAewAAAAACewAAAAACKQAAAAAAKQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAACewAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAABewAAAAACewAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAABewAAAAABewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAABewAAAAAALwAAAAADLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAAALwAAAAAALwAAAAADLwAAAAABewAAAAAAewAAAAACewAAAAABLwAAAAAAKQAAAAAELwAAAAACLwAAAAABLwAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAABLwAAAAAALwAAAAABLwAAAAAALwAAAAADewAAAAACewAAAAACewAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAAAKQAAAAAAKQAAAAAAewAAAAABewAAAAADewAAAAACKQAAAAAEKQAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAABLwAAAAACLwAAAAAALwAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAewAAAAACewAAAAADKQAAAAAAKQAAAAAAKQAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAewAAAAACewAAAAABewAAAAAAKQAAAAAAKQAAAAAA version: 6 -7,-3: ind: -7,-3 - tiles: KQAAAAAAKQAAAAABKQAAAAAABAAAAAACMgAAAAAAMgAAAAADMgAAAAACMAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABQAAAAAEBQAAAAAHBQAAAAAAKQAAAAACBAAAAAAABAAAAAACMQAAAAACMgAAAAADMAAAAAADMQAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABQAAAAABBQAAAAAFBQAAAAABBAAAAAABBAAAAAACMQAAAAABMAAAAAACMQAAAAACMgAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAADBQAAAAAGBQAAAAADBQAAAAAHBQAAAAACBAAAAAAAMAAAAAAAMgAAAAAAMgAAAAACMQAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABQAAAAAABQAAAAAFBQAAAAAABAAAAAACMQAAAAACMgAAAAADMAAAAAACMgAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBQAAAAACBQAAAAAFBQAAAAABBAAAAAADBAAAAAAAMgAAAAACMQAAAAACMQAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAAABQAAAAAGBQAAAAAGBQAAAAAHBAAAAAABBAAAAAABMQAAAAACMAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAAEBQAAAAAABQAAAAAFBAAAAAAABAAAAAACBAAAAAABMgAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBQAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADMQAAAAADMQAAAAABMQAAAAACMQAAAAADMQAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABMAAAAAACMAAAAAABMAAAAAAABAAAAAADMQAAAAADMQAAAAAAMQAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADMQAAAAABMQAAAAABMQAAAAACMQAAAAACMQAAAAABMQAAAAABMQAAAAABFAAAAAADFAAAAAAGFAAAAAAAMQAAAAACMQAAAAADMQAAAAABBAAAAAACBAAAAAABBAAAAAABMQAAAAADMQAAAAAAMQAAAAABMQAAAAABMQAAAAACMQAAAAACFAAAAAABFAAAAAABEAAAAAAAFAAAAAAJFAAAAAAJMQAAAAACMQAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAAMQAAAAADMQAAAAADFAAAAAAGEAAAAAABbgAAAAACEAAAAAADFAAAAAACMQAAAAAAMQAAAAADBAAAAAAABAAAAAADBAAAAAAA + tiles: KQAAAAAAKQAAAAAAKQAAAAAABAAAAAAAMgAAAAAAMgAAAAADMgAAAAADMAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAABBQAAAAADBQAAAAAFBQAAAAAAKQAAAAAEBAAAAAACBAAAAAACMQAAAAABMgAAAAACMAAAAAACMQAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBQAAAAAABQAAAAACBQAAAAAFBAAAAAAABAAAAAAAMQAAAAABMAAAAAADMQAAAAAAMgAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBQAAAAAEBQAAAAABBQAAAAAABQAAAAADBAAAAAADMAAAAAACMgAAAAADMgAAAAABMQAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABBQAAAAAHBQAAAAAFBQAAAAAHBAAAAAACMQAAAAADMgAAAAAAMAAAAAAAMgAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABBQAAAAAABQAAAAACBQAAAAACBAAAAAAABAAAAAACMgAAAAAAMQAAAAABMQAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBQAAAAAABQAAAAABBQAAAAAHBAAAAAAABAAAAAAAMQAAAAADMAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABQAAAAAEBQAAAAADBQAAAAAABAAAAAADBAAAAAAABAAAAAADMgAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABQAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADMQAAAAAAMQAAAAACMQAAAAADMQAAAAADMQAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABMAAAAAACMAAAAAACMAAAAAACBAAAAAACMQAAAAABMQAAAAADMQAAAAAAMQAAAAABMQAAAAACMQAAAAABMQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACMQAAAAACMQAAAAABMQAAAAADMQAAAAABMQAAAAACMQAAAAAAMQAAAAACFAAAAAACFAAAAAAEFAAAAAAHMQAAAAACMQAAAAADMQAAAAADBAAAAAACBAAAAAADBAAAAAADMQAAAAABMQAAAAAAMQAAAAABMQAAAAABMQAAAAACMQAAAAACFAAAAAAFFAAAAAACEAAAAAACFAAAAAAHFAAAAAAAMQAAAAACMQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADMQAAAAACMQAAAAABFAAAAAACEAAAAAABbgAAAAADEAAAAAACFAAAAAABMQAAAAADMQAAAAAABAAAAAADBAAAAAADBAAAAAAA version: 6 -4,-7: ind: -4,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAACBgAAAAABBAAAAAADBgAAAAACBgAAAAADBgAAAAADBgAAAAACAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAAABAAAAAAABgAAAAAABgAAAAADBgAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAADewAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACewAAAAACKgAAAAADKgAAAAABKgAAAAAAewAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADewAAAAABKgAAAAABKgAAAAAAKgAAAAACewAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAABgAAAAADBgAAAAABBgAAAAABBgAAAAADBgAAAAAABAAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAADBgAAAAACBgAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAABBAAAAAACBAAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAAewAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACewAAAAADKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACewAAAAADKgAAAAAAKgAAAAADKgAAAAABewAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAC version: 6 -5,-7: ind: -5,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAADBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAABgAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBgAAAAADBgAAAAAABgAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAABBgAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAADewAAAAACewAAAAACewAAAAACewAAAAAAewAAAAADewAAAAABewAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAACewAAAAADewAAAAACewAAAAABewAAAAACewAAAAABKwAAAAACKwAAAAACKwAAAAADKwAAAAACKwAAAAABKwAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAAewAAAAABKgAAAAABKgAAAAADKgAAAAADewAAAAABKwAAAAABKwAAAAAAKwAAAAAAKwAAAAADKwAAAAAAKwAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADewAAAAACKgAAAAACKgAAAAADKgAAAAAAewAAAAABKwAAAAACKwAAAAABKwAAAAACKwAAAAACKwAAAAACKwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAADBgAAAAAABgAAAAACBgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAABgAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAABgAAAAADBgAAAAABBgAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBgAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACewAAAAABewAAAAADewAAAAABewAAAAABewAAAAAAKwAAAAACKwAAAAACKwAAAAAAKwAAAAACKwAAAAACKwAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAABewAAAAACKgAAAAACKgAAAAADKgAAAAABewAAAAABKwAAAAACKwAAAAABKwAAAAABKwAAAAACKwAAAAAAKwAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAACewAAAAABKgAAAAACKgAAAAABKgAAAAABewAAAAABKwAAAAADKwAAAAACKwAAAAABKwAAAAABKwAAAAACKwAAAAAD version: 6 -6,-7: ind: -6,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAACBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: BAAAAAAABAAAAAABBAAAAAAABAAAAAAAMQAAAAADMQAAAAABFAAAAAAGFAAAAAAHEAAAAAABFAAAAAAAFAAAAAAAMQAAAAACMQAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAADMQAAAAABMQAAAAAAMQAAAAADFAAAAAADFAAAAAABFAAAAAAJMQAAAAADMQAAAAAAMQAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABwAAAAAABwAAAAACBwAAAAADMQAAAAACMQAAAAAAMQAAAAAAMQAAAAABMQAAAAABMQAAAAABMQAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAADMQAAAAACMQAAAAAAMQAAAAADMQAAAAADMQAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAAABAAAAAABBAAAAAADBAAAAAACMQAAAAABMQAAAAAAMAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABAAAAAADBAAAAAACBAAAAAABMQAAAAAAMQAAAAAAMAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACBwAAAAACBwAAAAABBwAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAACMQAAAAACMQAAAAADMAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAAMQAAAAACMQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADMAAAAAACMQAAAAABMQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABMQAAAAACMgAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADMAAAAAABMQAAAAADMQAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADMgAAAAABMgAAAAADMAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAAAMAAAAAAAMQAAAAABMQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADMAAAAAACMQAAAAACMgAAAAABMQAAAAABMgAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADMQAAAAADMQAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABBwAAAAACBwAAAAAAMgAAAAACMQAAAAABMgAAAAADMgAAAAAAMAAAAAADBAAAAAABBAAAAAACMQAAAAADMQAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABwAAAAAABwAAAAABBAAAAAAABAAAAAAAMAAAAAAAMQAAAAADMAAAAAAAMAAAAAABMgAAAAADMAAAAAABMQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADDwAAAAACfgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADMAAAAAABMgAAAAABMAAAAAAAMgAAAAABMgAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAAADwAAAAADDAAAAAACfgAAAAAAfgAAAAAABAAAAAAABAAAAAABBAAAAAABMgAAAAADMQAAAAABMgAAAAACMgAAAAABMgAAAAACNwAAAAAABAAAAAACBAAAAAADBAAAAAAB + tiles: BAAAAAACBAAAAAAABAAAAAACBAAAAAACMQAAAAADMQAAAAACFAAAAAAEFAAAAAAEEAAAAAACFAAAAAAJFAAAAAACMQAAAAAAMQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABMQAAAAACMQAAAAADMQAAAAACFAAAAAABFAAAAAABFAAAAAAEMQAAAAABMQAAAAABMQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABwAAAAABBwAAAAACBwAAAAACMQAAAAADMQAAAAABMQAAAAAAMQAAAAACMQAAAAAAMQAAAAADMQAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAADMQAAAAAAMQAAAAADMQAAAAABMQAAAAABMQAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAABBAAAAAABBAAAAAADBAAAAAAAMQAAAAAAMQAAAAABMAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAABAAAAAAABAAAAAABBAAAAAAAMQAAAAABMQAAAAADMAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACBwAAAAABBwAAAAABBwAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAAMQAAAAADMQAAAAABMAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADMQAAAAABMQAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAAAMAAAAAACMQAAAAADMQAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAAMQAAAAADMgAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADMAAAAAACMQAAAAAAMQAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACMgAAAAADMgAAAAADMAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAAMAAAAAABMQAAAAABMQAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACMAAAAAABMQAAAAAAMgAAAAADMQAAAAAAMgAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAAMQAAAAADMQAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAACBwAAAAABBwAAAAACMgAAAAAAMQAAAAAAMgAAAAABMgAAAAAAMAAAAAADBAAAAAADBAAAAAACMQAAAAADMQAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAACBwAAAAACBwAAAAABBAAAAAADBAAAAAACMAAAAAACMQAAAAABMAAAAAADMAAAAAABMgAAAAAAMAAAAAAAMQAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAAADwAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACMAAAAAAAMgAAAAACMAAAAAACMgAAAAADMgAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACDwAAAAABDAAAAAABfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAADMgAAAAACMQAAAAACMgAAAAACMgAAAAABMgAAAAACNwAAAAACBAAAAAADBAAAAAAABAAAAAAB version: 6 -8,-5: ind: -8,-5 - tiles: LwAAAAACLwAAAAACLwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADLwAAAAABLwAAAAADLwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAABLwAAAAADLwAAAAAALwAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAACLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAACLwAAAAACLwAAAAACLwAAAAABLwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAADLwAAAAABLwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAAALwAAAAACLwAAAAAALwAAAAADLwAAAAACLwAAAAADLwAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAACKQAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAAAKQAAAAAAKQAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAACLwAAAAADLwAAAAACLwAAAAADLwAAAAAALwAAAAABLwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAADLwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAABLwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAABLwAAAAADLwAAAAABKQAAAAAAKQAAAAADKQAAAAAEKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAALwAAAAACLwAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAELwAAAAACLwAAAAACKQAAAAABKQAAAAADKQAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAELwAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAA + tiles: LwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAABLwAAAAACLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAADLwAAAAACLwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAABKQAAAAAALwAAAAADLwAAAAACLwAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAACKQAAAAAAKQAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAACKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAAAKQAAAAABLwAAAAADLwAAAAABLwAAAAACLwAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAALwAAAAAALwAAAAAALwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAALwAAAAACLwAAAAADKQAAAAAEKQAAAAAAKQAAAAAEKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAADKQAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAALwAAAAAALwAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAA version: 6 -8,-4: ind: -8,-4 - tiles: LwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAAALwAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAABKQAAAAACKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAAALwAAAAADLwAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAACLwAAAAAALwAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAELwAAAAABLwAAAAACLwAAAAAALwAAAAADKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAALwAAAAADLwAAAAACLwAAAAABLwAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAACKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAELwAAAAABLwAAAAACLwAAAAACLwAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAAALwAAAAADLwAAAAADLwAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAABLwAAAAACLwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAAEKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAACKQAAAAACKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAAAKQAAAAAA + tiles: LwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACLwAAAAAALwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAADKQAAAAAAKQAAAAAALwAAAAAALwAAAAAALwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAALwAAAAACLwAAAAAALwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALwAAAAADLwAAAAACLwAAAAACLwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAALwAAAAADLwAAAAABLwAAAAAALwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAABKQAAAAAAKQAAAAABLwAAAAAALwAAAAABLwAAAAABLwAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAEKQAAAAAEKQAAAAACKQAAAAAALwAAAAAALwAAAAABLwAAAAACLwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAAALwAAAAAALwAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAAFKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALwAAAAACLwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAALwAAAAABLwAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAADLwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAADKQAAAAAEKQAAAAABKQAAAAAEKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAA version: 6 -8,-3: ind: -8,-3 - tiles: KQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAABAAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABewAAAAACewAAAAADewAAAAACewAAAAACewAAAAACKQAAAAAEKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAewAAAAACegAAAAAAegAAAAAAegAAAAABfAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADMAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAACewAAAAACewAAAAABewAAAAAAewAAAAADDAAAAAACDAAAAAADDAAAAAADDAAAAAABMgAAAAADMAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAAMQAAAAABMAAAAAACMQAAAAAAKQAAAAAAKQAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAAAMQAAAAADMAAAAAACMgAAAAADMQAAAAACKQAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAAMQAAAAAAMgAAAAACMAAAAAADMQAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAAMQAAAAAAMgAAAAADMgAAAAADMgAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBQAAAAAFBQAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADMQAAAAACMgAAAAADMAAAAAADMQAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBQAAAAACBQAAAAAABQAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADMgAAAAABMAAAAAACMQAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABMAAAAAABMQAAAAAAMQAAAAABMQAAAAAAMQAAAAABMQAAAAAAMQAAAAADBAAAAAABBQAAAAABBQAAAAAGBQAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABMQAAAAADMQAAAAACMgAAAAAAMAAAAAADMQAAAAABMQAAAAADMQAAAAACMQAAAAACBAAAAAAABAAAAAADBQAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACMgAAAAADMgAAAAADMAAAAAACMQAAAAAABAAAAAAAMAAAAAABMAAAAAADMAAAAAAA + tiles: KQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAABAAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAADewAAAAABewAAAAABewAAAAACewAAAAABKQAAAAAAKQAAAAABKQAAAAAEBAAAAAADBAAAAAADBAAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAACegAAAAABegAAAAACegAAAAADfAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAACewAAAAADewAAAAADewAAAAACewAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAABMAAAAAACKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEewAAAAADewAAAAAAewAAAAABewAAAAAAewAAAAADDAAAAAADDAAAAAADDAAAAAADDAAAAAAAMgAAAAACMAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACMQAAAAABMAAAAAADMQAAAAABKQAAAAAAKQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADMQAAAAABMAAAAAACMgAAAAABMQAAAAADKQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAACMQAAAAADMgAAAAADMAAAAAAAMQAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACMQAAAAABMgAAAAADMgAAAAADMgAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBQAAAAAFBQAAAAAFBAAAAAADBAAAAAAABAAAAAABBAAAAAACMQAAAAABMgAAAAAAMAAAAAABMQAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBQAAAAAEBQAAAAAFBQAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAACMgAAAAADMAAAAAADMQAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBQAAAAAGBQAAAAAGBQAAAAAFBQAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADMAAAAAABMQAAAAADMQAAAAABMQAAAAAAMQAAAAABMQAAAAADMQAAAAAABAAAAAADBQAAAAAABQAAAAACBQAAAAAEBAAAAAACBAAAAAAABAAAAAABBAAAAAACMQAAAAAAMQAAAAAAMgAAAAADMAAAAAABMQAAAAAAMQAAAAADMQAAAAADMQAAAAACBAAAAAABBAAAAAACBQAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAAAMgAAAAABMgAAAAABMAAAAAADMQAAAAABBAAAAAABMAAAAAACMAAAAAACMAAAAAAD version: 6 -8,-2: ind: -8,-2 - tiles: BAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACMQAAAAADMgAAAAABMQAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAAAMgAAAAABMgAAAAADMgAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACMQAAAAACMgAAAAACMQAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACMgAAAAABMgAAAAADMAAAAAAAMAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACMgAAAAABMAAAAAAAMAAAAAAAMQAAAAABMQAAAAABMQAAAAADMAAAAAAAMQAAAAACMAAAAAACMgAAAAAAMQAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACMQAAAAADMAAAAAAAMgAAAAABMgAAAAAAMAAAAAABMQAAAAADMgAAAAABMQAAAAADMAAAAAABMgAAAAABMAAAAAAAMQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABMgAAAAABMgAAAAAAMAAAAAACMQAAAAAAMQAAAAAAMAAAAAAAMgAAAAABMgAAAAADMQAAAAAAMgAAAAABMQAAAAADMAAAAAACMQAAAAACBAAAAAABBAAAAAABBAAAAAABMQAAAAADMgAAAAAAMQAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAAMgAAAAADMQAAAAADMAAAAAABMgAAAAACMgAAAAACMQAAAAABMAAAAAACMgAAAAAABAAAAAACDAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACMQAAAAAAMAAAAAADMQAAAAAAMQAAAAABBAAAAAABMQAAAAACMAAAAAAAMgAAAAAAMgAAAAABMQAAAAABNgAAAAADNwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABMgAAAAACMAAAAAABMAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACMQAAAAADMAAAAAAAMgAAAAAANgAAAAABNwAAAAAABAAAAAAABAAAAAACBAAAAAADBwAAAAAAMQAAAAAAMgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAACMgAAAAAAMQAAAAAANgAAAAABNwAAAAABBAAAAAADBAAAAAAAMQAAAAAAMAAAAAADMgAAAAADMQAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABNwAAAAABNwAAAAACBAAAAAAABAAAAAAAMQAAAAAAMgAAAAACMQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBwAAAAACBAAAAAAABAAAAAACBAAAAAABMQAAAAADBwAAAAACMAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAACBwAAAAAABAAAAAAABAAAAAAAMAAAAAADMgAAAAADBwAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAAfgAAAAAABAAAAAABMAAAAAABBwAAAAACMQAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABfgAAAAAAfgAAAAAADAAAAAAB + tiles: BAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAAMQAAAAADMgAAAAACMQAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAADMgAAAAACMgAAAAADMgAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAABMQAAAAABMgAAAAACMQAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABMgAAAAAAMgAAAAAAMAAAAAAAMAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABMgAAAAACMAAAAAAAMAAAAAACMQAAAAABMQAAAAAAMQAAAAADMAAAAAAAMQAAAAACMAAAAAADMgAAAAAAMQAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACMQAAAAADMAAAAAABMgAAAAABMgAAAAABMAAAAAABMQAAAAAAMgAAAAABMQAAAAACMAAAAAACMgAAAAABMAAAAAADMQAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAAMgAAAAACMgAAAAABMAAAAAAAMQAAAAADMQAAAAADMAAAAAACMgAAAAAAMgAAAAABMQAAAAADMgAAAAACMQAAAAABMAAAAAAAMQAAAAABBAAAAAAABAAAAAAABAAAAAABMQAAAAABMgAAAAABMQAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAAAMgAAAAADMQAAAAADMAAAAAABMgAAAAADMgAAAAABMQAAAAADMAAAAAADMgAAAAADBAAAAAABDAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADMQAAAAADMAAAAAAAMQAAAAAAMQAAAAABBAAAAAACMQAAAAAAMAAAAAAAMgAAAAADMgAAAAACMQAAAAABNgAAAAADNwAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADMgAAAAACMAAAAAAAMAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACMQAAAAAAMAAAAAACMgAAAAACNgAAAAABNwAAAAABBAAAAAADBAAAAAACBAAAAAADBwAAAAABMQAAAAABMgAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADMgAAAAACMQAAAAACNgAAAAACNwAAAAABBAAAAAADBAAAAAAAMQAAAAABMAAAAAAAMgAAAAABMQAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABNwAAAAAANwAAAAABBAAAAAACBAAAAAAAMQAAAAABMgAAAAAAMQAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAACMQAAAAAABwAAAAAAMAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBwAAAAAABAAAAAAABAAAAAAAMAAAAAAAMgAAAAACBwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADfgAAAAAABAAAAAABMAAAAAADBwAAAAACMQAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABfgAAAAAAfgAAAAAADAAAAAAD version: 6 -8,-1: ind: -8,-1 - tiles: MgAAAAACMAAAAAACMgAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAAfgAAAAAADAAAAAACDwAAAAAADAAAAAADBwAAAAACMgAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAADwAAAAADDAAAAAADMgAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABgQAAAAAAfgAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAAfgAAAAAADwAAAAABDwAAAAABEwAAAAABEwAAAAABEwAAAAABEwAAAAACEwAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAADgQAAAAAAfgAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAADDwAAAAACDwAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAADwAAAAACDAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAAfgAAAAAADAAAAAACDwAAAAABDAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAACKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAADBgAAAAAABgAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAABAAAAAAABgAAAAADKQAAAAABKQAAAAAAKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: MgAAAAABMAAAAAABMgAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAAfgAAAAAADAAAAAADDwAAAAABDAAAAAABBwAAAAAAMgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACDwAAAAABDAAAAAABMgAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADgQAAAAAAfgAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAADDwAAAAABDwAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAACfgAAAAAADwAAAAABDwAAAAAAEwAAAAACEwAAAAADEwAAAAACEwAAAAAAEwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAAgQAAAAAAfgAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAABDwAAAAACDAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAAfgAAAAAADAAAAAAADwAAAAABDAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAADBgAAAAACBgAAAAADKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEBAAAAAAABgAAAAACKQAAAAAAKQAAAAAFKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -9,-4: ind: -9,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAACLwAAAAAALwAAAAADLwAAAAACLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAADLwAAAAACLwAAAAACLwAAAAABLwAAAAAALwAAAAACLwAAAAADLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAADLwAAAAADLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAABLwAAAAACLwAAAAACLwAAAAACLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAAALwAAAAABLwAAAAABLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAABLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAAALwAAAAAALwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAADLwAAAAACLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAACLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAABLwAAAAADLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAABLwAAAAADLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAADLwAAAAACKQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAAALwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAADLwAAAAABLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAAALwAAAAACLwAAAAABLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAABLwAAAAADLwAAAAACLwAAAAAALwAAAAADLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAACLwAAAAACLwAAAAACLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAADLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAABLwAAAAACLwAAAAADLwAAAAACLwAAAAACLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAABLwAAAAABLwAAAAAALwAAAAAALwAAAAABLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAABLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAACLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAABLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAACLwAAAAACLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAABLwAAAAABLwAAAAABKQAAAAAA version: 6 -9,-3: ind: -9,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAABKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAABLwAAAAABLwAAAAADKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAACKQAAAAADKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAACKQAAAAAAKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABKQAAAAAAKQAAAAABKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADKQAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAAKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAACMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAADMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAACMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAABBAAAAAABMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABAAAAAACBAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAAALwAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAACLwAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAABLwAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAAAKQAAAAACKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADKQAAAAAEKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABKQAAAAACKQAAAAAAKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADKQAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAACMAAAAAABMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACBAAAAAADMAAAAAACMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAAMAAAAAACMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAABBAAAAAACMAAAAAACMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABAAAAAADBAAAAAAB version: 6 -9,-2: ind: -9,-2 - tiles: MAAAAAACMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBAAAAAABBAAAAAADMAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBAAAAAACBAAAAAADBAAAAAADMAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACMQAAAAAAMQAAAAACMQAAAAADMQAAAAACMQAAAAABMQAAAAACMQAAAAAAMQAAAAABMQAAAAACMQAAAAAAMQAAAAAAMQAAAAACMQAAAAABBAAAAAADBAAAAAABBAAAAAABMgAAAAABMgAAAAACMgAAAAABMgAAAAAAMgAAAAADMgAAAAACMgAAAAABMgAAAAACMgAAAAACMgAAAAADMgAAAAACMgAAAAADMgAAAAAAMQAAAAADMAAAAAADMgAAAAABMgAAAAABMgAAAAACMgAAAAACMgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAACMgAAAAACMgAAAAACMgAAAAABMgAAAAAAMQAAAAADMgAAAAABMgAAAAAAMgAAAAACMgAAAAADMgAAAAABMgAAAAABMgAAAAACMgAAAAABMgAAAAAAMgAAAAADMgAAAAAAMgAAAAAAMgAAAAABMgAAAAAAMQAAAAADMgAAAAAAMQAAAAACMQAAAAAAMQAAAAADMQAAAAACMQAAAAACMQAAAAAAMQAAAAAAMQAAAAADfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAMQAAAAABBAAAAAABBAAAAAACBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACfgAAAAAAJQAAAAAAJAAAAAADJQAAAAAAfgAAAAAABAAAAAADBAAAAAADNwAAAAACNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBAAAAAADfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAABBAAAAAAANwAAAAABNgAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBAAAAAABBAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAABNwAAAAAANgAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAANwAAAAADNwAAAAACAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACAAAAAAAABgAAAAABBgAAAAACBgAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBgAAAAACBgAAAAAABgAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAC + tiles: MAAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBAAAAAAABAAAAAACMAAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBAAAAAAABAAAAAADBAAAAAACMAAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADMQAAAAACMQAAAAACMQAAAAAAMQAAAAABMQAAAAAAMQAAAAADMQAAAAADMQAAAAACMQAAAAAAMQAAAAACMQAAAAAAMQAAAAABMQAAAAABBAAAAAADBAAAAAACBAAAAAACMgAAAAABMgAAAAADMgAAAAADMgAAAAABMgAAAAADMgAAAAACMgAAAAABMgAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMQAAAAACMAAAAAABMgAAAAAAMgAAAAACMgAAAAABMgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMgAAAAABMgAAAAADMgAAAAABMgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMQAAAAADMgAAAAAAMgAAAAABMgAAAAAAMgAAAAADMgAAAAADMgAAAAAAMgAAAAADMgAAAAAAMgAAAAADMgAAAAABMgAAAAAAMgAAAAAAMgAAAAABMgAAAAADMQAAAAADMgAAAAACMQAAAAABMQAAAAACMQAAAAAAMQAAAAACMQAAAAABMQAAAAADMQAAAAACMQAAAAABfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAMQAAAAADBAAAAAACBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADfgAAAAAAJQAAAAAAJAAAAAADJQAAAAAAfgAAAAAABAAAAAABBAAAAAABNwAAAAADNwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBAAAAAACfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABAAAAAAABAAAAAADNwAAAAAANgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBAAAAAABBAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAADNwAAAAAANgAAAAACAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABNwAAAAABNwAAAAADAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABAAAAAAAABgAAAAABBgAAAAAABgAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADBgAAAAABBgAAAAAABgAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAB version: 6 -9,-1: ind: -9,-1 - tiles: BgAAAAADBgAAAAABBgAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBgAAAAAABgAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAADBwAAAAADBwAAAAADBgAAAAACBgAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBwAAAAACBwAAAAADBwAAAAADBgAAAAADBgAAAAACBgAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABwAAAAABMgAAAAABMQAAAAABBAAAAAADBgAAAAADBgAAAAABBgAAAAACBgAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABwAAAAABMQAAAAACMAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABwAAAAADBwAAAAABBwAAAAADBAAAAAABBAAAAAACBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBAAAAAADBAAAAAADBAAAAAACMgAAAAADMgAAAAABMgAAAAADMgAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBAAAAAADBAAAAAABBAAAAAACMgAAAAAAMgAAAAABMgAAAAACMgAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBAAAAAACBAAAAAACBAAAAAACNQAAAAABMgAAAAABMgAAAAAANQAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAADBAAAAAAABAAAAAAABwAAAAAANQAAAAACMgAAAAADMgAAAAAANQAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBAAAAAAABAAAAAADBwAAAAABBwAAAAACMgAAAAAAMgAAAAACMgAAAAADMgAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAAAAAAAAAABgAAAAAABgAAAAACBAAAAAADBAAAAAACBwAAAAADBwAAAAABBwAAAAADewAAAAACewAAAAABewAAAAACewAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAADBgAAAAADewAAAAACewAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAABewAAAAACegAAAAABegAAAAAAewAAAAABBAAAAAACBAAAAAAABgAAAAACBgAAAAADewAAAAADewAAAAAAewAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAADewAAAAADegAAAAADegAAAAADewAAAAADBAAAAAABBgAAAAACBgAAAAABBgAAAAAAewAAAAAAewAAAAABewAAAAACBwAAAAAABwAAAAABBwAAAAADBAAAAAADBAAAAAADewAAAAABewAAAAACewAAAAAAewAAAAABBgAAAAADBgAAAAADBgAAAAADAAAAAAAAewAAAAAAewAAAAABewAAAAABBwAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBgAAAAACBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BgAAAAADBgAAAAADBgAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABBgAAAAABBgAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACBwAAAAACBwAAAAAABgAAAAACBgAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBwAAAAADBwAAAAAABwAAAAADBgAAAAACBgAAAAABBgAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADBwAAAAADMgAAAAAAMQAAAAADBAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBwAAAAADMQAAAAABMAAAAAACBAAAAAAABAAAAAADAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBwAAAAADBwAAAAADBwAAAAAABAAAAAACBAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBAAAAAABBAAAAAABBAAAAAABMgAAAAADMgAAAAADMgAAAAABMgAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABAAAAAADBAAAAAADBAAAAAADMgAAAAADMgAAAAADMgAAAAAAMgAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAACBAAAAAABBAAAAAABNQAAAAADMgAAAAABMgAAAAADNQAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBAAAAAAABAAAAAABBAAAAAABBwAAAAAANQAAAAAAMgAAAAACMgAAAAABNQAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAABAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBAAAAAABBAAAAAACBwAAAAAABwAAAAABMgAAAAAAMgAAAAAAMgAAAAABMgAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAACAAAAAAAABgAAAAAABgAAAAAABAAAAAABBAAAAAABBwAAAAADBwAAAAADBwAAAAAAewAAAAABewAAAAABewAAAAADewAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBgAAAAACewAAAAADewAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAAAewAAAAAAegAAAAAAegAAAAABewAAAAADBAAAAAACBAAAAAADBgAAAAACBgAAAAADewAAAAAAewAAAAACewAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAACewAAAAAAegAAAAADegAAAAADewAAAAADBAAAAAADBgAAAAAABgAAAAABBgAAAAAAewAAAAADewAAAAACewAAAAAABwAAAAACBwAAAAABBwAAAAACBAAAAAAABAAAAAACewAAAAADewAAAAABewAAAAADewAAAAADBgAAAAACBgAAAAAABgAAAAADAAAAAAAAewAAAAADewAAAAAAewAAAAABBwAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBgAAAAABBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,-2: ind: -10,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAACMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMQAAAAACMQAAAAAAMQAAAAADMQAAAAABMQAAAAABMQAAAAACMQAAAAAAMQAAAAABMQAAAAAAMQAAAAADMQAAAAACMQAAAAADMQAAAAADMQAAAAADMQAAAAACMQAAAAABMgAAAAADMgAAAAAAMgAAAAAAMgAAAAADMgAAAAACMgAAAAADMgAAAAABMgAAAAADMgAAAAABMgAAAAADMgAAAAABMgAAAAABMgAAAAACMgAAAAABMgAAAAACMgAAAAAAMgAAAAABMgAAAAAAMgAAAAABMgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMgAAAAACMgAAAAAAMgAAAAAAMgAAAAACMgAAAAABMgAAAAAAMgAAAAAAMgAAAAACMgAAAAAAMgAAAAABMgAAAAABMgAAAAACMgAAAAACMgAAAAABMgAAAAACMgAAAAACMgAAAAABMgAAAAACMgAAAAADMgAAAAABMgAAAAACMgAAAAAAMgAAAAABMgAAAAAAMgAAAAACMQAAAAACMQAAAAAAMQAAAAADMQAAAAADMQAAAAACMQAAAAADMQAAAAACMQAAAAABMQAAAAAAMQAAAAACMQAAAAAAMQAAAAADMQAAAAACMQAAAAABMQAAAAABMQAAAAADMAAAAAAAMAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAACMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAADMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAABMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMQAAAAABMQAAAAABMQAAAAAAMQAAAAABMQAAAAACMQAAAAACMQAAAAABMQAAAAACMQAAAAABMQAAAAACMQAAAAACMQAAAAADMQAAAAACMQAAAAACMQAAAAADMQAAAAAAMgAAAAACMgAAAAAAMgAAAAADMgAAAAAAMgAAAAADMgAAAAACMgAAAAABMgAAAAACMgAAAAAAMgAAAAADMgAAAAACMgAAAAABMgAAAAACMgAAAAADMgAAAAABMgAAAAABMgAAAAADMgAAAAAAMgAAAAABMgAAAAAAMgAAAAACMgAAAAAAMgAAAAADMgAAAAACMgAAAAACMgAAAAACMgAAAAADMgAAAAAAMgAAAAABMgAAAAACMgAAAAAAMgAAAAABMgAAAAAAMgAAAAADMgAAAAAAMgAAAAACMgAAAAAAMgAAAAABMgAAAAADMgAAAAAAMgAAAAADMgAAAAADMgAAAAABMgAAAAABMgAAAAAAMgAAAAABMgAAAAADMgAAAAAAMQAAAAAAMQAAAAAAMQAAAAACMQAAAAAAMQAAAAACMQAAAAADMQAAAAACMQAAAAADMQAAAAADMQAAAAACMQAAAAACMQAAAAADMQAAAAAAMQAAAAAAMQAAAAACMQAAAAADMAAAAAADMAAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAACMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,-1: ind: -10,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAADegAAAAADAAAAAAAAewAAAAABAAAAAAAAegAAAAACegAAAAAAAAAAAAAAewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAABewAAAAABewAAAAADewAAAAABewAAAAACewAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAADewAAAAABewAAAAACewAAAAABewAAAAADewAAAAABewAAAAACewAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAADAAAAAAAAewAAAAABAAAAAAAAegAAAAACegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAACewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAABewAAAAADewAAAAACewAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAACewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAACewAAAAACewAAAAABewAAAAADewAAAAACewAAAAAAewAAAAACewAAAAACewAAAAADewAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAAB version: 6 -10,-3: ind: -10,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAADMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAADMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAADMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAACMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAABMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAD version: 6 -11,-1: ind: -11,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAADAAAAAAAAegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAABewAAAAADewAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAADewAAAAABewAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAACewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAAAewAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAABewAAAAAD version: 6 -7,1: ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMgAAAAACMgAAAAAAMgAAAAABMgAAAAADMgAAAAAAMgAAAAABMgAAAAADMgAAAAABMQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMQAAAAADMQAAAAADMQAAAAACMQAAAAADMQAAAAACMQAAAAADMQAAAAACMQAAAAAAMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAABMgAAAAABMgAAAAABMgAAAAABMgAAAAABMgAAAAABMgAAAAABMgAAAAABMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMQAAAAABMQAAAAABMQAAAAAAMQAAAAACMQAAAAACMQAAAAAAMQAAAAABMQAAAAACMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -9,0: ind: -9,0 - tiles: BgAAAAAAewAAAAACewAAAAAABAAAAAAABAAAAAADBAAAAAABBgAAAAADBgAAAAADBgAAAAACBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBgAAAAABBgAAAAADBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BgAAAAABewAAAAADewAAAAACBAAAAAAABAAAAAAABAAAAAADBgAAAAADBgAAAAADBgAAAAADBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,0: ind: -10,0 - tiles: egAAAAABAAAAAAAAewAAAAACAAAAAAAAegAAAAABegAAAAAAAAAAAAAAewAAAAABAAAAAAAAegAAAAADegAAAAADAAAAAAAAewAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAADAAAAAAAAewAAAAACAAAAAAAAegAAAAACegAAAAABAAAAAAAAewAAAAACAAAAAAAAegAAAAAAegAAAAADAAAAAAAAewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -11,0: ind: -11,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAADAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACAAAAAAAAegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,1: ind: -6,1 - tiles: BAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAACKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABAAAAAACBAAAAAADBAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABAAAAAABBAAAAAAABAAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAADBAAAAAACBAAAAAADKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAAABAAAAAAABAAAAAACKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBAAAAAAABAAAAAADBAAAAAACKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBAAAAAADBAAAAAABBAAAAAADKQAAAAAAKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBAAAAAADBAAAAAACBAAAAAABKQAAAAAAKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAABBAAAAAACBAAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBAAAAAAABAAAAAABBAAAAAACKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBAAAAAAABAAAAAACKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBAAAAAABBAAAAAACKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABAAAAAABBAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBAAAAAABBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABAAAAAACBAAAAAABBAAAAAADKQAAAAADKQAAAAAAKQAAAAAA + tiles: BAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABKQAAAAADKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBAAAAAACBAAAAAACBAAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBAAAAAADBAAAAAACBAAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBAAAAAAABAAAAAABBAAAAAADKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAACBAAAAAACBAAAAAABKQAAAAAAKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBAAAAAAABAAAAAABBAAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBAAAAAACBAAAAAABBAAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBAAAAAAABAAAAAACBAAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABAAAAAABBAAAAAACBAAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABAAAAAAABAAAAAADBAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAACBAAAAAADKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBAAAAAADBAAAAAACKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABAAAAAACBAAAAAADKQAAAAADKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBAAAAAAABAAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBAAAAAADBAAAAAADBAAAAAAAKQAAAAADKQAAAAAAKQAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAADBgAAAAACBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBgAAAAADBgAAAAACBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAADBgAAAAACBAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAABBgAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: NwAAAAAANwAAAAABNwAAAAAANwAAAAAANwAAAAADNwAAAAABNwAAAAADNwAAAAACNwAAAAABNwAAAAABNwAAAAADNwAAAAADNwAAAAADNwAAAAADNwAAAAADNwAAAAACNgAAAAADNgAAAAACNgAAAAADNgAAAAABNgAAAAABNgAAAAACNgAAAAADNgAAAAADNgAAAAABNgAAAAABNgAAAAABNgAAAAACNgAAAAAANgAAAAABNgAAAAAANgAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABAAAAAACBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: NwAAAAABNwAAAAACNwAAAAACNwAAAAABNwAAAAABNwAAAAADNwAAAAABNwAAAAAANwAAAAACNwAAAAADNwAAAAACNwAAAAAANwAAAAABNwAAAAABNwAAAAACNwAAAAADNgAAAAAANgAAAAABNgAAAAADNgAAAAABNgAAAAAANgAAAAACNgAAAAAANgAAAAABNgAAAAADNgAAAAACNgAAAAAANgAAAAACNgAAAAAANgAAAAABNgAAAAAANgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABAAAAAABBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAIwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAHwAAAAACfgAAAAAAIwAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAAABgAAAAADBgAAAAABAAAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAABHwAAAAACJAAAAAACIwAAAAAAIwAAAAAATgAAAAABTgAAAAABTgAAAAAAIwAAAAACIwAAAAABBAAAAAAABgAAAAACBgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAIwAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAAABAAAAAADBAAAAAABBAAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAIwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAADBwAAAAACBwAAAAABBAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAewAAAAABBwAAAAADBwAAAAABBwAAAAACNgAAAAADNQAAAAACNQAAAAADNQAAAAADNQAAAAABaAAAAAAAXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAACBwAAAAAABwAAAAAABwAAAAADNgAAAAABNwAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAAABwAAAAADBwAAAAABBwAAAAABNgAAAAACNQAAAAABNQAAAAADNQAAAAACNQAAAAACaAAAAAAAXQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAewAAAAACewAAAAADBAAAAAADBwAAAAABNgAAAAACNwAAAAAANwAAAAACNwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAACHwAAAAABHwAAAAAAfgAAAAAADAAAAAACewAAAAABBAAAAAADBAAAAAACNgAAAAABNwAAAAAANwAAAAADNwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAACHwAAAAABHwAAAAABfgAAAAAADAAAAAABBAAAAAACBAAAAAADBAAAAAAANgAAAAAANgAAAAAANgAAAAADNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAADDAAAAAACNwAAAAADNgAAAAAANwAAAAACNQAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAAABgAAAAABBgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAIwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAABHwAAAAABfgAAAAAAIwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAAABgAAAAADBgAAAAACAAAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAABHwAAAAABJAAAAAAAIwAAAAAAIwAAAAACTgAAAAAATgAAAAADTgAAAAABIwAAAAADIwAAAAAABAAAAAAABgAAAAADBgAAAAADfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAIwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAAABAAAAAABBAAAAAABBAAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAIwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAACBwAAAAADBwAAAAADBAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAaAAAAAAAfgAAAAAAewAAAAABBwAAAAABBwAAAAACBwAAAAACNgAAAAAANQAAAAACNQAAAAAANQAAAAABNQAAAAAAaAAAAAACXQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAADBwAAAAABBwAAAAACBwAAAAADNgAAAAACNwAAAAACNwAAAAAANwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAHwAAAAADBwAAAAABBwAAAAADBwAAAAADNgAAAAAANQAAAAADNQAAAAAANQAAAAABNQAAAAADaAAAAAADXQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAewAAAAACewAAAAAABAAAAAACBwAAAAAANgAAAAABNwAAAAACNwAAAAABNwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAAAHwAAAAADHwAAAAABfgAAAAAADAAAAAAAewAAAAABBAAAAAACBAAAAAABNgAAAAABNwAAAAAANwAAAAAANwAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAABJAAAAAACHwAAAAABHwAAAAACfgAAAAAADAAAAAACBAAAAAACBAAAAAADBAAAAAAANgAAAAADNgAAAAADNgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAABBAAAAAACDAAAAAAANwAAAAACNgAAAAACNwAAAAACNQAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBgAAAAAABgAAAAAAAAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAACNgAAAAACNQAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAADNgAAAAADNgAAAAACNgAAAAABNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANgAAAAACNgAAAAABNgAAAAAANQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAADNgAAAAADNgAAAAACNgAAAAABNQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAADNQAAAAAANQAAAAABNgAAAAACAAAAAAAAAAAAAAAAAAAAAAAANgAAAAADNwAAAAABNwAAAAACNwAAAAADNwAAAAACbAAAAAAANwAAAAAANwAAAAADNwAAAAAANwAAAAABNwAAAAADbAAAAAAANwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAACbQAAAAAANwAAAAACNwAAAAACbAAAAAAANwAAAAACNwAAAAAAbQAAAAAANwAAAAADNwAAAAAAbAAAAAAANwAAAAADAAAAAAAAAAAAAAAAAAAAAAAANwAAAAABfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAAbQAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbQAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAANwAAAAABAAAAAAAAAAAAAAAAAAAAAAAANwAAAAABNwAAAAABNwAAAAAANwAAAAACNwAAAAACbAAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAAbAAAAAAANwAAAAACBgAAAAADAAAAAAAAAAAAAAAANwAAAAADNwAAAAABNwAAAAACNwAAAAAANwAAAAAAbAAAAAAANwAAAAABfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACbAAAAAAANwAAAAACBgAAAAADBgAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAANwAAAAACBAAAAAACBgAAAAAABgAAAAABNwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbQAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbQAAAAAANwAAAAABBAAAAAADBAAAAAADBgAAAAAANwAAAAACNwAAAAACbQAAAAAANwAAAAADNwAAAAACbAAAAAAANwAAAAABNwAAAAACbQAAAAAANwAAAAADNwAAAAAAbAAAAAAANwAAAAAABAAAAAADBAAAAAAABAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAABNQAAAAABNgAAAAADNQAAAAACNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACNgAAAAADNgAAAAAANgAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACNgAAAAABNgAAAAAANgAAAAACNQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAABNgAAAAABNgAAAAABNgAAAAABNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAABNQAAAAABNQAAAAACNgAAAAABAAAAAAAAAAAAAAAAAAAAAAAANgAAAAABNwAAAAADNwAAAAABNwAAAAAANwAAAAACbAAAAAAANwAAAAABNwAAAAABNwAAAAACNwAAAAABNwAAAAADbAAAAAAANwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAABNwAAAAADbQAAAAAANwAAAAAANwAAAAAAbAAAAAAANwAAAAABNwAAAAACbQAAAAAANwAAAAACNwAAAAABbAAAAAAANwAAAAACAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACbQAAAAAANwAAAAACfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAAbQAAAAAANwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAANwAAAAABAAAAAAAAAAAAAAAAAAAAAAAANwAAAAADNwAAAAADNwAAAAADNwAAAAADNwAAAAABbAAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAANwAAAAABbAAAAAAANwAAAAADBgAAAAACAAAAAAAAAAAAAAAANwAAAAACNwAAAAABNwAAAAACNwAAAAACNwAAAAADbAAAAAAANwAAAAACfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbAAAAAAANwAAAAACBgAAAAACBgAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAANwAAAAABBAAAAAABBgAAAAACBgAAAAADNwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAAbQAAAAAANwAAAAACfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbQAAAAAANwAAAAABBAAAAAAABAAAAAACBgAAAAACNwAAAAADNwAAAAABbQAAAAAANwAAAAAANwAAAAACbAAAAAAANwAAAAAANwAAAAABbQAAAAAANwAAAAADNwAAAAAAbAAAAAAANwAAAAAABAAAAAAABAAAAAADBAAAAAAB version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAACbAAAAAAANwAAAAAANwAAAAAANwAAAAADNwAAAAADNgAAAAAAbAAAAAAABAAAAAABBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAANwAAAAABbAAAAAAANwAAAAACNwAAAAACbQAAAAAANwAAAAACNwAAAAACbAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAADBgAAAAABBgAAAAACNwAAAAADbQAAAAAANwAAAAABfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAAbQAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAAABAAAAAACBAAAAAABNwAAAAACbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAABgAAAAABBgAAAAAABgAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAAANwAAAAACbAAAAAAANwAAAAABfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAAbAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACNwAAAAAAbAAAAAAANwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACbAAAAAAABAAAAAACBgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACNwAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAADNwAAAAABbQAAAAAANwAAAAABfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbQAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADNwAAAAABbAAAAAAANwAAAAADNwAAAAAAbQAAAAAANwAAAAABNwAAAAADbAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAABbAAAAAAANwAAAAADNwAAAAACNwAAAAACNwAAAAACNgAAAAACbAAAAAAABAAAAAABBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAABgAAAAADBgAAAAADBgAAAAACBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAbAAAAAAANwAAAAAANwAAAAADbQAAAAAANwAAAAADNwAAAAABbAAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAAABgAAAAADNwAAAAAAbQAAAAAANwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbQAAAAAABgAAAAACBgAAAAADBgAAAAADBgAAAAADBgAAAAAABgAAAAADBAAAAAADBAAAAAABNwAAAAABbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAABgAAAAADBgAAAAACBgAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAANwAAAAADbAAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAANwAAAAABbAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABNwAAAAADbAAAAAAANwAAAAABfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACbAAAAAAABAAAAAABBgAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABNwAAAAABbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADNwAAAAAAbQAAAAAANwAAAAACfgAAAAAAfgAAAAAAfgAAAAAANwAAAAADbQAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABNwAAAAACbAAAAAAANwAAAAAANwAAAAACbQAAAAAANwAAAAACNwAAAAACbAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: KQAAAAAEKQAAAAABKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KQAAAAAEKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-7: ind: -1,-7 - tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-8: ind: -1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: BAAAAAABBAAAAAABBAAAAAADBQAAAAAGBQAAAAAABQAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAADKQAAAAAAKQAAAAAAKQAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADKQAAAAAEKQAAAAADKQAAAAAFKQAAAAAABAAAAAADBAAAAAAABQAAAAAGBQAAAAAHBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACKQAAAAADKQAAAAACKQAAAAAAKQAAAAAABAAAAAACBAAAAAACBQAAAAADBQAAAAAABQAAAAAHBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAABQAAAAAFBQAAAAAFBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAACKQAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBQAAAAAHBQAAAAAEBQAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADKQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAABBQAAAAAFBQAAAAAABQAAAAAABAAAAAABBAAAAAABewAAAAACewAAAAADfAAAAAACewAAAAADewAAAAADBAAAAAADKQAAAAAABAAAAAAABAAAAAADBAAAAAADBQAAAAAHBQAAAAAHBQAAAAACBQAAAAAEBAAAAAABBAAAAAACewAAAAABegAAAAABewAAAAADegAAAAADewAAAAAABAAAAAADKQAAAAAABAAAAAACBAAAAAAABQAAAAADBQAAAAAFBQAAAAAFBQAAAAAABQAAAAAEBAAAAAABBAAAAAADewAAAAADegAAAAADewAAAAABegAAAAABewAAAAADBAAAAAACKQAAAAAABQAAAAAHBQAAAAAEBQAAAAAFBQAAAAAGBQAAAAADBQAAAAABBAAAAAABBAAAAAADBAAAAAABewAAAAAAegAAAAABewAAAAAAegAAAAACewAAAAABBAAAAAAAKQAAAAAABQAAAAAABQAAAAAHBQAAAAAHBQAAAAABBQAAAAACBQAAAAADBAAAAAACBAAAAAAABAAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAABBAAAAAACBAAAAAABBQAAAAACBQAAAAAHBQAAAAABBQAAAAAEBQAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABKQAAAAAABAAAAAAABAAAAAABBQAAAAAGBQAAAAAABQAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABKQAAAAAABAAAAAADBAAAAAAABAAAAAAABQAAAAAHBQAAAAAGBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACKQAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAD + tiles: BAAAAAABBAAAAAACBAAAAAACBQAAAAAHBQAAAAAEBQAAAAAHBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAADBQAAAAABBQAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAABBQAAAAAHBQAAAAAEBQAAAAAEBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBQAAAAAEBQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAAKQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBQAAAAAABQAAAAABBQAAAAAFBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAAKQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBQAAAAAFBQAAAAAABQAAAAAEBAAAAAABBAAAAAAAewAAAAAAewAAAAADfAAAAAADewAAAAADewAAAAAABAAAAAAAKQAAAAAABAAAAAADBAAAAAACBAAAAAACBQAAAAABBQAAAAAHBQAAAAAHBQAAAAACBAAAAAACBAAAAAADewAAAAAAegAAAAACewAAAAAAegAAAAAAewAAAAABBAAAAAAAKQAAAAAABAAAAAAABAAAAAAABQAAAAAEBQAAAAAHBQAAAAAHBQAAAAAFBQAAAAADBAAAAAACBAAAAAADewAAAAABegAAAAABewAAAAACegAAAAAAewAAAAACBAAAAAAAKQAAAAABBQAAAAACBQAAAAAABQAAAAAGBQAAAAAFBQAAAAADBQAAAAABBAAAAAAABAAAAAABBAAAAAAAewAAAAABegAAAAACewAAAAADegAAAAABewAAAAACBAAAAAAAKQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAAEBQAAAAAABQAAAAAFBAAAAAAABAAAAAABBAAAAAAAewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAADBAAAAAACBAAAAAADBQAAAAAFBQAAAAAEBQAAAAACBQAAAAACBQAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAAKQAAAAAABAAAAAAABAAAAAABBQAAAAAGBQAAAAAHBQAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAAKQAAAAAABAAAAAABBAAAAAABBAAAAAAABQAAAAACBQAAAAAEBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADKQAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAD version: 6 -2,-7: ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAFKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAEKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAEBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAABQAAAAAGBQAAAAAFBQAAAAAFBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACKQAAAAAAKQAAAAACKQAAAAADKQAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAACBQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAABQAAAAAHBQAAAAAHBQAAAAAEBQAAAAADBQAAAAAABQAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAADKQAAAAACKQAAAAAAKQAAAAAABQAAAAAABQAAAAAEBQAAAAABBQAAAAACBQAAAAAGBQAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAABAAAAAACBQAAAAAEBQAAAAAHBQAAAAAEBQAAAAAGBQAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADKQAAAAAAKQAAAAAAKQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAEKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAEKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAABAAAAAABBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADKQAAAAABKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAEBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABQAAAAADBQAAAAABBQAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABQAAAAAGBQAAAAAGBQAAAAADBQAAAAAGBQAAAAAFBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAABQAAAAADBQAAAAAFBQAAAAAABQAAAAAGBQAAAAABBQAAAAAHBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAABQAAAAAFBQAAAAAEBQAAAAAFBQAAAAADBQAAAAAGBQAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAABKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBQAAAAACBQAAAAACBQAAAAAGBQAAAAAEBQAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACKQAAAAAAKQAAAAACKQAAAAAA version: 6 -2,-8: ind: -2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAACKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAFKQAAAAABKQAAAAAAKQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAA version: 6 -3,-7: ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAACBAAAAAABBAAAAAADBAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAAAAAAAAAAKQAAAAAEBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBQAAAAAFBQAAAAADBQAAAAADBQAAAAAEBAAAAAABBAAAAAAABgAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABQAAAAAGBQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAAHBAAAAAABBgAAAAABBAAAAAACBQAAAAAFBQAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAABQAAAAABBQAAAAAFBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAADBQAAAAAHBQAAAAAEBQAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBQAAAAAABQAAAAABBQAAAAAHBQAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBQAAAAACBQAAAAADBQAAAAAHBQAAAAAGBQAAAAAFBAAAAAABBAAAAAACBQAAAAAEBQAAAAAFBAAAAAADBAAAAAAABAAAAAAABAAAAAABBQAAAAAFBAAAAAADBAAAAAACBAAAAAADBQAAAAAFBQAAAAAFBQAAAAAGBQAAAAAFBQAAAAAEBQAAAAAGBQAAAAAABQAAAAAABQAAAAABBAAAAAACBAAAAAABBQAAAAAFBQAAAAAGBAAAAAABBAAAAAABBAAAAAADBAAAAAADBQAAAAAABQAAAAADBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAADBQAAAAAABAAAAAAABAAAAAACBAAAAAABBQAAAAAEBQAAAAAFBAAAAAADBAAAAAACBAAAAAAABAAAAAADBQAAAAADBQAAAAAGBQAAAAAGBQAAAAAGBQAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAABBQAAAAABBQAAAAAGBQAAAAAABQAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAABBAAAAAACBAAAAAACKQAAAAAEKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAEKQAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAAAAAAAAAAKQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBQAAAAAFBQAAAAADBQAAAAAFBQAAAAAFBAAAAAADBAAAAAADBgAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBQAAAAAGBQAAAAADBQAAAAABBQAAAAACBQAAAAAFBQAAAAADBAAAAAABBgAAAAADBAAAAAADBQAAAAADBQAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBQAAAAADBQAAAAAHBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBQAAAAAEBQAAAAAHBQAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAACBQAAAAACBQAAAAACBQAAAAAHBQAAAAAFBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAABBQAAAAAGBQAAAAACBQAAAAABBQAAAAAEBAAAAAADBAAAAAADBQAAAAAEBQAAAAAEBAAAAAABBAAAAAADBAAAAAACBAAAAAAABQAAAAAABAAAAAACBAAAAAADBAAAAAAABQAAAAABBQAAAAAHBQAAAAAEBQAAAAAFBQAAAAABBQAAAAADBQAAAAABBQAAAAAFBQAAAAAHBAAAAAADBAAAAAADBQAAAAAABQAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABBQAAAAACBQAAAAAHBQAAAAADBQAAAAAHBQAAAAAABQAAAAAFBQAAAAAFBAAAAAADBAAAAAAABAAAAAADBQAAAAAHBQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAABQAAAAACBQAAAAAFBQAAAAADBQAAAAACBQAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADBQAAAAABBQAAAAAGBQAAAAABBQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAD version: 6 4,0: ind: 4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAADNgAAAAADNgAAAAABNgAAAAACNgAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAABNwAAAAAANwAAAAABNwAAAAADNwAAAAACNwAAAAADNwAAAAABNwAAAAACNwAAAAACNwAAAAADNwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAABNwAAAAACNwAAAAABNwAAAAADNwAAAAABNwAAAAAANwAAAAACNwAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAACNwAAAAABNwAAAAABNwAAAAABNwAAAAADNwAAAAADNwAAAAABNwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAANgAAAAACNgAAAAADNgAAAAAANgAAAAACNgAAAAADNgAAAAAANgAAAAACNgAAAAADNgAAAAABNgAAAAAANgAAAAADNgAAAAADNgAAAAAANgAAAAABNwAAAAADNwAAAAABNwAAAAAANwAAAAADNwAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAABNwAAAAAANwAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAABNwAAAAADNwAAAAADNwAAAAACNwAAAAABNwAAAAABNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAABNwAAAAAANwAAAAADNwAAAAACNwAAAAADNwAAAAABNwAAAAABNwAAAAAD version: 6 4,1: ind: 4,1 - tiles: NwAAAAABNwAAAAAANwAAAAABNwAAAAAANwAAAAABNwAAAAACNwAAAAAANwAAAAACNwAAAAABNwAAAAADNwAAAAAANwAAAAABNwAAAAAANwAAAAACNwAAAAABNwAAAAACNgAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAACNgAAAAACNgAAAAABNgAAAAACNgAAAAAANgAAAAABNgAAAAAANgAAAAABNgAAAAACNgAAAAADNgAAAAABNgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAACNgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAADNgAAAAAC + tiles: NwAAAAAANwAAAAADNwAAAAADNwAAAAACNwAAAAABNwAAAAADNwAAAAACNwAAAAAANwAAAAADNwAAAAADNwAAAAADNwAAAAACNwAAAAABNwAAAAABNwAAAAADNwAAAAABNgAAAAADNgAAAAABNgAAAAABNgAAAAACNgAAAAACNgAAAAABNgAAAAADNgAAAAAANgAAAAADNgAAAAAANgAAAAACNgAAAAACNgAAAAAANgAAAAAANgAAAAACNgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAACNgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAACNgAAAAAB version: 6 5,0: ind: 5,0 - tiles: AAAAAAAABgAAAAADBgAAAAADCAAAAAACCAAAAAAACAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAACBgAAAAACBgAAAAAACAAAAAABCAAAAAADCAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAADBgAAAAACBgAAAAADCAAAAAABCAAAAAADCAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAADBgAAAAABBgAAAAADBgAAAAACCAAAAAACCAAAAAAFCAAAAAAFCAAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAADBgAAAAABBgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAFCAAAAAABfgAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAACBgAAAAABCAAAAAABCAAAAAAGCAAAAAAGCAAAAAAFCAAAAAAGCAAAAAADfgAAAAAAfgAAAAAAfAAAAAADfgAAAAAAfgAAAAAAfAAAAAADfgAAAAAAfgAAAAAAfAAAAAABBgAAAAADCAAAAAACCAAAAAADCAAAAAAGCAAAAAADCAAAAAACCAAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABgAAAAAACAAAAAAGCAAAAAAACAAAAAABCAAAAAACCAAAAAAECAAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABgAAAAABBgAAAAACCAAAAAABCAAAAAAFCAAAAAAACAAAAAAACAAAAAACfgAAAAAAfgAAAAAAfAAAAAABfgAAAAAAfgAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfAAAAAADBgAAAAADBgAAAAADCAAAAAABCAAAAAACCAAAAAAECAAAAAADCAAAAAACfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAADfgAAAAAAegAAAAAABgAAAAABBgAAAAACBgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAGfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAADAAAAAAAABgAAAAADBgAAAAADCAAAAAAACAAAAAAGCAAAAAAECAAAAAADfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAACegAAAAABfgAAAAAAegAAAAACAAAAAAAABgAAAAAABgAAAAABCAAAAAAGCAAAAAAACAAAAAAACAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAANgAAAAADNgAAAAACNgAAAAADNgAAAAAANgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAADNwAAAAAANwAAAAAANwAAAAADNwAAAAAANwAAAAADNwAAAAAAfgAAAAAAHAAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABNwAAAAAANwAAAAAANwAAAAABNwAAAAAANwAAAAADNwAAAAAANwAAAAACNwAAAAACNwAAAAACNwAAAAADHQAAAAABHAAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAB + tiles: AAAAAAAABgAAAAABBgAAAAACCAAAAAADCAAAAAACCAAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAADBgAAAAACBgAAAAAACAAAAAAACAAAAAAFCAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAADBgAAAAAABgAAAAAACAAAAAADCAAAAAAACAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAABBgAAAAABBgAAAAAABgAAAAACCAAAAAAECAAAAAAGCAAAAAAECAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAABBgAAAAACBgAAAAACCAAAAAACCAAAAAAGCAAAAAACCAAAAAABCAAAAAAFfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAACegAAAAADfgAAAAAAegAAAAABBgAAAAAACAAAAAAFCAAAAAAFCAAAAAADCAAAAAAACAAAAAAFCAAAAAADfgAAAAAAfgAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfgAAAAAAfgAAAAAAfAAAAAADBgAAAAACCAAAAAAGCAAAAAAECAAAAAAACAAAAAADCAAAAAAACAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABgAAAAADCAAAAAAFCAAAAAAFCAAAAAAACAAAAAACCAAAAAADCAAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABgAAAAAABgAAAAADCAAAAAADCAAAAAABCAAAAAAFCAAAAAABCAAAAAABfgAAAAAAfgAAAAAAfAAAAAABfgAAAAAAfgAAAAAAfAAAAAADfgAAAAAAfgAAAAAAfAAAAAABBgAAAAACBgAAAAAACAAAAAABCAAAAAABCAAAAAAFCAAAAAACCAAAAAAEfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAACegAAAAABfgAAAAAAegAAAAADBgAAAAAABgAAAAADBgAAAAACCAAAAAABCAAAAAAECAAAAAABCAAAAAAFfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAAAAAAAAAAABgAAAAAABgAAAAACCAAAAAADCAAAAAAGCAAAAAAECAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABAAAAAAAABgAAAAADBgAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAABNgAAAAAANgAAAAACNgAAAAAANgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAADNwAAAAADNwAAAAABNwAAAAADNwAAAAABNwAAAAADNwAAAAADNwAAAAADNwAAAAABNwAAAAABNwAAAAADfgAAAAAAHAAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADNwAAAAABNwAAAAADNwAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAACNwAAAAABNwAAAAACNwAAAAAAHQAAAAADHAAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAD version: 6 5,1: ind: 5,1 - tiles: NwAAAAADNwAAAAABNwAAAAACNwAAAAABNwAAAAABNwAAAAABNwAAAAABNwAAAAADNwAAAAACNwAAAAADfgAAAAAAHAAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABNgAAAAABNgAAAAABNgAAAAADNgAAAAACNgAAAAAANgAAAAADNgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAADAAAAAAAABgAAAAACBgAAAAADCAAAAAAACAAAAAAACAAAAAAFCAAAAAAFfgAAAAAANQAAAAABNQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABgAAAAADBgAAAAADCAAAAAAGCAAAAAAGCAAAAAAACAAAAAACfgAAAAAANQAAAAACNQAAAAADfgAAAAAAbAAAAAAAfgAAAAAANgAAAAACNgAAAAADNgAAAAAAAAAAAAAABgAAAAADBgAAAAACCAAAAAAFCAAAAAAGCAAAAAADCAAAAAAGfgAAAAAANQAAAAACNQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAANgAAAAABNQAAAAABNQAAAAADBgAAAAAABgAAAAADBgAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACfgAAAAAANQAAAAADNQAAAAABNQAAAAADfgAAAAAAfgAAAAAANgAAAAACNgAAAAADNgAAAAADBgAAAAADBgAAAAADBgAAAAABCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAAGfgAAAAAAfgAAAAAANgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAACBgAAAAABBgAAAAACCAAAAAABCAAAAAAECAAAAAABCAAAAAAEfgAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAABBgAAAAAABgAAAAAABgAAAAACBgAAAAACCAAAAAAECAAAAAAGCAAAAAAGfgAAAAAADwAAAAAADwAAAAADEwAAAAADEwAAAAADEwAAAAAAEwAAAAABDwAAAAACEwAAAAADAAAAAAAABgAAAAABBgAAAAABBgAAAAAACAAAAAADCAAAAAAECAAAAAAEfgAAAAAADwAAAAABEwAAAAACDwAAAAAAEwAAAAADEwAAAAADEwAAAAAAEwAAAAABDwAAAAADAAAAAAAAAAAAAAAABgAAAAADBgAAAAAACAAAAAAACAAAAAADCAAAAAAFfgAAAAAADwAAAAAADwAAAAABEwAAAAADEwAAAAABEwAAAAADEwAAAAADDwAAAAADEwAAAAADAAAAAAAAAAAAAAAABgAAAAADBgAAAAADCAAAAAADCAAAAAABCAAAAAAAfgAAAAAADwAAAAAAEwAAAAACDwAAAAABEwAAAAABEwAAAAADEwAAAAACEwAAAAABDwAAAAADAAAAAAAABgAAAAAABgAAAAACBgAAAAABCAAAAAAFCAAAAAABCAAAAAAFfgAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAADNgAAAAACNgAAAAACNgAAAAACCAAAAAAECAAAAAABCAAAAAACCAAAAAAGfgAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAABNgAAAAACNgAAAAABNgAAAAABCAAAAAAGCAAAAAAACAAAAAAFCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAADCAAAAAAACAAAAAAGCAAAAAADCAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAXwAAAAAA + tiles: NwAAAAABNwAAAAADNwAAAAACNwAAAAACNwAAAAACNwAAAAAANwAAAAAANwAAAAADNwAAAAABNwAAAAABfgAAAAAAHAAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAACNgAAAAADNgAAAAABNgAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABAAAAAAAABgAAAAACBgAAAAACCAAAAAAFCAAAAAAGCAAAAAAFCAAAAAAFfgAAAAAANQAAAAADNQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABgAAAAADBgAAAAAACAAAAAACCAAAAAACCAAAAAAGCAAAAAAAfgAAAAAANQAAAAACNQAAAAADfgAAAAAAbAAAAAAAfgAAAAAANgAAAAABNgAAAAACNgAAAAABAAAAAAAABgAAAAACBgAAAAABCAAAAAAGCAAAAAAECAAAAAACCAAAAAAGfgAAAAAANQAAAAACNQAAAAACfgAAAAAAbAAAAAAAbAAAAAAANgAAAAADNQAAAAACNQAAAAABBgAAAAAABgAAAAABBgAAAAABCAAAAAAECAAAAAAFCAAAAAAACAAAAAADfgAAAAAANQAAAAACNQAAAAACNQAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAADNgAAAAABBgAAAAABBgAAAAACBgAAAAACCAAAAAADCAAAAAAGCAAAAAAFCAAAAAACfgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAADBgAAAAABBgAAAAAACAAAAAAECAAAAAAACAAAAAADCAAAAAADfgAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAACBgAAAAAABgAAAAACBgAAAAACBgAAAAACCAAAAAAACAAAAAAACAAAAAAFfgAAAAAADwAAAAADDwAAAAADEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABDwAAAAACEwAAAAABAAAAAAAABgAAAAACBgAAAAACBgAAAAABCAAAAAABCAAAAAACCAAAAAAFfgAAAAAADwAAAAACEwAAAAADDwAAAAAAEwAAAAABEwAAAAAAEwAAAAABEwAAAAABDwAAAAADAAAAAAAAAAAAAAAABgAAAAABBgAAAAADCAAAAAAGCAAAAAAFCAAAAAABfgAAAAAADwAAAAACDwAAAAABEwAAAAACEwAAAAAAEwAAAAADEwAAAAACDwAAAAADEwAAAAABAAAAAAAAAAAAAAAABgAAAAACBgAAAAAACAAAAAACCAAAAAAECAAAAAAAfgAAAAAADwAAAAADEwAAAAABDwAAAAADEwAAAAACEwAAAAACEwAAAAABEwAAAAACDwAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAACAAAAAAFCAAAAAAFCAAAAAAAfgAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAACNgAAAAAANgAAAAABNgAAAAAACAAAAAAGCAAAAAAGCAAAAAADCAAAAAAGfgAAAAAAEwAAAAABEwAAAAABEwAAAAABEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAABNgAAAAAANgAAAAACNgAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADNgAAAAADNgAAAAAACAAAAAABCAAAAAAGCAAAAAABCAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAXwAAAAAA version: 6 6,0: ind: 6,0 - tiles: fgAAAAAAfgAAAAAANgAAAAADNQAAAAADDwAAAAABDwAAAAACDwAAAAABfgAAAAAACAAAAAAGCAAAAAABCAAAAAACCAAAAAAECAAAAAAFCAAAAAACCAAAAAADCAAAAAACfgAAAAAAfgAAAAAANgAAAAABNQAAAAABNgAAAAACNgAAAAACNgAAAAAAfgAAAAAACAAAAAAGCAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAABegAAAAABfgAAAAAANgAAAAADNQAAAAABNQAAAAAANQAAAAADNgAAAAAAfgAAAAAACAAAAAAECAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAACAAAAAACegAAAAADfgAAAAAANgAAAAAANgAAAAAANgAAAAABNgAAAAAANgAAAAADfgAAAAAACAAAAAACCAAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAADegAAAAACfgAAAAAAfgAAAAAANgAAAAADfgAAAAAANgAAAAABNgAAAAAAfgAAAAAACAAAAAAECAAAAAAEfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAADfgAAAAAAfgAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADfgAAAAAACAAAAAAECAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAAQAAAAAAAHQAAAAACHQAAAAAAHAAAAAADHAAAAAACHAAAAAAAHQAAAAAAfgAAAAAACAAAAAAFCAAAAAAFfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAGQAAAAAAAfgAAAAAAHQAAAAADHQAAAAACHQAAAAACHAAAAAACHQAAAAABfgAAAAAACAAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABfgAAAAAACAAAAAACfgAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACHAAAAAACHAAAAAACHAAAAAADHQAAAAABfgAAAAAAegAAAAABfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADfgAAAAAAHQAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHQAAAAABHQAAAAAAegAAAAAAfgAAAAAAHQAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHQAAAAABfgAAAAAAHQAAAAADHAAAAAABHAAAAAABHAAAAAACHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHQAAAAADfgAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAfgAAAAAAHAAAAAABfgAAAAAAHQAAAAAAHAAAAAABHQAAAAACHQAAAAABHQAAAAABHAAAAAADHQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAACHQAAAAAAHQAAAAABHAAAAAADHQAAAAAADAAAAAACHQAAAAAAHAAAAAACHQAAAAABfgAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHAAAAAAAHQAAAAACHQAAAAABHAAAAAABHQAAAAACDAAAAAAAHQAAAAABHAAAAAAAHQAAAAACHQAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAD + tiles: fgAAAAAAfgAAAAAANgAAAAACNQAAAAADDwAAAAABDwAAAAABDwAAAAACfgAAAAAACAAAAAAGCAAAAAAECAAAAAAACAAAAAACCAAAAAAFCAAAAAABCAAAAAADCAAAAAAGfgAAAAAAfgAAAAAANgAAAAABNQAAAAABNgAAAAACNgAAAAABNgAAAAABfgAAAAAACAAAAAABCAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFegAAAAADfgAAAAAANgAAAAADNQAAAAADNQAAAAABNQAAAAADNgAAAAADfgAAAAAACAAAAAADCAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAACAAAAAAFegAAAAABfgAAAAAANgAAAAABNgAAAAAANgAAAAACNgAAAAAANgAAAAACfgAAAAAACAAAAAAGCAAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAABegAAAAABfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAANgAAAAAANgAAAAAAfgAAAAAACAAAAAACCAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAFfgAAAAAAfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACfgAAAAAACAAAAAAGCAAAAAAFfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAACQAAAAAAAHQAAAAABHQAAAAADHAAAAAADHAAAAAABHAAAAAADHQAAAAAAfgAAAAAACAAAAAAACAAAAAAFfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAGQAAAAAAAfgAAAAAAHQAAAAADHQAAAAADHQAAAAABHAAAAAAAHQAAAAABfgAAAAAACAAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAADfgAAAAAACAAAAAAFfgAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADHAAAAAADHAAAAAADHAAAAAADHQAAAAABfgAAAAAAegAAAAADfgAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABfgAAAAAAHQAAAAACHAAAAAACHAAAAAADHAAAAAABHQAAAAABHQAAAAACegAAAAABfgAAAAAAHQAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHQAAAAABfgAAAAAAHQAAAAABHAAAAAADHAAAAAADHAAAAAADHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHQAAAAACfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACfgAAAAAAHAAAAAACfgAAAAAAHQAAAAACHAAAAAACHQAAAAAAHQAAAAAAHQAAAAACHAAAAAADHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHQAAAAABHQAAAAAAHAAAAAAAHQAAAAADDAAAAAABHQAAAAACHAAAAAACHQAAAAACfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHAAAAAACHQAAAAADHQAAAAACHAAAAAAAHQAAAAAADAAAAAAAHQAAAAACHAAAAAACHQAAAAACHQAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAAA version: 6 6,1: ind: 6,1 - tiles: HAAAAAAAHQAAAAACHQAAAAABHAAAAAACHQAAAAAADAAAAAABHQAAAAABHAAAAAABHQAAAAADfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHAAAAAAAfgAAAAAAHQAAAAADHAAAAAADHQAAAAADHQAAAAAAHQAAAAABHAAAAAAAHQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAABHQAAAAABfgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAAAHQAAAAACHAAAAAADNgAAAAADfgAAAAAAHQAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACHQAAAAACfgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABfgAAAAAAHAAAAAACNgAAAAACNgAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAfgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAADfgAAAAAAHAAAAAACNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAABEwAAAAABEwAAAAACEwAAAAACEwAAAAADEwAAAAACEwAAAAABfgAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAAAfgAAAAAAHQAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABEwAAAAAAEwAAAAADEwAAAAACDwAAAAACEwAAAAACEwAAAAAAEwAAAAACEwAAAAACDwAAAAACfgAAAAAAHQAAAAACHAAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAEwAAAAADEwAAAAAAEwAAAAADEwAAAAADDwAAAAACEwAAAAACEwAAAAAAEwAAAAADDwAAAAADfgAAAAAAHQAAAAABHAAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADEwAAAAACEwAAAAADEwAAAAABDwAAAAADEwAAAAACEwAAAAADEwAAAAADEwAAAAADDwAAAAABfgAAAAAAHQAAAAACHAAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADEwAAAAACEwAAAAACEwAAAAABEwAAAAACDwAAAAABEwAAAAADEwAAAAADEwAAAAAADwAAAAAAfgAAAAAAHQAAAAABHAAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAADfgAAAAAAHQAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAABEwAAAAABfgAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABJAAAAAABfgAAAAAAJAAAAAAAJAAAAAADJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAACXwAAAAAAXwAAAAABXwAAAAACXwAAAAACXwAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: HAAAAAABHQAAAAACHQAAAAACHAAAAAABHQAAAAAADAAAAAABHQAAAAADHAAAAAACHQAAAAADfgAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHAAAAAABfgAAAAAAHQAAAAAAHAAAAAACHQAAAAABHQAAAAABHQAAAAABHAAAAAACHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAACHQAAAAABfgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHQAAAAAAHAAAAAAANgAAAAAAfgAAAAAAHQAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAABHQAAAAAAfgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAfgAAAAAAHAAAAAAANgAAAAADNgAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAfgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADfgAAAAAAHAAAAAACNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAACEwAAAAAAfgAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAACfgAAAAAAHQAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAACEwAAAAAAEwAAAAACEwAAAAADDwAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADDwAAAAABfgAAAAAAHQAAAAAAHAAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAABEwAAAAADEwAAAAABEwAAAAAAEwAAAAADDwAAAAABEwAAAAADEwAAAAADEwAAAAABDwAAAAACfgAAAAAAHQAAAAADHAAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABEwAAAAAAEwAAAAACEwAAAAACDwAAAAADEwAAAAADEwAAAAAAEwAAAAABEwAAAAACDwAAAAABfgAAAAAAHQAAAAABHAAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADEwAAAAACEwAAAAADEwAAAAAAEwAAAAADDwAAAAACEwAAAAACEwAAAAACEwAAAAAADwAAAAAAfgAAAAAAHQAAAAABHAAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAAAfgAAAAAAHQAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAABEwAAAAAAfgAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAACJAAAAAABfgAAAAAAJAAAAAABJAAAAAACJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAADXwAAAAABXwAAAAADXwAAAAABXwAAAAADXwAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 7,0: ind: 7,0 - tiles: CAAAAAABfgAAAAAAHQAAAAAAfgAAAAAACAAAAAAFCAAAAAAECAAAAAAFCAAAAAADCAAAAAACCAAAAAAGCAAAAAAFCAAAAAACCAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAfgAAAAAACAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAACfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAAHQAAAAAAHAAAAAACHQAAAAABfgAAAAAACAAAAAAFfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAACAAAAAADCAAAAAAFfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAAHQAAAAAAHAAAAAABHQAAAAABfgAAAAAACAAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAECAAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADHAAAAAADHQAAAAADfgAAAAAACAAAAAAEfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAFCAAAAAAEfgAAAAAANgAAAAAANgAAAAACCAAAAAAGfgAAAAAAHQAAAAAAfgAAAAAACAAAAAABCAAAAAAGfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAGCAAAAAADfgAAAAAANgAAAAAANgAAAAACfgAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADfgAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACfgAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABfgAAAAAANgAAAAACNgAAAAAANgAAAAABNgAAAAACHQAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHQAAAAADfgAAAAAAHQAAAAADHAAAAAACHAAAAAABHAAAAAACHQAAAAACfgAAAAAANgAAAAADNQAAAAABNQAAAAADNgAAAAAAHQAAAAACHAAAAAACHAAAAAADHAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHAAAAAAAHAAAAAACHAAAAAACHQAAAAABfgAAAAAANgAAAAADNQAAAAABNQAAAAAANgAAAAACHQAAAAAAHAAAAAACHAAAAAACHAAAAAADHQAAAAAAfgAAAAAAHQAAAAAAHAAAAAADHAAAAAABHAAAAAABHQAAAAACfgAAAAAANgAAAAAANgAAAAADNgAAAAADNgAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAABfgAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAABfgAAAAAAfgAAAAAANgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAADfgAAAAAAHQAAAAADHAAAAAACHAAAAAABHQAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAACHQAAAAABHQAAAAACHAAAAAAAHAAAAAABHQAAAAAB + tiles: CAAAAAAEfgAAAAAAHQAAAAAAfgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAAFCAAAAAACCAAAAAACCAAAAAAECAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAACAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAAGfgAAAAAAfgAAAAAACAAAAAABfgAAAAAAHQAAAAADHAAAAAADHQAAAAADfgAAAAAACAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAACAAAAAACCAAAAAADfgAAAAAAfgAAAAAACAAAAAAEfgAAAAAAHQAAAAACHAAAAAACHQAAAAADfgAAAAAACAAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAFCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADHAAAAAACHQAAAAAAfgAAAAAACAAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAECAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAACfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAAGCAAAAAAGfgAAAAAANgAAAAADNgAAAAAACAAAAAABfgAAAAAAHQAAAAACfgAAAAAACAAAAAADCAAAAAAGfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAACAAAAAACCAAAAAABfgAAAAAANgAAAAACNgAAAAADfgAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADfgAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABfgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADfgAAAAAANgAAAAACNgAAAAABNgAAAAADNgAAAAABHQAAAAADHAAAAAAAHAAAAAADHAAAAAABHQAAAAABfgAAAAAAHQAAAAADHAAAAAADHAAAAAACHAAAAAADHQAAAAACfgAAAAAANgAAAAAANQAAAAABNQAAAAAANgAAAAADHQAAAAAAHAAAAAACHAAAAAADHAAAAAADHQAAAAACHQAAAAACHQAAAAAAHAAAAAABHAAAAAADHAAAAAACHQAAAAACfgAAAAAANgAAAAAANQAAAAABNQAAAAADNgAAAAADHQAAAAAAHAAAAAABHAAAAAADHAAAAAACHQAAAAABfgAAAAAAHQAAAAABHAAAAAACHAAAAAABHAAAAAACHQAAAAACfgAAAAAANgAAAAAANgAAAAACNgAAAAADNgAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAACfgAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAACfgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAADfgAAAAAAHQAAAAABHAAAAAAAHAAAAAABHQAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHQAAAAABHQAAAAABHAAAAAADHAAAAAAAHQAAAAAC version: 6 7,1: ind: 7,1 - tiles: HQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAAAfgAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAABfgAAAAAAfgAAAAAAHAAAAAADHAAAAAACfgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHQAAAAACHAAAAAADHAAAAAACHAAAAAAAfgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAAAfgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADfgAAAAAAHAAAAAADHAAAAAABHAAAAAADfgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAACfgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAABfgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAfgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADfgAAAAAAfgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAADHQAAAAAAHQAAAAACfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAADHQAAAAADfgAAAAAAHQAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAACHAAAAAABHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHQAAAAACfgAAAAAAHQAAAAADHAAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHAAAAAACHQAAAAABfgAAAAAAfgAAAAAACAAAAAAECAAAAAAFCAAAAAACHAAAAAAAHQAAAAACfgAAAAAAHQAAAAABHAAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHAAAAAAAHQAAAAACfgAAAAAAfgAAAAAACAAAAAADCAAAAAAECAAAAAACHAAAAAACHQAAAAAAfgAAAAAAHQAAAAABHAAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHAAAAAADHQAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAAHAAAAAADHQAAAAADfgAAAAAAHQAAAAAAHAAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHAAAAAADHQAAAAACfgAAAAAAfgAAAAAACAAAAAAECAAAAAABCAAAAAACHAAAAAABHQAAAAAAfgAAAAAAHQAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHQAAAAABfgAAAAAAfgAAAAAACAAAAAAFCAAAAAACCAAAAAAGHQAAAAABHQAAAAAAfgAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAE + tiles: HQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAAAfgAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHQAAAAAAHAAAAAAAHAAAAAADHAAAAAABfgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACfgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADfgAAAAAAHAAAAAABHAAAAAABHAAAAAABfgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACfgAAAAAAHAAAAAADHAAAAAADHAAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADHQAAAAABHQAAAAAAfgAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABHQAAAAAAfgAAAAAAHQAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABHQAAAAACfgAAAAAAHQAAAAAAHAAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHAAAAAADHQAAAAADfgAAAAAAfgAAAAAACAAAAAAECAAAAAAACAAAAAAEHAAAAAACHQAAAAABfgAAAAAAHQAAAAACHAAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHAAAAAACHQAAAAABfgAAAAAAfgAAAAAACAAAAAAGCAAAAAACCAAAAAABHAAAAAAAHQAAAAABfgAAAAAAHQAAAAABHAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHAAAAAACHQAAAAABfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAGCAAAAAACHAAAAAAAHQAAAAABfgAAAAAAHQAAAAADHAAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACHAAAAAADHQAAAAACfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAFCAAAAAAAHAAAAAAAHQAAAAACfgAAAAAAHQAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHQAAAAACfgAAAAAAfgAAAAAACAAAAAACCAAAAAACCAAAAAADHQAAAAADHQAAAAAAfgAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABfgAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAE version: 6 8,0: ind: 8,0 - tiles: CAAAAAACCAAAAAAFCAAAAAAECAAAAAAFCAAAAAAGCAAAAAADCAAAAAABCAAAAAAECAAAAAAGCAAAAAAACAAAAAAFCAAAAAAACAAAAAAGCAAAAAADCAAAAAAGCAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAAGCAAAAAADCAAAAAAECAAAAAADCAAAAAACCAAAAAAACAAAAAAECAAAAAACCAAAAAACCAAAAAAACAAAAAAECAAAAAAFCAAAAAAECAAAAAADCAAAAAACCAAAAAAGCAAAAAACCAAAAAADCAAAAAABCAAAAAAECAAAAAADCAAAAAAECAAAAAABCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADNgAAAAAANgAAAAABNgAAAAADNgAAAAADNgAAAAACNgAAAAAANgAAAAAANgAAAAACNgAAAAADNgAAAAACNgAAAAADNgAAAAADNgAAAAACNgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAANgAAAAADNgAAAAAANgAAAAACNgAAAAAANgAAAAABNgAAAAAANgAAAAAANgAAAAABNgAAAAACNgAAAAABNgAAAAABNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAABfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHQAAAAAAfgAAAAAAfgAAAAAAHQAAAAADHAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAFCAAAAAAGCAAAAAAFHAAAAAAAHQAAAAADfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAAACAAAAAAGCAAAAAAACAAAAAAFCAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAAFCAAAAAABCAAAAAAGHAAAAAAAHQAAAAABfgAAAAAAfgAAAAAAHQAAAAABHAAAAAADCAAAAAADCAAAAAAACAAAAAAECAAAAAABCAAAAAAGCAAAAAAFCAAAAAAECAAAAAAACAAAAAABCAAAAAAEHAAAAAACHQAAAAABfgAAAAAAfgAAAAAAHQAAAAADHAAAAAABCAAAAAAFCAAAAAAECAAAAAAGCAAAAAABCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAECAAAAAAACAAAAAAEHAAAAAADHQAAAAADfgAAAAAAHQAAAAAAHQAAAAAAHAAAAAADCAAAAAAECAAAAAAFCAAAAAAGCAAAAAAFCAAAAAAFCAAAAAAGCAAAAAADCAAAAAAECAAAAAACCAAAAAABHAAAAAABHQAAAAAAfgAAAAAAHQAAAAAAHQAAAAADHAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAECAAAAAACCAAAAAAGCAAAAAADHAAAAAADHQAAAAAAfgAAAAAA + tiles: CAAAAAADCAAAAAAGCAAAAAAFCAAAAAABCAAAAAAGCAAAAAADCAAAAAAFCAAAAAAFCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAACAAAAAACCAAAAAABCAAAAAAGCAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAFCAAAAAADCAAAAAAECAAAAAAACAAAAAAGCAAAAAAECAAAAAADCAAAAAABCAAAAAAECAAAAAABCAAAAAAACAAAAAAFCAAAAAAECAAAAAAGCAAAAAADCAAAAAADCAAAAAAFCAAAAAAFCAAAAAAACAAAAAAFCAAAAAAGCAAAAAAGCAAAAAAECAAAAAAECAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAAANgAAAAAANgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAACNgAAAAAANgAAAAADNgAAAAACfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAAANgAAAAADNgAAAAACNgAAAAACNgAAAAADNgAAAAAANgAAAAACNgAAAAAANgAAAAABNgAAAAABNgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAACHQAAAAABfgAAAAAAfgAAAAAAHQAAAAACHAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAFCAAAAAAFCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAACAAAAAAAHAAAAAADHQAAAAAAfgAAAAAAfgAAAAAAHQAAAAABHAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAGCAAAAAAGCAAAAAAFCAAAAAAACAAAAAAECAAAAAABHAAAAAABHQAAAAABfgAAAAAAfgAAAAAAHQAAAAABHAAAAAACCAAAAAABCAAAAAAGCAAAAAABCAAAAAABCAAAAAAGCAAAAAABCAAAAAABCAAAAAAGCAAAAAAECAAAAAAFHAAAAAACHQAAAAABfgAAAAAAfgAAAAAAHQAAAAADHAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAAGCAAAAAAGCAAAAAACCAAAAAABCAAAAAADCAAAAAADCAAAAAADHAAAAAACHQAAAAACfgAAAAAAHQAAAAADHQAAAAACHAAAAAADCAAAAAAFCAAAAAACCAAAAAADCAAAAAAFCAAAAAAECAAAAAACCAAAAAADCAAAAAACCAAAAAAECAAAAAAFHAAAAAADHQAAAAAAfgAAAAAAHQAAAAAAHQAAAAADHAAAAAACCAAAAAAFCAAAAAADCAAAAAAECAAAAAAECAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAAGCAAAAAACHAAAAAACHQAAAAACfgAAAAAA version: 6 8,1: ind: 8,1 - tiles: fgAAAAAAHQAAAAABHAAAAAABCAAAAAADCAAAAAAFCAAAAAABCAAAAAAACAAAAAADCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAAEHAAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAACCAAAAAAACAAAAAAFCAAAAAAFCAAAAAAECAAAAAAACAAAAAAECAAAAAAACAAAAAAFCAAAAAAFCAAAAAACHAAAAAACHQAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAABCAAAAAAFCAAAAAABCAAAAAAACAAAAAAECAAAAAAGCAAAAAACCAAAAAAECAAAAAACCAAAAAADCAAAAAAAHAAAAAACHQAAAAACfgAAAAAAfgAAAAAAHQAAAAABHAAAAAABCAAAAAAGCAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAECAAAAAADCAAAAAAGCAAAAAAECAAAAAABHAAAAAABHQAAAAADfgAAAAAAfgAAAAAAHQAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAADHQAAAAABfgAAAAAAfgAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAACAAAAAAECAAAAAAGCAAAAAAECAAAAAACCAAAAAAACAAAAAAGfgAAAAAAfgAAAAAACAAAAAABCAAAAAAECAAAAAAACAAAAAADCAAAAAAACAAAAAAFCAAAAAADCAAAAAAECAAAAAAACAAAAAAFCAAAAAADCAAAAAADCAAAAAAECAAAAAAECAAAAAAACAAAAAAACAAAAAAECAAAAAADCAAAAAAFCAAAAAADCAAAAAAACAAAAAAECAAAAAADCAAAAAAACAAAAAAECAAAAAAGCAAAAAAGCAAAAAAGCAAAAAABCAAAAAADCAAAAAAFCAAAAAAECAAAAAAACAAAAAAGCAAAAAAGCAAAAAAECAAAAAAECAAAAAAFCAAAAAAFCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAFCAAAAAAECAAAAAADCAAAAAAECAAAAAAACAAAAAAFCAAAAAABCAAAAAAGCAAAAAAECAAAAAADCAAAAAAFCAAAAAADCAAAAAACCAAAAAAGCAAAAAAACAAAAAADCAAAAAAFCAAAAAABCAAAAAAECAAAAAAECAAAAAACCAAAAAAGCAAAAAAFCAAAAAACCAAAAAAACAAAAAABCAAAAAAECAAAAAAGCAAAAAABCAAAAAAACAAAAAAGCAAAAAAGCAAAAAAACAAAAAAECAAAAAAACAAAAAABCAAAAAAFCAAAAAABCAAAAAAECAAAAAAGCAAAAAAECAAAAAADCAAAAAAECAAAAAAFCAAAAAABCAAAAAAFCAAAAAAGCAAAAAAACAAAAAADCAAAAAABCAAAAAAFCAAAAAABCAAAAAABCAAAAAAFCAAAAAABCAAAAAACCAAAAAAECAAAAAAFCAAAAAADCAAAAAACCAAAAAABCAAAAAAECAAAAAACCAAAAAACCAAAAAAECAAAAAAC + tiles: fgAAAAAAHQAAAAACHAAAAAABCAAAAAAECAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAAECAAAAAAGCAAAAAABCAAAAAAEHAAAAAADHQAAAAACfgAAAAAAfgAAAAAAHQAAAAACHAAAAAAACAAAAAAECAAAAAABCAAAAAACCAAAAAAECAAAAAAFCAAAAAADCAAAAAAECAAAAAADCAAAAAADCAAAAAACHAAAAAAAHQAAAAACfgAAAAAAfgAAAAAAHQAAAAADHAAAAAABCAAAAAACCAAAAAAFCAAAAAAGCAAAAAAECAAAAAAGCAAAAAABCAAAAAACCAAAAAAFCAAAAAACCAAAAAACHAAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAHAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAAECAAAAAACCAAAAAADCAAAAAAFCAAAAAAFCAAAAAAGCAAAAAAFHAAAAAACHQAAAAABfgAAAAAAfgAAAAAAHQAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHQAAAAADfgAAAAAAfgAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAGCAAAAAAACAAAAAABCAAAAAACCAAAAAAFCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAECAAAAAADCAAAAAAGCAAAAAAGfgAAAAAAfgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAAFCAAAAAADCAAAAAADCAAAAAAGCAAAAAACCAAAAAADCAAAAAAFCAAAAAACCAAAAAAGCAAAAAAACAAAAAAACAAAAAAGCAAAAAAGCAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAFCAAAAAACCAAAAAAACAAAAAAECAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAFCAAAAAAGCAAAAAAGCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAGCAAAAAACCAAAAAABCAAAAAAECAAAAAAFCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAAECAAAAAAACAAAAAADCAAAAAAECAAAAAADCAAAAAABCAAAAAAECAAAAAADCAAAAAAGCAAAAAADCAAAAAABCAAAAAABCAAAAAAECAAAAAAFCAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAAFCAAAAAAFCAAAAAABCAAAAAAECAAAAAABCAAAAAAECAAAAAABCAAAAAADCAAAAAAECAAAAAADCAAAAAACCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAACAAAAAAFCAAAAAADCAAAAAAECAAAAAAFCAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAAFCAAAAAABCAAAAAADCAAAAAADCAAAAAAECAAAAAAACAAAAAADCAAAAAAFCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAAECAAAAAAFCAAAAAAACAAAAAACCAAAAAAECAAAAAAB version: 6 9,0: ind: 9,0 - tiles: CAAAAAAACAAAAAABCAAAAAAACAAAAAAGCAAAAAAFCAAAAAADCAAAAAAFCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADBgAAAAACBgAAAAAABgAAAAACCAAAAAAACAAAAAAACAAAAAAECAAAAAAACAAAAAACCAAAAAAACAAAAAAGCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAADBgAAAAADBgAAAAADfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAAACAAAAAACCAAAAAABBgAAAAACfgAAAAAAfgAAAAAACAAAAAABCAAAAAABCAAAAAAGCAAAAAAECAAAAAAGCAAAAAADCAAAAAABCAAAAAAGCAAAAAABCAAAAAAACAAAAAAECAAAAAAECAAAAAACBgAAAAACfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAGCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAAGBgAAAAACfgAAAAAAfgAAAAAACAAAAAABCAAAAAAGCAAAAAACCAAAAAADCAAAAAAFBQAAAAABCAAAAAACCAAAAAACCAAAAAAGCAAAAAABCAAAAAAGCAAAAAACCAAAAAACCAAAAAAFfgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAAGCAAAAAAEBQAAAAAABQAAAAAACAAAAAAACAAAAAAGCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABfgAAAAAACAAAAAAGCAAAAAACCAAAAAABCAAAAAAGCAAAAAACCAAAAAAECAAAAAACBQAAAAAGCAAAAAACCAAAAAADCAAAAAAFCAAAAAAECAAAAAADCAAAAAAGCAAAAAABfgAAAAAACAAAAAAFCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAFCAAAAAAABQAAAAAABQAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAECAAAAAABCAAAAAAEfgAAAAAACAAAAAABCAAAAAAFCAAAAAABCAAAAAABCAAAAAAACAAAAAABCAAAAAAGBQAAAAAEBQAAAAAGCAAAAAADCAAAAAAECAAAAAAECAAAAAABCAAAAAABCAAAAAADfgAAAAAACAAAAAAECAAAAAAECAAAAAAACAAAAAAECAAAAAADCAAAAAADCAAAAAACBQAAAAADBQAAAAADCAAAAAADCAAAAAAGCAAAAAACCAAAAAAECAAAAAAECAAAAAAGfgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAABCAAAAAAGCAAAAAADBQAAAAAEBQAAAAAECAAAAAAGCAAAAAAFCAAAAAADCAAAAAABCAAAAAAECAAAAAAFfgAAAAAACAAAAAABCAAAAAAFCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAAFBQAAAAABBQAAAAABCAAAAAAACAAAAAABCAAAAAAFCAAAAAADCAAAAAAACAAAAAAEfgAAAAAACAAAAAAACAAAAAAECAAAAAACCAAAAAABCAAAAAAACAAAAAADBQAAAAAGBQAAAAAABQAAAAAFCAAAAAAECAAAAAAECAAAAAACCAAAAAACCAAAAAADCAAAAAAEfgAAAAAACAAAAAACCAAAAAADCAAAAAAFCAAAAAAECAAAAAAGCAAAAAABBQAAAAADBQAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAAGCAAAAAACCAAAAAACCAAAAAAEfgAAAAAACAAAAAADCAAAAAAACAAAAAAECAAAAAADCAAAAAAABQAAAAAABQAAAAAFBQAAAAADCAAAAAAFCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAACAAAAAADCAAAAAAC + tiles: CAAAAAAFCAAAAAAACAAAAAAFCAAAAAADCAAAAAAGCAAAAAAACAAAAAAFCAAAAAAECAAAAAAGCAAAAAAECAAAAAADCAAAAAAFCAAAAAAFBgAAAAABBgAAAAAABgAAAAACCAAAAAAGCAAAAAAECAAAAAAFCAAAAAAGCAAAAAADCAAAAAAFCAAAAAAFCAAAAAAECAAAAAAGCAAAAAAFCAAAAAAGCAAAAAAECAAAAAAACAAAAAABBgAAAAADBgAAAAABfgAAAAAAfgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAECAAAAAABCAAAAAAECAAAAAABCAAAAAAACAAAAAAECAAAAAAACAAAAAAGCAAAAAAGCAAAAAAFBgAAAAADfgAAAAAAfgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAAGCAAAAAAACAAAAAABCAAAAAADCAAAAAAECAAAAAAACAAAAAAEBgAAAAADfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAGCAAAAAAGCAAAAAADCAAAAAADCAAAAAADCAAAAAAFCAAAAAAECAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAFBgAAAAADfgAAAAAAfgAAAAAACAAAAAABCAAAAAABCAAAAAAECAAAAAACCAAAAAAFBQAAAAABCAAAAAAGCAAAAAADCAAAAAACCAAAAAAFCAAAAAABCAAAAAADCAAAAAADCAAAAAADfgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAAECAAAAAACCAAAAAACBQAAAAADBQAAAAAFCAAAAAACCAAAAAADCAAAAAADCAAAAAAECAAAAAAGCAAAAAAACAAAAAABfgAAAAAACAAAAAADCAAAAAAECAAAAAAECAAAAAAECAAAAAAFCAAAAAAFCAAAAAAGBQAAAAAGCAAAAAAGCAAAAAAFCAAAAAADCAAAAAAECAAAAAAFCAAAAAADCAAAAAAGfgAAAAAACAAAAAABCAAAAAAGCAAAAAADCAAAAAAACAAAAAAFCAAAAAACCAAAAAADBQAAAAADBQAAAAAFCAAAAAAACAAAAAAACAAAAAACCAAAAAAGCAAAAAAECAAAAAAFfgAAAAAACAAAAAAECAAAAAAACAAAAAACCAAAAAADCAAAAAAECAAAAAAECAAAAAABBQAAAAABBQAAAAAACAAAAAABCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAGCAAAAAAAfgAAAAAACAAAAAAFCAAAAAADCAAAAAACCAAAAAACCAAAAAAGCAAAAAABCAAAAAAFBQAAAAAGBQAAAAABCAAAAAAGCAAAAAABCAAAAAAFCAAAAAADCAAAAAAGCAAAAAAAfgAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAAECAAAAAAGCAAAAAAACAAAAAADBQAAAAADBQAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAEfgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAFCAAAAAAGCAAAAAADCAAAAAABBQAAAAACBQAAAAAFCAAAAAAACAAAAAAACAAAAAAACAAAAAAFCAAAAAADCAAAAAACfgAAAAAACAAAAAAACAAAAAAECAAAAAACCAAAAAACCAAAAAAECAAAAAAEBQAAAAAGBQAAAAABBQAAAAAACAAAAAADCAAAAAAGCAAAAAACCAAAAAAGCAAAAAAFCAAAAAAFfgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAGCAAAAAABCAAAAAAABQAAAAAEBQAAAAABCAAAAAAGCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAACAAAAAABCAAAAAAAfgAAAAAACAAAAAAGCAAAAAACCAAAAAABCAAAAAAGCAAAAAAABQAAAAAABQAAAAAFBQAAAAAACAAAAAADCAAAAAAECAAAAAAACAAAAAAECAAAAAAGCAAAAAAECAAAAAAD version: 6 9,1: ind: 9,1 - tiles: fgAAAAAACAAAAAAFCAAAAAACCAAAAAADCAAAAAABCAAAAAABBQAAAAACBQAAAAAFCAAAAAAECAAAAAAECAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAAGfgAAAAAACAAAAAAECAAAAAADCAAAAAAACAAAAAABCAAAAAAABQAAAAAECAAAAAACCAAAAAAECAAAAAAECAAAAAADCAAAAAAFCAAAAAAECAAAAAACCAAAAAACBgAAAAADfgAAAAAACAAAAAADCAAAAAAFCAAAAAACCAAAAAAGCAAAAAACCAAAAAAACAAAAAAGCAAAAAABCAAAAAABCAAAAAAACAAAAAABCAAAAAAFCAAAAAABCAAAAAABBgAAAAADfgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAGCAAAAAABCAAAAAABCAAAAAAECAAAAAAFCAAAAAAFCAAAAAABCAAAAAADCAAAAAAFCAAAAAAACAAAAAACBgAAAAABfgAAAAAACAAAAAAECAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAAECAAAAAADCAAAAAAECAAAAAAECAAAAAACCAAAAAACCAAAAAABCAAAAAAFBgAAAAADBgAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAACCAAAAAAFCAAAAAAECAAAAAAGCAAAAAAECAAAAAAECAAAAAACCAAAAAACCAAAAAABBgAAAAADBgAAAAABfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAFCAAAAAAGCAAAAAAACAAAAAAACAAAAAABCAAAAAAECAAAAAAACAAAAAAECAAAAAADBgAAAAABBgAAAAACfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAFCAAAAAAGCAAAAAAACAAAAAAEBgAAAAADBgAAAAABBgAAAAACCAAAAAABCAAAAAAACAAAAAAFCAAAAAABBgAAAAABBgAAAAACfgAAAAAAfgAAAAAACAAAAAAGCAAAAAACCAAAAAAECAAAAAACBgAAAAADBgAAAAADBgAAAAAABgAAAAAACAAAAAACCAAAAAAACAAAAAAFCAAAAAAFCAAAAAACBgAAAAAACAAAAAAECAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAAFCAAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAACCAAAAAAECAAAAAAGCAAAAAAACAAAAAAEBgAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAAGCAAAAAACCAAAAAAGCAAAAAAECAAAAAAECAAAAAAABgAAAAADBgAAAAABCAAAAAADCAAAAAAACAAAAAAECAAAAAAFCAAAAAAACAAAAAAGCAAAAAABCAAAAAADCAAAAAAGCAAAAAACCAAAAAABCAAAAAAECAAAAAAACAAAAAAECAAAAAABBgAAAAACBgAAAAACCAAAAAABCAAAAAAECAAAAAACCAAAAAAFCAAAAAACCAAAAAAECAAAAAADCAAAAAACCAAAAAAFCAAAAAAACAAAAAAECAAAAAADCAAAAAAACAAAAAADCAAAAAAABgAAAAACCAAAAAADCAAAAAAFCAAAAAAECAAAAAAECAAAAAABCAAAAAAACAAAAAADCAAAAAAFCAAAAAABCAAAAAADCAAAAAAECAAAAAABCAAAAAAFCAAAAAAECAAAAAAGBgAAAAADCAAAAAACCAAAAAAACAAAAAAFCAAAAAACCAAAAAAACAAAAAAECAAAAAAGCAAAAAAECAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAECAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAFCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAGCAAAAAAFCAAAAAACCAAAAAAECAAAAAAA + tiles: fgAAAAAACAAAAAABCAAAAAAACAAAAAAECAAAAAAACAAAAAADBQAAAAAHBQAAAAAGCAAAAAAECAAAAAACCAAAAAADCAAAAAAGCAAAAAAGCAAAAAABCAAAAAAACAAAAAAFfgAAAAAACAAAAAAFCAAAAAAACAAAAAADCAAAAAABCAAAAAAEBQAAAAAACAAAAAACCAAAAAACCAAAAAAGCAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAAABgAAAAADfgAAAAAACAAAAAABCAAAAAAGCAAAAAAFCAAAAAACCAAAAAACCAAAAAAECAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAAFCAAAAAACCAAAAAADCAAAAAAEBgAAAAAAfgAAAAAACAAAAAACCAAAAAABCAAAAAAGCAAAAAAACAAAAAABCAAAAAADCAAAAAAGCAAAAAAECAAAAAAFCAAAAAAGCAAAAAABCAAAAAAECAAAAAAGCAAAAAAABgAAAAABfgAAAAAACAAAAAABCAAAAAAGCAAAAAAACAAAAAAGCAAAAAAACAAAAAAECAAAAAAECAAAAAAACAAAAAAFCAAAAAAACAAAAAAGCAAAAAAGCAAAAAADBgAAAAAABgAAAAADfgAAAAAAfgAAAAAACAAAAAAECAAAAAAFCAAAAAAECAAAAAABCAAAAAADCAAAAAADCAAAAAAECAAAAAAGCAAAAAACCAAAAAAECAAAAAAACAAAAAADBgAAAAABBgAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAECAAAAAAECAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAABBgAAAAABBgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAGCAAAAAAGCAAAAAABCAAAAAABBgAAAAAABgAAAAADBgAAAAACCAAAAAAFCAAAAAAACAAAAAACCAAAAAADBgAAAAAABgAAAAADfgAAAAAAfgAAAAAACAAAAAADCAAAAAAECAAAAAAFCAAAAAAEBgAAAAABBgAAAAABBgAAAAABBgAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAAECAAAAAAGBgAAAAADCAAAAAABCAAAAAAFCAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAACCAAAAAAGCAAAAAAFCAAAAAACCAAAAAABBgAAAAAACAAAAAAFCAAAAAAGCAAAAAADCAAAAAAECAAAAAAACAAAAAAECAAAAAABCAAAAAAECAAAAAAGBgAAAAACBgAAAAADCAAAAAAFCAAAAAAACAAAAAABCAAAAAADCAAAAAAGCAAAAAABCAAAAAAECAAAAAADCAAAAAAECAAAAAAACAAAAAAACAAAAAAECAAAAAADCAAAAAAECAAAAAAFBgAAAAAABgAAAAACCAAAAAAGCAAAAAAFCAAAAAAGCAAAAAAECAAAAAAGCAAAAAABCAAAAAACCAAAAAACCAAAAAAGCAAAAAAECAAAAAABCAAAAAAACAAAAAAGCAAAAAAACAAAAAAGBgAAAAABCAAAAAAFCAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAAFCAAAAAAGCAAAAAABCAAAAAAACAAAAAAECAAAAAAFCAAAAAAGCAAAAAAACAAAAAAGCAAAAAADBgAAAAAACAAAAAACCAAAAAAGCAAAAAABCAAAAAADCAAAAAAECAAAAAABCAAAAAAGCAAAAAACCAAAAAADCAAAAAAECAAAAAAECAAAAAAGCAAAAAAFCAAAAAABCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAGCAAAAAAECAAAAAADCAAAAAAACAAAAAAFCAAAAAAACAAAAAAACAAAAAAGCAAAAAAFCAAAAAAF version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAADBgAAAAABBgAAAAADBgAAAAACCAAAAAAACAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAACBgAAAAADBgAAAAACCAAAAAAGCAAAAAAGCAAAAAACCAAAAAADCAAAAAAGCAAAAAABAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAADBgAAAAABBgAAAAADBgAAAAABCAAAAAADCAAAAAAECAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAGAAAAAAAABgAAAAADBgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAAACAAAAAACCAAAAAAGCAAAAAAFCAAAAAAECAAAAAAACAAAAAAGCAAAAAACCAAAAAADAAAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAABBgAAAAABCAAAAAAGCAAAAAAECAAAAAAACAAAAAACCAAAAAACCAAAAAAGCAAAAAADCAAAAAABCAAAAAABBgAAAAAABgAAAAABBgAAAAADBgAAAAADBgAAAAADBgAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAADBgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAABBgAAAAABCAAAAAADCAAAAAAFCAAAAAACCAAAAAADCAAAAAAACAAAAAAECAAAAAAACAAAAAACBgAAAAABBgAAAAAABgAAAAADBgAAAAAABgAAAAABBgAAAAACBgAAAAABCAAAAAAFCAAAAAAECAAAAAAACAAAAAAECAAAAAAECAAAAAACCAAAAAAFCAAAAAAECAAAAAACCAAAAAAFBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAADBgAAAAAACAAAAAADCAAAAAAFCAAAAAABCAAAAAAECAAAAAADCAAAAAACCAAAAAAECAAAAAABCAAAAAAECAAAAAABCAAAAAAGCAAAAAACAAAAAAAABgAAAAAABgAAAAABCAAAAAAGCAAAAAADCAAAAAAFCAAAAAABCAAAAAAFCAAAAAACCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAECAAAAAAACAAAAAAECAAAAAACAAAAAAAABgAAAAAABgAAAAACCAAAAAACCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAAECAAAAAAFCAAAAAABCAAAAAAECAAAAAAAAAAAAAAABgAAAAADBgAAAAABCAAAAAACCAAAAAAECAAAAAADCAAAAAACCAAAAAADCAAAAAAFCAAAAAADCAAAAAABCAAAAAAFCAAAAAAGCAAAAAAACAAAAAACCAAAAAAAAAAAAAAABgAAAAADBgAAAAABCAAAAAAFCAAAAAACCAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAAGCAAAAAAFCAAAAAABCAAAAAACCAAAAAAE + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAACBgAAAAAACAAAAAAECAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAABBgAAAAAABgAAAAABBgAAAAACCAAAAAAGCAAAAAAECAAAAAADCAAAAAAACAAAAAACCAAAAAADAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAADBgAAAAABBgAAAAAABgAAAAABCAAAAAAGCAAAAAAGCAAAAAAECAAAAAADCAAAAAADCAAAAAAGCAAAAAAFCAAAAAACAAAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAADBgAAAAADBgAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAAGCAAAAAACCAAAAAAGCAAAAAADCAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAADBgAAAAADBgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAAFCAAAAAAFCAAAAAAECAAAAAAGCAAAAAACBgAAAAADBgAAAAABBgAAAAAABgAAAAAABgAAAAADBgAAAAAACAAAAAAECAAAAAABCAAAAAABCAAAAAAGCAAAAAAGCAAAAAACCAAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAADCAAAAAAACAAAAAAFCAAAAAAGCAAAAAAACAAAAAABCAAAAAADCAAAAAAGCAAAAAADBgAAAAACBgAAAAABBgAAAAABBgAAAAADBgAAAAADBgAAAAABBgAAAAACCAAAAAACCAAAAAAGCAAAAAAFCAAAAAAACAAAAAADCAAAAAAGCAAAAAACCAAAAAABCAAAAAAFCAAAAAADBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAABCAAAAAAECAAAAAACCAAAAAAFCAAAAAAGCAAAAAAACAAAAAAECAAAAAAFCAAAAAAFCAAAAAAACAAAAAAECAAAAAACCAAAAAAEAAAAAAAABgAAAAACBgAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAAGCAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAAFCAAAAAAGCAAAAAABAAAAAAAABgAAAAACBgAAAAAACAAAAAAGCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAAFCAAAAAAGCAAAAAABCAAAAAABCAAAAAAECAAAAAABCAAAAAAECAAAAAACAAAAAAAABgAAAAACBgAAAAADCAAAAAAECAAAAAAECAAAAAADCAAAAAAACAAAAAAFCAAAAAABCAAAAAAECAAAAAAFCAAAAAAECAAAAAAGCAAAAAAFCAAAAAABCAAAAAAEAAAAAAAABgAAAAAABgAAAAABCAAAAAACCAAAAAADCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAFCAAAAAADCAAAAAABCAAAAAACCAAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: BgAAAAADBgAAAAACBgAAAAACBgAAAAACBgAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAAFCAAAAAABCAAAAAAECAAAAAAGCAAAAAAFCAAAAAAACAAAAAACBgAAAAADBgAAAAABBgAAAAACCAAAAAACCAAAAAAACAAAAAAFCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAAECAAAAAAFCAAAAAAFCAAAAAAFCAAAAAABfgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAECAAAAAAACAAAAAAACAAAAAAFCAAAAAAACAAAAAAGCAAAAAAECAAAAAAECAAAAAACCAAAAAAFCAAAAAABCAAAAAAFfgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAACAAAAAAFCAAAAAAECAAAAAACCAAAAAAFCAAAAAADCAAAAAAGCAAAAAAACAAAAAABCAAAAAAECAAAAAACCAAAAAAEfgAAAAAACAAAAAACCAAAAAADCAAAAAAECAAAAAAFCAAAAAAACAAAAAABCAAAAAAFCAAAAAAECAAAAAABCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAGfgAAAAAACAAAAAACCAAAAAAFCAAAAAACCAAAAAAGCAAAAAACCAAAAAACCAAAAAAFCAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAAEfgAAAAAABgAAAAACCAAAAAAECAAAAAADCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAGCAAAAAAECAAAAAAECAAAAAAGCAAAAAADfgAAAAAABgAAAAADBgAAAAAACAAAAAAECAAAAAAACAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAACAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAACBgAAAAAACAAAAAABCAAAAAAGCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAADCAAAAAACCAAAAAADCAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAABHQAAAAABCAAAAAAFCAAAAAAGCAAAAAADCAAAAAAGCAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAADJAAAAAACJAAAAAACHwAAAAAAfgAAAAAAHQAAAAAAHAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAAECAAAAAABCAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACJAAAAAACHQAAAAAAHQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABJAAAAAACJAAAAAABHwAAAAACfgAAAAAAHQAAAAAAHQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADHQAAAAACfgAAAAAAfgAAAAAANgAAAAAANgAAAAAADwAAAAAADwAAAAACDwAAAAACfgAAAAAACAAAAAADCAAAAAACCAAAAAAGCAAAAAACCAAAAAAFfgAAAAAAHQAAAAABHQAAAAACfgAAAAAAfgAAAAAANgAAAAAANQAAAAADDwAAAAABEQAAAAAADwAAAAABfgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAA + tiles: BgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAAACAAAAAAGCAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAGCAAAAAADBgAAAAADBgAAAAACBgAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAAECAAAAAADCAAAAAACCAAAAAAECAAAAAAFCAAAAAADCAAAAAACCAAAAAAFCAAAAAADfgAAAAAACAAAAAADCAAAAAAACAAAAAAGCAAAAAAACAAAAAAFCAAAAAAACAAAAAAECAAAAAADCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAACAAAAAABCAAAAAAACAAAAAAEfgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAACAAAAAAGCAAAAAADCAAAAAAECAAAAAACCAAAAAAECAAAAAABCAAAAAABCAAAAAAEfgAAAAAACAAAAAAFCAAAAAAFCAAAAAAACAAAAAAACAAAAAAECAAAAAAFCAAAAAACCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAGCAAAAAAAfgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAAFCAAAAAACCAAAAAAFCAAAAAAGCAAAAAAFCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAFCAAAAAACCAAAAAACfgAAAAAABgAAAAADCAAAAAACCAAAAAAFCAAAAAAGCAAAAAABCAAAAAAFCAAAAAADCAAAAAAACAAAAAABCAAAAAAFCAAAAAADCAAAAAADCAAAAAABCAAAAAAGCAAAAAACfgAAAAAABgAAAAAABgAAAAABCAAAAAABCAAAAAAGCAAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAAFCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAACBgAAAAAACAAAAAAFCAAAAAAGCAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAABBgAAAAACCAAAAAACCAAAAAADCAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAADHQAAAAADCAAAAAAECAAAAAACCAAAAAAACAAAAAAECAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAADHwAAAAAAfgAAAAAAHQAAAAABHAAAAAABCAAAAAAECAAAAAAECAAAAAAGCAAAAAACCAAAAAABCAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAACJAAAAAADHQAAAAAAHQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAAAHwAAAAABfgAAAAAAHQAAAAABHQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACHQAAAAAAfgAAAAAAfgAAAAAANgAAAAADNgAAAAACDwAAAAAADwAAAAAADwAAAAADfgAAAAAACAAAAAADCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAGfgAAAAAAHQAAAAAAHQAAAAABfgAAAAAAfgAAAAAANgAAAAAANQAAAAACDwAAAAADEQAAAAAADwAAAAABfgAAAAAACAAAAAAECAAAAAAGCAAAAAAACAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAABCAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAAACAAAAAAFCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAADCAAAAAAGCAAAAAACCAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAACAAAAAAECAAAAAAFCAAAAAAECAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAFCAAAAAAACAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAADBgAAAAAACAAAAAAECAAAAAAGCAAAAAAFCAAAAAACCAAAAAAACAAAAAAACAAAAAAGCAAAAAAGAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAACCAAAAAADCAAAAAAFCAAAAAABCAAAAAABCAAAAAAGCAAAAAAACAAAAAAACAAAAAAGCAAAAAAACAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAADCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACCAAAAAAECAAAAAAFCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAADBgAAAAADCAAAAAAFCAAAAAABCAAAAAAFCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAACBgAAAAACCAAAAAABCAAAAAAECAAAAAAACAAAAAACCAAAAAABCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAAACAAAAAACCAAAAAAGCAAAAAACCAAAAAAECAAAAAAFCAAAAAAACAAAAAAECAAAAAAFAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAAECAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAF version: 6 7,-1: ind: 7,-1 - tiles: CAAAAAADCAAAAAADCAAAAAAECAAAAAACCAAAAAADCAAAAAAECAAAAAADCAAAAAACCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAACAAAAAAECAAAAAAECAAAAAACCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAAFCAAAAAAACAAAAAAGCAAAAAAECAAAAAAECAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAECAAAAAAGCAAAAAADCAAAAAADCAAAAAABCAAAAAAGCAAAAAABCAAAAAAGCAAAAAADCAAAAAAFfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAAFCAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABCAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAACAAAAAAECAAAAAACCAAAAAACCAAAAAAGCAAAAAAECAAAAAABCAAAAAADCAAAAAAFCAAAAAAECAAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAAFCAAAAAAACAAAAAADCAAAAAABCAAAAAAFCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAEfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAACAAAAAAECAAAAAADCAAAAAAGCAAAAAABCAAAAAACCAAAAAACCAAAAAAFCAAAAAAFCAAAAAAFCAAAAAAEfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAECAAAAAACCAAAAAACCAAAAAADCAAAAAAECAAAAAAECAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAACCAAAAAABCAAAAAAGCAAAAAAECAAAAAAFCAAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADHAAAAAAAbgAAAAACHAAAAAADbgAAAAACHAAAAAABHAAAAAAAHQAAAAADfgAAAAAAfgAAAAAACAAAAAAGCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHQAAAAADHQAAAAACfgAAAAAAfgAAAAAACAAAAAADCAAAAAAECAAAAAAFCAAAAAAECAAAAAADCAAAAAABCAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHQAAAAADbgAAAAADfgAAAAAAfgAAAAAACAAAAAAECAAAAAAACAAAAAABCAAAAAAECAAAAAACCAAAAAACCAAAAAADHQAAAAAAHQAAAAAAHAAAAAADHQAAAAABHQAAAAABHQAAAAACbgAAAAADfgAAAAAAfgAAAAAACAAAAAADCAAAAAAECAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAbgAAAAADDwAAAAADDwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: CAAAAAAFCAAAAAAACAAAAAABCAAAAAAECAAAAAAECAAAAAAGCAAAAAADCAAAAAAECAAAAAAGCAAAAAABCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAFCAAAAAAGCAAAAAAFCAAAAAAECAAAAAADCAAAAAAECAAAAAAFCAAAAAACCAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAFCAAAAAABCAAAAAAECAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAAGCAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAECAAAAAAGCAAAAAABCAAAAAAECAAAAAAGCAAAAAAACAAAAAACCAAAAAAFCAAAAAAEfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAABCAAAAAAGCAAAAAAGfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAADCAAAAAAECAAAAAABCAAAAAAECAAAAAADCAAAAAAGCAAAAAACCAAAAAAFCAAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAACAAAAAAFCAAAAAAFCAAAAAAFCAAAAAAFCAAAAAAECAAAAAADCAAAAAAACAAAAAAEfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAGCAAAAAAECAAAAAACCAAAAAAACAAAAAAACAAAAAAGfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAADCAAAAAAFCAAAAAABCAAAAAADCAAAAAABCAAAAAAFHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAACAAAAAACCAAAAAAGCAAAAAADCAAAAAAACAAAAAAEHAAAAAAAbgAAAAACHAAAAAABbgAAAAABHAAAAAADHAAAAAACHQAAAAADfgAAAAAAfgAAAAAACAAAAAAECAAAAAAGCAAAAAAECAAAAAAECAAAAAAGCAAAAAAFCAAAAAAFHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAACHQAAAAAAHQAAAAACfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAACAAAAAADCAAAAAAGCAAAAAAECAAAAAADCAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHQAAAAABbgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAGCAAAAAAFCAAAAAADCAAAAAADCAAAAAABCAAAAAAAHQAAAAACHQAAAAADHAAAAAACHQAAAAADHQAAAAACHQAAAAACbgAAAAACfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAGCAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAADDwAAAAADDwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADCAAAAAAGBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADCAAAAAADCAAAAAAEBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAGCAAAAAAECAAAAAACBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAFCAAAAAAACAAAAAAFBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAECAAAAAAEBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABCAAAAAAACAAAAAAGCAAAAAAFCAAAAAAFCAAAAAAFBgAAAAABBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACCAAAAAAGCAAAAAACCAAAAAACCAAAAAADCAAAAAAFCAAAAAACBgAAAAABBgAAAAABBgAAAAADBgAAAAADBgAAAAABBgAAAAABBgAAAAADBgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAECAAAAAABCAAAAAACCAAAAAAECAAAAAAGCAAAAAACBgAAAAABBgAAAAACBgAAAAADBgAAAAADBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAAACAAAAAAACAAAAAAFCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAECAAAAAAACAAAAAABCAAAAAAFCAAAAAAABgAAAAADBgAAAAABBgAAAAACBgAAAAADBgAAAAABCAAAAAAFCAAAAAAECAAAAAADCAAAAAAACAAAAAAECAAAAAAFCAAAAAACCAAAAAAECAAAAAACCAAAAAAACAAAAAAGCAAAAAAACAAAAAABCAAAAAAFCAAAAAACCAAAAAABCAAAAAAECAAAAAAECAAAAAADCAAAAAAFCAAAAAAFCAAAAAAACAAAAAAECAAAAAACCAAAAAAFCAAAAAAFCAAAAAACCAAAAAABCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAE + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAACAAAAAACBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABCAAAAAAFCAAAAAAFBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAECAAAAAAFCAAAAAAFCAAAAAAFBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAAECAAAAAABCAAAAAABBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAABCAAAAAAECAAAAAAFCAAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABCAAAAAAECAAAAAACCAAAAAABCAAAAAAACAAAAAAGBgAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAAACAAAAAAGCAAAAAADCAAAAAACCAAAAAAFCAAAAAADCAAAAAABBgAAAAACBgAAAAABBgAAAAADBgAAAAADBgAAAAABBgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAACCAAAAAAFCAAAAAAFCAAAAAAECAAAAAAECAAAAAAFCAAAAAACCAAAAAADBgAAAAADBgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAACAAAAAAGCAAAAAACCAAAAAAGCAAAAAADCAAAAAAFCAAAAAACCAAAAAAGCAAAAAAFCAAAAAAECAAAAAAEBgAAAAAABgAAAAACBgAAAAABBgAAAAADBgAAAAAACAAAAAACCAAAAAAFCAAAAAAFCAAAAAAACAAAAAABCAAAAAAFCAAAAAAACAAAAAAECAAAAAAACAAAAAAFCAAAAAAACAAAAAAACAAAAAACCAAAAAAGCAAAAAAGCAAAAAAFCAAAAAAECAAAAAACCAAAAAAACAAAAAABCAAAAAAECAAAAAAECAAAAAACCAAAAAADCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAACAAAAAAFCAAAAAACCAAAAAAECAAAAAAFCAAAAAAE version: 6 8,-1: ind: 8,-1 - tiles: CAAAAAAACAAAAAACCAAAAAAECAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAFCAAAAAAACAAAAAACBgAAAAACBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAECAAAAAAFCAAAAAAGCAAAAAABCAAAAAAFCAAAAAABCAAAAAAGCAAAAAACCAAAAAABCAAAAAADBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAAFCAAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAAEBgAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAACCAAAAAAFCAAAAAAEBQAAAAAABQAAAAAHCAAAAAAACAAAAAAGCAAAAAAFBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFCAAAAAADCAAAAAACBQAAAAAHBQAAAAAFBQAAAAAHCAAAAAABCAAAAAADCAAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAADBgAAAAABAAAAAAAAAAAAAAAACAAAAAADCAAAAAAABQAAAAABBQAAAAAABQAAAAACCAAAAAAACAAAAAAECAAAAAAECAAAAAAACAAAAAABBgAAAAABBgAAAAADBgAAAAAABgAAAAAABgAAAAABBgAAAAAACAAAAAAGBQAAAAAHBQAAAAAGBQAAAAAABQAAAAAHBQAAAAABCAAAAAACCAAAAAABCAAAAAAGCAAAAAABCAAAAAAFCAAAAAABCAAAAAAGBgAAAAAABgAAAAACBgAAAAABCAAAAAABCAAAAAAACAAAAAAFBQAAAAACBQAAAAAHBQAAAAAABQAAAAADCAAAAAAECAAAAAAFCAAAAAAECAAAAAABCAAAAAAFCAAAAAADCAAAAAAECAAAAAACBgAAAAAACAAAAAAGCAAAAAAGCAAAAAACCAAAAAABCAAAAAAFBQAAAAACBQAAAAABBQAAAAAHCAAAAAABCAAAAAAACAAAAAADCAAAAAAECAAAAAAECAAAAAAECAAAAAAFCAAAAAAECAAAAAABCAAAAAACCAAAAAACCAAAAAAFCAAAAAAGCAAAAAAEBQAAAAAFBQAAAAAGCAAAAAAECAAAAAAGCAAAAAADCAAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAAFCAAAAAAGCAAAAAADCAAAAAAFCAAAAAACCAAAAAABCAAAAAACCAAAAAAGBQAAAAAABQAAAAABBQAAAAAFCAAAAAAECAAAAAAGCAAAAAAFCAAAAAAGCAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAAFCAAAAAACCAAAAAACCAAAAAABCAAAAAAECAAAAAAFBQAAAAAEBQAAAAAGCAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAAGCAAAAAACCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAACAAAAAAGCAAAAAAGCAAAAAADCAAAAAABCAAAAAAACAAAAAAGCAAAAAADCAAAAAAECAAAAAAFCAAAAAAFCAAAAAADCAAAAAAFCAAAAAACCAAAAAABCAAAAAACCAAAAAACCAAAAAAECAAAAAAFCAAAAAAFCAAAAAABCAAAAAABCAAAAAADCAAAAAAECAAAAAAGCAAAAAADCAAAAAADCAAAAAADCAAAAAAECAAAAAACCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAFCAAAAAAGCAAAAAACCAAAAAAECAAAAAACCAAAAAABCAAAAAAFCAAAAAAECAAAAAABCAAAAAAACAAAAAAGCAAAAAADCAAAAAABCAAAAAACCAAAAAAECAAAAAAACAAAAAACCAAAAAADCAAAAAAFCAAAAAAGCAAAAAAECAAAAAAF + tiles: CAAAAAAGCAAAAAABCAAAAAABCAAAAAAFCAAAAAADCAAAAAADCAAAAAAECAAAAAACCAAAAAABCAAAAAACBgAAAAADBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAAFCAAAAAAFCAAAAAAGCAAAAAADCAAAAAAECAAAAAAFCAAAAAAFCAAAAAACBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAFCAAAAAABCAAAAAADCAAAAAAACAAAAAAGCAAAAAAACAAAAAAECAAAAAACBgAAAAABBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAECAAAAAAFCAAAAAACCAAAAAAGBQAAAAADBQAAAAADCAAAAAAACAAAAAAECAAAAAADBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAABCAAAAAACBQAAAAAFBQAAAAADBQAAAAABCAAAAAAACAAAAAAFCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAACAAAAAABCAAAAAAABQAAAAAEBQAAAAAHBQAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAAECAAAAAAGBgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAACCAAAAAAABQAAAAAFBQAAAAACBQAAAAAHBQAAAAAFBQAAAAABCAAAAAADCAAAAAAGCAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAAFBgAAAAACBgAAAAAABgAAAAADCAAAAAAGCAAAAAADCAAAAAAABQAAAAADBQAAAAAABQAAAAAGBQAAAAAGCAAAAAABCAAAAAAFCAAAAAAECAAAAAABCAAAAAAGCAAAAAAACAAAAAADCAAAAAABBgAAAAACCAAAAAACCAAAAAAGCAAAAAADCAAAAAAGCAAAAAAGBQAAAAACBQAAAAAGBQAAAAAHCAAAAAAGCAAAAAACCAAAAAAECAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAAFCAAAAAAACAAAAAADBQAAAAAGBQAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAACCAAAAAAFCAAAAAADCAAAAAADCAAAAAADCAAAAAAGCAAAAAAACAAAAAAGCAAAAAAEBQAAAAAABQAAAAAFBQAAAAABCAAAAAAFCAAAAAADCAAAAAAECAAAAAAECAAAAAAFCAAAAAAGCAAAAAAGCAAAAAAACAAAAAAFCAAAAAADCAAAAAAECAAAAAAGCAAAAAADCAAAAAAGCAAAAAAABQAAAAAABQAAAAAACAAAAAAFCAAAAAABCAAAAAABCAAAAAAGCAAAAAACCAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAAECAAAAAADCAAAAAAFCAAAAAAFCAAAAAADCAAAAAAFCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAAFCAAAAAAFCAAAAAADCAAAAAABCAAAAAAFCAAAAAAECAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAAGCAAAAAAECAAAAAAGCAAAAAAACAAAAAACCAAAAAAGCAAAAAAFCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAFCAAAAAAECAAAAAAACAAAAAAGCAAAAAAFCAAAAAAGCAAAAAAECAAAAAAACAAAAAAFCAAAAAAECAAAAAAACAAAAAAECAAAAAACCAAAAAAFCAAAAAABCAAAAAADCAAAAAAECAAAAAABCAAAAAACCAAAAAAACAAAAAAFCAAAAAAFCAAAAAAACAAAAAAGCAAAAAAE version: 6 8,-2: ind: 8,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABCAAAAAADCAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAACBgAAAAAACAAAAAABCAAAAAAGCAAAAAAFCAAAAAAEBgAAAAABBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAABBgAAAAADBgAAAAADCAAAAAAGCAAAAAADCAAAAAAECAAAAAADCAAAAAABBgAAAAAABgAAAAADBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAADBgAAAAABCAAAAAAECAAAAAAECAAAAAAACAAAAAAACAAAAAACCAAAAAAFBgAAAAABBgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAAACAAAAAABCAAAAAACCAAAAAAECAAAAAAACAAAAAACCAAAAAACCAAAAAAFBgAAAAABBgAAAAACCAAAAAADCAAAAAAGCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAAECAAAAAAGCAAAAAADBgAAAAACBgAAAAABBgAAAAABCAAAAAACCAAAAAACCAAAAAAFCAAAAAAECAAAAAAFCAAAAAADCAAAAAAACAAAAAABCAAAAAACCAAAAAAGCAAAAAAACAAAAAADBgAAAAADBgAAAAADBgAAAAABAAAAAAAACAAAAAABCAAAAAAFCAAAAAAACAAAAAAECAAAAAAECAAAAAADCAAAAAAECAAAAAADCAAAAAAFCAAAAAADCAAAAAAEBgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAACAAAAAAFCAAAAAACCAAAAAAECAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAAECAAAAAABCAAAAAADBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAABBgAAAAAACAAAAAADCAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAADBgAAAAAACAAAAAAGCAAAAAADCAAAAAABCAAAAAABBgAAAAACBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAADCAAAAAAACAAAAAAECAAAAAAGCAAAAAAFCAAAAAACBgAAAAADBgAAAAABBgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAGCAAAAAADCAAAAAAGBgAAAAACBgAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAADBgAAAAACBgAAAAABCAAAAAAFCAAAAAACCAAAAAADCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAABgAAAAAABgAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAECAAAAAAFCAAAAAAFCAAAAAADCAAAAAAACAAAAAAACAAAAAABBgAAAAAABgAAAAABBgAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAAGCAAAAAAACAAAAAADCAAAAAAACAAAAAAECAAAAAABCAAAAAABCAAAAAACCAAAAAAABgAAAAADBgAAAAACBgAAAAAAAAAAAAAACAAAAAAECAAAAAAECAAAAAAECAAAAAAFCAAAAAAECAAAAAADCAAAAAABCAAAAAAECAAAAAADCAAAAAACCAAAAAACBgAAAAACBgAAAAABBgAAAAABAAAAAAAAAAAAAAAACAAAAAAGCAAAAAABCAAAAAAFCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAAECAAAAAAGCAAAAAAECAAAAAAGBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAA version: 6 9,-1: ind: 9,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAADBgAAAAACBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAADBgAAAAABBgAAAAABBgAAAAACBgAAAAACAAAAAAAACAAAAAAECAAAAAABBgAAAAABBgAAAAADBgAAAAACBgAAAAABBgAAAAAABgAAAAAACAAAAAADCAAAAAAGCAAAAAAFCAAAAAAFBgAAAAAABgAAAAAABgAAAAABBgAAAAADCAAAAAABCAAAAAADCAAAAAAFCAAAAAAGCAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAGCAAAAAAGCAAAAAAACAAAAAAFCAAAAAAFBgAAAAAABgAAAAADCAAAAAAECAAAAAADCAAAAAAFCAAAAAADCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAAFCAAAAAABCAAAAAAECAAAAAAGCAAAAAABBgAAAAABBgAAAAADCAAAAAADCAAAAAAFCAAAAAAGCAAAAAAGCAAAAAADCAAAAAADCAAAAAABCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAFCAAAAAABCAAAAAAFBgAAAAAABgAAAAAABgAAAAACCAAAAAADCAAAAAABCAAAAAAFCAAAAAAACAAAAAAFCAAAAAADCAAAAAAACAAAAAAGCAAAAAAECAAAAAAECAAAAAACCAAAAAAECAAAAAABBgAAAAACBgAAAAAAAAAAAAAACAAAAAAFCAAAAAACCAAAAAACCAAAAAADCAAAAAAFCAAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAFCAAAAAACCAAAAAACBgAAAAACBgAAAAADAAAAAAAACAAAAAAECAAAAAABCAAAAAADCAAAAAAGCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAAGCAAAAAAECAAAAAAGCAAAAAADCAAAAAADBgAAAAAABgAAAAADAAAAAAAACAAAAAAFCAAAAAAACAAAAAAECAAAAAABCAAAAAAFCAAAAAABCAAAAAAACAAAAAAGCAAAAAACCAAAAAAACAAAAAAECAAAAAAGCAAAAAAFBgAAAAAABgAAAAABAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAADBgAAAAADBgAAAAADBgAAAAADBgAAAAADBgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAADBgAAAAABBgAAAAAABgAAAAACBgAAAAAABgAAAAAAAAAAAAAACAAAAAABCAAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAABCAAAAAADCAAAAAAECAAAAAACCAAAAAABBgAAAAAABgAAAAAABgAAAAADBgAAAAADCAAAAAAFCAAAAAAFCAAAAAADCAAAAAAGCAAAAAAECAAAAAAECAAAAAAECAAAAAAGCAAAAAAACAAAAAAGCAAAAAADCAAAAAADCAAAAAAECAAAAAABBgAAAAADBgAAAAAACAAAAAAFCAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAECAAAAAAECAAAAAABCAAAAAAACAAAAAAACAAAAAAGCAAAAAABCAAAAAACCAAAAAADBgAAAAAABgAAAAADCAAAAAAGCAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAECAAAAAAECAAAAAAGCAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAAABgAAAAABBgAAAAACBgAAAAADCAAAAAAFCAAAAAADCAAAAAAFCAAAAAABCAAAAAADCAAAAAAFCAAAAAABCAAAAAAGCAAAAAACCAAAAAAFCAAAAAAGCAAAAAACCAAAAAACBgAAAAADBgAAAAACAAAAAAAACAAAAAAACAAAAAABCAAAAAAFCAAAAAABCAAAAAACCAAAAAAFCAAAAAACCAAAAAAFCAAAAAABCAAAAAAECAAAAAAECAAAAAAACAAAAAACBgAAAAADBgAAAAADAAAAAAAACAAAAAAFCAAAAAAGCAAAAAACCAAAAAABCAAAAAAFCAAAAAABCAAAAAABCAAAAAAECAAAAAABCAAAAAAECAAAAAABCAAAAAADCAAAAAAEBgAAAAABBgAAAAADAAAAAAAACAAAAAAFCAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAECAAAAAADCAAAAAADBgAAAAADBgAAAAACAAAAAAAA version: 6 9,-2: ind: 9,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,0: ind: 10,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADBgAAAAABBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAGBgAAAAABBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAAFBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAABBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAEBgAAAAABBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABgAAAAADBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADBgAAAAACBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAGCAAAAAAGBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAEBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFCAAAAAAFBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFBgAAAAAABgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,1: ind: 10,1 - tiles: BgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,2: ind: 10,2 - tiles: CAAAAAABBgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAGBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAGBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAABBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAGBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 9,2: ind: 9,2 - tiles: CAAAAAABCAAAAAADCAAAAAAGCAAAAAAFCAAAAAACCAAAAAAFBgAAAAACBgAAAAABBgAAAAABCAAAAAAACAAAAAAECAAAAAAACAAAAAAECAAAAAAECAAAAAAFCAAAAAAACAAAAAAFCAAAAAACCAAAAAAGBgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAABBgAAAAAACAAAAAABCAAAAAADCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAGBgAAAAABBgAAAAABBgAAAAADBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAABCAAAAAAECAAAAAAECAAAAAACCAAAAAAGBgAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAACCAAAAAAFCAAAAAAEBgAAAAABBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACBgAAAAACCAAAAAAECAAAAAAEBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADCAAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAACAAAAAABCAAAAAACBgAAAAADBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACCAAAAAABBgAAAAABBgAAAAADBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACCAAAAAACBgAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAACBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAACCAAAAAAGCAAAAAADCAAAAAAFCAAAAAAGCAAAAAADBgAAAAACBgAAAAABBgAAAAAACAAAAAAFCAAAAAABCAAAAAAGCAAAAAAGCAAAAAAACAAAAAAACAAAAAAGCAAAAAAACAAAAAAECAAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAACBgAAAAAABgAAAAACCAAAAAAGCAAAAAAGCAAAAAADCAAAAAAFCAAAAAADCAAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAABBgAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAACAAAAAABCAAAAAAABgAAAAADBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAADCAAAAAACCAAAAAACBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAABCAAAAAAFCAAAAAAACAAAAAAFBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACCAAAAAAFCAAAAAAABgAAAAACBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACCAAAAAAFBgAAAAAABgAAAAACBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACCAAAAAAABgAAAAABBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,2: ind: 8,2 - tiles: CAAAAAAFCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAAewAAAAABfAAAAAADewAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAAECAAAAAAGCAAAAAAACAAAAAADCAAAAAADewAAAAACewAAAAACewAAAAADegAAAAADewAAAAACewAAAAADewAAAAABewAAAAAAewAAAAACCAAAAAAECAAAAAADCAAAAAADCAAAAAAGCAAAAAAECAAAAAABCAAAAAAFewAAAAADewAAAAABegAAAAAAegAAAAADegAAAAABewAAAAABewAAAAADewAAAAACewAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAGCAAAAAADCAAAAAACCAAAAAAFewAAAAAAewAAAAACegAAAAADegAAAAABegAAAAADewAAAAACewAAAAACCAAAAAAGCAAAAAAACAAAAAAGCAAAAAACCAAAAAAECAAAAAABCAAAAAAGCAAAAAAECAAAAAAAewAAAAACewAAAAAAegAAAAACegAAAAADegAAAAADewAAAAACewAAAAACCAAAAAAECAAAAAAFCAAAAAAGCAAAAAAFCAAAAAADCAAAAAADCAAAAAAGCAAAAAAACAAAAAAGewAAAAAAewAAAAABewAAAAADewAAAAADewAAAAACewAAAAAAewAAAAAACAAAAAADCAAAAAABCAAAAAAGCAAAAAAABgAAAAABCAAAAAAFCAAAAAABCAAAAAADCAAAAAADCAAAAAAGCAAAAAAFCAAAAAADCAAAAAADCAAAAAADCAAAAAAGCAAAAAABCAAAAAABCAAAAAAGCAAAAAADCAAAAAAABgAAAAACCAAAAAABCAAAAAABCAAAAAAGCAAAAAAECAAAAAADCAAAAAACCAAAAAADCAAAAAAGCAAAAAAGCAAAAAABCAAAAAADCAAAAAAACAAAAAAGCAAAAAACBgAAAAAABgAAAAABCAAAAAAFewAAAAAACAAAAAAECAAAAAAECAAAAAABCAAAAAABCAAAAAAGCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAAGBgAAAAAABgAAAAACBgAAAAABCAAAAAADewAAAAADCAAAAAACCAAAAAAFCAAAAAACCAAAAAABCAAAAAAGCAAAAAAECAAAAAAECAAAAAACCAAAAAAECAAAAAABCAAAAAAGBgAAAAABBgAAAAABBgAAAAABCAAAAAADCAAAAAAGCAAAAAAFCAAAAAAFCAAAAAADCAAAAAAGCAAAAAADCAAAAAAECAAAAAABCAAAAAAGCAAAAAAACAAAAAAECAAAAAAABgAAAAAABgAAAAABBgAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAFCAAAAAABCAAAAAADCAAAAAAECAAAAAACCAAAAAAEBgAAAAABBgAAAAADBgAAAAACBgAAAAADBQAAAAAGBQAAAAACBQAAAAAHCAAAAAABCAAAAAADCAAAAAACCAAAAAAGCAAAAAABCAAAAAAECAAAAAAGCAAAAAACCAAAAAAEBgAAAAABBgAAAAADBgAAAAAABgAAAAADBQAAAAAECAAAAAADCAAAAAABCAAAAAABCAAAAAAECAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAAACAAAAAACBgAAAAABBgAAAAADBgAAAAADBgAAAAAABgAAAAACCAAAAAAFCAAAAAAECAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAGCAAAAAAECAAAAAADBgAAAAADBgAAAAACBgAAAAADBgAAAAACBgAAAAADBgAAAAABAAAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAFBgAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAECAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAAAewAAAAACfAAAAAACewAAAAABCAAAAAACCAAAAAAECAAAAAAFCAAAAAACCAAAAAABCAAAAAAGCAAAAAADCAAAAAAECAAAAAAACAAAAAAECAAAAAADewAAAAADewAAAAABewAAAAABegAAAAACewAAAAABewAAAAACewAAAAAAewAAAAAAewAAAAADCAAAAAACCAAAAAAGCAAAAAAFCAAAAAADCAAAAAACCAAAAAAFCAAAAAAAewAAAAADewAAAAAAegAAAAABegAAAAACegAAAAABewAAAAAAewAAAAADewAAAAACewAAAAAACAAAAAAECAAAAAACCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAFCAAAAAABewAAAAABewAAAAAAegAAAAAAegAAAAABegAAAAAAewAAAAADewAAAAADCAAAAAAGCAAAAAAACAAAAAACCAAAAAACCAAAAAAFCAAAAAAECAAAAAACCAAAAAAECAAAAAABewAAAAAAewAAAAADegAAAAAAegAAAAADegAAAAADewAAAAACewAAAAACCAAAAAAACAAAAAADCAAAAAAECAAAAAAGCAAAAAAECAAAAAAACAAAAAAFCAAAAAACCAAAAAAEewAAAAAAewAAAAACewAAAAADewAAAAACewAAAAABewAAAAABewAAAAABCAAAAAAGCAAAAAABCAAAAAADCAAAAAADBgAAAAACCAAAAAABCAAAAAAECAAAAAAECAAAAAACCAAAAAAGCAAAAAAFCAAAAAAFCAAAAAACCAAAAAABCAAAAAAECAAAAAACCAAAAAACCAAAAAACCAAAAAAFCAAAAAACBgAAAAACCAAAAAAGCAAAAAABCAAAAAACCAAAAAAGCAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAFCAAAAAAACAAAAAAGBgAAAAAABgAAAAACCAAAAAAAewAAAAAACAAAAAADCAAAAAAGCAAAAAAFCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAECAAAAAADCAAAAAADCAAAAAACCAAAAAAGBgAAAAADBgAAAAADBgAAAAADCAAAAAAEewAAAAADCAAAAAAGCAAAAAADCAAAAAABCAAAAAAECAAAAAAGCAAAAAAGCAAAAAADCAAAAAAECAAAAAAECAAAAAACCAAAAAACBgAAAAAABgAAAAAABgAAAAABCAAAAAADCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAECAAAAAAACAAAAAAGCAAAAAAECAAAAAADCAAAAAABCAAAAAAECAAAAAAECAAAAAABBgAAAAACBgAAAAAABgAAAAABCAAAAAAFCAAAAAAACAAAAAAFCAAAAAABCAAAAAAACAAAAAAGCAAAAAADCAAAAAADCAAAAAADCAAAAAAFCAAAAAAGCAAAAAACBgAAAAADBgAAAAACBgAAAAADBgAAAAAABQAAAAAEBQAAAAAHBQAAAAADCAAAAAAECAAAAAAECAAAAAAFCAAAAAAECAAAAAADCAAAAAACCAAAAAAGCAAAAAAFCAAAAAAGBgAAAAABBgAAAAACBgAAAAACBgAAAAAABQAAAAAECAAAAAAFCAAAAAAGCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAFCAAAAAAGBgAAAAABBgAAAAABBgAAAAABBgAAAAADBgAAAAADCAAAAAAGCAAAAAAGCAAAAAAECAAAAAAGCAAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAAABgAAAAADBgAAAAACBgAAAAAABgAAAAACBgAAAAADBgAAAAABAAAAAAAACAAAAAABCAAAAAAGCAAAAAAECAAAAAACCAAAAAAACAAAAAAACAAAAAADBgAAAAABBgAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,3: ind: 8,3 - tiles: CAAAAAADCAAAAAACCAAAAAAGCAAAAAAFCAAAAAACCAAAAAABBgAAAAABBgAAAAABBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAECAAAAAAGCAAAAAAFCAAAAAAFCAAAAAAFBgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFCAAAAAAECAAAAAAGCAAAAAAFBgAAAAADBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAABCAAAAAADBgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAADBgAAAAACBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFBgAAAAADBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAEBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADBgAAAAABBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFCAAAAAAGBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAADBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAAFBgAAAAACBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAECAAAAAADCAAAAAAFBgAAAAAABgAAAAADBgAAAAACBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAEBgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAEBgAAAAADBgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAGCAAAAAAFBgAAAAACBgAAAAADBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAAFCAAAAAAFBgAAAAABBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFCAAAAAAFCAAAAAADCAAAAAABBgAAAAACBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAFCAAAAAAFBgAAAAAABgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAECAAAAAACBgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABBgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAGBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAEBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAGCAAAAAAFCAAAAAABBgAAAAADBgAAAAACBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAGCAAAAAACBgAAAAACBgAAAAACBgAAAAADBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFCAAAAAACBgAAAAACBgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAFBgAAAAABBgAAAAADBgAAAAAABgAAAAABBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAADBgAAAAACBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,4: ind: 8,4 - tiles: BgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BgAAAAADBgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,2: ind: 7,2 - tiles: CAAAAAACCAAAAAAECAAAAAAACAAAAAAFCAAAAAAFCAAAAAAGCAAAAAAACAAAAAAACAAAAAAACAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAGCAAAAAAFCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAFCAAAAAAGCAAAAAADCAAAAAADCAAAAAAFCAAAAAAECAAAAAAFCAAAAAACCAAAAAAFCAAAAAAECAAAAAABCAAAAAAGCAAAAAAACAAAAAAACAAAAAAECAAAAAAACAAAAAAECAAAAAAACAAAAAACCAAAAAAGCAAAAAAGCAAAAAADCAAAAAACCAAAAAAACAAAAAAGCAAAAAAACAAAAAADCAAAAAAFCAAAAAAACAAAAAAGCAAAAAAGCAAAAAABCAAAAAAECAAAAAAGCAAAAAAECAAAAAAACAAAAAAGCAAAAAABCAAAAAAECAAAAAAFCAAAAAAGCAAAAAAECAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAGCAAAAAADCAAAAAABCAAAAAADCAAAAAAGCAAAAAABCAAAAAAGCAAAAAAECAAAAAAFCAAAAAAGCAAAAAAACAAAAAABCAAAAAABCAAAAAAGCAAAAAAECAAAAAACCAAAAAAFCAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAAABQAAAAAGBQAAAAAECAAAAAAGCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAACAAAAAABCAAAAAACBQAAAAABBQAAAAADBQAAAAAHCAAAAAAGCAAAAAACCAAAAAAACAAAAAAABQAAAAADBQAAAAAGBQAAAAAHBQAAAAAECAAAAAAFCAAAAAABBQAAAAACBQAAAAAFBQAAAAAABQAAAAABBQAAAAAACAAAAAABCAAAAAADCAAAAAAFCAAAAAAFCAAAAAACCAAAAAABBQAAAAACBQAAAAAFBQAAAAACBQAAAAAHBQAAAAADBQAAAAADBQAAAAABBQAAAAAGBQAAAAAECAAAAAAACAAAAAAECAAAAAAACAAAAAAECAAAAAAECAAAAAAGCAAAAAADCAAAAAACBQAAAAAEBQAAAAAGBQAAAAAFBQAAAAABBQAAAAAHBQAAAAAGBQAAAAAHCAAAAAAACAAAAAACCAAAAAAACAAAAAAEBQAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACBQAAAAAFBQAAAAAABQAAAAABBQAAAAAFBQAAAAABCAAAAAABCAAAAAACCAAAAAAECAAAAAAFCAAAAAAFCAAAAAABBQAAAAAABQAAAAAABQAAAAAECAAAAAAEBQAAAAABBQAAAAAHBQAAAAADBQAAAAAECAAAAAADCAAAAAACCAAAAAAFCAAAAAACCAAAAAAGCAAAAAAACAAAAAAGCAAAAAAGBQAAAAAFBQAAAAACBQAAAAACBQAAAAAEBQAAAAAHBQAAAAAEBQAAAAAFCAAAAAAECAAAAAAECAAAAAAECAAAAAAGCAAAAAAECAAAAAAFCAAAAAAECAAAAAAGCAAAAAADBQAAAAADBQAAAAAFBQAAAAAHBQAAAAADBQAAAAAEBQAAAAADCAAAAAACCAAAAAAACAAAAAAFCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAEBQAAAAADBQAAAAAGCAAAAAAFBQAAAAAHBQAAAAAEBQAAAAAEBQAAAAAGBQAAAAAFCAAAAAAGCAAAAAAGCAAAAAADCAAAAAAECAAAAAADCAAAAAAGCAAAAAAGBQAAAAAHBQAAAAADBQAAAAAACAAAAAABCAAAAAACBQAAAAAEBQAAAAAHBQAAAAAGCAAAAAAGCAAAAAABCAAAAAAECAAAAAAGCAAAAAAGCAAAAAAGCAAAAAABBQAAAAAHBQAAAAABBQAAAAAFCAAAAAAF + tiles: CAAAAAAFCAAAAAAACAAAAAAECAAAAAAGCAAAAAAFCAAAAAABCAAAAAABCAAAAAAGCAAAAAADCAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAAECAAAAAACCAAAAAAFCAAAAAABCAAAAAACCAAAAAAGCAAAAAADCAAAAAAGCAAAAAAFCAAAAAAFCAAAAAAFCAAAAAABCAAAAAAECAAAAAACCAAAAAAGCAAAAAADCAAAAAADCAAAAAAACAAAAAAGCAAAAAACCAAAAAACCAAAAAAGCAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAAGCAAAAAAECAAAAAADCAAAAAAGCAAAAAABCAAAAAAGCAAAAAAGCAAAAAAFCAAAAAAACAAAAAABCAAAAAAACAAAAAAECAAAAAAECAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAFCAAAAAAFCAAAAAAFCAAAAAABCAAAAAAECAAAAAAACAAAAAAGCAAAAAAECAAAAAAECAAAAAABCAAAAAAGCAAAAAABCAAAAAAACAAAAAACCAAAAAAFCAAAAAAFCAAAAAAFCAAAAAAGCAAAAAAACAAAAAABCAAAAAAFCAAAAAAGCAAAAAADCAAAAAACCAAAAAAGCAAAAAADCAAAAAAECAAAAAADCAAAAAAECAAAAAACCAAAAAAECAAAAAAFCAAAAAABCAAAAAAACAAAAAACCAAAAAAECAAAAAAECAAAAAAACAAAAAAEBQAAAAAEBQAAAAAHCAAAAAACCAAAAAAFCAAAAAAGCAAAAAAACAAAAAAFCAAAAAADCAAAAAAFBQAAAAAFBQAAAAAEBQAAAAAACAAAAAABCAAAAAAECAAAAAADCAAAAAAGBQAAAAABBQAAAAAEBQAAAAABBQAAAAAECAAAAAAFCAAAAAADBQAAAAAHBQAAAAAHBQAAAAACBQAAAAACBQAAAAAFCAAAAAABCAAAAAAFCAAAAAAECAAAAAAGCAAAAAAFCAAAAAAFBQAAAAABBQAAAAAGBQAAAAAABQAAAAAHBQAAAAABBQAAAAAABQAAAAAABQAAAAAEBQAAAAAACAAAAAAGCAAAAAAECAAAAAACCAAAAAAGCAAAAAAGCAAAAAAFCAAAAAAGCAAAAAABBQAAAAACBQAAAAAHBQAAAAAHBQAAAAAFBQAAAAAABQAAAAAHBQAAAAAECAAAAAAGCAAAAAABCAAAAAAECAAAAAADBQAAAAADCAAAAAACCAAAAAAFCAAAAAAGCAAAAAAABQAAAAADBQAAAAAGBQAAAAABBQAAAAAFBQAAAAADCAAAAAAECAAAAAAFCAAAAAADCAAAAAABCAAAAAAECAAAAAADBQAAAAADBQAAAAAEBQAAAAAHCAAAAAAABQAAAAAGBQAAAAAFBQAAAAACBQAAAAAGCAAAAAACCAAAAAAFCAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAAFCAAAAAAABQAAAAAEBQAAAAAABQAAAAAEBQAAAAAHBQAAAAAFBQAAAAAEBQAAAAABCAAAAAAGCAAAAAAACAAAAAAACAAAAAAECAAAAAAACAAAAAAECAAAAAAFCAAAAAAACAAAAAAEBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAADBQAAAAACCAAAAAAECAAAAAADCAAAAAAGCAAAAAADCAAAAAAGCAAAAAABCAAAAAAECAAAAAAGBQAAAAABBQAAAAAACAAAAAADBQAAAAAFBQAAAAACBQAAAAAGBQAAAAACBQAAAAAGCAAAAAAFCAAAAAAFCAAAAAACCAAAAAAGCAAAAAADCAAAAAAFCAAAAAAABQAAAAAABQAAAAABBQAAAAAHCAAAAAAFCAAAAAAFBQAAAAAEBQAAAAAHBQAAAAAFCAAAAAACCAAAAAAFCAAAAAABCAAAAAAGCAAAAAAFCAAAAAAECAAAAAAFBQAAAAACBQAAAAABBQAAAAABCAAAAAAA version: 6 7,3: ind: 7,3 - tiles: CAAAAAADCAAAAAACCAAAAAADBQAAAAACBQAAAAABCAAAAAABCAAAAAABCAAAAAAFCAAAAAAECAAAAAABCAAAAAABBQAAAAABBQAAAAADBQAAAAAGCAAAAAACCAAAAAAFCAAAAAAFCAAAAAADCAAAAAACBQAAAAAGBQAAAAAGCAAAAAABCAAAAAACCAAAAAAFCAAAAAAACAAAAAAGCAAAAAACBQAAAAAGBQAAAAAGBQAAAAAECAAAAAAACAAAAAACCAAAAAAECAAAAAAECAAAAAAGCAAAAAAECAAAAAAFCAAAAAAGCAAAAAACCAAAAAAECAAAAAADCAAAAAADBQAAAAAABQAAAAAEBQAAAAAFCAAAAAAECAAAAAAECAAAAAABCAAAAAAGCAAAAAAECAAAAAAFCAAAAAACCAAAAAAFCAAAAAAFCAAAAAAGCAAAAAACCAAAAAAECAAAAAACBQAAAAAFBQAAAAAGBQAAAAABCAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAFCAAAAAAGCAAAAAABCAAAAAABCAAAAAAECAAAAAAFCAAAAAAFBQAAAAAHBQAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAABgAAAAAACAAAAAAFCAAAAAAACAAAAAAECAAAAAACCAAAAAAEBgAAAAAACAAAAAAACAAAAAAGCAAAAAAEBQAAAAAEBQAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAEBgAAAAABBgAAAAAACAAAAAAACAAAAAAGBgAAAAADBgAAAAAABgAAAAABCAAAAAAGCAAAAAAACAAAAAAFCAAAAAAFBQAAAAACBQAAAAABCAAAAAAECAAAAAAECAAAAAAGBgAAAAACBgAAAAACBgAAAAAABgAAAAACBgAAAAADBgAAAAABBgAAAAADCAAAAAACCAAAAAADCAAAAAAGCAAAAAABBQAAAAACBQAAAAACCAAAAAAGCAAAAAAACAAAAAAFBgAAAAAABgAAAAABBgAAAAADBgAAAAAABgAAAAADBgAAAAACCAAAAAAGCAAAAAACCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAFCAAAAAADCAAAAAAECAAAAAAGCAAAAAABBgAAAAADBgAAAAADBgAAAAAABgAAAAABBgAAAAAABgAAAAACCAAAAAACCAAAAAADCAAAAAAGCAAAAAACCAAAAAAECAAAAAAGCAAAAAABCAAAAAACCAAAAAAACAAAAAAGBgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAACCAAAAAAGCAAAAAADCAAAAAAGCAAAAAABCAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAACAAAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAABCAAAAAAACAAAAAAECAAAAAABCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAFCAAAAAAGCAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAACBgAAAAADBgAAAAACCAAAAAABCAAAAAAECAAAAAAECAAAAAAECAAAAAACCAAAAAAFCAAAAAAFCAAAAAAECAAAAAADCAAAAAAEAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAACAAAAAADCAAAAAADCAAAAAAECAAAAAADCAAAAAAECAAAAAAACAAAAAAACAAAAAACCAAAAAAFCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAACAAAAAAECAAAAAAGCAAAAAABCAAAAAAFCAAAAAADCAAAAAAECAAAAAAECAAAAAACCAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADBgAAAAABCAAAAAAACAAAAAAECAAAAAACCAAAAAADCAAAAAAFCAAAAAAACAAAAAAACAAAAAAC + tiles: CAAAAAAFCAAAAAACCAAAAAADBQAAAAAHBQAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAGCAAAAAABCAAAAAADBQAAAAAABQAAAAAHBQAAAAAGCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADBQAAAAAABQAAAAACCAAAAAAFCAAAAAABCAAAAAAACAAAAAAACAAAAAADCAAAAAACBQAAAAAHBQAAAAAFBQAAAAAGCAAAAAAECAAAAAACCAAAAAAFCAAAAAABCAAAAAAGCAAAAAAFCAAAAAACCAAAAAAECAAAAAACCAAAAAAACAAAAAAACAAAAAAEBQAAAAAFBQAAAAAABQAAAAAFCAAAAAAECAAAAAABCAAAAAADCAAAAAAFCAAAAAACCAAAAAAGCAAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAAGCAAAAAAGBQAAAAABBQAAAAAEBQAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAGCAAAAAAGCAAAAAADCAAAAAADCAAAAAACCAAAAAAGBQAAAAADBQAAAAAACAAAAAAECAAAAAAACAAAAAAGCAAAAAABBgAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAAGBgAAAAADCAAAAAACCAAAAAAGCAAAAAADBQAAAAAFBQAAAAAGCAAAAAABCAAAAAABCAAAAAADCAAAAAAGBgAAAAABBgAAAAABCAAAAAAECAAAAAACBgAAAAADBgAAAAABBgAAAAACCAAAAAAFCAAAAAACCAAAAAAECAAAAAACBQAAAAAABQAAAAAECAAAAAABCAAAAAAECAAAAAAGBgAAAAACBgAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAAABgAAAAABCAAAAAAFCAAAAAADCAAAAAAACAAAAAAEBQAAAAADBQAAAAAFCAAAAAABCAAAAAABCAAAAAABBgAAAAADBgAAAAACBgAAAAABBgAAAAACBgAAAAADBgAAAAADCAAAAAADCAAAAAAECAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAAGCAAAAAAACAAAAAACBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAADCAAAAAAECAAAAAAFCAAAAAAFCAAAAAACCAAAAAAFCAAAAAAGCAAAAAAGCAAAAAAACAAAAAADCAAAAAADBgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAFCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAFCAAAAAABAAAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAABCAAAAAAFCAAAAAAFCAAAAAACCAAAAAAFCAAAAAABCAAAAAABCAAAAAABCAAAAAAGCAAAAAAECAAAAAACCAAAAAAEAAAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAABCAAAAAAGCAAAAAABCAAAAAACCAAAAAAGCAAAAAABCAAAAAADCAAAAAAACAAAAAAFCAAAAAAFCAAAAAAGAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAADBgAAAAACCAAAAAABCAAAAAAFCAAAAAAGCAAAAAAACAAAAAAGCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAFCAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAFCAAAAAAACAAAAAAFCAAAAAAGCAAAAAAG version: 6 7,4: ind: 7,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADCAAAAAAGCAAAAAACCAAAAAADCAAAAAAGCAAAAAACCAAAAAACBgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAABBgAAAAABBgAAAAACCAAAAAAGCAAAAAADBgAAAAABBgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAADBgAAAAAABgAAAAACBgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAACAAAAAADCAAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAAABgAAAAABCAAAAAADCAAAAAADBgAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: XQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXwAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAAGCAAAAAAGCAAAAAAFXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAACAAAAAAECAAAAAABCAAAAAAGCAAAAAACXwAAAAADXwAAAAACXwAAAAAAXwAAAAACXwAAAAACXwAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAGCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAABCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAABCAAAAAAACAAAAAADCAAAAAAECAAAAAAFCAAAAAAECAAAAAADCAAAAAACCAAAAAAECAAAAAADCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAFCAAAAAAFCAAAAAABCAAAAAAECAAAAAAGCAAAAAABCAAAAAABCAAAAAAFCAAAAAAECAAAAAADCAAAAAAFCAAAAAACCAAAAAAGCAAAAAAGCAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAECAAAAAABCAAAAAACCAAAAAAGCAAAAAAGCAAAAAABCAAAAAABCAAAAAAGCAAAAAAECAAAAAABCAAAAAABCAAAAAAFCAAAAAAACAAAAAADCAAAAAAGCAAAAAAGCAAAAAAACAAAAAAFCAAAAAAFCAAAAAAFCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAFCAAAAAAECAAAAAABCAAAAAACCAAAAAAECAAAAAAGCAAAAAAECAAAAAAFCAAAAAAACAAAAAAECAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAADCAAAAAAFCAAAAAABCAAAAAADCAAAAAADCAAAAAAGCAAAAAABBgAAAAACBgAAAAADCAAAAAAECAAAAAAECAAAAAAGCAAAAAAECAAAAAAGCAAAAAAFCAAAAAACCAAAAAAGCAAAAAABCAAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAAHBgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAACCAAAAAADCAAAAAACCAAAAAAECAAAAAAGCAAAAAADCAAAAAABCAAAAAACCAAAAAAEBQAAAAADBQAAAAAFBQAAAAAHBgAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAADBgAAAAAACAAAAAAGCAAAAAABCAAAAAAECAAAAAAECAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAGBQAAAAAHBgAAAAAABgAAAAADBgAAAAABBgAAAAADBgAAAAAABgAAAAACBgAAAAADCAAAAAABCAAAAAAFCAAAAAABCAAAAAAECAAAAAABCAAAAAAACAAAAAAFCAAAAAADCAAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAABBgAAAAACBgAAAAAABgAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAAFCAAAAAAGCAAAAAACCAAAAAABCAAAAAACCAAAAAAFBgAAAAABBgAAAAAABgAAAAADBgAAAAACBgAAAAADBgAAAAAACAAAAAAFCAAAAAADCAAAAAADCAAAAAAACAAAAAAFCAAAAAADCAAAAAAFCAAAAAABCAAAAAAC + tiles: XQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXwAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAAFXwAAAAADXwAAAAAAXwAAAAADXwAAAAADXwAAAAADXwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAABCAAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAABCAAAAAACCAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAAGCAAAAAAACAAAAAAFCAAAAAAACAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAGCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAGCAAAAAAACAAAAAABCAAAAAAECAAAAAABCAAAAAAFCAAAAAAFCAAAAAAFCAAAAAAACAAAAAACCAAAAAABCAAAAAAFCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAAECAAAAAABCAAAAAABCAAAAAAECAAAAAAFCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAGCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAGCAAAAAAECAAAAAAFCAAAAAADCAAAAAAFCAAAAAACCAAAAAAECAAAAAADCAAAAAAGCAAAAAAECAAAAAAGCAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAGCAAAAAAGCAAAAAAECAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAAFBgAAAAACBgAAAAACCAAAAAAFCAAAAAACCAAAAAACCAAAAAABCAAAAAAGCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAGBQAAAAAFBQAAAAACBQAAAAAGBQAAAAAEBgAAAAADBgAAAAABBgAAAAACBgAAAAADBgAAAAABCAAAAAAACAAAAAAFCAAAAAAACAAAAAACCAAAAAACCAAAAAAFCAAAAAAGCAAAAAAGBQAAAAAABQAAAAAEBQAAAAAFBgAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAABCAAAAAACCAAAAAAACAAAAAAFCAAAAAAECAAAAAABCAAAAAAFCAAAAAADCAAAAAADCAAAAAAFBQAAAAADBgAAAAABBgAAAAAABgAAAAADBgAAAAACBgAAAAADBgAAAAABBgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAGCAAAAAABCAAAAAACCAAAAAABCAAAAAAECAAAAAADBgAAAAADBgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAADCAAAAAAACAAAAAAECAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAAGCAAAAAAACAAAAAAGCAAAAAAEBgAAAAACBgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAAACAAAAAACCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAAECAAAAAADCAAAAAADCAAAAAAACAAAAAAB version: 6 6,3: ind: 6,3 - tiles: CAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAFCAAAAAAFCAAAAAAACAAAAAAFCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAECAAAAAAFCAAAAAAECAAAAAAFCAAAAAABCAAAAAAFCAAAAAACCAAAAAAFCAAAAAABCAAAAAABCAAAAAADCAAAAAAECAAAAAAGCAAAAAACCAAAAAAACAAAAAAFCAAAAAAGCAAAAAABCAAAAAAGCAAAAAADCAAAAAAECAAAAAAGCAAAAAAACAAAAAADCAAAAAACCAAAAAAECAAAAAAFCAAAAAACCAAAAAABCAAAAAAGCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAAGBgAAAAAABgAAAAADBgAAAAACBgAAAAACBgAAAAAABgAAAAABBgAAAAADBgAAAAABCAAAAAAECAAAAAABCAAAAAAACAAAAAADCAAAAAAECAAAAAADBgAAAAAABgAAAAABBgAAAAACBgAAAAADBgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAADBgAAAAABBgAAAAADBgAAAAABBgAAAAAABgAAAAABCAAAAAAEBgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAADBgAAAAAABgAAAAADBgAAAAABBgAAAAADBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAGCAAAAAABCAAAAAAFCAAAAAAECAAAAAABCAAAAAAFCAAAAAAACAAAAAACCAAAAAACCAAAAAAGCAAAAAAECAAAAAADCAAAAAABCAAAAAAGCAAAAAADCAAAAAAACAAAAAAACAAAAAAECAAAAAACCAAAAAAGCAAAAAAECAAAAAABCAAAAAAECAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAAECAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAGCAAAAAAACAAAAAAECAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAAECAAAAAAFCAAAAAAGCAAAAAAACAAAAAAFCAAAAAAGBgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAADCAAAAAAECAAAAAABCAAAAAACCAAAAAAFCAAAAAAECAAAAAABBgAAAAADBgAAAAACBgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAADBgAAAAAABgAAAAAABgAAAAACBgAAAAABCAAAAAACBgAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAABBgAAAAABBgAAAAADBgAAAAABBgAAAAACBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 - tiles: BgAAAAACBgAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAADCAAAAAAFfgAAAAAAQAAAAAAAegAAAAABQAAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXwAAAAACBgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAAGCAAAAAACCAAAAAAFfgAAAAAAQAAAAAAAegAAAAABQAAAAAAAegAAAAAAegAAAAABegAAAAACfgAAAAAAXwAAAAADBgAAAAACCAAAAAACCAAAAAABCAAAAAAGCAAAAAAECAAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABegAAAAACegAAAAACfgAAAAAAXwAAAAACCAAAAAAECAAAAAAACAAAAAADCAAAAAAGCAAAAAAGCAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAFCAAAAAADCAAAAAACCAAAAAABCAAAAAAECAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAECAAAAAAECAAAAAAFCAAAAAAACAAAAAAACAAAAAAACAAAAAAECAAAAAAECAAAAAAECAAAAAAFCAAAAAACCAAAAAAECAAAAAADCAAAAAAFCAAAAAADCAAAAAAACAAAAAAGCAAAAAACCAAAAAAACAAAAAADCAAAAAAGCAAAAAAECAAAAAACCAAAAAABCAAAAAAECAAAAAADCAAAAAAGCAAAAAAECAAAAAAFCAAAAAAFCAAAAAAFCAAAAAACCAAAAAAECAAAAAAGCAAAAAAECAAAAAACCAAAAAAECAAAAAAGCAAAAAAFCAAAAAADCAAAAAACCAAAAAAFCAAAAAAECAAAAAAACAAAAAAFCAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAAFCAAAAAADCAAAAAACCAAAAAAECAAAAAACCAAAAAABCAAAAAAGCAAAAAAECAAAAAABCAAAAAAFCAAAAAACCAAAAAAECAAAAAACCAAAAAACCAAAAAAACAAAAAAECAAAAAACBgAAAAAABgAAAAABBgAAAAADCAAAAAAFCAAAAAAACAAAAAACCAAAAAACCAAAAAAECAAAAAADCAAAAAAFCAAAAAABCAAAAAAFCAAAAAABCAAAAAAFCAAAAAADBgAAAAADBgAAAAABBgAAAAACBgAAAAACBgAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAGCAAAAAAGCAAAAAAGCAAAAAACCAAAAAADCAAAAAACCAAAAAAFBgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAACCAAAAAADCAAAAAAECAAAAAABCAAAAAACCAAAAAAFCAAAAAAFCAAAAAABCAAAAAAGCAAAAAAFCAAAAAAACAAAAAACBgAAAAACBgAAAAACBgAAAAAABgAAAAABBgAAAAABBgAAAAABCAAAAAABCAAAAAABCAAAAAAGCAAAAAAACAAAAAABCAAAAAAGCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADBgAAAAADBgAAAAACBgAAAAABBgAAAAABBgAAAAAABgAAAAACCAAAAAABCAAAAAAACAAAAAAECAAAAAAGCAAAAAADCAAAAAAFCAAAAAAGCAAAAAACCAAAAAAACAAAAAADCAAAAAAECAAAAAAFBgAAAAACBgAAAAADBgAAAAABBgAAAAADBgAAAAAABgAAAAABBgAAAAABCAAAAAAECAAAAAAGCAAAAAAFCAAAAAAGCAAAAAADCAAAAAAECAAAAAADCAAAAAAECAAAAAACCAAAAAAB + tiles: BgAAAAADBgAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAFCAAAAAAFfgAAAAAAQAAAAAAAegAAAAABQAAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXwAAAAABBgAAAAAACAAAAAADCAAAAAAFCAAAAAAGCAAAAAAGCAAAAAAACAAAAAAFfgAAAAAAQAAAAAAAegAAAAABQAAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAXwAAAAADBgAAAAACCAAAAAAECAAAAAABCAAAAAAGCAAAAAACCAAAAAAEfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAXwAAAAACCAAAAAAECAAAAAAGCAAAAAAFCAAAAAACCAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAECAAAAAACCAAAAAAECAAAAAABCAAAAAAECAAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAECAAAAAABCAAAAAAECAAAAAACCAAAAAACCAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAACCAAAAAAECAAAAAAFCAAAAAABCAAAAAAACAAAAAAECAAAAAACCAAAAAAFCAAAAAACCAAAAAAGCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAFCAAAAAAGCAAAAAACCAAAAAADCAAAAAAECAAAAAAECAAAAAAECAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAAECAAAAAABCAAAAAADCAAAAAAECAAAAAAECAAAAAAFCAAAAAAACAAAAAADCAAAAAACCAAAAAAGCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAAGCAAAAAACCAAAAAADCAAAAAACCAAAAAADCAAAAAAGCAAAAAABCAAAAAADCAAAAAAGCAAAAAAFCAAAAAAECAAAAAAFCAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAAECAAAAAAGCAAAAAACCAAAAAAECAAAAAABCAAAAAAFCAAAAAAFBgAAAAAABgAAAAADBgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAAGCAAAAAADCAAAAAABCAAAAAACCAAAAAABCAAAAAAECAAAAAABBgAAAAADBgAAAAAABgAAAAABBgAAAAABBgAAAAADCAAAAAAFCAAAAAAECAAAAAABCAAAAAAGCAAAAAADCAAAAAAECAAAAAAGCAAAAAAFCAAAAAADCAAAAAAFCAAAAAAFBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAADCAAAAAAGCAAAAAAFCAAAAAAGCAAAAAADCAAAAAAECAAAAAACCAAAAAAFCAAAAAACCAAAAAABCAAAAAACCAAAAAAEBgAAAAABBgAAAAAABgAAAAAABgAAAAADBgAAAAABBgAAAAACCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAFCAAAAAABCAAAAAACCAAAAAACCAAAAAAGCAAAAAAECAAAAAAFBgAAAAABBgAAAAABBgAAAAACBgAAAAABBgAAAAADBgAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAFCAAAAAAFCAAAAAABCAAAAAACBgAAAAACBgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAABBgAAAAABCAAAAAADCAAAAAAFCAAAAAADCAAAAAAFCAAAAAADCAAAAAABCAAAAAAFCAAAAAAGCAAAAAABCAAAAAAB version: 6 5,3: ind: 5,3 - tiles: BgAAAAACBgAAAAADBgAAAAACBgAAAAAABgAAAAAABgAAAAADBgAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAAGCAAAAAAGCAAAAAADCAAAAAAACAAAAAABCAAAAAAGAAAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAADBgAAAAADBgAAAAAACAAAAAADCAAAAAACCAAAAAAGCAAAAAADCAAAAAAECAAAAAAGCAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAAGCAAAAAADCAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAABCAAAAAAFCAAAAAACCAAAAAABCAAAAAAACAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADCAAAAAAFCAAAAAAGCAAAAAAGCAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAECAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAABCAAAAAABCAAAAAAFCAAAAAAFBgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACCAAAAAAFCAAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAAABgAAAAACBgAAAAADCAAAAAAECAAAAAAGCAAAAAAACAAAAAAGCAAAAAAACAAAAAAFCAAAAAAACAAAAAADCAAAAAADAAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAADBgAAAAAABgAAAAADBgAAAAAACAAAAAAGCAAAAAABCAAAAAAECAAAAAAGCAAAAAACCAAAAAAACAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAACAAAAAADCAAAAAAGCAAAAAAFCAAAAAAECAAAAAAECAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAABCAAAAAAFCAAAAAAACAAAAAAECAAAAAABCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAAACAAAAAABCAAAAAAGCAAAAAACBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACCAAAAAACCAAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAABBgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADBgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAABCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAACAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAACAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAADBgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAADBgAAAAAACAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAADCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAADCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAACfgAAAAAAHwAAAAADIwAAAAAAIwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADTgAAAAADTgAAAAABTgAAAAACIwAAAAACIwAAAAADJAAAAAABHwAAAAACIwAAAAABIwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAACfgAAAAAAHwAAAAABIwAAAAACIwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAADewAAAAACewAAAAACewAAAAACewAAAAACewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABewAAAAACHwAAAAACHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACewAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAACewAAAAABewAAAAAAewAAAAACewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAATgAAAAACTgAAAAAATgAAAAADHwAAAAADDAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADDAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAADfgAAAAAAHwAAAAADIwAAAAACIwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADTgAAAAAATgAAAAADTgAAAAACIwAAAAAAIwAAAAADJAAAAAABHwAAAAACIwAAAAACIwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAABfgAAAAAAHwAAAAADIwAAAAADIwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADewAAAAACHwAAAAACHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAewAAAAACHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAACewAAAAACewAAAAABewAAAAADewAAAAAAewAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACTgAAAAADTgAAAAAATgAAAAAAHwAAAAAADAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAAADAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAACfgAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAADfgAAAAAAJAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -11,-2: ind: -11,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAADMQAAAAABMgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAABMQAAAAACMgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAABMQAAAAAAMgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAADMQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAACMQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAADMQAAAAACMgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAACMQAAAAAAMgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAACMQAAAAACMgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -9,-5: ind: -9,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAAALwAAAAADLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAACLwAAAAACLwAAAAAALwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAABLwAAAAACLwAAAAADLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAABLwAAAAABLwAAAAACLwAAAAADLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAACLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAACLwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAADLwAAAAABLwAAAAABLwAAAAADLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAAALwAAAAACLwAAAAADLwAAAAABLwAAAAACLwAAAAABLwAAAAADLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAACLwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAABLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAABLwAAAAACLwAAAAABLwAAAAABLwAAAAADLwAAAAADLwAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAAALwAAAAABLwAAAAACLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAABLwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAAALwAAAAADLwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAACLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAABLwAAAAAALwAAAAACLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAAALwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAACLwAAAAADLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAACLwAAAAABLwAAAAABLwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAABLwAAAAAALwAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAABLwAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAADLwAAAAABLwAAAAAALwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAALwAAAAADLwAAAAACLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAABLwAAAAAALwAAAAABLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAADLwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAADLwAAAAACLwAAAAAC version: 6 -8,-6: ind: -8,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADLwAAAAACLwAAAAABLwAAAAADLwAAAAADLwAAAAABLwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADLwAAAAABLwAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAACLwAAAAABLwAAAAAALwAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAAC version: 6 -9,-6: ind: -9,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAAALwAAAAAA version: 6 - type: Broadphase - type: Physics @@ -15828,6 +15827,106 @@ entities: id: LoadingAreaGreyscale decals: 229: 7,3 + - node: + zIndex: 9 + color: '#180037BF' + id: MarkupSquare + decals: + 18690: -4,-27 + 18691: -3,-27 + 18692: -2,-27 + 18693: -2,-28 + 18694: -3,-28 + 18695: -4,-28 + 18696: -4,-29 + 18697: -3,-29 + 18698: -2,-29 + 18699: -1,-29 + 18700: 0,-29 + 18701: 0,-28 + 18702: -1,-28 + 18703: -1,-27 + 18704: 0,-27 + 18705: 1,-27 + 18706: 1,-26 + 18707: 2,-26 + 18708: 2,-25 + 18709: 1,-25 + 18710: 1,-24 + 18711: 1,-23 + 18712: 0,-23 + 18713: -2,-23 + 18714: -1,-22 + 18715: -1,-23 + 18716: -2,-22 + 18717: -2,-21 + 18718: -1,-21 + 18719: 0,-21 + 18720: 0,-22 + 18721: -3,-21 + 18722: -3,-22 + 18723: -4,-22 + 18724: -4,-21 + 18725: -4,-23 + 18726: -3,-23 + 18727: -3,-24 + 18728: -4,-24 + 18729: -4,-25 + 18730: -3,-25 + 18731: -3,-26 + 18732: -4,-26 + 18733: -4,-30 + 18734: -4,-31 + 18735: -3,-31 + 18736: -3,-30 + 18737: -2,-30 + 18738: -2,-31 + 18739: -1,-31 + 18740: -1,-30 + 18741: -4,-34 + 18742: -4,-35 + 18743: -4,-36 + 18744: -3,-36 + 18745: -3,-35 + 18746: -3,-34 + 18747: -2,-34 + 18748: -2,-35 + 18749: -2,-36 + 18750: -1,-36 + 18751: -1,-35 + 18752: -1,-34 + 18753: 0,-35 + 18754: 0,-36 + 18755: 4,-36 + 18756: 4,-35 + 18757: 4,-34 + 18758: 5,-34 + 18759: 5,-35 + 18760: 5,-36 + 18761: 4,-32 + 18762: 3,-32 + 18763: 3,-31 + 18764: 4,-31 + 18765: 5,-32 + 18766: 5,-31 + 18767: 5,-30 + 18768: 4,-30 + 18769: 5,-29 + 18770: 5,-28 + 18771: 6,-28 + 18772: 6,-29 + 18773: 7,-29 + 18774: 7,-28 + 18775: 8,-28 + 18776: 8,-29 + 18777: 8,-27 + 18778: 7,-27 + 18779: 6,-27 + 18780: 6,-26 + 18781: 7,-26 + 18782: 8,-26 + 18783: 6,-25 + 18784: 4,-21 - node: zIndex: 2 color: '#FFFFFF0F' @@ -16058,7 +16157,6 @@ entities: decals: 218: 14,-8 227: 14,-1 - 1311: -62,-35 4450: -33,4 7156: -94,7 16032: 29,-34 @@ -16098,7 +16196,6 @@ entities: decals: 219: 12,-8 226: 12,-1 - 1312: -64,-35 4449: -53,4 6806: -101,-66 7153: -100,7 @@ -16132,7 +16229,6 @@ entities: decals: 217: 14,-9 225: 14,-2 - 1313: -62,-37 4448: -33,3 7154: -94,5 16028: 29,-26 @@ -16183,7 +16279,6 @@ entities: decals: 216: 12,-9 224: 12,-2 - 1314: -64,-37 4447: -53,3 7155: -100,5 16030: 28,-35 @@ -16440,7 +16535,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1310: -62,-36 5529: -31,27 5530: -31,26 5531: -31,25 @@ -16548,7 +16642,6 @@ entities: 204: 11,2 220: 13,-8 223: 13,-1 - 1309: -63,-35 4469: -52,4 4470: -51,4 4471: -51,4 @@ -16697,7 +16790,6 @@ entities: 214: 11,0 221: 13,-9 222: 13,-2 - 1308: -63,-37 4451: -34,3 4452: -35,3 4453: -36,3 @@ -16831,7 +16923,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1307: -64,-36 5535: -27,25 5536: -27,26 5537: -27,27 @@ -21167,6 +21258,12 @@ entities: id: WoodTrimThinInnerNwWhite decals: 18120: -23,-41 + - node: + zIndex: 10 + color: '#A88661FF' + id: WoodTrimThinInnerNwWhite + decals: + 18689: -3.5901597,-3.4710388 - node: color: '#0000003F' id: WoodTrimThinInnerSe @@ -21743,6 +21840,20 @@ entities: 17836: -62,-95 18060: -30,-41 18061: -29,-41 + - node: + zIndex: 10 + color: '#A88661FF' + id: WoodTrimThinLineNWhite + decals: + 18686: -4.5646524,-3.453803 + 18687: -3.434865,-3.453803 + - node: + zIndex: 10 + angle: 0.5235987755982988 rad + color: '#A88661FF' + id: WoodTrimThinLineNWhite + decals: + 18688: -3.7982793,-4.208308 - node: color: '#0000003F' id: WoodTrimThinLineS @@ -22273,12 +22384,28 @@ entities: id: WoodTrimThinLineWWhite decals: 18119: -23,-42 + - node: + zIndex: 10 + color: '#A88661FF' + id: WoodTrimThinLineWWhite + decals: + 18683: -3.5983872,-4.4349723 + 18684: -3.5983872,-3.4984019 + 18685: -3.5983872,-2.5469646 - node: angle: 1.5707963267948966 rad color: '#FFFFFF7F' id: arrow decals: 6741: -118,-13 + - node: + cleanable: True + zIndex: 5 + angle: 0.5235987755982988 rad + color: '#FFFFFFFF' + id: body + decals: + 18785: -0.47711682,-3.2073233 - node: cleanable: True zIndex: 20 @@ -22287,6 +22414,14 @@ entities: id: body decals: 5457: 22.214687,43.96891 + - node: + cleanable: True + zIndex: 4 + angle: 1.3089969389957472 rad + color: '#FFFFFFFF' + id: body + decals: + 18807: -63.93258,6.8331294 - node: zIndex: 1 color: '#2B4C1B7F' @@ -22312,6 +22447,30 @@ entities: id: dot decals: 18209: -32.127113,-34.433506 + - node: + cleanable: True + zIndex: 4 + angle: 0.5235987755982988 rad + color: '#8000007F' + id: dot + decals: + 18790: -1.449548,-3.2598586 + 18791: -0.26029706,-3.9288378 + 18792: 0.111344814,-3.0368652 + 18793: -0.6913998,-4.2558947 + 18794: -0.9143841,-3.3490558 + 18795: -0.20083356,-2.2489567 + 18796: -0.8697878,-3.140929 + 18797: -0.096775055,-3.5869148 + 18798: -0.84005606,-3.5125842 + 18799: 0.48298526,-3.6166472 + 18800: 0.022150755,-2.947668 + 18801: -0.26029706,-2.8138728 + 18802: -0.95898175,-2.5908794 + 18803: -0.48328137,-3.0814643 + 18804: -0.067043304,-2.6800766 + 18805: -0.84005606,-3.52745 + 18806: -0.8103256,-3.899105 - node: cleanable: True color: '#854218B2' @@ -22665,6 +22824,16 @@ entities: 18206: -31.566444,-37.756187 18207: -31.720608,-37.606422 18208: -31.799892,-37.5844 + - node: + cleanable: True + zIndex: 4 + angle: 0.5235987755982988 rad + color: '#8000007F' + id: smallbrush + decals: + 18787: -0.23056531,-3.4531193 + 18788: -0.9441159,-3.0368652 + 18789: -0.1116395,-2.5165482 - node: cleanable: True color: '#854218B2' @@ -22753,6 +22922,14 @@ entities: 18660: 5.410325,-20.68206 18661: 5.2914,-21.499702 18662: 5.677906,-22.421406 + - node: + cleanable: True + zIndex: 4 + angle: 0.5235987755982988 rad + color: '#8000007F' + id: splatter + decals: + 18786: -0.31975937,-3.164917 - node: cleanable: True color: '#854218B2' @@ -26635,7 +26812,8 @@ entities: 31,1: 0: 19921 31,2: - 0: 65535 + 0: 61183 + 2: 4352 31,3: 0: 65522 31,4: @@ -33081,7 +33259,7 @@ entities: - 5607 - 5602 - 6501 - - 30378 + - 30343 - 5591 - 5572 - uid: 6496 @@ -33368,7 +33546,7 @@ entities: parent: 2 - type: DeviceList devices: - - 24002 + - 24755 - 12323 - 12322 - 12315 @@ -36685,7 +36863,7 @@ entities: - type: DeviceNetwork deviceLists: - 17527 - - uid: 24002 + - uid: 24755 components: - type: Transform pos: -0.5,-24.5 @@ -41052,6 +41230,16 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 183 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 - uid: 243 components: - type: Transform @@ -41247,16 +41435,6 @@ entities: - type: Transform pos: -21.5,19.5 parent: 2 - - uid: 5598 - components: - - type: Transform - pos: 9.5,-24.5 - parent: 2 - - uid: 5802 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 2 - uid: 6649 components: - type: Transform @@ -74373,22 +74551,119 @@ entities: - type: Transform pos: -0.51618373,-7.9076514 parent: 2 +- proto: CandleBlackInfinite + entities: + - uid: 15024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.948853,39.578526 + parent: 2 - proto: CandleBlackSmallInfinite entities: + - uid: 12299 + components: + - type: Transform + pos: -44.4571,-28.390425 + parent: 2 + - uid: 24751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.1791534,-4.443526 + parent: 2 - uid: 28540 components: - type: Transform pos: -137.78702,32.43686 parent: 32362 + - uid: 32384 + components: + - type: Transform + pos: 41.203655,-60.279335 + parent: 2 +- proto: CandleBlueInfinite + entities: + - uid: 12300 + components: + - type: Transform + pos: -44.650352,-28.271496 + parent: 2 + - type: PointLight + energy: 2 + radius: 10 - proto: CandleBlueSmallInfinite entities: + - uid: 18232 + components: + - type: Transform + pos: 48.31001,-53.229427 + parent: 2 - uid: 30230 components: - type: Transform pos: 151.07954,50.12855 parent: 32370 + - uid: 32382 + components: + - type: Transform + pos: 52.63647,-56.12375 + parent: 2 +- proto: CandleGreenSmallInfinite + entities: + - uid: 12284 + components: + - type: Transform + pos: -33.453777,15.519768 + parent: 2 - proto: CandleInfinite entities: + - uid: 5598 + components: + - type: Transform + pos: 53.543274,-56.227814 + parent: 2 + - type: PointLight + energy: 2 + radius: 15 + - uid: 12293 + components: + - type: Transform + pos: -40.6715,15.527386 + parent: 2 + - type: PointLight + radius: 10 + - uid: 12295 + components: + - type: Transform + pos: -61.51081,6.670691 + parent: 2 + - type: PointLight + radius: 3 + - uid: 12298 + components: + - type: Transform + pos: -48.344334,-23.346764 + parent: 2 + - type: PointLight + energy: 2 + radius: 10 + - uid: 15022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.278503,32.824062 + parent: 2 + - type: PointLight + radius: 10 + - uid: 18234 + components: + - type: Transform + pos: 26.655678,29.032856 + parent: 2 + - type: PointLight + energy: 2 + radius: 10 - uid: 23041 components: - type: Transform @@ -74406,6 +74681,11 @@ entities: parent: 2 - type: PointLight energy: 2 + - uid: 24724 + components: + - type: Transform + pos: 0.6279559,-46.486813 + parent: 2 - uid: 26435 components: - type: Transform @@ -74420,6 +74700,16 @@ entities: energy: 3 color: '#FF7247FF' radius: 5 + - uid: 30724 + components: + - type: Transform + pos: -2.8881762,-4.8000975 + parent: 2 + - uid: 31363 + components: + - type: Transform + pos: 1.1553941,-27.105103 + parent: 2 - uid: 32256 components: - type: Transform @@ -74454,6 +74744,39 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-15.5 parent: 2 +- proto: CandlePurpleInfinite + entities: + - uid: 12212 + components: + - type: Transform + pos: 41.471237,-60.517193 + parent: 2 + - type: PointLight + radius: 15 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 15023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.575817,32.6754 + parent: 2 + - uid: 30725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.1854887,-5.2014847 + parent: 2 + - uid: 31303 + components: + - type: Transform + pos: -6.0653157,-8.412308 + parent: 2 + - uid: 32383 + components: + - type: Transform + pos: 52.889187,-56.361607 + parent: 2 - proto: CandleRedInfinite entities: - uid: 9458 @@ -74464,8 +74787,32 @@ entities: - type: PointLight energy: 3 radius: 5 + - uid: 12282 + components: + - type: Transform + pos: -33.20106,15.66843 + parent: 2 + - type: PointLight + radius: 10 + - uid: 19746 + components: + - type: Transform + pos: 19.683697,27.501637 + parent: 2 + - type: PointLight + radius: 10 + - uid: 30749 + components: + - type: Transform + pos: -6.9572544,-9.347134 + parent: 2 - proto: CandleRedSmallInfinite entities: + - uid: 18233 + components: + - type: Transform + pos: -48.552456,-23.465693 + parent: 2 - uid: 19116 components: - type: Transform @@ -74495,6 +74842,16 @@ entities: energy: 2.5 color: '#FF8227FF' radius: 5 + - uid: 30750 + components: + - type: Transform + pos: -6.7045383,-9.495796 + parent: 2 + - uid: 31364 + components: + - type: Transform + pos: 2.8018684,-31.982037 + parent: 2 - proto: CapacitorStockPart entities: - uid: 17198 @@ -76883,6 +77240,62 @@ entities: parent: 1364 - type: Physics canCollide: False +- proto: CarvedPumpkin + entities: + - uid: 12302 + components: + - type: Transform + pos: -37.47497,15.822351 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: 53.15677,-55.70198 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: -23.50174,38.760883 + parent: 2 + - uid: 19628 + components: + - type: Transform + pos: 25.734009,31.549416 + parent: 2 + - uid: 24729 + components: + - type: Transform + pos: -44.513,-24.254078 + parent: 2 + - uid: 30722 + components: + - type: Transform + pos: -7.378721,-1.4693046 + parent: 2 + - uid: 32378 + components: + - type: Transform + pos: 2.8385987,-5.97722 + parent: 2 +- proto: CarvedPumpkinLarge + entities: + - uid: 30741 + components: + - type: Transform + pos: -6.243704,-8.737619 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 30742 + components: + - type: Transform + pos: -6.63021,-8.365964 + parent: 2 + - uid: 32381 + components: + - type: Transform + pos: 8.515663,-50.369476 + parent: 2 - proto: Catwalk entities: - uid: 561 @@ -81840,23 +82253,12 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - - uid: 183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 2 - uid: 185 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 2 - - uid: 186 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 2 - uid: 187 components: - type: Transform @@ -81869,22 +82271,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 2 - - uid: 193 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 2 - uid: 200 components: - type: Transform @@ -81903,12 +82289,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 - - uid: 1107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 2 - uid: 1230 components: - type: Transform @@ -81992,29 +82372,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-11.5 parent: 2 - - uid: 11622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 2 - uid: 12153 components: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 12306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 2 - - uid: 12307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-25.5 - parent: 2 - uid: 12886 components: - type: Transform @@ -82042,11 +82404,6 @@ entities: - type: Transform pos: 17.5,-53.5 parent: 2 - - uid: 13200 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 2 - uid: 18261 components: - type: Transform @@ -82071,7 +82428,24 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-3.5 parent: 2 - - uid: 18995 + - uid: 20112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 20113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 2 + - uid: 20115 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 20116 components: - type: Transform rot: 1.5707963267948966 rad @@ -82472,11 +82846,6 @@ entities: parent: 2 - proto: CheapRollerBed entities: - - uid: 8060 - components: - - type: Transform - pos: -44.600155,-28.46516 - parent: 2 - uid: 8061 components: - type: Transform @@ -82562,11 +82931,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.49292,-7.4166183 parent: 2 - - uid: 19746 - components: - - type: Transform - pos: 8.489157,-50.40653 - parent: 2 - uid: 19822 components: - type: Transform @@ -87835,15 +88199,15 @@ entities: parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 9423 + - uid: 5802 components: - type: Transform - pos: -58.49645,-41.33853 + pos: 36.528572,9.786543 parent: 2 - - uid: 12208 + - uid: 9423 components: - type: Transform - pos: 36.528572,9.786543 + pos: -58.49645,-41.33853 parent: 2 - uid: 19736 components: @@ -88140,6 +88504,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingHeadHatRedwizard + entities: + - uid: 31360 + components: + - type: Transform + pos: 0.43430185,-6.8016906 + parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: - uid: 8595 @@ -88211,11 +88582,31 @@ entities: - type: Transform pos: -53.48,15 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null - type: Item heldPrefix: off inhandVisuals: {} - missingComponents: - - PressureProtection - proto: ClothingHeadHelmetRiot entities: - uid: 1716 @@ -88537,18 +88928,35 @@ entities: - type: Transform pos: -53.47,14.531252 parent: 2 - - type: ClothingSpeedModifier - sprintModifier: 0.65 - walkModifier: 0.65 - - type: Armor - modifiers: - coefficients: - Blunt: 0.3 - Slash: 0.3 - Piercing: 0.3 - Heat: 0.6 - Radiation: 0 - Caustic: 0.75 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color]. + priority: 0 + component: Armor + title: null - proto: ClothingOuterArmorReflective entities: - uid: 5940 @@ -88618,6 +89026,12 @@ entities: - type: Transform pos: 14.507817,42.477192 parent: 2 + - uid: 32391 + components: + - type: Transform + parent: 16860 + - type: Physics + canCollide: False - proto: ClothingOuterHardsuitEngineering entities: - uid: 28593 @@ -88773,6 +89187,13 @@ entities: rot: -2.321287905152458 rad pos: -83.561134,-88.517845 parent: 2 +- proto: ClothingOuterWizardRed + entities: + - uid: 31361 + components: + - type: Transform + pos: 0.46159625,-7.8509617 + parent: 2 - proto: ClothingShoesBootsCombat entities: - uid: 28519 @@ -89580,6 +90001,167 @@ entities: rot: -1.5707963267948966 rad pos: 137.5,36.5 parent: 2 +- proto: Cobweb1 + entities: + - uid: 8156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 12170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + pos: -23.5,39.5 + parent: 2 + - uid: 16832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-60.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-59.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 20173 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 25121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 31356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 31358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 32394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-35.5 + parent: 2 + - uid: 32395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-36.5 + parent: 2 + - uid: 32396 + components: + - type: Transform + pos: -68.5,-31.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 11553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,32.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-56.5 + parent: 2 + - uid: 22637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 + - uid: 25116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 31355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 2 + - uid: 31357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 32397 + components: + - type: Transform + pos: -61.5,-31.5 + parent: 2 + - uid: 32398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-35.5 + parent: 2 - proto: CombatKnife entities: - uid: 25438 @@ -91143,6 +91725,13 @@ entities: - type: Transform pos: -35.5,-16.5 parent: 2 +- proto: CrateCoffin + entities: + - uid: 197 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 - proto: CrateElectrical entities: - uid: 12650 @@ -92211,6 +92800,39 @@ entities: - type: Transform pos: -58.27845,-36.377506 parent: 2 +- proto: CrystalBlue + entities: + - uid: 230 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 24753 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 32399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,35.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 24757 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 32400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,36.5 + parent: 2 - proto: CrystalSpawner entities: - uid: 29334 @@ -93394,6 +94016,12 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-27.5 parent: 2 + - uid: 5937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 2 - uid: 7047 components: - type: Transform @@ -93607,12 +94235,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-17.5 parent: 2 - - uid: 12209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 2 - uid: 13183 components: - type: Transform @@ -93889,6 +94511,12 @@ entities: - type: Transform pos: -20.5,-5.5 parent: 2 + - uid: 25141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-44.5 + parent: 2 - uid: 28732 components: - type: Transform @@ -94154,12 +94782,6 @@ entities: - type: Transform pos: -11.5,-10.5 parent: 28663 - - uid: 30339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-44.5 - parent: 2 - uid: 30352 components: - type: Transform @@ -94356,6 +94978,11 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,9.5 parent: 2 + - uid: 6119 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 - uid: 7056 components: - type: Transform @@ -94412,11 +95039,6 @@ entities: - type: Transform pos: -2.5,8.5 parent: 2 - - uid: 12210 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 2 - uid: 12311 components: - type: Transform @@ -99236,6 +99858,30 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-6.5 parent: 2 + - uid: 25142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-44.5 + parent: 2 + - uid: 25143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-44.5 + parent: 2 + - uid: 25560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-44.5 + parent: 2 + - uid: 25562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 2 - uid: 28726 components: - type: Transform @@ -99397,68 +100043,44 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 28663 - - uid: 29729 - components: - - type: Transform - pos: -81.5,-9.5 - parent: 2 - - uid: 30341 - components: - - type: Transform - pos: -19.5,38.5 - parent: 2 - - uid: 30342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-44.5 - parent: 2 - - uid: 30343 + - uid: 29706 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-44.5 + pos: -20.5,-44.5 parent: 2 - - uid: 30344 + - uid: 29729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,37.5 + pos: -81.5,-9.5 parent: 2 - - uid: 30345 + - uid: 30149 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-44.5 + pos: -19.5,-44.5 parent: 2 - - uid: 30346 + - uid: 30338 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-44.5 + pos: -18.5,-44.5 parent: 2 - - uid: 30348 + - uid: 30339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-44.5 + pos: -17.5,-43.5 parent: 2 - - uid: 30349 + - uid: 30341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-44.5 + pos: -19.5,38.5 parent: 2 - - uid: 30350 + - uid: 30344 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-44.5 - parent: 2 - - uid: 30351 - components: - - type: Transform - pos: -17.5,-43.5 + pos: -16.5,37.5 parent: 2 - uid: 30353 components: @@ -101293,7 +101915,7 @@ entities: - uid: 531 components: - type: Transform - pos: 3.0945368,-4.383413 + pos: 4.5701075,-4.990831 parent: 2 - proto: EmergencyLight entities: @@ -101893,6 +102515,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-50.5 parent: 2 + - uid: 6120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 2 - uid: 6127 components: - type: Transform @@ -101933,12 +102561,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-33.5 parent: 2 - - uid: 12211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-19.5 - parent: 2 - uid: 14215 components: - type: Transform @@ -106088,6 +106710,16 @@ entities: - type: InsideEntityStorage - proto: FloorAzureWaterEntity entities: + - uid: 193 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 - uid: 978 components: - type: Transform @@ -106106,6 +106738,11 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,34.5 parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 - uid: 1160 components: - type: Transform @@ -106132,10 +106769,35 @@ entities: - type: Transform pos: -30.5,-41.5 parent: 2 - - uid: 5937 + - uid: 6188 components: - type: Transform - pos: 6.5,-20.5 + pos: 8.5,-22.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: 8.5,-21.5 parent: 2 - uid: 9887 components: @@ -106310,46 +106972,6 @@ entities: - type: Transform pos: -13.5,-38.5 parent: 2 - - uid: 12170 - components: - - type: Transform - pos: 8.5,-23.5 - parent: 2 - - uid: 12172 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 2 - - uid: 12243 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 2 - - uid: 12244 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 12281 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 2 - - uid: 12285 - components: - - type: Transform - pos: 7.5,-22.5 - parent: 2 - - uid: 12293 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 12295 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 - uid: 16005 components: - type: Transform @@ -111078,7 +111700,7 @@ entities: - type: Transform pos: 125.5,-36.5 parent: 32364 - - uid: 30714 + - uid: 30346 components: - type: Transform rot: -1.5707963267948966 rad @@ -111096,7 +111718,7 @@ entities: parent: 2 - proto: FloraRockSolid02 entities: - - uid: 12304 + - uid: 20111 components: - type: Transform rot: -1.5707963267948966 rad @@ -111312,7 +111934,7 @@ entities: - type: Transform pos: 116.5,-46.5 parent: 32364 - - uid: 30722 + - uid: 30379 components: - type: Transform rot: -1.5707963267948966 rad @@ -111330,7 +111952,7 @@ entities: parent: 2 - proto: FloraTree01 entities: - - uid: 12242 + - uid: 6122 components: - type: Transform rot: 3.141592653589793 rad @@ -111949,12 +112571,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.121721,-3.7956839 parent: 2 - - uid: 12294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.033206,-25.351442 - parent: 2 - uid: 24120 components: - type: Transform @@ -112555,17 +113171,6 @@ entities: - type: Transform pos: 38.5,23.5 parent: 28663 - - uid: 30379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.899582,-34.502224 - parent: 2 - - uid: 30725 - components: - - type: Transform - pos: 2.030962,-25.392973 - parent: 2 - proto: FloraTree03 entities: - uid: 895 @@ -112574,12 +113179,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.300066,-7.1198254 parent: 2 - - uid: 24003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.1150346,-24.18086 - parent: 2 - uid: 24092 components: - type: Transform @@ -112980,6 +113579,12 @@ entities: - type: Transform pos: -62.5,-56.5 parent: 2 + - uid: 24756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.1150346,-24.18086 + parent: 2 - uid: 26855 components: - type: Transform @@ -114606,20 +115211,8 @@ entities: - type: Transform pos: 37.5,21.5 parent: 28663 - - uid: 30724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.65892935,-28.233418 - parent: 2 - proto: FloraTreeLarge01 entities: - - uid: 12324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.6737263,-28.01084 - parent: 2 - uid: 24084 components: - type: Transform @@ -114770,12 +115363,6 @@ entities: parent: 28663 - proto: FloraTreeLarge04 entities: - - uid: 12212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.3024144,-35.438652 - parent: 2 - uid: 24077 components: - type: Transform @@ -114851,12 +115438,6 @@ entities: parent: 28663 - proto: FloraTreeLarge05 entities: - - uid: 12301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.092622,-22.29292 - parent: 2 - uid: 24075 components: - type: Transform @@ -114896,12 +115477,6 @@ entities: parent: 28663 - proto: FloraTreeLarge06 entities: - - uid: 12282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.3899546,-31.53161 - parent: 2 - uid: 24088 components: - type: Transform @@ -115005,6 +115580,13 @@ entities: rot: 3.141592653589793 rad pos: 36.5,22.5 parent: 28663 +- proto: FloraTreeStump + entities: + - uid: 32379 + components: + - type: Transform + pos: 1.5114837,-26.384941 + parent: 2 - proto: FoamCutlass entities: - uid: 10726 @@ -115461,11 +116043,6 @@ entities: parent: 2 - proto: FoodKebabSkewer entities: - - uid: 739 - components: - - type: Transform - pos: -7.511551,-2.1197176 - parent: 2 - uid: 23037 components: - type: Transform @@ -115586,13 +116163,6 @@ entities: - type: Transform pos: 119.28426,25.787682 parent: 2 -- proto: FoodMeatCooked - entities: - - uid: 230 - components: - - type: Transform - pos: -0.74634326,-4.4877295 - parent: 2 - proto: FoodMeatRotten entities: - uid: 9979 @@ -115764,11 +116334,6 @@ entities: - type: Transform pos: 95.491554,34.7701 parent: 2 - - uid: 19628 - components: - - type: Transform - pos: -0.7314774,-4.443131 - parent: 2 - uid: 19721 components: - type: Transform @@ -116862,6 +117427,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 8825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8834 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9495 components: - type: Transform @@ -117753,29 +118341,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12300 - components: - - type: Transform - pos: -66.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12370 components: - type: Transform @@ -136849,7 +137414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30373 + - uid: 30342 components: - type: Transform rot: -1.5707963267948966 rad @@ -139459,6 +140024,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 8681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 10089 components: - type: Transform @@ -139750,14 +140323,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12350 components: - type: Transform @@ -143106,7 +143671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30378 + - uid: 30343 components: - type: Transform rot: 1.5707963267948966 rad @@ -143380,7 +143945,17 @@ entities: - type: Transform pos: 1.5,-0.5 parent: 31171 - - uid: 31303 + - uid: 31456 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 31434 + - uid: 31510 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 31488 + - uid: 32385 components: - type: Transform pos: -142.5,27.5 @@ -143397,7 +143972,7 @@ entities: - Damageable - Pullable - Construction - - uid: 31355 + - uid: 32386 components: - type: Transform pos: 124.5,-31.5 @@ -143413,7 +143988,7 @@ entities: - PointLight - Damageable - Pullable - - uid: 31356 + - uid: 32387 components: - type: Transform pos: 98.5,-27.5 @@ -143429,7 +144004,7 @@ entities: - PointLight - Damageable - Pullable - - uid: 31357 + - uid: 32388 components: - type: Transform pos: 107.5,-37.5 @@ -143445,7 +144020,7 @@ entities: - PointLight - Damageable - Pullable - - uid: 31358 + - uid: 32389 components: - type: Transform pos: 149.5,52.5 @@ -143461,7 +144036,7 @@ entities: - PointLight - Damageable - Pullable - - uid: 31359 + - uid: 32390 components: - type: Transform pos: 69.5,64.5 @@ -143477,16 +144052,6 @@ entities: - PointLight - Damageable - Pullable - - uid: 31456 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 31434 - - uid: 31510 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 31488 - proto: Grille entities: - uid: 44 @@ -149888,8 +150453,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -149906,10 +150471,10 @@ entities: showEnts: False occludes: True ents: - - 26681 - - 26680 - - 26679 - 30516 + - 26679 + - 26680 + - 26681 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -150077,6 +150642,13 @@ entities: - type: Transform pos: 113.4375,8.53125 parent: 2 +- proto: HeadSkeleton + entities: + - uid: 31359 + components: + - type: Transform + pos: 0.46441078,-7.372396 + parent: 2 - proto: HeadVulpkanin entities: - uid: 30282 @@ -150206,7 +150778,7 @@ entities: pos: -18.5,-29.5 parent: 2 - type: Door - secondsUntilStateChange: -15944.961 + secondsUntilStateChange: -20991.357 state: Closing - uid: 9988 components: @@ -151197,11 +151769,6 @@ entities: rot: 3.141592653589793 rad pos: 34.6153,-9.349173 parent: 2 - - uid: 6190 - components: - - type: Transform - pos: -61.579002,7.066582 - parent: 2 - uid: 6224 components: - type: Transform @@ -152106,22 +152673,6 @@ entities: canCollide: False - proto: LedLightTube entities: - - uid: 241 - components: - - type: Transform - parent: 53 - - type: LightBulb - color: '#00EEFFFF' - - type: Physics - canCollide: False - - uid: 11553 - components: - - type: Transform - parent: 11552 - - type: LightBulb - color: '#00EEFFFF' - - type: Physics - canCollide: False - uid: 14824 components: - type: Transform @@ -152164,22 +152715,6 @@ entities: color: '#FF00FFFF' - type: Physics canCollide: False - - uid: 18232 - components: - - type: Transform - parent: 18231 - - type: LightBulb - color: '#00EEFFFF' - - type: Physics - canCollide: False - - uid: 18234 - components: - - type: Transform - parent: 18233 - - type: LightBulb - color: '#FF00F7FF' - - type: Physics - canCollide: False - uid: 19298 components: - type: Transform @@ -152196,38 +152731,6 @@ entities: lightRadius: 5 - type: Physics canCollide: False - - uid: 20113 - components: - - type: Transform - parent: 20112 - - type: LightBulb - color: '#FF00F7FF' - - type: Physics - canCollide: False - - uid: 20115 - components: - - type: Transform - parent: 20114 - - type: LightBulb - color: '#00EEFFFF' - - type: Physics - canCollide: False - - uid: 20117 - components: - - type: Transform - parent: 20116 - - type: LightBulb - color: '#FF00F7FF' - - type: Physics - canCollide: False - - uid: 20119 - components: - - type: Transform - parent: 20118 - - type: LightBulb - color: '#FF00F7FF' - - type: Physics - canCollide: False - uid: 20244 components: - type: Transform @@ -152352,6 +152855,14 @@ entities: rot: -1.9722220547535925 rad pos: 100.61597,-1.2934108 parent: 2 +- proto: LegionnaireBonfire + entities: + - uid: 30350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 - proto: Lighter entities: - uid: 19895 @@ -152379,6 +152890,11 @@ entities: parent: 2 - proto: LightTree01 entities: + - uid: 20114 + components: + - type: Transform + pos: -2.8249035,-27.254335 + parent: 2 - uid: 27937 components: - type: Transform @@ -152453,6 +152969,11 @@ entities: parent: 2 - proto: LightTree02 entities: + - uid: 12210 + components: + - type: Transform + pos: -2.091611,-21.672083 + parent: 2 - uid: 27927 components: - type: Transform @@ -152545,8 +153066,18 @@ entities: rot: 1.5707963267948966 rad pos: 125.5,57.5 parent: 2 + - uid: 31362 + components: + - type: Transform + pos: -0.17910457,-34.33771 + parent: 2 - proto: LightTree04 entities: + - uid: 8152 + components: + - type: Transform + pos: 7.8777237,-25.180101 + parent: 2 - uid: 27951 components: - type: Transform @@ -152715,7 +153246,7 @@ entities: - Pressed: Toggle 30148: - Pressed: Toggle - 30149: + 8155: - Pressed: Toggle 30150: - Pressed: Toggle @@ -153941,8 +154472,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -153959,15 +154490,15 @@ entities: showEnts: False occludes: True ents: - - 21787 - - 21786 - - 21785 - - 21784 - - 26670 - - 21779 - - 21777 - - 21776 - 21774 + - 21776 + - 21777 + - 21779 + - 26670 + - 21784 + - 21785 + - 21786 + - 21787 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -155132,6 +155663,45 @@ entities: showEnts: False occludes: False ent: 16392 + - uid: 16860 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 32391 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - proto: MaterialBones1 entities: - uid: 19776 @@ -164372,11 +164942,93 @@ entities: parent: 2 - proto: PlushieGhost entities: + - uid: 7975 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + pos: -58.47163,31.05486 + parent: 2 - uid: 16572 components: - type: Transform pos: -36.523247,-42.56177 parent: 2 + - uid: 31365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.121448,-9.087515 + parent: 2 + - uid: 31366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.2106419,-0.04407358 + parent: 2 + - uid: 31367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.9099994,-3.9513936 + parent: 2 + - uid: 31368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.213614,-6.318126 + parent: 2 + - uid: 31369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.398607,-25.742226 + parent: 2 + - uid: 31370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.107591,-29.782604 + parent: 2 + - uid: 31371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.450043,28.240562 + parent: 2 + - uid: 31372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.997906,38.1986 + parent: 2 + - uid: 31373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.27735,9.77187 + parent: 2 + - uid: 31374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.71679,-23.314823 + parent: 2 + - uid: 31375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.17047,-41.828823 + parent: 2 + - uid: 31376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.80238,-57.316868 + parent: 2 - proto: PlushieHampter entities: - uid: 8485 @@ -164538,6 +165190,11 @@ entities: - type: Transform pos: 13.481084,-39.35396 parent: 2 + - uid: 32377 + components: + - type: Transform + pos: 3.019547,-2.8880146 + parent: 2 - proto: PortableFlasher entities: - uid: 2573 @@ -164858,7 +165515,7 @@ entities: - type: Transform pos: 40.008095,20.430944 parent: 2 - - uid: 30715 + - uid: 30348 components: - type: Transform pos: -0.5,-24.5 @@ -164952,11 +165609,6 @@ entities: - type: Transform pos: 40.5,22.5 parent: 2 - - uid: 11226 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 2 - uid: 11227 components: - type: Transform @@ -165167,11 +165819,6 @@ entities: - type: Transform pos: -97.5,8.5 parent: 2 - - uid: 25116 - components: - - type: Transform - pos: 41.5,-60.5 - parent: 2 - uid: 25117 components: - type: Transform @@ -165541,12 +166188,6 @@ entities: - type: Transform pos: -56.5,17.5 parent: 2 - - uid: 544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 2 - uid: 546 components: - type: Transform @@ -165565,24 +166206,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-16.5 parent: 2 - - uid: 752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-17.5 - parent: 2 - - uid: 753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 2 - - uid: 790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 2 - uid: 841 components: - type: Transform @@ -165804,30 +166427,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,2.5 parent: 2 - - uid: 6119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 2 - - uid: 6120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 2 - - uid: 6121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 2 - - uid: 6122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,16.5 - parent: 2 - uid: 6123 components: - type: Transform @@ -165864,17 +166463,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-1.5 parent: 2 - - uid: 6188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,4.5 - parent: 2 - - uid: 6189 - components: - - type: Transform - pos: -61.5,8.5 - parent: 2 - uid: 6231 components: - type: Transform @@ -166184,58 +166772,12 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-29.5 parent: 2 - - uid: 8149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-29.5 - parent: 2 - - uid: 8150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-25.5 - parent: 2 - uid: 8151 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-25.5 parent: 2 - - uid: 8152 - components: - - type: Transform - pos: -48.5,-20.5 - parent: 2 - - uid: 8153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-28.5 - parent: 2 - - uid: 8154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-28.5 - parent: 2 - - uid: 8155 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 2 - - uid: 8156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-22.5 - parent: 2 - - uid: 8157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-16.5 - parent: 2 - uid: 8185 components: - type: Transform @@ -166317,12 +166859,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 - - uid: 8681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-22.5 - parent: 2 - uid: 8682 components: - type: Transform @@ -166371,18 +166907,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-24.5 parent: 2 - - uid: 8833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-28.5 - parent: 2 - - uid: 8834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-24.5 - parent: 2 - uid: 8835 components: - type: Transform @@ -166443,12 +166967,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-9.5 parent: 2 - - uid: 10882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 2 - uid: 10883 components: - type: Transform @@ -166528,6 +167046,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-17.5 parent: 2 + - uid: 12324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 - uid: 12530 components: - type: Transform @@ -166568,40 +167092,6 @@ entities: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 12718 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 12719 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 2 - - uid: 12720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-56.5 - parent: 2 - - uid: 12721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-56.5 - parent: 2 - - uid: 12722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-51.5 - parent: 2 - - uid: 12723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-51.5 - parent: 2 - uid: 12897 components: - type: Transform @@ -167075,28 +167565,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,32.5 parent: 2 - - uid: 16830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,33.5 - parent: 2 - - uid: 16831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,33.5 - parent: 2 - - uid: 16832 - components: - - type: Transform - pos: -22.5,39.5 - parent: 2 - - uid: 16833 - components: - - type: Transform - pos: -17.5,39.5 - parent: 2 - uid: 16890 components: - type: Transform @@ -167275,12 +167743,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,48.5 parent: 2 - - uid: 17592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,36.5 - parent: 2 - uid: 17594 components: - type: Transform @@ -167373,12 +167835,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,-25.5 parent: 2 - - uid: 20111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 2 - uid: 20151 components: - type: Transform @@ -167407,11 +167863,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 2 - - uid: 20173 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 2 - uid: 20174 components: - type: Transform @@ -167447,12 +167898,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,2.5 parent: 2 - - uid: 22637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,36.5 - parent: 2 - uid: 22693 components: - type: Transform @@ -167498,35 +167943,6 @@ entities: - type: Transform pos: 28.5,-45.5 parent: 2 - - uid: 25121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-60.5 - parent: 2 - - uid: 25122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-60.5 - parent: 2 - - uid: 25141 - components: - - type: Transform - pos: 44.5,-56.5 - parent: 2 - - uid: 25142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-53.5 - parent: 2 - - uid: 25143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-53.5 - parent: 2 - uid: 25163 components: - type: Transform @@ -167971,12 +168387,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-31.5 parent: 2 - - uid: 29706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-23.5 - parent: 2 - uid: 29714 components: - type: Transform @@ -168068,20 +168478,6 @@ entities: parent: 2 - proto: PoweredlightEmpty entities: - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 241 - - type: ApcPowerReceiver - powerLoad: 12 - uid: 1438 components: - type: Transform @@ -168133,25 +168529,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-53.5 parent: 2 - - uid: 11552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 2 - - type: PointLight - energy: 1 - color: '#00EEFFFF' - radius: 15 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 11553 - - type: ApcPowerReceiver - powerLoad: 12 - uid: 14370 components: - type: Transform @@ -168264,47 +168641,6 @@ entities: ent: 16372 - type: ApcPowerReceiver powerLoad: 12 - - uid: 18231 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 2 - - type: PointLight - energy: 1 - color: '#00EEFFFF' - radius: 15 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 18232 - - type: ApcPowerReceiver - powerLoad: 12 - - type: DamageOnInteract - isDamageActive: False - - uid: 18233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 2 - - type: PointLight - energy: 1 - color: '#FF00F7FF' - radius: 15 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 18234 - - type: ApcPowerReceiver - powerLoad: 12 - - type: DamageOnInteract - isDamageActive: False - uid: 19297 components: - type: Transform @@ -168343,78 +168679,6 @@ entities: ent: 19300 - type: ApcPowerReceiver powerLoad: 12 - - uid: 20112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 2 - - type: PointLight - energy: 1 - color: '#FF00F7FF' - radius: 15 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 20113 - - type: ApcPowerReceiver - powerLoad: 12 - - type: DamageOnInteract - isDamageActive: False - - uid: 20114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 - - type: PointLight - energy: 1 - color: '#00EEFFFF' - radius: 15 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 20115 - - type: ApcPowerReceiver - powerLoad: 12 - - uid: 20116 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - - type: PointLight - energy: 1 - color: '#FF00F7FF' - radius: 15 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 20117 - - type: ApcPowerReceiver - powerLoad: 12 - - uid: 20118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 20119 - - type: ApcPowerReceiver - powerLoad: 12 - uid: 20243 components: - type: Transform @@ -168484,30 +168748,6 @@ entities: parent: 2 - type: PointLight color: '#CFFFC0FF' - - uid: 15021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - uid: 15022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,25.5 - parent: 2 - - uid: 15023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,30.5 - parent: 2 - - uid: 15024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 2 - uid: 20495 components: - type: Transform @@ -168550,18 +168790,69 @@ entities: - type: Transform pos: -120.5,-42.5 parent: 2 - - uid: 12302 + - uid: 11226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 12718 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-35.5 parent: 2 - - uid: 12303 + - uid: 12719 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-35.5 parent: 2 + - uid: 12721 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-56.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-51.5 + parent: 2 - uid: 13517 components: - type: Transform @@ -168668,35 +168959,35 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-22.5 parent: 28663 - - uid: 30716 + - uid: 30349 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-24.5 parent: 2 - - uid: 30719 + - uid: 30351 components: - type: Transform pos: 5.5,-20.5 parent: 2 - - uid: 30720 + - uid: 30373 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 30742 + - uid: 30719 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 2 - - uid: 30749 + - uid: 30720 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-24.5 parent: 2 - - uid: 30750 + - uid: 30721 components: - type: Transform rot: -1.5707963267948966 rad @@ -168858,41 +169149,6 @@ entities: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 24724 - components: - - type: Transform - pos: 5.5,-72.5 - parent: 2 - - uid: 24729 - components: - - type: Transform - pos: 11.5,-72.5 - parent: 2 - - uid: 24751 - components: - - type: Transform - pos: -6.5,-72.5 - parent: 2 - - uid: 24753 - components: - - type: Transform - pos: 11.5,-63.5 - parent: 2 - - uid: 24755 - components: - - type: Transform - pos: 5.5,-63.5 - parent: 2 - - uid: 24756 - components: - - type: Transform - pos: -0.5,-63.5 - parent: 2 - - uid: 24757 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 2 - uid: 24893 components: - type: Transform @@ -168903,18 +169159,6 @@ entities: - type: Transform pos: 22.5,-48.5 parent: 2 - - uid: 25560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 2 - - uid: 25562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,18.5 - parent: 2 - uid: 29201 components: - type: Transform @@ -169487,12 +169731,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,23.5 parent: 2 - - uid: 7975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-33.5 - parent: 2 - uid: 8818 components: - type: Transform @@ -169654,12 +169892,66 @@ entities: - type: Transform pos: -36.5,-13.5 parent: 2 + - uid: 12243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 2 - uid: 12290 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-33.5 parent: 2 + - uid: 12296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-25.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-22.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-16.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-22.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-56.5 + parent: 2 - uid: 12947 components: - type: Transform @@ -169781,6 +170073,12 @@ entities: rot: 3.141592653589793 rad pos: 89.5,18.5 parent: 2 + - uid: 15021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-51.5 + parent: 2 - uid: 15082 components: - type: Transform @@ -169859,6 +170157,18 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,6.5 parent: 2 + - uid: 16382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 2 - uid: 16387 components: - type: Transform @@ -169918,6 +170228,17 @@ entities: rot: 3.141592653589793 rad pos: 1.5,27.5 parent: 2 + - uid: 16830 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,36.5 + parent: 2 - uid: 17031 components: - type: Transform @@ -182909,6 +183230,12 @@ entities: - type: Transform pos: -33.5,-87.5 parent: 2 + - uid: 25122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.1443405,-27.319437 + parent: 2 - uid: 27966 components: - type: Transform @@ -183119,11 +183446,10 @@ entities: rot: 3.141592653589793 rad pos: 86.5,19.5 parent: 2 - - uid: 30338 + - uid: 30345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.1443405,-27.319437 + pos: -1.3923616,-35.09589 parent: 2 - proto: ShadowTree02 entities: @@ -183486,6 +183812,11 @@ entities: rot: 3.141592653589793 rad pos: 86.5,27.5 parent: 2 + - uid: 30715 + components: + - type: Transform + pos: 2.130231,-25.100569 + parent: 2 - uid: 30903 components: - type: Transform @@ -183493,6 +183824,11 @@ entities: parent: 2 - proto: ShadowTree03 entities: + - uid: 6121 + components: + - type: Transform + pos: -3.0275815,-34.218784 + parent: 2 - uid: 22329 components: - type: Transform @@ -183804,12 +184140,17 @@ entities: parent: 2 - proto: ShadowTree04 entities: - - uid: 1155 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-22.5 parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 4.401136,-31.181753 + parent: 2 - uid: 22330 components: - type: Transform @@ -184114,7 +184455,7 @@ entities: parent: 2 - proto: ShadowTree05 entities: - - uid: 8825 + - uid: 753 components: - type: Transform rot: 3.141592653589793 rad @@ -184707,6 +185048,11 @@ entities: rot: 3.141592653589793 rad pos: 84.5,21.5 parent: 2 + - uid: 30714 + components: + - type: Transform + pos: -0.6535344,-27.95171 + parent: 2 - proto: ShardGlass entities: - uid: 9933 @@ -185338,6 +185684,12 @@ entities: - type: Transform pos: -38.5,1.5 parent: 2 + - uid: 8155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 - uid: 8494 components: - type: Transform @@ -185483,12 +185835,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 - - uid: 30149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 2 - uid: 30150 components: - type: Transform @@ -189835,10 +190181,10 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 7983 + - uid: 195 components: - type: Transform - pos: -3.5,-4.5 + pos: -3.5,-7.5 parent: 2 - uid: 7984 components: @@ -189937,6 +190283,55 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: SpiderWeb + entities: + - uid: 241 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + pos: 53.5,-60.5 + parent: 2 + - uid: 18995 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - uid: 32393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-36.5 + parent: 2 - proto: Spoon entities: - uid: 19723 @@ -196114,11 +196509,6 @@ entities: parent: 2 - proto: TableFancyRed entities: - - uid: 16020 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 2 - uid: 16352 components: - type: Transform @@ -196129,11 +196519,6 @@ entities: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 16382 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 2 - uid: 16383 components: - type: Transform @@ -196144,11 +196529,6 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 2 - - uid: 16385 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 2 - uid: 19618 components: - type: Transform @@ -196159,6 +196539,12 @@ entities: - type: Transform pos: -5.5,2.5 parent: 2 + - uid: 20119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 - uid: 22759 components: - type: Transform @@ -196193,6 +196579,18 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-16.5 parent: 28663 + - uid: 32375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 32376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 - proto: TableFrame entities: - uid: 31052 @@ -197565,6 +197963,11 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-30.5 parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 - uid: 8135 components: - type: Transform @@ -198370,6 +198773,12 @@ entities: - type: Transform pos: -75.5,1.5 parent: 2 + - uid: 8154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 2 - uid: 8464 components: - type: Transform @@ -198590,12 +198999,6 @@ entities: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 12296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-24.5 - parent: 2 - uid: 12882 components: - type: Transform @@ -200745,6 +201148,18 @@ entities: - type: Transform pos: -75.5,3.5 parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 12211 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 32380 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 - proto: VendingMachineMedical entities: - uid: 5557 @@ -200916,11 +201331,6 @@ entities: - type: Transform pos: -13.5,-52.5 parent: 2 - - uid: 16860 - components: - - type: Transform - pos: -16.5,36.5 - parent: 2 - uid: 16861 components: - type: Transform @@ -235519,7 +235929,7 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,21.5 parent: 2 - - uid: 12284 + - uid: 8060 components: - type: Transform rot: 1.5707963267948966 rad @@ -235639,13 +236049,13 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,1.5 parent: 28663 - - uid: 30721 + - uid: 30378 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-24.5 parent: 2 - - uid: 30741 + - uid: 30716 components: - type: Transform rot: -1.5707963267948966 rad @@ -235683,6 +236093,11 @@ entities: - type: Transform pos: -13.5,12.5 parent: 28663 + - uid: 32392 + components: + - type: Transform + pos: -64.5,-33.5 + parent: 2 - proto: WoodenSupportBeam entities: - uid: 29390 diff --git a/Resources/Maps/corvax_silly.yml b/Resources/Maps/corvax_silly.yml index fd6cc6bfc59..15c842e9313 100644 --- a/Resources/Maps/corvax_silly.yml +++ b/Resources/Maps/corvax_silly.yml @@ -11,6 +11,8 @@ tilemap: 15: FloorBar 21: FloorBrassReebe 22: FloorBrokenWood + 19: FloorCave + 13: FloorCaveDrought 28: FloorClown 29: FloorConcrete 32: FloorDark @@ -20,6 +22,7 @@ tilemap: 37: FloorDarkMono 41: FloorDarkPlastic 3: FloorDesert + 14: FloorDirt 46: FloorFlesh 47: FloorFreezer 1: FloorGlass @@ -27,12 +30,15 @@ tilemap: 54: FloorGrayConcrete 55: FloorGrayConcreteMono 5: FloorGrayConcreteOutside + 18: FloorGrayConcreteOutsideMono 6: FloorGrayConcreteOutsideSmooth 56: FloorGrayConcreteSmooth 61: FloorHydro + 17: FloorJungleAstroGrass 64: FloorKitchen 65: FloorLaundry 66: FloorLino + 11: FloorMetalDiamond 75: FloorOldConcrete 76: FloorOldConcreteMono 78: FloorPlanetDirt @@ -41,6 +47,8 @@ tilemap: 82: FloorReinforced 4: FloorRockVault 85: FloorShowroom + 25: FloorShuttleRed + 23: FloorShuttleWhite 96: FloorSteel 101: FloorSteelDiagonal 103: FloorSteelDirty @@ -50,6 +58,7 @@ tilemap: 108: FloorSteelOffset 111: FloorTechMaint 112: FloorTechMaint2 + 20: FloorWebTile 115: FloorWhite 119: FloorWhiteMini 120: FloorWhiteMono @@ -57,9 +66,11 @@ tilemap: 124: FloorWhitePlastic 125: FloorWood 126: FloorWoodLarge + 24: FloorWoodLargeDark 127: FloorWoodTile 128: Lattice 129: Plating + 16: PlatingAsteroid 132: PlatingBurnt 133: PlatingDamaged 2: TrainLattice @@ -118,71 +129,71 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YAAAAAACYAAAAAAAagAAAAABYAAAAAADKQAAAAAAJAAAAAABJAAAAAADgQAAAAAAawAAAAADagAAAAABawAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACgQAAAAAAagAAAAABagAAAAAAagAAAAADYAAAAAACYAAAAAABawAAAAAAagAAAAAAYAAAAAACawAAAAAAYAAAAAABagAAAAADgQAAAAAAJQAAAAABIgAAAAAAgQAAAAAAgQAAAAAAawAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADbAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADagAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADbAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAawAAAAACYAAAAAADagAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAagAAAAABawAAAAACagAAAAACagAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAACgQAAAAAAeQAAAAAAcwAAAAADgQAAAAAAagAAAAAAawAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAADPQAAAAAAgQAAAAAAfAAAAAACeAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACagAAAAAAYAAAAAACgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAADfAAAAAAAgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAYAAAAAAAagAAAAABYAAAAAABYAAAAAAAawAAAAADgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAADcwAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAeAAAAAABQQAAAAAAgQAAAAAAeAAAAAACcwAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAfAAAAAABfAAAAAACcwAAAAADfAAAAAABfAAAAAAAcwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACawAAAAAAagAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcwAAAAACfAAAAAAAfAAAAAACfAAAAAACcwAAAAACfAAAAAACgQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABfAAAAAADfAAAAAABfAAAAAABcwAAAAAAfAAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAfQAAAAACcwAAAAAAfAAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAeAAAAAADfAAAAAACgQAAAAAAfAAAAAACgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAA + tiles: YAAAAAAAYAAAAAADagAAAAABYAAAAAABKQAAAAACJAAAAAAAJAAAAAACgQAAAAAAawAAAAABagAAAAACawAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABgQAAAAAAagAAAAABagAAAAAAagAAAAAAYAAAAAAAYAAAAAABawAAAAACagAAAAACYAAAAAADawAAAAACYAAAAAABagAAAAADgQAAAAAAJQAAAAABIgAAAAADgQAAAAAAgQAAAAAAawAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADbAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADagAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAbAAAAAAAYAAAAAABYAAAAAAAYAAAAAACawAAAAADYAAAAAACagAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABagAAAAACawAAAAACagAAAAADagAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABgQAAAAAAeQAAAAAAcwAAAAABgQAAAAAAagAAAAADawAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADfAAAAAAAfAAAAAABfAAAAAADfAAAAAACPQAAAAAAgQAAAAAAfAAAAAACeAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACagAAAAADYAAAAAACgQAAAAAAfAAAAAABfAAAAAABfAAAAAADfAAAAAADfAAAAAAAfAAAAAACgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAADagAAAAACYAAAAAADYAAAAAAAawAAAAABgQAAAAAAfAAAAAADfAAAAAADfAAAAAAAfAAAAAAAfAAAAAACfAAAAAADgQAAAAAAfAAAAAADcwAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAACeAAAAAAAQQAAAAAAgQAAAAAAeAAAAAABcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAfAAAAAADfAAAAAADcwAAAAACfAAAAAACfAAAAAABcwAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAawAAAAACagAAAAADQQAAAAAAQQAAAAAAQQAAAAAAcwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAACfAAAAAACgQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABfAAAAAADfAAAAAABfAAAAAADcwAAAAACfAAAAAADgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAfQAAAAABcwAAAAAAfAAAAAABcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAeAAAAAACfAAAAAABgQAAAAAAfAAAAAADgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: JQAAAAACJQAAAAAAbwAAAAAAKQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACagAAAAADYAAAAAAAagAAAAABJQAAAAACJAAAAAAAKQAAAAACKQAAAAAAfQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAawAAAAABYAAAAAACgQAAAAAAYAAAAAABJQAAAAACbwAAAAAAJAAAAAACgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAACYAAAAAACYAAAAAADYAAAAAACagAAAAAAagAAAAAAYAAAAAACYAAAAAADawAAAAABYAAAAAAAYAAAAAADagAAAAAAagAAAAABYAAAAAACawAAAAACgQAAAAAAYAAAAAABawAAAAAAawAAAAADagAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACfwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAABagAAAAACYAAAAAABYAAAAAABfwAAAAABfwAAAAAAfwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAYAAAAAAAagAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAfwAAAAADfwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAYAAAAAACYAAAAAABYAAAAAAAawAAAAABYAAAAAACgQAAAAAAagAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAABeQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAABagAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAfwAAAAABfwAAAAADgQAAAAAAfAAAAAACdwAAAAACdwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAADAAAAAAADAAAAAAAawAAAAACgQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABYAAAAAACYAAAAAABDAAAAAAAYAAAAAACagAAAAAAYAAAAAACagAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABYAAAAAADDAAAAAAADAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABDAAAAAAADAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAADagAAAAACYAAAAAAAawAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAYAAAAAABDAAAAAAADAAAAAAAYAAAAAABYAAAAAABDAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfwAAAAACfwAAAAAAgQAAAAAAYAAAAAACagAAAAABYAAAAAAAYAAAAAADYAAAAAABDAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAagAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAAAgQAAAAAA + tiles: JQAAAAACJQAAAAADbwAAAAAAKQAAAAADfQAAAAACfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAagAAAAAAYAAAAAAAagAAAAABJQAAAAAAJAAAAAABKQAAAAADKQAAAAACfQAAAAAAfgAAAAADfgAAAAADfgAAAAAAfQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAawAAAAABYAAAAAACgQAAAAAAYAAAAAACJQAAAAABbwAAAAAAJAAAAAACgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAACYAAAAAABYAAAAAAAYAAAAAACagAAAAACagAAAAADYAAAAAADYAAAAAAAawAAAAACYAAAAAABYAAAAAAAagAAAAAAagAAAAADYAAAAAABawAAAAACgQAAAAAAYAAAAAABawAAAAADawAAAAACagAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABfwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACagAAAAAAYAAAAAACYAAAAAAAfwAAAAABfwAAAAAAfwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAYAAAAAADagAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAfwAAAAABfwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAYAAAAAABYAAAAAABYAAAAAABawAAAAACYAAAAAAAgQAAAAAAagAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdwAAAAACeQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAACagAAAAADgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAfwAAAAACfwAAAAACgQAAAAAAfAAAAAADdwAAAAADdwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADDAAAAAABDAAAAAAAawAAAAADgQAAAAAAfQAAAAACfQAAAAACgQAAAAAAfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADYAAAAAADYAAAAAACDAAAAAADYAAAAAACagAAAAAAYAAAAAADagAAAAACgQAAAAAAfQAAAAACfQAAAAADfQAAAAACYAAAAAADDAAAAAACDAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADDAAAAAADDAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAADagAAAAACYAAAAAAAawAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABDAAAAAACDAAAAAABYAAAAAAAYAAAAAAADAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAfwAAAAADfwAAAAABfwAAAAAAgQAAAAAAYAAAAAAAagAAAAADYAAAAAADYAAAAAACYAAAAAABDAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABagAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADDAAAAAADgQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABQAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAOAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAABgAAAAAADAAAAAAABgAAAAAADAAAAAAAgQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAYAAAAAADawAAAAACgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAawAAAAACBgAAAAAATwAAAAAADAAAAAAADAAAAAAABQAAAAAAgQAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAagAAAAADYAAAAAABgQAAAAAAUgAAAAAAUgAAAAAAYAAAAAABagAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAACNgAAAAAADAAAAAAADAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAACawAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAagAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAB + tiles: AAAAAAAABQAAAAADBgAAAAABBgAAAAACBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBgAAAAACAAAAAAAABQAAAAAABgAAAAABBgAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBgAAAAADAAAAAAAABQAAAAABBgAAAAAABgAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBgAAAAAAAAAAAAAABQAAAAABBgAAAAACBgAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBgAAAAABAAAAAAAABQAAAAACBgAAAAAABgAAAAADBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBgAAAAACAAAAAAAABQAAAAADBgAAAAADBgAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABQAAAAABBQAAAAADBgAAAAAABgAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBgAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAADBQAAAAACBQAAAAACBQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAADBgAAAAABBgAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAADBgAAAAADBgAAAAACBgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAADBgAAAAAABgAAAAABOAAAAAACgQAAAAAABQAAAAADBQAAAAADBQAAAAADgQAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACBgAAAAAADAAAAAACBgAAAAABDAAAAAACgQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAawAAAAACgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAawAAAAAABgAAAAABTwAAAAADDAAAAAAADAAAAAAABQAAAAAAgQAAAAAAeQAAAAAAfAAAAAABeQAAAAAAagAAAAAAYAAAAAADgQAAAAAAUgAAAAAAUgAAAAAAJQAAAAAAagAAAAACDAAAAAADDAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAYAAAAAACNgAAAAABDAAAAAACDAAAAAACgQAAAAAAfAAAAAAAfAAAAAABfAAAAAACfAAAAAADfAAAAAACYAAAAAABawAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfAAAAAABfAAAAAABfAAAAAABfAAAAAACYAAAAAABagAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAD version: 6 0,-1: ind: 0,-1 - tiles: BgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAATwAAAAAATwAAAAAABgAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAADAAAAAAAYAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAABYAAAAAACTwAAAAAATwAAAAAATwAAAAAABgAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAAAYAAAAAABYAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAACYAAAAAACTwAAAAAATwAAAAAATwAAAAAABgAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAATwAAAAAATwAAAAAATwAAAAAABgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAADfAAAAAADcwAAAAADgQAAAAAALwAAAAAALwAAAAAABgAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAADDwAAAAAAfAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAagAAAAACLwAAAAAALwAAAAAABgAAAAAANQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAfAAAAAACfAAAAAAAcwAAAAAAgQAAAAAALwAAAAAALwAAAAAABgAAAAAAYAAAAAADagAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAagAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAawAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAawAAAAABYAAAAAABagAAAAADYAAAAAAAagAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAagAAAAAAagAAAAABawAAAAABYAAAAAADYAAAAAABYAAAAAAAcAAAAAAAaAAAAAAAYAAAAAAAawAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAaAAAAAAAcAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABagAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAcAAAAAAAaAAAAAAAZQAAAAABZQAAAAACgQAAAAAAawAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABagAAAAADgQAAAAAAYAAAAAAAagAAAAACYAAAAAADYAAAAAAAaAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABawAAAAADYAAAAAAAYAAAAAABgQAAAAAAJAAAAAABKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: BgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAATwAAAAADTwAAAAADBgAAAAACgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAADAAAAAADYAAAAAADPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAABYAAAAAADTwAAAAACTwAAAAACTwAAAAAABgAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAADfQAAAAACYAAAAAABYAAAAAACPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAADYAAAAAABTwAAAAACTwAAAAABTwAAAAADBgAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAABfQAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACTwAAAAAATwAAAAACTwAAAAACBgAAAAABgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAABDwAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAADfAAAAAACcwAAAAAAgQAAAAAALwAAAAAALwAAAAAABgAAAAACDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACfAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAagAAAAADLwAAAAAALwAAAAAABgAAAAADNQAAAAADDwAAAAADDwAAAAADDwAAAAACDwAAAAAADwAAAAACQAAAAAAAQAAAAAAAgQAAAAAAfAAAAAACfAAAAAAAcwAAAAAAgQAAAAAALwAAAAAALwAAAAAABgAAAAADYAAAAAACagAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABagAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAACawAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABawAAAAAAYAAAAAAAagAAAAABYAAAAAABagAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACagAAAAADagAAAAADawAAAAADYAAAAAACYAAAAAAAYAAAAAADcAAAAAAAaAAAAAAAYAAAAAADawAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADaAAAAAACcAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAagAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABcAAAAAAAaAAAAAADZQAAAAABZQAAAAABgQAAAAAAawAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACagAAAAADYAAAAAABYAAAAAAAaAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABawAAAAACYAAAAAABYAAAAAABgQAAAAAAJAAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: TwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAAAAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAAAAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAATgAAAAAATgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAEBwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAATgAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAABwAAAAAABwAAAAAALwAAAAAAgQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAATwAAAAAABwAAAAAALwAAAAAAgQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAATwAAAAAATwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACagAAAAADgQAAAAAAYAAAAAAAagAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: TwAAAAADTwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACBwAAAAAABwAAAAAAAAAAAAAATwAAAAADTwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADBwAAAAAABwAAAAAAAAAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAAATgAAAAADTgAAAAACTgAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACBwAAAAADBwAAAAAJBwAAAAAATwAAAAABTwAAAAACTwAAAAACBwAAAAAABwAAAAAABwAAAAAATgAAAAACBwAAAAAABwAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAATwAAAAAATwAAAAACBwAAAAAABwAAAAAATgAAAAADBwAAAAAABwAAAAAHYAAAAAABYAAAAAABYAAAAAABYAAAAAADTwAAAAACBwAAAAAABwAAAAAILwAAAAAAgQAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAAATgAAAAABBwAAAAAKBwAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACTwAAAAADTwAAAAAABwAAAAAALwAAAAAAgQAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAACTgAAAAADTwAAAAABTwAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACTwAAAAADTwAAAAABTwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAATwAAAAACTwAAAAADTwAAAAABTwAAAAACgQAAAAAAgQAAAAAAYAAAAAABaAAAAAABaAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABTwAAAAAATwAAAAACTwAAAAABTwAAAAADTwAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAAATwAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAIQAAAAACIQAAAAACIQAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACagAAAAADgQAAAAAAYAAAAAAAagAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAADgQAAAAAAIQAAAAAAIQAAAAADIQAAAAADgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAagAAAAAAagAAAAACagAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 1,0: ind: 1,0 - tiles: YAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAagAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAagAAAAACagAAAAADgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAACagAAAAAAawAAAAADYAAAAAADgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfQAAAAACfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACYAAAAAADYAAAAAACYAAAAAAAagAAAAADgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYAAAAAABYAAAAAACagAAAAABagAAAAAAawAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADawAAAAABNgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYAAAAAABYAAAAAAAYAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAYAAAAAACYAAAAAACgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfQAAAAABfQAAAAABfQAAAAABagAAAAACUAAAAAAAaAAAAAADagAAAAACUAAAAAABawAAAAACYAAAAAAANgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfQAAAAACfQAAAAADfQAAAAAAUAAAAAABagAAAAABUAAAAAAAaAAAAAAAaAAAAAABagAAAAADagAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAADKQAAAAABKQAAAAADgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: YAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADagAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAADBgAAAAADBgAAAAACBQAAAAABagAAAAACagAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAADBgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAABBgAAAAACBgAAAAABBgAAAAADBgAAAAACfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAACagAAAAAAawAAAAABYAAAAAACgQAAAAAABgAAAAABBgAAAAABBgAAAAABBgAAAAAABgAAAAAAfQAAAAACfQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAABgAAAAADBgAAAAADBgAAAAABBgAAAAACBgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAagAAAAACgQAAAAAABgAAAAADBgAAAAACBgAAAAACBgAAAAABBgAAAAABYAAAAAAAYAAAAAAAagAAAAAAagAAAAABawAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACawAAAAABNgAAAAACBgAAAAACBgAAAAADBgAAAAAABgAAAAAABgAAAAACYAAAAAABYAAAAAAAYAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAYAAAAAABYAAAAAABgQAAAAAABgAAAAABBgAAAAADBgAAAAADBgAAAAACBgAAAAADfQAAAAAAfQAAAAABfQAAAAAAagAAAAABUAAAAAAAaAAAAAABagAAAAABUAAAAAADawAAAAACYAAAAAABNgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAACBgAAAAACfQAAAAABfQAAAAACfQAAAAADUAAAAAADagAAAAADUAAAAAADaAAAAAACaAAAAAABagAAAAABagAAAAADgQAAAAAABgAAAAADBgAAAAAABgAAAAABBgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAABgAAAAABBgAAAAACBgAAAAADBgAAAAADBgAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAADgQAAAAAABgAAAAADBgAAAAADBgAAAAAABgAAAAACBgAAAAABBgAAAAAD version: 6 -1,1: ind: -1,1 - tiles: KQAAAAAAKQAAAAAAJAAAAAAAJAAAAAAAKQAAAAAADAAAAAAADAAAAAAAawAAAAACZwAAAAAAZwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAANgAAAAAAOAAAAAAANgAAAAAANgAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABKQAAAAADJQAAAAACIgAAAAAAKQAAAAAAOAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABJAAAAAABKQAAAAAAJAAAAAAAJQAAAAAADAAAAAAADAAAAAAADAAAAAAANgAAAAAADAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAABIgAAAAADKQAAAAACKQAAAAACgQAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJAAAAAADKQAAAAAAgQAAAAAAgQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KQAAAAAAKQAAAAADJAAAAAACJAAAAAADKQAAAAACDAAAAAABDAAAAAADawAAAAACZwAAAAAAZwAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADNgAAAAACOAAAAAADNgAAAAABNgAAAAABJAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAACKQAAAAAAJQAAAAAAIgAAAAADKQAAAAABOAAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAADgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABJAAAAAAAKQAAAAABJAAAAAAAJQAAAAABDAAAAAAADAAAAAAADAAAAAABNgAAAAABDAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAACIgAAAAACKQAAAAADKQAAAAADgQAAAAAAYAAAAAACDAAAAAABDAAAAAADDAAAAAABDAAAAAACDAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAADJAAAAAAAKQAAAAAAgQAAAAAAgQAAAAAATwAAAAAATwAAAAABTwAAAAADTwAAAAADTwAAAAADfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATwAAAAACTwAAAAACTwAAAAACTwAAAAAATwAAAAACfgAAAAACfgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAATwAAAAADTwAAAAACTwAAAAACTwAAAAAATwAAAAABfgAAAAADfgAAAAABBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAACTwAAAAABTwAAAAABBwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAADTwAAAAACTwAAAAABTwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHTwAAAAACCAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAKQAAAAAADAAAAAAADAAAAAAANgAAAAAADAAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAKQAAAAAAOAAAAAAANgAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAKQAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAADAAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAATwAAAAAATgAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGCQAAAAAACQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATgAAAAAATwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAATwAAAAAATwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAACQAAAAAATwAAAAAATgAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAATwAAAAAATgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAADAAAAAACgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAKQAAAAAADAAAAAADDAAAAAADNgAAAAACDAAAAAADgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAKQAAAAADOAAAAAABNgAAAAAADAAAAAABDAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAKQAAAAADKQAAAAAAKQAAAAACgQAAAAAAKQAAAAABDAAAAAACDAAAAAADDAAAAAACOAAAAAABDAAAAAABTwAAAAAATwAAAAADTwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAHBwAAAAAABwAAAAAATwAAAAACTwAAAAACDAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAACTwAAAAABTgAAAAADTwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAMTwAAAAABTwAAAAABTwAAAAACTwAAAAADTwAAAAADTwAAAAACTwAAAAADTwAAAAAATwAAAAADBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAATwAAAAABTwAAAAACTwAAAAAATwAAAAAATwAAAAADTgAAAAABTwAAAAAATwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAAACQAAAAAACQAAAAAATwAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACTwAAAAACTwAAAAADTgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAFCQAAAAAFCQAAAAAHCQAAAAAATwAAAAACTwAAAAABTwAAAAAATwAAAAACTwAAAAACTgAAAAACTgAAAAABTwAAAAABCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAATwAAAAADTwAAAAABTwAAAAABTwAAAAABBwAAAAAATwAAAAABTgAAAAACTwAAAAACTwAAAAADCQAAAAAACQAAAAAACQAAAAAABwAAAAACBwAAAAAABwAAAAAKAAAAAAAATwAAAAACTwAAAAADBwAAAAAECQAAAAAACQAAAAAACQAAAAAATwAAAAABTgAAAAAATwAAAAACTwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAACQAAAAAKTwAAAAABTgAAAAADTwAAAAADBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAATwAAAAACTgAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfgAAAAABfgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: TwAAAAAATwAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAdwAAAAADfAAAAAAAfAAAAAAAgQAAAAAATwAAAAAATwAAAAAADAAAAAAADAAAAAAABQAAAAAATwAAAAAATwAAAAAABgAAAAAADAAAAAAABgAAAAAAgQAAAAAAagAAAAABYAAAAAAAgQAAAAAAaAAAAAACgQAAAAAATwAAAAAATwAAAAAADAAAAAAABgAAAAAADAAAAAAADAAAAAAABQAAAAAADAAAAAAADAAAAAAADAAAAAAAYAAAAAAAcAAAAAAAYAAAAAACaAAAAAACYAAAAAACgQAAAAAATwAAAAAATwAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABagAAAAAAgQAAAAAAawAAAAAAagAAAAACTwAAAAAATwAAAAAADAAAAAAABgAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAcAAAAAAAagAAAAAATwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAaAAAAAADgQAAAAAABwAAAAAATwAAAAAABgAAAAAABgAAAAAAgQAAAAAAagAAAAAAcAAAAAAATwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAABwAAAAAATwAAAAAABgAAAAAABgAAAAAAgQAAAAAAYAAAAAAAZwAAAAAAcAAAAAAAZwAAAAAATwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAABwAAAAAATwAAAAAABgAAAAAABgAAAAAABgAAAAAAKQAAAAAAcAAAAAAAagAAAAAAYAAAAAAAagAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAATwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAKQAAAAAAYAAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAABwAAAAAATwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAABwAAAAAATwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAfQAAAAAAFgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAATwAAAAAATgAAAAAATgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAgQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAfQAAAAAAfQAAAAAATgAAAAAATwAAAAAATgAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAATgAAAAAATwAAAAAATgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: TwAAAAABTwAAAAACgQAAAAAAcAAAAAAAYAAAAAACgQAAAAAAcAAAAAAADAAAAAAADAAAAAADDAAAAAABgQAAAAAAgQAAAAAAdwAAAAABfAAAAAACfAAAAAADgQAAAAAATwAAAAAATwAAAAACDAAAAAADDAAAAAAABQAAAAADTwAAAAACTwAAAAAABgAAAAAADAAAAAACBgAAAAAAgQAAAAAAagAAAAADYAAAAAADgQAAAAAAaAAAAAACgQAAAAAATwAAAAAATwAAAAABDAAAAAABBgAAAAABDAAAAAABDAAAAAACBQAAAAACDAAAAAABDAAAAAADDAAAAAAAYAAAAAADcAAAAAAAYAAAAAABaAAAAAADYAAAAAAAgQAAAAAATwAAAAAATwAAAAACDAAAAAABDAAAAAADDAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABagAAAAABgQAAAAAAawAAAAABagAAAAADTwAAAAACTwAAAAACDAAAAAAABgAAAAABgQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAATwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAaAAAAAABgQAAAAAABwAAAAAATwAAAAAABgAAAAACBgAAAAADgQAAAAAAcAAAAAAAbwAAAAAADAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAABwAAAAAATwAAAAABBgAAAAAABgAAAAACgQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAATwAAAAADgQAAAAAAfQAAAAADgQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAABwAAAAAITwAAAAACBgAAAAACBgAAAAADBgAAAAACKQAAAAABbwAAAAAAcAAAAAAAYAAAAAACcAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAATwAAAAABBgAAAAABBgAAAAADBgAAAAADBgAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfgAAAAABgQAAAAAABwAAAAAATwAAAAACBgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAfQAAAAACgQAAAAAABwAAAAAATwAAAAAABgAAAAADBgAAAAABBgAAAAABBgAAAAACBgAAAAADBgAAAAABBgAAAAACgQAAAAAAfQAAAAABFgAAAAAGfQAAAAAAfQAAAAADfQAAAAABgQAAAAAATwAAAAACTgAAAAACTgAAAAADBgAAAAACBgAAAAAABgAAAAADBgAAAAADBgAAAAADBgAAAAADgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAATgAAAAACTwAAAAAATwAAAAABTwAAAAAATgAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAADfQAAAAAAfQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAGgQAAAAAATgAAAAADTgAAAAAATgAAAAACTgAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAACTwAAAAABKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAFgAAAAAEfQAAAAAAfQAAAAAATgAAAAADTwAAAAABTgAAAAAATwAAAAACTgAAAAABTwAAAAAATwAAAAABTwAAAAADTwAAAAABKQAAAAACKQAAAAADKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATwAAAAACTgAAAAABTwAAAAACTwAAAAACTgAAAAAATwAAAAAATgAAAAADTwAAAAABTgAAAAABKQAAAAADKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAANgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABwAAAAAATwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAATwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAABwAAAAAATwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAABgAAAAAABQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAABQAAAAAADAAAAAAABwAAAAAATwAAAAAAcAAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAABQAAAAAABgAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAATwAAAAAAcAAAAAAAagAAAAAAZwAAAAAAagAAAAAAcAAAAAAAcAAAAAAADAAAAAAABQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAABgAAAAAABwAAAAAATwAAAAAAcAAAAAAAZwAAAAAAcAAAAAAAagAAAAAAcAAAAAAAcAAAAAAADAAAAAAABgAAAAAADAAAAAAADAAAAAAADAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAABwAAAAAATwAAAAAAcAAAAAAAagAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAcAAAAAAADAAAAAAADAAAAAAAOAAAAAAAOAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAABTwAAAAAATwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAACBQAAAAACBQAAAAABBQAAAAABBQAAAAADAAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAALgAAAAAALgAAAAAALgAAAAAAFQAAAAAABgAAAAABBgAAAAABBgAAAAACBgAAAAABBwAAAAAABwAAAAAGgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAFQAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAADBwAAAAAATwAAAAABgQAAAAAAfQAAAAADfQAAAAADfQAAAAADgQAAAAAALgAAAAAAbwAAAAAALgAAAAAAbwAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAATwAAAAACgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAADgQAAAAAABwAAAAAATwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAABgAAAAACBQAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAABBQAAAAABDAAAAAADBwAAAAAATwAAAAAAcAAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAACBQAAAAACBgAAAAABDAAAAAACDAAAAAADDAAAAAACBwAAAAAATwAAAAADcAAAAAAAagAAAAACZwAAAAAAagAAAAAAcAAAAAAAcAAAAAAADAAAAAAABQAAAAADDAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAADBgAAAAADBwAAAAAATwAAAAADcAAAAAAAZwAAAAAAcAAAAAAAagAAAAADcAAAAAAAcAAAAAAADAAAAAADBgAAAAAADAAAAAAADAAAAAABDAAAAAABfAAAAAABfAAAAAAAgQAAAAAABwAAAAAATwAAAAADcAAAAAAAagAAAAADZwAAAAAAZwAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAADOAAAAAABOAAAAAABfAAAAAABdwAAAAAAfAAAAAAAgQAAAAAA version: 6 1,1: ind: 1,1 - tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAABgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAAKQAAAAAAKQAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAATwAAAAAATwAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAATwAAAAAACQAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAACQAAAAAACQAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAAABwAAAAAABQAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADgQAAAAAABgAAAAADBgAAAAADBgAAAAABBgAAAAACBgAAAAAABQAAAAACKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAACgQAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAAABQAAAAABBQAAAAADKQAAAAAAKQAAAAABBQAAAAADBgAAAAAABgAAAAACBgAAAAACBgAAAAABBgAAAAACBgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAADAAAAAAAATwAAAAAATwAAAAAABQAAAAAABgAAAAABBgAAAAACBgAAAAADBgAAAAACBgAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAABBQAAAAAAAAAAAAAATwAAAAAACQAAAAAABQAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAAABgAAAAADBgAAAAABBgAAAAACBgAAAAABBQAAAAACAAAAAAAACQAAAAAACQAAAAAABQAAAAACBgAAAAAABgAAAAABBgAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAABCQAAAAAABwAAAAAABQAAAAADBQAAAAACBgAAAAAABgAAAAABBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABQAAAAABBQAAAAACBgAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBgAAAAADBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAABBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAABgAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABgAAAAAABQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABgAAAAAABQAAAAAATwAAAAAATwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAATgAAAAAATgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAATwAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAATwAAAAAATwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAHBQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALTwAAAAACBwAAAAAABwAAAAAATwAAAAADTwAAAAABTwAAAAABBgAAAAADBQAAAAADBwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAADTwAAAAACTwAAAAACTwAAAAABTwAAAAAATwAAAAACBgAAAAADBQAAAAADTwAAAAACTwAAAAADTwAAAAACTwAAAAABTwAAAAABTwAAAAABTwAAAAABTwAAAAABTwAAAAAATwAAAAAATwAAAAACTwAAAAACTwAAAAABTwAAAAAABgAAAAAABQAAAAABTwAAAAAATwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAABTwAAAAAATgAAAAADBgAAAAABBQAAAAABBQAAAAADBQAAAAADJAAAAAABJAAAAAACJAAAAAABJAAAAAACgQAAAAAAYAAAAAADfQAAAAABfQAAAAAAfQAAAAABgQAAAAAATgAAAAACTgAAAAADBgAAAAABBgAAAAADBgAAAAACBgAAAAABIAAAAAACIAAAAAACIAAAAAAAJAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADTwAAAAABTwAAAAAABgAAAAADBQAAAAACBQAAAAADBQAAAAABJAAAAAACJAAAAAACJAAAAAADJAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAATwAAAAACTwAAAAAC version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATgAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATgAAAAAATwAAAAAATgAAAAAATgAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAATwAAAAAATwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAACTwAAAAABBwAAAAALCAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAATwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACBwAAAAAABwAAAAALBwAAAAACTwAAAAADTgAAAAABTwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTgAAAAADTwAAAAADTgAAAAAATgAAAAADTwAAAAACTgAAAAAATwAAAAABTwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAABTwAAAAACTgAAAAACTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAAATwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAATwAAAAACTgAAAAADTwAAAAACTwAAAAACTwAAAAADTwAAAAADTwAAAAAATwAAAAADTwAAAAADTwAAAAAATwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAAATwAAAAABTwAAAAABTwAAAAACTwAAAAADTwAAAAAATwAAAAADTwAAAAADTwAAAAADTwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAATwAAAAACTwAAAAACTwAAAAADTwAAAAABTwAAAAABTwAAAAACTwAAAAADTwAAAAACTwAAAAADBwAAAAACBwAAAAAABwAAAAAGBwAAAAAABwAAAAABAAAAAAAATwAAAAACTwAAAAABBwAAAAAATwAAAAACTwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: TgAAAAAATwAAAAAABwAAAAAATgAAAAAATwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAATgAAAAAATwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAATgAAAAAATwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAATgAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAATwAAAAAATwAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAATwAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAATwAAAAAATgAAAAAATwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATwAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATgAAAAAATwAAAAAATwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TgAAAAACTwAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAATwAAAAADTwAAAAACTwAAAAACKQAAAAABKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACTgAAAAACTwAAAAADDQAAAAAADgAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAATgAAAAADTwAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAADKQAAAAADDAAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAATwAAAAABTwAAAAADKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAKQAAAAABKQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAATwAAAAACTgAAAAAATwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAATwAAAAADTwAAAAAAfgAAAAABfgAAAAACgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADAAAAAAAfgAAAAAAfgAAAAABFgAAAAABfgAAAAABfQAAAAAAfgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAATgAAAAAAfgAAAAADfgAAAAAAfQAAAAACfgAAAAAAfgAAAAAAfQAAAAABDgAAAAAADgAAAAAADQAAAAAANwAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADAAAAAABfgAAAAACfgAAAAAAfgAAAAADfgAAAAAAfgAAAAACFgAAAAAEfgAAAAABDgAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADgAAAAAADQAAAAAABAAAAAAAfgAAAAACfgAAAAAAfwAAAAADfwAAAAADfwAAAAABfgAAAAADfgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADgAAAAAAfgAAAAAAfgAAAAACfQAAAAADfQAAAAABfgAAAAADfgAAAAAAfgAAAAACBwAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAABwAAAAACfgAAAAAAfwAAAAACfQAAAAADfwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAABwAAAAAAfgAAAAABfgAAAAACfgAAAAABfgAAAAAAfgAAAAADBwAAAAAFBwAAAAAABwAAAAAADgAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAfgAAAAACfgAAAAADfgAAAAACfgAAAAABDQAAAAAADgAAAAAADQAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAFBwAAAAAAfgAAAAADfgAAAAADfgAAAAAAfgAAAAADDQAAAAAATwAAAAABTwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAADfgAAAAAAfgAAAAADfgAAAAACTwAAAAABTgAAAAAATwAAAAABTwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBQAAAAAAAAAAAAAABQAAAAADBgAAAAADBgAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBgAAAAABAAAAAAAABQAAAAAABgAAAAACBgAAAAACBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBgAAAAADAAAAAAAABQAAAAABBgAAAAABBgAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAADAAAAAAAABQAAAAAABgAAAAADBgAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBgAAAAADAAAAAAAABQAAAAAABgAAAAABBgAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBgAAAAABAAAAAAAABQAAAAABBgAAAAADBgAAAAACBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBgAAAAADAAAAAAAABQAAAAADBgAAAAABBgAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBgAAAAADAAAAAAAABQAAAAADBgAAAAACBgAAAAADBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBgAAAAAD version: 6 2,0: ind: 2,0 - tiles: BgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BgAAAAABBgAAAAACBQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAACBgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAABBgAAAAADBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBgAAAAABBgAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAABBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBQAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBQAAAAACBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBgAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAACBgAAAAABBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADBgAAAAABBQAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBQAAAAABBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: BQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -190,39 +201,39 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATgAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAAATgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAITwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATgAAAAAATwAAAAABTwAAAAAATwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABTwAAAAAATgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: fgAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAAATgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAATwAAAAAATwAAAAAAfgAAAAAAgAAAAAAAgAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAfgAAAAAATgAAAAAATgAAAAAAhAAAAAAAfgAAAAAAfgAAAAAATwAAAAAATgAAAAAATgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAATwAAAAAATgAAAAAAfgAAAAAAgAAAAAAAfgAAAAAAfgAAAAAAgAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + tiles: fgAAAAADfgAAAAABTwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAABTwAAAAAAfQAAAAAAfgAAAAACTwAAAAADTwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAADTgAAAAABfgAAAAACfgAAAAABTwAAAAAATwAAAAABTwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAABTgAAAAACfgAAAAAAfgAAAAABfgAAAAADTgAAAAACTwAAAAABTwAAAAAAfgAAAAACgAAAAAAAgAAAAAAAfgAAAAADfgAAAAADfgAAAAABgAAAAAAAfgAAAAAATgAAAAABDAAAAAADhAAAAAAAfgAAAAAAfgAAAAAATwAAAAACTgAAAAABTgAAAAADfgAAAAACfgAAAAAAfgAAAAAAgAAAAAAAfgAAAAAAfgAAAAACfgAAAAADfgAAAAAADgAAAAAADQAAAAAAfgAAAAABfgAAAAADfgAAAAABTgAAAAAATwAAAAACTgAAAAABfgAAAAAAgAAAAAAAfgAAAAAAfgAAAAABgAAAAAAAfgAAAAABfgAAAAAAfgAAAAADDQAAAAAADgAAAAAAfgAAAAAAfgAAAAACfgAAAAADTwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADgAAAAAATwAAAAABTwAAAAAATwAAAAACTwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADgAAAAAADgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAABfgAAAAAAfgAAAAABfgAAAAACBwAAAAAATwAAAAADTwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAAADAAAAAAADAAAAAAAfQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAAAhAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAADAAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAhAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGTwAAAAAChAAAAAAAhAAAAAAAfgAAAAADfgAAAAACfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAhAAAAAAAfQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAhAAAAAAAhQAAAAAABwAAAAAAfgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAhAAAAAAAgQAAAAAAEAAAAAAAEAAAAAAAfgAAAAABfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAhAAAAAAAEAAAAAAAgQAAAAAAhAAAAAAAfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAIAAAAAAAgQAAAAAAhAAAAAAAIAAAAAAAAAAAAAAAhQAAAAAAEAAAAAAAfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAADTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAATwAAAAACTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGTwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAABTwAAAAAB version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAATgAAAAAATwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATgAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAAAAAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAAAAAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAADgAAAAAAAfgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAATgAAAAAATwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAATwAAAAABTwAAAAAATwAAAAAATwAAAAABTwAAAAABTgAAAAADTwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAATwAAAAADTwAAAAADTwAAAAAAfgAAAAABfgAAAAACfgAAAAABfgAAAAABfgAAAAACfgAAAAABBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAABwAAAAABBwAAAAAFTwAAAAACfgAAAAACfgAAAAAAfgAAAAAAfQAAAAACfgAAAAABfgAAAAABfgAAAAAAfgAAAAABTwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAATwAAAAADfgAAAAAAfgAAAAACfgAAAAABfgAAAAACfQAAAAABfgAAAAADfgAAAAADfQAAAAABfgAAAAACfgAAAAADTwAAAAADBwAAAAAFBwAAAAAAAAAAAAAABwAAAAAATwAAAAACfgAAAAAAfgAAAAADfgAAAAADfgAAAAACfgAAAAABfgAAAAABfQAAAAADfgAAAAADfgAAAAABfgAAAAADfgAAAAABTwAAAAADBwAAAAAAAAAAAAAATwAAAAABTwAAAAABfgAAAAADfgAAAAACfgAAAAAAfQAAAAADfgAAAAAAfQAAAAADfgAAAAACfgAAAAABfQAAAAADfgAAAAACfgAAAAAATwAAAAADBwAAAAAAAAAAAAAATwAAAAACTwAAAAADfgAAAAAAfgAAAAABfgAAAAADfgAAAAACfQAAAAADfgAAAAADfgAAAAACfgAAAAABfgAAAAAAfgAAAAADfgAAAAACTwAAAAAABwAAAAAHAAAAAAAABwAAAAAABwAAAAAATwAAAAAAfgAAAAACfgAAAAABfgAAAAACfQAAAAAAfgAAAAACfgAAAAADfgAAAAADfgAAAAADfgAAAAADTwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAJBwAAAAAATwAAAAACTwAAAAADfgAAAAABfgAAAAACfgAAAAADfgAAAAADTwAAAAAATwAAAAABTwAAAAABTwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAABTwAAAAAATwAAAAACTwAAAAACTwAAAAACBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBQAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -244,6 +255,11 @@ entities: chunkCollection: version: 2 nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1675: -28.927488,25.327347 - node: color: '#FFFFFFFF' id: Basalt2 @@ -256,7 +272,7 @@ entities: id: Basalt3 decals: 630: -48.556385,25.27201 - 1087: -26.350967,16.87664 + 1689: -34.753304,26.035526 - node: color: '#FFFFFFFF' id: Basalt4 @@ -264,13 +280,7 @@ entities: 637: -42.26334,17.356695 638: -42.16959,23.80982 639: -50.5919,25.384315 - 640: -54.076275,23.259315 - 641: -55.92681,18.266983 - 642: -33.90734,16.654156 - 643: -32.03352,20.958895 - 644: -34.69425,22.915932 645: -33.053623,26.570938 - 646: -30.803623,27.133438 647: -31.711103,11.351561 648: -33.70329,6.757811 649: -34.1486,12.828123 @@ -279,7 +289,13 @@ entities: 657: 7.7424307,25.062996 658: 3.3661294,27.123108 659: 16.33962,21.802795 - 1091: -27.069717,19.986015 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1673: -32.80791,23.28781 + 1677: -28.748213,20.874485 + 1680: -29.448778,18.377203 - node: color: '#FFFFFFFF' id: Basalt6 @@ -290,9 +306,10 @@ entities: 663: -9.7312765,25.177795 664: -15.096571,27.310608 665: -22.188023,29.34967 - 1088: -29.757217,24.329765 - 1089: -26.554092,22.15789 1090: -28.491592,21.65789 + 1681: -29.282557,18.214016 + 1683: -27.499245,19.078598 + 1687: -32.526745,26.615564 - node: color: '#FFFFFFFF' id: Basalt7 @@ -301,16 +318,20 @@ entities: 634: -53.422634,13.45548 650: -32.74235,8.730258 651: -32.718914,14.788933 - 652: -33.468914,21.58367 653: -23.162844,29.656742 654: -16.842777,27.570808 - 1086: -29.413467,17.56414 + 1674: -31.21841,24.202347 + 1678: -26.623213,23.697401 + 1682: -27.11589,18.734848 + 1685: -31.38091,23.253838 + 1688: -29.620493,27.042648 - node: color: '#FFFFFFFF' id: Basalt8 decals: 552: -22.03312,-5.01822 - 632: -54.524128,22.395525 + 1679: -31.721422,19.549047 + 1686: -31.110077,26.045443 - node: color: '#FFFFFFFF' id: Basalt9 @@ -319,6 +340,8 @@ entities: 631: -42.962635,22.631386 633: -55.37576,16.283606 636: -44.777813,14.544198 + 1676: -30.081545,19.749485 + 1684: -26.00966,20.06639 - node: color: '#DE3A3A96' id: Bot @@ -423,11 +446,31 @@ entities: decals: 853: 26,-11 854: 27,-11 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNe + decals: + 1657: -53,21 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: 475: -2,14 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 1658: -56,21 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineS + decals: + 1659: -56,19 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineW + decals: + 1654: -56,20 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe @@ -629,6 +672,7 @@ entities: id: BushCTwo decals: 331: 10,-22 + 1456: -23.772524,23.130424 - node: color: '#FFFFFFFF' id: Busha1 @@ -660,6 +704,7 @@ entities: id: Bushc3 decals: 393: -4.6553707,18.248777 + 1458: -24.84188,25.431814 - node: color: '#FFFFFFFF' id: Bushd2 @@ -675,7 +720,6 @@ entities: color: '#FFFFFFFF' id: Bushi3 decals: - 543: -22.969524,17.346891 544: -31.148312,2.2306414 - node: color: '#FFFFFFFF' @@ -1018,6 +1062,18 @@ entities: 887: 32.417877,11.926069 888: 33.277252,11.863569 889: 33.792877,11.910444 + 1815: -25,-9 + 1816: -22,-7 + 1817: -25,-8 + 1818: -22,-9 + 1822: -25,6 + 1823: -23,7 + 1824: -25,7 + 1825: -26,5 + 1826: -26,4 + 1827: -25,3 + 1828: -24,4 + 1829: -23,5 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1061,6 +1117,14 @@ entities: 248: -20,8 249: -21,9 256: -20,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1814: -22,-7 + 1830: -25,4 + 1836: -25,4 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile @@ -1069,18 +1133,45 @@ entities: 253: -21,5 254: -21,8 255: -21,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1835: -23,7 + 1837: -26,4 + 1843: -27,6 - node: color: '#FFFFFFFF' id: DirtLight decals: 250: -21,6 251: -21,6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1831: -25,7 + 1834: -25,6 + 1838: -24,5 + 1839: -24,5 + 1840: -24,5 + 1841: -26,6 + 1842: -27,6 - node: color: '#FFFFFFFF' id: DirtMedium decals: 257: -19,8 258: -19,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1832: -23,7 + 1833: -26,5 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -1155,6 +1246,7 @@ entities: 338: 20,-23 370: 18,-11 570: -26.569935,0.90383554 + 1462: -22.67055,20.28768 - node: color: '#FFFFFFFF' id: Grassa3 @@ -1185,8 +1277,8 @@ entities: 621: -45.9836,17.439383 622: -43.95235,20.423758 623: -49.355545,22.733711 - 624: -53.97386,18.357758 625: -51.583237,14.246745 + 1521: -31.731096,12.168048 - node: color: '#FFFFFFFF' id: Grassb1 @@ -1203,6 +1295,11 @@ entities: 373: 20,-13 405: -3.3854225,21.211172 406: 2.2864525,21.195547 + 1464: -22.473484,19.402466 + 1466: -24.781563,19.052647 + 1508: -33.989315,15.636248 + 1511: -33.799675,21.399075 + 1518: -28.413485,13.367189 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1225,6 +1322,13 @@ entities: 398: 0.37450486,19.076902 399: -4.85987,19.123777 687: 1.8972585,42.827724 + 1460: -25.774715,28.10264 + 1463: -22.473484,21.202557 + 1467: -25.031563,18.719313 + 1512: -34.101757,21.169909 + 1519: -29.972338,14.713167 + 1520: -30.826506,12.056917 + 1524: -22.452972,17.010838 - node: color: '#FFFFFFFF' id: Grassb3 @@ -1242,6 +1346,8 @@ entities: 407: 0.83332765,22.492422 528: -30.879082,1.2855644 691: 12.064851,42.90393 + 1515: -27.616003,15.874283 + 1516: -29.282312,13.561782 - node: color: '#FFFFFFFF' id: Grassb4 @@ -1264,6 +1370,11 @@ entities: 862: 29.81898,-9.927813 863: 30.96762,-8.258625 864: 31.826996,-6.3992333 + 1461: -25.23305,28.72764 + 1506: -24.500637,22.710606 + 1509: -33.208065,16.021664 + 1514: -28.485462,15.561783 + 1525: -23.296722,16.954872 - node: color: '#FFFFFFFF' id: Grassb5 @@ -1285,7 +1396,6 @@ entities: 413: -2.715128,23.476797 414: 3.394247,22.383047 415: 2.222372,23.601797 - 498: 10.1985035,20.779434 521: -30.99844,-5.1878314 522: -30.99844,-2.6394954 525: -24.164112,12.218747 @@ -1300,14 +1410,25 @@ entities: 611: -45.94301,17.97159 612: -45.927383,22.84659 613: -50.28676,23.22159 - 614: -51.811665,21.860327 - 615: -53.967915,19.110327 616: -52.36757,15.040109 617: -50.539444,13.571359 618: -50.301163,14.977609 619: -45.754288,14.774484 692: 11.283601,43.732056 693: 10.892976,37.92575 + 1459: -25.54555,27.256298 + 1465: -25.324196,19.396397 + 1505: -23.68269,22.398106 + 1510: -32.93723,16.709164 + 1513: -28.131296,16.199823 + 1517: -29.2989,14.263022 + 1522: -31.574846,11.355548 + 1523: -22.59304,16.168777 + - node: + color: '#FAFAFAA8' + id: Grassd1 + decals: + 1498: -24.432573,23.119492 - node: color: '#FFFFFFFF' id: Grassd1 @@ -1325,7 +1446,6 @@ entities: 517: -28.84562,-9.923702 518: 2.7532907,-20.184572 530: -32.019707,1.1136894 - 531: -23.91402,16.3214 587: -23.252922,1.9466 588: -28.66084,2.805975 589: -21.256199,-3.0349512 @@ -1341,18 +1461,15 @@ entities: 599: -47.104946,22.931318 600: -49.33932,23.759443 601: -50.886196,22.431318 - 602: -52.884743,21.759443 - 603: -54.31818,20.19034 - 604: -53.91193,17.59659 629: -44.39431,19.632236 681: 8.390418,35.418003 682: 5.359168,35.777378 686: 0.90111685,41.816578 - node: - color: '#FFFFFFFF' + color: '#FAFAFAA8' id: Grassd2 decals: - 502: -23.436197,16.918007 + 1500: -23.447412,22.421576 - node: color: '#FFFFFFFF' id: Grassd3 @@ -1376,8 +1493,6 @@ entities: 571: -29.476744,1.2475855 575: -21.27729,-2.211707 605: -53.88068,15.84659 - 606: -55.09943,19.81534 - 607: -53.740055,21.31534 608: -48.42513,22.87784 609: -44.62982,21.50284 694: 11.502351,38.582 @@ -1415,12 +1530,32 @@ entities: decals: 907: -18,8 - node: - color: '#334E6D71' + color: '#FFFFFFFF' + id: GrayConcreteTrimLineE + decals: + 1692: -30,23 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 1691: -29,22 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineS + decals: + 1693: -29,24 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineW + decals: + 1694: -28,23 + - node: + color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 225: 3,-3 - 226: 4,-3 - 227: 5,-3 + 1651: 3,-3 + 1652: 4,-3 + 1653: 5,-3 - node: color: '#52B4E95D' id: HalfTileOverlayGreyscale @@ -1451,6 +1586,12 @@ entities: 228: 3,-5 229: 4,-5 230: 5,-5 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 1647: -4,-1 + 1648: -3,-1 - node: color: '#52B4E95D' id: HalfTileOverlayGreyscale180 @@ -1483,6 +1624,11 @@ entities: decals: 139: 6,-13 140: 6,-14 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 1649: 8,-3 - node: color: '#52B4E95D' id: HalfTileOverlayGreyscale90 @@ -1550,6 +1696,19 @@ entities: 205: 10,-3 206: 10,-2 207: 10,-1 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 1533: 1,2 + 1536: -1,2 + 1602: 4,2 + 1606: 4,1 + 1618: 7,-2 + 1637: -1,-3 + 1643: -4,1 + 1644: -3,1 + 1746: 5,-17 - node: color: '#52B4E95D' id: QuarterTileOverlayGreyscale @@ -1608,6 +1767,20 @@ entities: 217: 4,4 218: 5,4 219: 6,4 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 1530: 1,-5 + 1531: 0,-1 + 1538: 2,-1 + 1550: 2,1 + 1599: 6,0 + 1600: 5,-1 + 1608: 5,0 + 1616: 8,-4 + 1640: 2,0 + 1748: 7,-19 - node: color: '#52B4E967' id: QuarterTileOverlayGreyscale180 @@ -1624,6 +1797,23 @@ entities: 222: 8,1 223: 8,0 224: 9,0 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 1529: -1,-5 + 1532: 1,-1 + 1540: 1,1 + 1541: 1,0 + 1544: 0,0 + 1546: 0,1 + 1548: -1,1 + 1601: 4,-1 + 1617: 7,-4 + 1638: -1,-1 + 1639: -1,0 + 1749: 5,-19 + 1750: 6,-18 - node: color: '#52B4E95D' id: QuarterTileOverlayGreyscale270 @@ -1662,6 +1852,23 @@ entities: 201: -6,0 202: -6,2 203: -6,1 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 1534: 0,2 + 1535: 2,2 + 1539: 0,0 + 1542: 0,1 + 1543: 1,0 + 1545: 1,1 + 1598: 6,1 + 1607: 5,1 + 1619: 8,-2 + 1645: -4,1 + 1646: -3,1 + 1747: 7,-17 + 1751: 6,-18 - node: color: '#52B4E928' id: QuarterTileOverlayGreyscale90 @@ -1741,11 +1948,16 @@ entities: id: Remains decals: 494: 9.3235035,20.935684 + 1660: 11.623154,21.468328 + 1661: 9.748154,19.718328 + 1662: 11.373154,20.52041 - node: color: '#FFFFFFFF' id: Rock01 decals: 866: 30.295746,-13.899708 + 1507: -33.864315,16.552914 + 1671: 11.22732,19.009995 - node: color: '#FFFFFFFF' id: Rock02 @@ -1755,7 +1967,6 @@ entities: color: '#FFFFFFFF' id: Rock04 decals: - 495: 11.1516285,19.498184 534: -31.810247,3.5101604 - node: color: '#FFFFFFFF' @@ -1774,7 +1985,6 @@ entities: color: '#FFFFFFFF' id: Rock07 decals: - 532: -23.32027,15.930775 865: 33.733246,-4.5086083 - node: cleanable: True @@ -1829,6 +2039,11 @@ entities: 1100: 5,7 1101: 5,7 1102: 5,7 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 1572: 5,2 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -1861,6 +2076,12 @@ entities: decals: 696: 22,-8 697: 22,-7 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 1655: -56,19 + 1656: -56,21 - node: color: '#FFFFFFFF' id: WarnLineN @@ -1875,6 +2096,8 @@ entities: 700: 23,-6 702: 21,-7 941: 28,-5 + 1634: -4,-3 + 1635: -3,-3 - node: color: '#FFFFFFFF' id: WarnLineS @@ -1889,6 +2112,8 @@ entities: 310: 21,-5 311: 22,-5 942: 28,-5 + 1632: -4,-5 + 1633: -3,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -1915,15 +2140,11 @@ entities: 923: -17.246885,23.018742 924: -17.459846,23.004852 925: -17.94596,23.278002 - 926: -19.689594,21.752121 - 927: -19.388668,21.77064 928: -19.402557,21.377121 929: -19.351631,20.89564 930: -19.976631,21.168787 - 931: -20.198853,21.594713 932: -20.509039,23.498323 933: -18.272928,22.61457 - 934: -20.485891,22.674757 935: -17.41243,22.23957 936: -16.481876,23.035868 937: -15.143911,23.008091 @@ -1950,12 +2171,6 @@ entities: id: WoodTrimThinLineS decals: 915: -17.655579,23.170362 - - node: - angle: -0.2617993877991494 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 919: -20.124329,21.482862 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -2017,169 +2232,169 @@ entities: id: heart decals: 318: 21.007015,-6.007598 - - node: - color: '#DDC3A17F' - id: largebrush - decals: - 1002: -29.71485,17.115112 - 1003: -29.667974,17.943237 - 1004: -29.90235,18.583862 - 1005: -29.855474,19.068237 - 1006: -29.917974,19.990112 - 1007: -29.83985,21.271362 - 1008: -28.9961,17.411987 - 1009: -28.65235,17.302612 - 1010: -27.949224,17.240112 - 1011: -27.324224,17.146362 - 1012: -26.292974,17.208862 - 1013: -26.3086,17.911987 - 1014: -26.074224,18.818237 - 1015: -25.9961,19.865112 - 1016: -26.21485,20.865112 - 1017: -26.21485,21.849487 - 1018: -26.105474,24.646362 - 1019: -26.0586,23.490112 - 1020: -26.02735,22.490112 - 1021: -26.83985,25.005737 - 1022: -27.511724,24.943237 - 1023: -29.08985,24.865112 - 1024: -29.542974,24.755737 - 1025: -29.761724,23.505737 - 1026: -29.667974,22.943237 - 1027: -29.105474,24.021362 - 1028: -28.449224,24.318237 - 1029: -27.417974,24.240112 - 1030: -26.90235,23.880737 - 1031: -26.699224,23.677612 - 1032: -27.8086,23.474487 - 1033: -28.77735,23.458862 - 1034: -29.4961,23.255737 - 1035: -28.605474,22.833862 - 1036: -27.9336,23.021362 - 1037: -27.105474,22.990112 - 1038: -26.886724,22.818237 - 1039: -28.0586,22.443237 - 1040: -29.011724,22.411987 - 1041: -30.08985,22.224487 - 1042: -29.636724,21.693237 - 1043: -28.8711,21.849487 - 1044: -27.8086,21.896362 - 1045: -26.886724,21.958862 - 1046: -26.417974,21.318237 - 1047: -26.77735,21.083862 - 1048: -27.71485,20.849487 - 1049: -28.542974,20.802612 - 1050: -28.886724,20.380737 - 1051: -28.667974,20.130737 - 1052: -27.792974,20.240112 - 1053: -27.1211,20.396362 - 1054: -26.8086,20.161987 - 1055: -26.886724,19.880737 - 1056: -28.2461,19.661987 - 1057: -28.636724,19.630737 - 1058: -28.9961,19.536987 - 1059: -28.699224,19.208862 - 1060: -27.83985,19.224487 - 1061: -26.71485,19.380737 - 1062: -26.2461,19.115112 - 1063: -27.011724,18.115112 - 1064: -27.824224,18.177612 - 1065: -28.9961,18.552612 - 1066: -28.02735,18.646362 - 1067: -27.042974,18.786987 - 1068: -28.542974,18.021362 - 1069: -29.58985,19.255737 - 1070: -29.699224,20.146362 - 1071: -29.5586,24.365112 - 1072: -28.21485,24.865112 - 1073: -27.636724,19.693237 - 1074: -26.167974,20.427612 - 1075: -26.2461,18.880737 - 1076: -26.71485,17.849487 - 1077: -27.6211,17.583862 - 1078: -28.667974,18.161987 - 1079: -28.90235,18.552612 - 1080: -27.667974,18.818237 - 1081: -27.1211,18.802612 - 1082: -26.292974,24.458862 - 1083: -26.355474,23.521362 - 1084: -27.511724,23.786987 - 1085: -28.4336,23.880737 - - node: - color: '#DDC3A188' - id: largebrush - decals: - 946: -29.588238,17.826727 - 947: -29.228863,16.951727 - - node: - color: '#DDC3A1FF' - id: largebrush - decals: - 948: -26.975052,16.482977 - 949: -26.365677,16.342352 - 950: -25.756302,16.529852 - 951: -25.287552,16.748602 - 952: -25.600052,17.217352 - 953: -25.209427,17.576727 - 954: -25.584427,18.029852 - 955: -25.193802,18.436102 - 956: -25.256302,19.061102 - 957: -25.162552,19.826727 - 958: -25.240677,20.498602 - 959: -25.287552,21.217352 - 960: -27.786806,16.396362 - 961: -28.318056,16.365112 - 962: -28.583681,16.349487 - 963: -29.052431,16.380737 - 964: -29.458681,16.411987 - 965: -30.021181,16.396362 - 966: -30.380556,16.599487 - 967: -30.505556,16.849487 - 968: -30.458681,17.318237 - 969: -30.427431,17.646362 - 970: -30.552431,18.271362 - 971: -30.599306,18.755737 - 972: -30.427431,19.052612 - 973: -30.380556,19.474487 - 974: -30.614931,20.036987 - 975: -30.583681,20.755737 - 976: -30.552431,21.271362 - 977: -30.896181,21.865112 - 978: -30.818056,22.365112 - 979: -30.614931,23.130737 - 980: -30.568056,23.802612 - 981: -30.458681,24.115112 - 982: -30.458681,24.583862 - 983: -30.630556,25.193237 - 984: -30.380556,25.552612 - 985: -29.802431,25.802612 - 986: -29.396181,25.505737 - 987: -28.427431,25.505737 - 988: -27.739931,25.677612 - 989: -27.302431,25.818237 - 990: -26.739931,25.599487 - 991: -26.583681,25.568237 - 992: -26.224306,25.521362 - 993: -25.599306,25.521362 - 994: -25.302431,25.193237 - 995: -25.224306,24.708862 - 996: -25.396181,24.005737 - 997: -25.505556,23.505737 - 998: -25.568056,23.068237 - 999: -25.4961,22.615112 - 1000: -25.292974,22.380737 - 1001: -25.136724,21.849487 - node: color: '#D381C996' id: p decals: 323: 19.831013,-6.0035434 + - node: + cleanable: True + color: '#DE3A3A96' + id: rune1 + decals: + 1672: 10.415637,20.718328 + - node: + cleanable: True + color: '#7915009C' + id: rune4 + decals: + 1821: -20.007626,22.1254 + - node: + cleanable: True + color: '#791500BC' + id: skull + decals: + 1739: 16.185108,-10.110026 + 1740: 14.330939,-10.068359 - node: cleanable: True color: '#000000FF' id: splatter decals: 438: 2.96813,6.896194 + - node: + cleanable: True + color: '#7915002E' + id: splatter + decals: + 1755: -22.357088,-8.91433 + 1756: -22.971672,-8.935163 + 1757: -22.221672,-8.69558 + 1758: -21.940422,-8.872663 + 1759: -21.867504,-9.28933 + 1760: -22.284172,-9.2059965 + 1761: -22.482088,-9.1122465 + 1762: -22.034172,-9.091413 + 1763: -21.700838,-9.13308 + 1764: -21.752922,-9.32058 + 1765: -21.940422,-9.3622465 + 1766: -22.544588,-8.9872465 + 1767: -22.263338,-8.778913 + 1768: -22.034172,-8.63308 + 1769: -21.888338,-7.4247456 + 1770: -21.888338,-7.1122456 + 1771: -22.440422,-6.966412 + 1772: -22.367504,-7.445579 + 1773: -22.263338,-7.633079 + 1774: -23.586254,-7.0184956 + 1775: -23.617504,-6.7372456 + 1776: -23.492504,-7.445579 + 1777: -24.013338,-7.466412 + 1778: -24.117504,-7.5809956 + 1779: -24.742504,-8.778913 + 1780: -25.273754,-8.50808 + 1781: -25.075838,-8.44558 + 1782: -24.440422,-8.778913 + 1783: -24.305004,-9.03933 + 1784: -24.784172,-8.747663 + 1785: -24.909172,-8.528913 + 1786: -24.586254,-8.185162 + 1787: -24.523754,-8.6434965 + 1788: -24.544588,-8.716413 + 1789: -22.669588,-7.810162 + 1790: -22.180004,-7.216412 + 1791: -22.002922,-7.060162 + 1792: -24.200838,-7.0184956 + 1793: -24.169588,-6.695579 + 1794: -24.315422,-7.1434956 + 1795: -24.398754,-7.653912 + 1796: -23.940422,-7.966412 + 1797: -23.002922,-7.320579 + 1798: -22.523754,-7.372662 + 1799: -22.315422,-7.4247456 + 1800: -22.315422,-7.4247456 + 1801: -22.315422,-7.4247456 + 1802: -24.325838,-7.278912 + 1803: -24.055004,-7.622662 + 1804: -22.627922,-8.69558 + 1805: -22.273754,-8.935163 + 1806: -22.034172,-8.997663 + 1807: -24.721672,-9.07058 + 1808: -24.502922,-9.03933 + 1809: -24.888338,-8.497662 + 1810: -25.002922,-8.47683 + 1811: -25.169588,-8.53933 + 1812: -24.982088,-8.653913 + 1813: -24.075838,-9.247663 + - node: + cleanable: True + color: '#79150037' + id: splatter + decals: + 1705: 15.003492,-11.157479 + 1706: 14.170159,-10.855396 + 1707: 14.659742,-10.719979 + 1708: 14.649325,-11.313729 + 1709: 14.430575,-11.438729 + 1710: 15.51391,-11.053312 + 1711: 15.399325,-11.376229 + 1712: 14.930575,-10.594979 + 1713: 14.857659,-10.542896 + 1714: 15.060021,-11.282479 + 1715: 15.028771,-11.261646 + 1716: 14.810021,-11.324146 + 1717: 14.632938,-11.365812 + 1718: 15.289188,-11.292896 + 1719: 15.560022,-11.428312 + 1720: 15.726688,-11.563729 + 1721: 15.101688,-11.157479 + 1722: 14.789188,-11.209562 + 1723: 14.820438,-11.219979 + 1724: 14.580855,-11.563729 + 1725: 14.882938,-10.907479 + 1726: 15.132938,-10.959562 + 1727: 15.775841,-11.334562 + 1728: 15.30709,-10.584562 + 1729: 15.192507,-10.469979 + 1730: 14.80709,-10.542896 + 1731: 14.067507,-10.824146 + 1733: 15.848757,-11.219979 + 1734: 15.452923,-10.980396 + 1735: 15.505007,-10.469979 + 1736: 14.952923,-10.324146 + 1737: 14.24459,-10.751229 + - node: + cleanable: True + color: '#DE3A3A30' + id: splatter + decals: + 1695: 15.424165,-10.949146 + 1696: 14.944998,-10.834562 + 1697: 14.611665,-10.886646 + 1698: 14.663748,-11.219979 + 1699: 15.007498,-11.334562 + 1700: 15.247081,-11.313729 + 1701: 14.913748,-11.022062 + 1702: 14.569998,-10.782479 + 1703: 15.194998,-10.667896 + 1704: 15.194998,-10.678312 + - node: + cleanable: True + color: '#79150096' + id: star + decals: + 1752: -24.180004,-7.101829 + 1753: -25.127922,-8.85183 + 1754: -22.159172,-7.1747456 + - node: + cleanable: True + color: '#DE3A3A96' + id: star + decals: + 1664: 11.091904,20.853745 + 1667: 9.685654,20.478745 + 1668: 10.237737,21.27041 + 1670: 10.612737,19.968328 - type: GridAtmosphere version: 2 data: @@ -2199,7 +2414,8 @@ entities: 0,3: 0: 49039 1,0: - 0: 33655 + 0: 33399 + 1: 256 1,1: 0: 47615 1,2: @@ -2639,7 +2855,8 @@ entities: -9,6: 0: 52974 -8,7: - 0: 26127 + 0: 17935 + 4: 8192 -9,7: 0: 35020 -7,5: @@ -2942,7 +3159,7 @@ entities: - type: ContainedSolution containerName: food container: 14 - - uid: 5384 + - uid: 5438 components: - type: MetaData name: NT-██-███-██ @@ -4512,7 +4729,7 @@ entities: - type: NavMap - type: GravityShake shakeTimes: 10 - - uid: 6631 + - uid: 6685 components: - type: MetaData name: Шаттл ОБР KRN @@ -4641,40028 +4858,49497 @@ entities: - type: RadiationGridResistance - type: IFF flags: Hide -- proto: AcousticGuitarInstrument - entities: - - uid: 19 - components: - - type: Transform - pos: -13.505168,6.489943 - parent: 2 - - uid: 20 - components: - - type: Transform - pos: 23.682198,-23.5179 - parent: 2 -- proto: ActionToggleSuitPiece - entities: - - uid: 6 - components: - - type: Transform - parent: 4 - - type: InstantAction - container: 4 - entIcon: 7 -- proto: AdminInstantEffectFlash - entities: - - uid: 5385 - components: - - type: Transform - pos: 0.47113037,7.1076355 - parent: 5384 -- proto: AirAlarm - entities: - - uid: 21 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 2 - - type: DeviceList - devices: - - 2992 - - 3010 - - 2994 - - uid: 22 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 3006 - - 3009 - - 3028 - - 3029 - - 2995 - - 2996 - - 104 - - uid: 23 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 3038 - - 2997 - - 3037 - - 2998 - - 2999 - - 3000 - - 3001 - - 3036 - - 113 - - 3007 - - uid: 24 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 2 - - type: DeviceList - devices: - - 2979 - - 3034 - - 2978 - - 3035 - - 2977 - - 2976 - - 3033 - - 3004 - - 106 - - 3032 - - 2974 - - 3031 - - 3030 - - 3002 - - 3046 - - uid: 25 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 2 - - type: DeviceList - devices: - - 3003 - - 2973 - - 2972 - - 2971 - - 3027 - - 2966 - - 3021 - - 107 - - 3026 - - 2970 - - 3025 - - 2969 - - 2962 - - 3008 - - 3048 - - 3047 - - uid: 26 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,9.5 - parent: 2 - - type: DeviceList - devices: - - 2968 - - 3024 - - 2967 - - 3022 - - 108 - - 3023 - - uid: 27 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,1.5 - parent: 2 - - type: DeviceList - devices: - - 2965 - - 3039 - - 109 - - 2963 - - 3042 - - 3040 - - 2964 - - uid: 28 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 2 - - type: DeviceList - devices: - - 2984 - - 3043 - - 111 - - 2983 - - 3044 - - 110 - - 3005 - - 3045 - - uid: 29 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 3013 - - 2985 - - 3014 - - 2986 - - 3012 - - 3011 - - 2988 - - 2989 - - 2987 - - 112 - - 2294 - - 2293 - - uid: 30 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 3017 - - 3015 - - 3016 - - 2990 - - 2993 - - 3018 - - 2980 - - 3019 - - 2981 - - 2982 - - 3020 -- proto: Airlock - entities: - - uid: 31 - components: - - type: Transform - pos: -11.5,5.5 - parent: 2 - - uid: 5386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 5384 - - uid: 5387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 5384 - - uid: 5388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 5384 - - uid: 5389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 5384 -- proto: AirlockBrigGlassLocked - entities: - - uid: 32 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 2 - - uid: 33 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 2 - - uid: 34 - components: - - type: Transform - pos: -1.5,6.5 - parent: 2 - - uid: 35 - components: - - type: Transform - pos: -2.5,6.5 - parent: 2 -- proto: AirlockBrigLocked - entities: - - uid: 36 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 37 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 -- proto: AirlockCaptainLocked - entities: - - uid: 38 - components: - - type: Transform - pos: -1.5,0.5 - parent: 2 -- proto: AirlockCargoGlassLocked - entities: - - uid: 39 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 2 - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 2 -- proto: AirlockCargoLocked - entities: - - uid: 41 - components: - - type: Transform - pos: 12.5,11.5 - parent: 2 - - uid: 42 - components: - - type: Transform - pos: 12.5,10.5 - parent: 2 -- proto: AirlockCentralCommandGlassLocked - entities: - - uid: 6632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,11.5 - parent: 6631 -- proto: AirlockChapelLocked - entities: - - uid: 43 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 2 -- proto: AirlockChemistryGlassLocked - entities: - - uid: 44 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 2 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 45 - components: - - type: Transform - pos: 20.5,4.5 - parent: 2 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 46 - components: - - type: Transform - pos: 2.5,14.5 - parent: 2 -- proto: AirlockCommandGlass - entities: - - uid: 47 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 2 -- proto: AirlockCommandGlassLocked - entities: - - uid: 48 - components: - - type: Transform - pos: -12.5,10.5 - parent: 2 - - uid: 49 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 50 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 6633 - components: - - type: Transform - pos: 5.5,0.5 - parent: 6631 - - uid: 6634 - components: - - type: Transform - pos: 3.5,0.5 - parent: 6631 - - uid: 6635 - components: - - type: Transform - pos: -2.5,0.5 - parent: 6631 - - uid: 6636 - components: - - type: Transform - pos: -4.5,0.5 - parent: 6631 - - uid: 6637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 6631 -- proto: AirlockDetectiveGlassLocked - entities: - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,11.5 - parent: 2 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 6638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 6631 -- proto: AirlockEngineeringLocked - entities: - - uid: 52 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 53 - components: - - type: Transform - pos: 18.5,2.5 - parent: 2 - - uid: 54 + - uid: 7020 components: + - type: MetaData + name: 'SyndyLand ' - type: Transform - pos: 28.5,-1.5 - parent: 2 + pos: -466.54166,21.375 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAABgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAEQAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAADEQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAABEQAAAAAAEQAAAAACEQAAAAABEQAAAAABEQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAACEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAABEQAAAAABEQAAAAABEQAAAAACEQAAAAAAEQAAAAACEQAAAAADBwAAAAAKBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAEQAAAAADEQAAAAACEQAAAAADEQAAAAACEQAAAAABEQAAAAACEQAAAAACEQAAAAADEQAAAAAAEQAAAAAAEQAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAJQAAAAADgQAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAABEQAAAAABEQAAAAABEQAAAAABEQAAAAABEQAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAEQAAAAACEQAAAAADEQAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAADBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAACEQAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAEQAAAAAAEQAAAAAAEQAAAAABEQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAHBwAAAAAAEQAAAAACEQAAAAADEQAAAAAAEQAAAAABEQAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAALBwAAAAAABwAAAAAABwAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAAAEQAAAAABEQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAACEQAAAAABEQAAAAABEQAAAAADEQAAAAACEQAAAAAAEQAAAAACEQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAEQAAAAABgQAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAABEQAAAAAABwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAABwAAAAAKBwAAAAAAgQAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAADBwAAAAALBwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: EQAAAAADEQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEQAAAAACBwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAACEQAAAAACBwAAAAAGgQAAAAAAIAAAAAAAIAAAAAAAJQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAIAAAAAABIAAAAAADBwAAAAAABwAAAAAAgQAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACBwAAAAAJBwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAFAAAAAAAFwAAAAACFwAAAAACFwAAAAACFwAAAAABFwAAAAAAgQAAAAAAEQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFwAAAAACFwAAAAAAFwAAAAABgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAABgAAAAACBgAAAAADBgAAAAABBgAAAAACBgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABgAAAAACBgAAAAACBgAAAAADBgAAAAACBgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAACBgAAAAAABgAAAAADBgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAACBgAAAAACBgAAAAADBgAAAAAAgQAAAAAADQAAAAAEDQAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAACDgAAAAAADQAAAAAEDgAAAAABDgAAAAAAJQAAAAABgQAAAAAAJQAAAAABJQAAAAACgQAAAAAAgQAAAAAADQAAAAACDQAAAAAHDgAAAAABDQAAAAABDgAAAAACDgAAAAABDgAAAAABDQAAAAAGDQAAAAAFDgAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABJQAAAAABDgAAAAAADgAAAAACDQAAAAAFDgAAAAABDgAAAAACDQAAAAAADQAAAAAADQAAAAAGDQAAAAACDQAAAAAGgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADJQAAAAACEwAAAAAGEwAAAAADDQAAAAAHDQAAAAADDQAAAAAEDQAAAAAGgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAADEwAAAAAEEwAAAAAFDQAAAAACDQAAAAAHDQAAAAACgQAAAAAAGAAAAAAAGAAAAAACGAAAAAABgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAEEwAAAAAGEwAAAAADEwAAAAABEwAAAAAEEwAAAAABDQAAAAAAgQAAAAAAGAAAAAADGAAAAAABGAAAAAAAgQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: IAAAAAADIAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAADEQAAAAACEQAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAJQAAAAABgQAAAAAAEQAAAAACBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAIAAAAAADIAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAJQAAAAADgQAAAAAAEQAAAAADBwAAAAADBwAAAAAABwAAAAAGAAAAAAAAIAAAAAABIAAAAAADgQAAAAAAEQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACJQAAAAACgQAAAAAAgQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABgQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAADgQAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAALgQAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAEQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAEQAAAAABEQAAAAACEQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAAB + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAABEQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAABEQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAABEQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKEQAAAAAAEQAAAAACEQAAAAADEQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAEQAAAAADEQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAADgQAAAAAABgAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAACgQAAAAAABgAAAAABBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAMBwAAAAACgQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAgQAAAAAABgAAAAACBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABgAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADEQAAAAACEQAAAAABEQAAAAAAEQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAABEQAAAAABEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAAEQAAAAACEQAAAAACEQAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAEQAAAAAABwAAAAAM + version: 6 + -1,2: + ind: -1,2 + tiles: BwAAAAAJBwAAAAAAEwAAAAAFEwAAAAAGEwAAAAAEEwAAAAAAEwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABEwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: BwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 323: -5.963196,28.133904 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 324: -10.529022,26.592236 + 327: -6.9847717,28.310986 + 333: -5.791565,31.311356 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 328: -7.027771,28.185986 + 331: -8.080688,25.97702 + 334: -5.8292236,31.04052 + 335: -6.4229736,31.38427 + 336: -4.08963,27.094475 + 337: -10.506317,26.427807 + 338: -7.37088,28.594475 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 329: -3.790924,27.415154 + 330: -7.622345,26.372852 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 326: -6.5472717,28.821404 + 332: -3.5516357,27.13327 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 325: -8.247772,28.842236 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerNe + decals: + 2: -5,21 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNe + decals: + 114: 1,20 + 119: 7,19 + 131: 9,26 + 147: 10,22 + 152: -12,20 + 161: -13,29 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNw + decals: + 118: 5,19 + 145: 0,26 + 146: 8,22 + 153: -13,20 + 491: -15,29 + 494: -1,20 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerSe + decals: + 1: -5,20 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSe + decals: + 105: 1,16 + 120: 7,17 + 149: 10,21 + 154: -12,17 + 162: -13,28 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSw + decals: + 106: -1,16 + 121: 5,17 + 144: 0,25 + 150: 8,21 + 159: -13,17 + 163: -15,28 + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerNw + decals: + 322: -1,18 + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerSw + decals: + 136: 8,25 + 321: -1,17 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineE + decals: + 116: 1,19 + 117: 1,17 + 123: 7,18 + 132: 9,25 + 133: 9,24 + 155: -12,18 + 156: -12,19 + - node: + color: '#9FED5896' + id: BrickTileSteelLineN + decals: + 3: -6,21 + 4: -7,21 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 115: 0,20 + 124: 3,26 + 125: 2,26 + 126: 1,26 + 127: 5,26 + 128: 6,26 + 129: 7,26 + 130: 8,26 + 148: 9,22 + 318: -2,18 + 319: -2,18 + 492: -14,29 + - node: + color: '#9FED5896' + id: BrickTileSteelLineS + decals: + 5: -6,20 + 6: -7,20 + 7: -8,20 + 8: -9,20 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineS + decals: + 122: 6,17 + 137: 7,25 + 138: 6,25 + 139: 5,25 + 140: 4,25 + 141: 3,25 + 142: 2,25 + 143: 1,25 + 164: -14,28 + 317: -2,17 + 320: -2,17 + 457: 0,6 + 458: 2,6 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineW + decals: + 112: -1,19 + 134: 8,24 + 158: -13,18 + 493: -13,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushCTwo + decals: + 533: -1.7895813,28.253872 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushc3 + decals: + 534: -10.292603,26.024704 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 28: -8,17 + 29: -10,18 + 30: -6,17 + 31: -5,18 + 35: -5,15 + 36: -7,15 + 37: -8,15 + 38: -7,14 + 39: -5,14 + 481: -17,25 + 482: -13,26 + 483: -12,22 + 484: -16,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 497: -1,20 + 498: 3,18 + 499: 7,17 + 500: 5,19 + 501: 1,22 + 502: -8,24 + 508: 3,28 + 509: 2,29 + 510: 4,30 + 511: 0,25 + 512: 9,24 + 513: 8,21 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 34: -5,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 495: -1,16 + 505: -15,29 + 507: 4,28 + 514: 9,22 + 515: 7,17 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 40: -7,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 506: 0,25 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 32: -8,14 + 42: -5,14 + 43: -5,17 + 485: -16,24 + 486: -13,26 + 487: -15,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 496: 1,19 + 503: -13,20 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 33: -7,15 + 41: -7,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 504: -12,17 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 259: -20.709167,16.192112 + 262: 10.3003235,11.703659 + 282: -18.812775,20.317295 + 313: -5.024231,9.6238575 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 260: -15.872253,13.969418 + 314: -1.7224731,10.088278 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 261: -11.693939,13.9555855 + 263: 3.74823,14.363667 + 264: 11.524231,17.54451 + 281: -20.166962,22.555283 + 312: -18.651001,13.750916 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb2 + decals: + 537: -2.5846558,27.097622 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb3 + decals: + 538: -6.197937,25.942936 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb4 + decals: + 536: -11.027893,27.378872 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb5 + decals: + 535: -6.271332,30.003872 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 179: -2.7109985,7.8778954 + 205: 8.719208,12.0395775 + 235: -16.94513,14.510227 + 289: -16.720459,18.476269 + 298: -0.90667725,10.604099 + 342: -19.362549,29.548481 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 180: -3.0859985,8.304979 + 181: -2.481842,8.471645 + 195: 3.8035583,12.129597 + 227: -11.730896,12.638142 + 249: -18.404816,15.535141 + 257: -19.914948,16.973362 + 274: -20.331482,19.870983 + 275: -19.998138,20.423069 + 290: -15.553772,17.153988 + 344: -18.914642,28.923481 + 353: -17.678802,29.638424 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 196: 2.2618713,11.218697 + 204: 10.083771,13.43541 + 214: 7.00058,13.958569 + 220: 6.5460205,11.05991 + 236: -17.465973,14.624813 + 247: -19.186066,13.712223 + 297: 0.009979248,9.302017 + 343: -18.341736,29.485981 + 351: -16.616302,28.871399 + 352: -17.460052,28.721756 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 228: -13.293396,14.0652275 + 248: -16.529816,12.962223 + 299: -1.2191772,9.781183 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 182: -3.4297485,9.148729 + 192: 2.8868713,8.491678 + 208: 7.000885,14.253708 + 223: -11.333191,12.229149 + 246: -17.64441,15.441391 + 269: -20.383575,20.025726 + 288: -15.803772,16.989483 + 305: -0.099731445,8.614517 + 306: 1.2961121,9.479099 + 349: -18.363586,28.194313 + 350: -16.83435,27.860981 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 188: 3.0282593,11.186012 + 197: 8.959778,12.926998 + 201: 8.552521,12.737495 + 224: -10.458099,11.833317 + 232: -12.8350525,14.5652275 + 233: -11.668396,14.513142 + 234: -7.637146,11.544392 + 243: -19.236816,14.687313 + 244: -16.497223,15.260937 + 251: -19.226135,15.565578 + 252: -15.924042,13.575996 + 265: -20.154388,15.480694 + 276: -20.446075,19.173615 + 291: -2.1395874,13.239975 + 300: -0.9078369,9.083267 + 355: -17.684387,30.027073 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 178: -1.919342,7.6501026 + 184: -3.544342,10.396568 + 199: 9.434479,13.53809 + 207: 7.6467285,14.52454 + 217: 4.6368713,14.315113 + 221: -11.207184,11.791649 + 229: -12.418396,14.21106 + 237: -17.205566,15.103977 + 245: -16.134003,14.378555 + 250: -18.528198,16.24266 + 253: -15.819885,12.775513 + 254: -19.424622,16.556694 + 255: -20.268372,16.025444 + 266: -21.268982,19.689026 + 270: -20.164825,20.87286 + 277: -19.498138,19.694447 + 278: -18.208618,20.506947 + 287: -16.28891,17.475395 + 293: -2.4718628,12.635807 + 296: -0.36502075,10.541599 + 302: -1.9182739,9.749933 + 303: -0.9182739,11.385349 + 307: 1.512146,10.916599 + 309: -1.7055359,11.520767 + 310: -0.7367859,12.177017 + 311: -2.65094,9.218683 + 341: -20.263947,29.433899 + 345: -19.716736,28.694313 + 347: -18.289642,28.933899 + 359: -20.510101,28.75549 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 177: -4.1035156,8.754269 + 189: 3.6264648,11.707279 + 193: 3.0743713,7.616678 + 194: 2.2723083,7.397928 + 200: 8.694916,13.465172 + 206: 7.8862915,13.654533 + 210: 5.813385,14.982876 + 211: 6.157135,14.159958 + 212: 7.125885,13.46204 + 218: 3.4598083,13.492199 + 219: 6.1710205,10.549492 + 226: -10.821014,14.075642 + 230: -12.699646,15.0964775 + 239: -16.97638,13.791477 + 241: -18.372223,14.801895 + 258: -19.136261,17.056694 + 271: -19.216888,20.56036 + 272: -19.508575,21.385723 + 273: -20.862732,21.374786 + 283: -19.479462,23.055637 + 286: -16.47641,18.287895 + 294: -3.1801758,12.542057 + 295: -0.65667725,9.812433 + 301: -1.7203369,8.843683 + 304: -1.8349304,10.635349 + 308: 2.043396,10.124933 + 340: -19.50354,30.267231 + 346: -18.581299,30.048481 + 356: -17.98645,30.870823 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 176: -5.2805786,9.608437 + 185: -4.784546,10.281982 + 190: 2.7202148,12.134361 + 198: 9.878021,12.892254 + 203: 9.292114,12.143745 + 222: -9.509247,13.458317 + 225: -10.529358,13.7214775 + 231: -13.6163025,15.013142 + 238: -17.924316,13.947727 + 242: -18.82013,13.895645 + 256: -20.74826,16.754612 + 267: -21.279388,20.487804 + 279: -20.312775,21.919865 + 280: -19.677368,22.169865 + 284: -20.37326,23.418903 + 285: -15.809723,17.946701 + 292: -1.4093628,12.844143 + 339: -20.50354,30.225563 + 357: -17.684387,31.38124 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 183: -3.8672485,9.669563 + 186: -4.1074524,10.396568 + 187: 2.4498596,11.281982 + 191: 2.0952148,8.142908 + 202: 10.427521,12.081245 + 209: 6.750885,15.02454 + 213: 7.564087,12.906483 + 215: 7.808075,11.885651 + 216: 3.7723083,14.179699 + 240: -17.47638,12.989395 + 268: -21.341888,18.994476 + 348: -19.279236,27.871399 + 358: -20.051758,27.859657 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerNe + decals: + 473: -13,26 + 475: -12,24 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerNw + decals: + 468: -18,26 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerSe + decals: + 478: -12,22 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerSw + decals: + 464: -18,22 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNe + decals: + 476: -13,24 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineE + decals: + 474: -13,25 + 477: -12,23 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 469: -17,26 + 470: -16,26 + 471: -15,26 + 472: -14,26 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineS + decals: + 461: -15,22 + 462: -16,22 + 463: -17,22 + 479: -13,22 + 480: -14,22 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineW + decals: + 465: -18,23 + 466: -18,24 + 467: -18,25 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNE + decals: + 171: 1,22 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNW + decals: + 172: -1,22 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 108: 1,18 + 168: -3,23 + 170: 1,23 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 110: 6,19 + 111: 4,26 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 107: 0,16 + 151: 9,21 + 166: 6,21 + 459: -1,6 + 460: 1,6 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 109: 5,18 + 167: 3,23 + 169: -1,23 + 315: -2,17 + 316: -2,18 + - node: + color: '#FFFFFFFF' + id: burnt1 + decals: + 21: -17.730835,23.975574 + 25: -15.795837,23.02766 + 26: -12.743744,24.905987 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 516: -6.6373596,30.705158 + 520: -1.8917847,30.688572 + 522: -7.7042847,27.352093 + 524: -7.3917847,27.248009 + 525: -8.600098,29.716759 + 528: -8.454285,30.512115 + 529: -7.8500977,29.535122 + 530: -10.860535,28.378872 + 531: -5.933441,26.73304 + - node: + color: '#FFFFFFFF' + id: burnt2 + decals: + 22: -14.980835,24.52766 + 27: -16.087494,26.421402 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 517: -11.097778,25.834408 + 519: -4.4438477,31.407322 + 523: -7.7667847,26.810509 + 526: -8.610535,30.148628 + 532: -5.591675,26.98304 + - node: + color: '#FFFFFFFF' + id: burnt3 + decals: + 23: -18.043335,25.829742 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 518: -1.7980347,27.23024 + 527: -8.204285,29.919464 + - node: + color: '#FFFFFFFF' + id: burnt4 + decals: + 24: -12.0354,21.944324 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 521: -8.079285,27.029179 + - node: + color: '#D4D4D40B' + id: ghost + decals: + 15: -16.064606,23.142242 + 16: -16.064606,23.142242 + 19: -12.546997,24.017242 + 20: -12.546997,24.017242 + - node: + color: '#D4D4D428' + id: guy + decals: + 13: -17.033325,24.381824 + - node: + color: '#79150096' + id: skull + decals: + 11: -17.870544,25.860992 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#79150027' + id: slash + decals: + 427: -12.100861,31.72918 + 428: -12.569611,31.927097 + 429: -12.298798,31.94793 + 430: -12.205048,31.958347 + 431: -12.371704,32.13543 + 432: -12.830048,31.812515 + 433: -12.830048,31.770847 + 434: -12.350861,31.645847 + 435: -12.621704,31.69793 + 436: -12.882111,31.79168 + 437: -13.350861,31.989597 + 438: -13.090454,32.07293 + 439: -13.027954,32.062515 + - node: + cleanable: True + angle: 0.9599310885968813 rad + color: '#79150027' + id: slash + decals: + 396: -10.438843,31.167362 + 397: -10.532593,30.99028 + 398: -9.990906,30.375698 + 399: -9.834656,29.969448 + 400: -9.522156,29.469448 + 401: -9.386749,29.33403 + 402: -10.074249,30.063198 + 403: -9.699249,29.063198 + 404: -9.542999,29.64653 + 405: -9.167999,29.24028 + 406: -8.949249,29.02153 + 407: -9.730499,29.77153 + 408: -8.959656,28.80278 + 409: -8.751343,28.750698 + 410: -8.865906,28.750698 + 411: -9.740906,29.67778 + 412: -10.397156,30.17778 + 413: -10.532593,30.52153 + 414: -10.845093,30.636112 + 415: -11.001343,30.86528 + 416: -11.220093,30.906948 + 417: -11.480499,31.031948 + 418: -10.657593,31.11528 + 419: -10.990906,31.469448 + 420: -11.365906,31.58403 + 421: -11.626343,31.70903 + 422: -11.569611,31.54168 + 423: -11.944611,31.63543 + 424: -12.173798,31.708347 + 425: -12.017548,31.864597 + 426: -12.725861,31.843765 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#7915003B' + id: slash + decals: + 440: -12.871704,31.864597 + 441: -13.517548,32.218765 + 442: -13.705048,31.875015 + 443: -13.965454,31.875015 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#8315003A' + id: slash + decals: + 444: -12.809204,31.88543 + 445: -13.975861,31.989597 + 446: -11.788361,31.458347 + 447: -10.892548,30.739597 + 448: -11.007111,31.26043 + 449: -11.892548,31.85418 + - node: + cleanable: True + angle: 0.9599310885968813 rad + color: '#8315003A' + id: slash + decals: + 450: -8.580048,28.47918 + 451: -9.267548,29.26043 + 452: -9.882111,29.88543 + 453: -10.559204,30.531265 + 454: -10.465454,30.875015 + 455: -10.923798,31.16668 + 456: -12.069611,31.44793 + - node: + color: '#9FED5896' + id: snake + decals: + 12: -11.772919,23.21516 + - node: + color: '#79150026' + id: splatter + decals: + 67: -9.376099,19.89534 + 68: -9.636536,20.02034 + 69: -9.782349,20.416176 + 70: -9.376099,20.884926 + 71: -8.626099,20.853676 + 72: -8.594849,20.509926 + 73: -8.511536,20.17659 + 74: -8.626099,19.968258 + 75: -8.990692,19.812008 + 76: -9.844849,19.812008 + 77: -10.042786,19.80159 + 78: -10.021942,20.030758 + 79: -5.1052856,14.056881 + 80: -5.1885986,14.077713 + 81: -5.6885986,14.358963 + 82: -6.146942,14.463131 + 83: -6.9177856,14.254795 + 84: -7.2198486,13.963131 + 85: -7.3760986,13.806881 + 86: -6.9385986,14.150631 + 87: -6.4698486,14.546463 + 88: -5.6990356,14.463131 + 89: -5.146942,14.098545 + 90: -5.053192,13.661045 + 91: -9.855286,19.668545 + 92: -8.886536,19.553963 + 93: -8.542786,19.553963 + 94: -8.136536,19.824795 + 95: -8.157349,20.126877 + 96: -8.157349,20.241463 + 97: -8.219849,20.376877 + 98: -8.344849,20.647713 + 99: -9.188599,20.803963 + 100: -10.157349,20.637295 + 101: -9.917786,19.564377 + 102: -9.032349,19.553963 + 103: -8.344849,19.606045 + 104: -8.240692,20.303963 + - node: + cleanable: True + color: '#79150027' + id: splatter + decals: + 360: -10.483124,30.538223 + 361: -10.511749,30.80278 + 362: -11.074249,30.979862 + 363: -10.897156,30.99028 + 364: -11.240906,31.36528 + 365: -11.397156,31.49028 + 366: -11.178406,31.52153 + 367: -11.459656,31.64653 + 368: -11.605499,31.70903 + 369: -11.917999,31.750698 + 370: -12.042999,31.750698 + 371: -12.438843,31.77153 + 372: -12.720093,31.95903 + 373: -12.907593,32.031948 + 374: -13.480499,32.125698 + 375: -14.011749,32.27153 + 376: -14.074249,32.27153 + 377: -14.261749,31.948612 + 378: -14.240906,31.844448 + 379: -14.167999,31.49028 + 380: -14.011749,31.80278 + 381: -13.845093,32.000698 + 382: -14.220093,32.125698 + 383: -14.532593,31.906948 + 384: -14.459656,31.531948 + 385: -14.147156,31.406948 + 386: -13.949249,31.375698 + 387: -14.230499,31.49028 + 388: -14.324249,31.92778 + 389: -13.615906,32.39653 + 390: -13.636749,32.39653 + 391: -14.355499,31.979862 + 392: -14.595093,31.792362 + 393: -14.449249,31.406948 + 394: -14.501343,32.05278 + 395: -14.365906,32.250698 + - node: + color: '#7915004D' + id: splatter + decals: + 44: -6.165161,14.014709 + 45: -5.7797546,14.368874 + 46: -5.4672546,13.910542 + 47: -6.2797546,13.681374 + 48: -6.5297546,13.764709 + 49: -5.852661,13.618874 + 50: -5.3110046,13.493874 + 51: -6.300598,14.004292 + 52: -5.4985046,14.348042 + 53: -6.206848,14.004292 + 54: -9.032349,20.012497 + 55: -8.740692,20.356247 + 56: -9.449036,20.324997 + 57: -9.469849,20.137497 + 58: -8.949036,20.283329 + 59: -9.511536,20.533329 + 60: -9.584442,19.991665 + 61: -9.011536,20.002079 + 62: -9.094849,20.408329 + 63: -9.678192,20.293747 + 64: -9.209442,20.022915 + 65: -8.959442,20.710415 + 66: -9.521942,20.689579 + - node: + color: '#DE3A3A96' + id: star + decals: + 9: -14.188141,24.100887 + - node: + color: '#DE3A3A96' + id: stickman + decals: + 10: -17.880981,22.52766 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,1: + 0: 30496 + -1,1: + 0: 34944 + 0,2: + 0: 65535 + -1,2: + 0: 65534 + 0,3: + 0: 4575 + -1,3: + 0: 4175 + 0,4: + 0: 16179 + 1,2: + 0: 29489 + 1,3: + 0: 53247 + 2,3: + 0: 30583 + 2,4: + 0: 43694 + -4,3: + 0: 65520 + -5,3: + 0: 65152 + -4,4: + 0: 35219 + -3,3: + 0: 894 + -2,3: + 0: 63247 + 1: 2048 + -2,2: + 0: 51200 + -1,4: + 0: 36312 + -5,4: + 0: 65535 + -4,5: + 0: 65288 + -5,5: + 0: 56599 + -4,6: + 0: 4095 + -5,6: + 0: 3276 + -4,7: + 0: 238 + -5,7: + 0: 18431 + -4,8: + 0: 12 + -3,4: + 0: 7632 + -3,5: + 0: 53709 + -3,6: + 0: 60941 + -3,7: + 0: 65262 + -3,8: + 0: 7 + -2,4: + 0: 4080 + -2,5: + 0: 61695 + -2,6: + 0: 65295 + -2,7: + 0: 30591 + -1,5: + 0: 61482 + 1: 2048 + -1,6: + 0: 30464 + -1,7: + 0: 30471 + 0,5: + 0: 62347 + 0,6: + 0: 4080 + 0,7: + 0: 3276 + 1,4: + 0: 28640 + 1: 32768 + 1,5: + 0: 29780 + 1,6: + 0: 8176 + 1,7: + 0: 273 + 2,5: + 0: 1904 + 2,6: + 0: 819 + -6,4: + 0: 34952 + -6,5: + 0: 136 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 8267 + components: + - type: MetaData + name: SyndyLand Shuttel + - type: Transform + pos: -59.8013,20.26843 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAIAAAAAAAIAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerNw + decals: + 33: -2,-2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerSw + decals: + 32: -2,0 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineE + decals: + 31: -7,-1 + 34: -1,-1 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 22: -6,-2 + 23: -5,-2 + 24: -4,-2 + 25: -3,-2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineS + decals: + 27: -3,0 + 28: -4,0 + 29: -5,0 + 30: -6,0 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineW + decals: + 26: -2,-1 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 15: -1,-2 + 16: -1,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1 + 1: 16 + -1,0: + 0: 15 + 0,-1: + 1: 16 + 0: 256 + -1,-1: + 0: 65280 + -3,0: + 1: 64 + -3,-1: + 0: 32768 + 1: 64 + -2,0: + 0: 15 + 1: 64 + -2,-1: + 0: 65280 + 1: 64 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + temperature: 288.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AcousticGuitarInstrument + entities: + - uid: 19 + components: + - type: Transform + pos: -13.505168,6.489943 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 23.682198,-23.5179 + parent: 2 +- proto: ActionToggleSuitPiece + entities: + - uid: 6 + components: + - type: Transform + parent: 4 + - type: InstantAction + container: 4 + entIcon: 7 +- proto: AdminInstantEffectFlash + entities: + - uid: 5439 + components: + - type: Transform + pos: 0.47113037,7.1076355 + parent: 5438 +- proto: AirAlarm + entities: + - uid: 21 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 3005 + - 3007 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 3019 + - 3023 + - 3041 + - 3042 + - 3008 + - 3009 + - 106 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 3051 + - 3010 + - 3050 + - 3011 + - 3012 + - 3013 + - 3014 + - 3049 + - 115 + - 3021 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 2992 + - 3047 + - 2991 + - 3048 + - 2990 + - 2989 + - 3046 + - 3017 + - 108 + - 3045 + - 2987 + - 3044 + - 3043 + - 3015 + - 3059 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 3016 + - 2986 + - 2985 + - 2984 + - 3040 + - 2979 + - 3034 + - 109 + - 3039 + - 2983 + - 3038 + - 2982 + - 2975 + - 3022 + - 3061 + - 3060 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 2981 + - 3037 + - 2980 + - 3035 + - 110 + - 3036 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 2978 + - 3052 + - 111 + - 2976 + - 3055 + - 3053 + - 2977 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 2997 + - 3056 + - 113 + - 2996 + - 3057 + - 112 + - 3018 + - 3058 + - uid: 29 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 3026 + - 2998 + - 3027 + - 2999 + - 3025 + - 3024 + - 3001 + - 3002 + - 3000 + - 114 + - 2296 + - 2295 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 3030 + - 3028 + - 3029 + - 3003 + - 3006 + - 3031 + - 2993 + - 3032 + - 2994 + - 2995 + - 3033 + - uid: 7021 + components: + - type: Transform + pos: 4.5,24.5 + parent: 7020 + - type: DeviceList + devices: + - 7481 + - 7477 + - 7483 + - 7478 + - 7356 + - 7357 + - 7344 + - 7345 + - uid: 7022 + components: + - type: Transform + pos: 3.5,19.5 + parent: 7020 + - type: DeviceList + devices: + - 7484 + - 7479 + - 7480 + - 7476 + - 7346 + - 7349 + - 7348 + - 7351 + - 7350 + - uid: 7023 + components: + - type: Transform + pos: 1.5,16.5 + parent: 7020 + - uid: 7024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,22.5 + parent: 7020 + - type: DeviceList + devices: + - 7475 + - 7482 + - 7352 + - 7353 + - 7354 + - 7355 +- proto: Airlock + entities: + - uid: 31 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 5438 + - uid: 5441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 5438 + - uid: 5442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 5438 + - uid: 5443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 5438 +- proto: AirlockBrigGlassLocked + entities: + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 36 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 38 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 41 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 6686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 6685 +- proto: AirlockChapelLocked + entities: + - uid: 43 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 45 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 46 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 +- proto: AirlockCommandGlass + entities: + - uid: 47 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 48 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 5.5,0.5 + parent: 6685 + - uid: 6688 + components: + - type: Transform + pos: 3.5,0.5 + parent: 6685 + - uid: 6689 + components: + - type: Transform + pos: -2.5,0.5 + parent: 6685 + - uid: 6690 + components: + - type: Transform + pos: -4.5,0.5 + parent: 6685 + - uid: 6691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 6685 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 6692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 6685 +- proto: AirlockEngineeringLocked + entities: + - uid: 52 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 7025 + components: + - type: Transform + pos: 9.5,19.5 + parent: 7020 + - uid: 7026 + components: + - type: Transform + pos: 9.5,17.5 + parent: 7020 + - uid: 7027 + components: + - type: Transform + pos: 0.5,15.5 + parent: 7020 + - uid: 7028 + components: + - type: Transform + pos: 0.5,13.5 + parent: 7020 - proto: AirlockExternalEngineeringLocked entities: - - uid: 55 + - uid: 55 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 56 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 63 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,19.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,10.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,21.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,19.5 + parent: 2 +- proto: AirlockGlassShuttleSyndicate + entities: + - uid: 7029 + components: + - type: Transform + pos: -0.5,5.5 + parent: 7020 + - uid: 7030 + components: + - type: Transform + pos: 1.5,5.5 + parent: 7020 + - uid: 8268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 8267 + - uid: 8269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 8267 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 72 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 73 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 75 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 7031 + components: + - type: Transform + pos: 4.5,18.5 + parent: 7020 + - uid: 7032 + components: + - type: Transform + pos: 2.5,18.5 + parent: 7020 + - uid: 7033 + components: + - type: Transform + pos: -3.5,15.5 + parent: 7020 + - uid: 7034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 7020 + - uid: 7035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,23.5 + parent: 7020 + - uid: 7036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 7020 +- proto: AirlockMaintEngiLocked + entities: + - uid: 7037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 7020 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 77 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 78 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 +- proto: AirlockMedicalGlass + entities: + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 0.5,4.5 + parent: 6685 +- proto: AirlockMedicalLocked + entities: + - uid: 86 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 +- proto: AirlockMining + entities: + - uid: 5444 + components: + - type: Transform + pos: -6.5,3.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5447: + - DoorStatus: DoorBolt + - uid: 5445 + components: + - type: Transform + pos: 8.5,9.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - uid: 5446 + components: + - type: Transform + pos: 11.5,9.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - uid: 5447 + components: + - type: Transform + pos: -6.5,1.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5444: + - DoorStatus: DoorBolt + - uid: 5448 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 5438 + - type: AccessReader + access: + - - External + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 5449 + components: + - type: Transform + pos: 10.5,1.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5451: + - DoorStatus: DoorBolt + - uid: 5450 + components: + - type: Transform + pos: 10.5,7.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - uid: 5451 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5449: + - DoorStatus: DoorBolt + - uid: 5452 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5453: + - DoorStatus: DoorBolt + - uid: 5453 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 5438 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5452: + - DoorStatus: DoorBolt + - uid: 5454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 5438 +- proto: AirlockQuartermasterLocked + entities: + - uid: 88 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 89 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 90 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 91 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 92 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 95 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 98 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 99 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 +- proto: AirlockShuttleSyndicate + entities: + - uid: 5455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 5438 +- proto: AirlockTheatreLocked + entities: + - uid: 103 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 106 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 107 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2276 + - uid: 108 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 116 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2275 +- proto: AirTankFilled + entities: + - uid: 120 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 +- proto: AloeSeeds + entities: + - uid: 121 + components: + - type: Transform + pos: 5.196375,7.684155 + parent: 2 +- proto: AlwaysPoweredlightOrange + entities: + - uid: 6694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 6685 + - uid: 6695 + components: + - type: Transform + pos: 4.5,1.5 + parent: 6685 + - uid: 6696 + components: + - type: Transform + pos: -3.5,1.5 + parent: 6685 + - uid: 6697 + components: + - type: Transform + pos: 0.5,13.5 + parent: 6685 + - uid: 6698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 6685 + - uid: 6699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 6685 + - uid: 6700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 6685 + - uid: 6701 + components: + - type: Transform + pos: 2.5,3.5 + parent: 6685 + - uid: 6702 + components: + - type: Transform + pos: -1.5,3.5 + parent: 6685 +- proto: AnomalyFloraBulb + entities: + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 126 + components: + - type: Transform + pos: 26.268942,-3.116735 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 26.284567,-3.38236 + parent: 2 +- proto: AnomalyVesselCircuitboard + entities: + - uid: 128 + components: + - type: Transform + pos: 26.298496,-3.8155608 + parent: 2 +- proto: APCBasic + entities: + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,23.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 10.5,42.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,22.5 + parent: 7020 + - uid: 7039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,22.5 + parent: 7020 + - uid: 7040 + components: + - type: Transform + pos: -8.5,25.5 + parent: 7020 + - uid: 7041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,21.5 + parent: 7020 + - uid: 8270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 8267 +- proto: APCHighCapacity + entities: + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,15.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,6.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 14.5,7.5 + parent: 5438 + - uid: 6703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 6685 + - uid: 6704 + components: + - type: Transform + pos: -0.5,8.5 + parent: 6685 +- proto: APCHyperCapacity + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 5438 +- proto: APCSuperCapacity + entities: + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 2 +- proto: APECircuitboard + entities: + - uid: 143 + components: + - type: Transform + pos: 26.720371,-3.8155608 + parent: 2 +- proto: Ash + entities: + - uid: 144 + components: + - type: Transform + pos: 27.113226,-12.549311 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 26.842394,-12.632645 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 26.69656,-12.528478 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -10.508399,26.644472 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -11.684663,26.852806 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: -11.205496,26.602806 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -9.715913,25.878632 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: -10.550065,27.456972 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -9.840913,26.461966 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -10.570899,27.040306 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -9.611746,28.077824 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -10.852149,27.717388 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -9.976329,27.754908 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -10.945899,28.061138 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 5.5560274,10.74631 + parent: 5438 +- proto: Ashtray + entities: + - uid: 5459 + components: + - type: Transform + pos: 9.322304,-4.294775 + parent: 5438 +- proto: AsteroidRock + entities: + - uid: 7042 + components: + - type: Transform + pos: -12.5,33.5 + parent: 7020 + - uid: 7043 + components: + - type: Transform + pos: -3.5,8.5 + parent: 7020 + - uid: 7044 + components: + - type: Transform + pos: 15.5,25.5 + parent: 7020 + - uid: 7045 + components: + - type: Transform + pos: 15.5,26.5 + parent: 7020 + - uid: 7046 + components: + - type: Transform + pos: 15.5,27.5 + parent: 7020 + - uid: 7047 + components: + - type: Transform + pos: 14.5,27.5 + parent: 7020 + - uid: 7048 + components: + - type: Transform + pos: 16.5,24.5 + parent: 7020 + - uid: 7049 + components: + - type: Transform + pos: 16.5,23.5 + parent: 7020 +- proto: AsteroidRockGold + entities: + - uid: 7050 + components: + - type: Transform + pos: -11.5,33.5 + parent: 7020 + - uid: 7051 + components: + - type: Transform + pos: -13.5,31.5 + parent: 7020 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,40.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 167 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 182 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 +- proto: BalloonCorgi + entities: + - uid: 7052 + components: + - type: Transform + pos: 8.49057,21.724312 + parent: 7020 + - uid: 7053 + components: + - type: Transform + pos: 8.717224,22.651398 + parent: 7020 + - uid: 7054 + components: + - type: Transform + pos: 9.873474,22.45348 + parent: 7020 + - uid: 7055 + components: + - type: Transform + pos: 10.257324,21.933151 + parent: 7020 + - uid: 7056 + components: + - type: Transform + pos: 8.216064,22.41232 + parent: 7020 +- proto: BalloonSyn + entities: + - uid: 7058 + components: + - type: Transform + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Barricade + entities: + - uid: 5460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 5438 +- proto: BarricadeBlock + entities: + - uid: 185 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -30.5,32.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 5438 + - uid: 5462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 5438 +- proto: BarricadeDirectional + entities: + - uid: 191 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 5438 + - uid: 5464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 5438 + - uid: 5465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 5438 + - uid: 5466 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 5438 +- proto: BaseComputer + entities: + - uid: 5467 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 5438 + - uid: 5468 + components: + - type: Transform + pos: 3.5,11.5 + parent: 5438 +- proto: Bed + entities: + - uid: 192 + components: + - type: Transform + pos: -22.5,26.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 5438 + - uid: 5470 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 5438 + - uid: 6705 + components: + - type: Transform + pos: 1.5,9.5 + parent: 6685 + - uid: 6706 + components: + - type: Transform + pos: 3.5,3.5 + parent: 6685 + - uid: 6707 + components: + - type: Transform + pos: -2.5,3.5 + parent: 6685 +- proto: BedsheetBlack + entities: + - uid: 5471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 5438 +- proto: BedsheetBrown + entities: + - uid: 209 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 210 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 211 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 212 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 +- proto: BedsheetGrey + entities: + - uid: 5472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 5438 +- proto: BedsheetHOP + entities: + - uid: 214 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 216 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 219 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 +- proto: BedsheetNT + entities: + - uid: 6708 + components: + - type: Transform + pos: 3.5,3.5 + parent: 6685 + - uid: 6709 + components: + - type: Transform + pos: -2.5,3.5 + parent: 6685 + - uid: 6710 + components: + - type: Transform + pos: 2.5,6.5 + parent: 6685 + - uid: 6711 + components: + - type: Transform + pos: 2.5,7.5 + parent: 6685 + - uid: 6712 + components: + - type: Transform + pos: 1.5,9.5 + parent: 6685 +- proto: BedsheetOrange + entities: + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 222 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 223 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 +- proto: BedsheetRed + entities: + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 225 + components: + - type: Transform + pos: -22.5,26.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 +- proto: BedsheetSyndie + entities: + - uid: 227 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 +- proto: BikeHorn + entities: + - uid: 239 + components: + - type: Transform + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BlastDoor + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,17.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: 3.5,4.5 + parent: 5438 + - uid: 5474 + components: + - type: Transform + pos: 4.5,4.5 + parent: 5438 + - uid: 5475 + components: + - type: Transform + pos: 5.5,5.5 + parent: 5438 + - uid: 5476 + components: + - type: Transform + pos: 5.5,4.5 + parent: 5438 + - uid: 5477 + components: + - type: Transform + pos: 3.5,5.5 + parent: 5438 + - uid: 5478 + components: + - type: Transform + pos: 4.5,5.5 + parent: 5438 + - uid: 6713 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 6685 + - type: DeviceLinkSource + linkedPorts: + 6857: + - DoorStatus: InputA + - uid: 6714 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 6685 + - type: DeviceLinkSource + linkedPorts: + 6857: + - DoorStatus: InputB +- proto: BlastDoorOpen + entities: + - uid: 242 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 2 +- proto: BluePumpkinSeeds + entities: + - uid: 250 + components: + - type: Transform + pos: -3.8641324,19.070427 + parent: 2 +- proto: Bonfire + entities: + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-24.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,23.5 + parent: 2 +- proto: BookBase + entities: + - uid: 253 + components: + - type: Transform + pos: 10.265241,-18.470917 + parent: 2 +- proto: BookLeafLoversSecret + entities: + - uid: 254 + components: + - type: Transform + pos: 5.838015,7.371655 + parent: 2 +- proto: BookNarsieLegend + entities: + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.44853,22.6254 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 256 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 +- proto: BookStationsAndAgents + entities: + - uid: 260 + components: + - type: Transform + pos: -23.703386,8.640577 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 262 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 263 + components: + - type: Transform + pos: 5.5125084,8.750033 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 265 + components: + - type: Transform + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 273 + components: + - type: Transform + pos: -7.380177,-3.6274438 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: 12.3391285,19.35756 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 12.6985035,19.654434 + parent: 2 +- proto: BoxCardboard + entities: + - uid: 7078 + components: + - type: Transform + pos: -15.300018,25.076653 + parent: 7020 + - type: Storage + storedItems: + 7079: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 7079 + - uid: 7080 + components: + - type: Transform + pos: -12.4644165,25.600956 + parent: 7020 + - type: Storage + storedItems: + 7081: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 7081 +- proto: BoxDarts + entities: + - uid: 276 + components: + - type: Transform + pos: -14.252133,17.742851 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 277 + components: + - type: Transform + pos: -7.2730103,20.032358 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: 7.596985,-1.4089528 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -11.204005,8.685963 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 280 + components: + - type: Transform + pos: 7.674737,-1.4089528 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -11.18838,8.326588 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 282 + components: + - type: Transform + pos: 7.458217,-1.4053136 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 283 + components: + - type: Transform + pos: 7.5276613,-1.4053136 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -11.75088,8.326588 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 285 + components: + - type: Transform + pos: -7.6792603,20.032358 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 7.347105,-1.4053136 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 287 + components: + - type: Transform + pos: 7.4026613,-1.4053136 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 266 + components: + - type: Transform + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxLightMixed + entities: + - uid: 288 + components: + - type: Transform + pos: 13.386856,2.7189994 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 13.567411,2.538443 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 +- proto: BoxMagazineLightRifle + entities: + - uid: 6715 + components: + - type: Transform + pos: 3.7285156,4.3629913 + parent: 6685 + - uid: 6716 + components: + - type: Transform + pos: -2.1777344,4.3942413 + parent: 6685 +- proto: BoxMagazinePistol + entities: + - uid: 267 + components: + - type: Transform + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolSubMachineGun + entities: + - uid: 16 + components: + - type: Transform + parent: 3 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 268 + components: + - type: Transform + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineRifle + entities: + - uid: 269 + components: + - type: Transform + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6717 + components: + - type: Transform + pos: 1.796875,10.330719 + parent: 6685 +- proto: BoxMousetrap + entities: + - uid: 292 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 295 + components: + - type: Transform + pos: 7.3889604,-14.44551 + parent: 2 +- proto: BoxSurvival + entities: + - uid: 7083 + components: + - type: Transform + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxTrashbag + entities: + - uid: 296 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 +- proto: BrigTimer + entities: + - uid: 297 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 +- proto: Bucket + entities: + - uid: 298 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: -20.322598,2.452269 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -4.425287,18.593027 + parent: 2 + - uid: 301 + components: + - type: MetaData + desc: Царский размер + name: ведро для химикатов + - type: Transform + pos: 5.3406334,8.421908 + parent: 2 + - uid: 302 + components: + - type: MetaData + desc: Царский размер + name: ведро для химикатов + - type: Transform + pos: 5.7156334,8.421908 + parent: 2 +- proto: ButchCleaver + entities: + - uid: 7091 + components: + - type: Transform + pos: -6.283905,14.8565445 + parent: 7020 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 307 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -48.5,18.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 10.5,42.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 10.5,41.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: -2.5,4.5 + parent: 5438 + - uid: 5480 + components: + - type: Transform + pos: -3.5,4.5 + parent: 5438 + - uid: 5481 + components: + - type: Transform + pos: -4.5,4.5 + parent: 5438 + - uid: 5482 + components: + - type: Transform + pos: -5.5,4.5 + parent: 5438 + - uid: 5483 + components: + - type: Transform + pos: -6.5,4.5 + parent: 5438 + - uid: 5484 + components: + - type: Transform + pos: -5.5,5.5 + parent: 5438 + - uid: 5485 + components: + - type: Transform + pos: -5.5,6.5 + parent: 5438 + - uid: 5486 + components: + - type: Transform + pos: -3.5,5.5 + parent: 5438 + - uid: 5487 + components: + - type: Transform + pos: -3.5,6.5 + parent: 5438 + - uid: 5488 + components: + - type: Transform + pos: -4.5,3.5 + parent: 5438 + - uid: 5489 + components: + - type: Transform + pos: -6.5,3.5 + parent: 5438 + - uid: 5490 + components: + - type: Transform + pos: -6.5,2.5 + parent: 5438 + - uid: 5491 + components: + - type: Transform + pos: -6.5,1.5 + parent: 5438 + - uid: 5492 + components: + - type: Transform + pos: -6.5,0.5 + parent: 5438 + - uid: 5493 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 5438 + - uid: 5494 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 5438 + - uid: 5495 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 5438 + - uid: 5496 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 5438 + - uid: 5497 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 5438 + - uid: 5498 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 5438 + - uid: 5499 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 5438 + - uid: 5500 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 5438 + - uid: 5501 components: - type: Transform - pos: 31.5,2.5 - parent: 2 -- proto: AirlockExternalGlass - entities: - - uid: 56 + pos: -5.5,-7.5 + parent: 5438 + - uid: 5502 components: - type: Transform - pos: 20.5,17.5 - parent: 2 -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 57 + pos: -5.5,-0.5 + parent: 5438 + - uid: 5503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 2 - - uid: 58 + pos: -4.5,-0.5 + parent: 5438 + - uid: 5504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 2 - - uid: 59 + pos: -7.5,-0.5 + parent: 5438 + - uid: 5505 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 5438 + - uid: 5506 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 5438 + - uid: 5507 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 5438 + - uid: 5508 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 5438 + - uid: 5509 + components: + - type: Transform + pos: -10.5,0.5 + parent: 5438 + - uid: 5510 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 5438 + - uid: 5511 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 5438 + - uid: 5512 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 5438 + - uid: 5513 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 5438 + - uid: 5514 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 5438 + - uid: 5515 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 5438 + - uid: 5516 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 5438 + - uid: 5517 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 5438 + - uid: 5518 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 5438 + - uid: 5519 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 5438 + - uid: 5520 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 5438 + - uid: 5521 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 5438 + - uid: 5522 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 5438 + - uid: 5523 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 5438 + - uid: 5524 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 5438 + - uid: 5525 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 5438 + - uid: 5526 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 5438 + - uid: 5527 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 5438 + - uid: 5528 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 5438 + - uid: 5529 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 5438 + - uid: 5530 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 5438 + - uid: 5531 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 5438 + - uid: 5532 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 5438 + - uid: 5533 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 5438 + - uid: 5534 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 5438 + - uid: 5535 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 5438 + - uid: 5536 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 5438 + - uid: 5537 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 5438 + - uid: 5538 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 5438 + - uid: 5539 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 5438 + - uid: 5540 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 5438 + - uid: 5541 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 5438 + - uid: 5542 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 5438 + - uid: 5543 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 5438 + - uid: 5544 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 5438 + - uid: 5545 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 5438 + - uid: 5546 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 5438 + - uid: 5547 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 5438 + - uid: 5548 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 5438 + - uid: 5549 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 5438 + - uid: 5550 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 5438 + - uid: 5551 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 5438 + - uid: 5552 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 5438 + - uid: 5553 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 5438 + - uid: 5554 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 5438 + - uid: 5555 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 5438 + - uid: 5556 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 5438 + - uid: 5557 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 5438 + - uid: 5558 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 5438 + - uid: 5559 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 5438 + - uid: 5560 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 5438 + - uid: 5561 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 5438 + - uid: 5562 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 5438 + - uid: 5563 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 5438 + - uid: 5564 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 5438 + - uid: 5565 + components: + - type: Transform + pos: 10.5,0.5 + parent: 5438 + - uid: 5566 + components: + - type: Transform + pos: 10.5,1.5 + parent: 5438 + - uid: 5567 + components: + - type: Transform + pos: 10.5,2.5 + parent: 5438 + - uid: 5568 + components: + - type: Transform + pos: 10.5,3.5 + parent: 5438 + - uid: 5569 + components: + - type: Transform + pos: 10.5,4.5 + parent: 5438 + - uid: 5570 + components: + - type: Transform + pos: 12.5,4.5 + parent: 5438 + - uid: 5571 + components: + - type: Transform + pos: 13.5,4.5 + parent: 5438 + - uid: 5572 + components: + - type: Transform + pos: 14.5,4.5 + parent: 5438 + - uid: 5573 + components: + - type: Transform + pos: 15.5,4.5 + parent: 5438 + - uid: 5574 + components: + - type: Transform + pos: 16.5,4.5 + parent: 5438 + - uid: 5575 + components: + - type: Transform + pos: 14.5,5.5 + parent: 5438 + - uid: 5576 + components: + - type: Transform + pos: 14.5,6.5 + parent: 5438 + - uid: 5577 + components: + - type: Transform + pos: 14.5,7.5 + parent: 5438 + - uid: 5578 + components: + - type: Transform + pos: 14.5,3.5 + parent: 5438 + - uid: 5579 + components: + - type: Transform + pos: 14.5,2.5 + parent: 5438 + - uid: 5580 + components: + - type: Transform + pos: 10.5,5.5 + parent: 5438 + - uid: 5581 + components: + - type: Transform + pos: 10.5,6.5 + parent: 5438 + - uid: 5582 + components: + - type: Transform + pos: 10.5,7.5 + parent: 5438 + - uid: 5583 + components: + - type: Transform + pos: 10.5,8.5 + parent: 5438 + - uid: 5584 + components: + - type: Transform + pos: 10.5,9.5 + parent: 5438 + - uid: 5585 + components: + - type: Transform + pos: 12.5,9.5 + parent: 5438 + - uid: 5586 + components: + - type: Transform + pos: 13.5,9.5 + parent: 5438 + - uid: 5587 + components: + - type: Transform + pos: 13.5,8.5 + parent: 5438 + - uid: 5588 + components: + - type: Transform + pos: 9.5,9.5 + parent: 5438 + - uid: 5589 + components: + - type: Transform + pos: 8.5,9.5 + parent: 5438 + - uid: 5590 + components: + - type: Transform + pos: 7.5,9.5 + parent: 5438 + - uid: 5591 + components: + - type: Transform + pos: 6.5,9.5 + parent: 5438 + - uid: 5592 + components: + - type: Transform + pos: 5.5,9.5 + parent: 5438 + - uid: 5593 + components: + - type: Transform + pos: 4.5,9.5 + parent: 5438 + - uid: 5594 + components: + - type: Transform + pos: 3.5,10.5 + parent: 5438 + - uid: 5595 + components: + - type: Transform + pos: 4.5,10.5 + parent: 5438 + - uid: 5596 + components: + - type: Transform + pos: 4.5,8.5 + parent: 5438 + - uid: 5597 + components: + - type: Transform + pos: 4.5,7.5 + parent: 5438 + - uid: 5598 + components: + - type: Transform + pos: 4.5,6.5 + parent: 5438 + - uid: 5599 + components: + - type: Transform + pos: 7.5,8.5 + parent: 5438 + - uid: 5600 + components: + - type: Transform + pos: 7.5,7.5 + parent: 5438 + - uid: 5601 + components: + - type: Transform + pos: 7.5,6.5 + parent: 5438 + - uid: 5602 + components: + - type: Transform + pos: 2.5,10.5 + parent: 5438 + - uid: 5603 + components: + - type: Transform + pos: 4.5,11.5 + parent: 5438 + - uid: 5604 + components: + - type: Transform + pos: 3.5,8.5 + parent: 5438 + - uid: 5605 + components: + - type: Transform + pos: 2.5,8.5 + parent: 5438 + - uid: 5606 + components: + - type: Transform + pos: 0.5,4.5 + parent: 5438 + - uid: 5607 + components: + - type: Transform + pos: 0.5,3.5 + parent: 5438 + - uid: 5608 + components: + - type: Transform + pos: 0.5,2.5 + parent: 5438 + - uid: 5609 + components: + - type: Transform + pos: 0.5,1.5 + parent: 5438 + - uid: 5610 + components: + - type: Transform + pos: 0.5,0.5 + parent: 5438 + - uid: 5611 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 5438 + - uid: 5612 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 5438 + - uid: 5613 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 5438 + - uid: 5614 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 5438 + - uid: 5615 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 5438 + - uid: 5616 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 5438 + - uid: 5617 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 5438 + - uid: 5618 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 5438 + - uid: 5619 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 5438 + - uid: 5620 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 5438 + - uid: 5621 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 5438 + - uid: 5622 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 5438 + - uid: 5623 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 5438 + - uid: 5624 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 5438 + - uid: 5625 + components: + - type: Transform + pos: 4.5,0.5 + parent: 5438 + - uid: 5626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 2 - - uid: 60 + pos: 4.5,1.5 + parent: 5438 + - uid: 5627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 2 - - uid: 61 + pos: 4.5,2.5 + parent: 5438 + - uid: 5628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 2 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 62 + pos: 4.5,3.5 + parent: 5438 + - uid: 5629 components: - type: Transform - pos: 13.5,-9.5 - parent: 2 -- proto: AirlockGlass - entities: - - uid: 63 + pos: 2.5,0.5 + parent: 5438 + - uid: 5630 components: - type: Transform - pos: -15.5,24.5 - parent: 2 - - uid: 64 + pos: 2.5,1.5 + parent: 5438 + - uid: 5631 components: - type: Transform - pos: -21.5,22.5 - parent: 2 - - uid: 65 + pos: 2.5,2.5 + parent: 5438 + - uid: 5632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 2 - - uid: 66 + pos: 2.5,3.5 + parent: 5438 + - uid: 5633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,19.5 - parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 67 + pos: -0.5,-1.5 + parent: 5438 + - uid: 5634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,12.5 - parent: 2 - - uid: 68 + pos: -0.5,-2.5 + parent: 5438 + - uid: 5635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,26.5 - parent: 2 - - uid: 69 + pos: 6.5,-1.5 + parent: 5438 + - uid: 5636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,10.5 - parent: 2 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 70 + pos: 6.5,-2.5 + parent: 5438 + - uid: 5637 components: - type: Transform - pos: 2.5,-3.5 - parent: 2 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 71 + pos: 6.5,0.5 + parent: 5438 + - uid: 5638 components: - type: Transform - pos: 6.5,-2.5 - parent: 2 -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 72 + pos: 6.5,1.5 + parent: 5438 + - uid: 5639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,12.5 - parent: 2 -- proto: AirlockJanitorLocked - entities: - - uid: 73 + pos: 6.5,2.5 + parent: 5438 + - uid: 5640 components: - type: Transform - pos: -18.5,2.5 - parent: 2 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 74 + pos: -1.5,-10.5 + parent: 5438 + - uid: 5641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 2 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 75 + pos: -2.5,-10.5 + parent: 5438 + - uid: 5642 components: - type: Transform - pos: -21.5,2.5 - parent: 2 -- proto: AirlockMaintLocked - entities: - - uid: 76 + pos: 1.5,-10.5 + parent: 5438 + - uid: 5643 components: - type: Transform - pos: -23.5,3.5 - parent: 2 - - uid: 77 + pos: 4.5,4.5 + parent: 5438 + - uid: 5644 components: - type: Transform - pos: -20.5,7.5 - parent: 2 -- proto: AirlockMedicalGlass - entities: - - uid: 78 + pos: 3.5,4.5 + parent: 5438 + - uid: 5645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,6.5 - parent: 2 - - uid: 79 + pos: 3.5,5.5 + parent: 5438 + - uid: 5646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 2 - - uid: 80 + pos: 4.5,5.5 + parent: 5438 + - uid: 5647 components: - type: Transform - pos: 11.5,15.5 - parent: 2 - - uid: 81 + pos: 5.5,5.5 + parent: 5438 + - uid: 5648 components: - type: Transform - pos: 10.5,18.5 - parent: 2 - - uid: 82 + pos: 5.5,4.5 + parent: 5438 + - uid: 5649 components: - type: Transform - pos: 11.5,12.5 - parent: 2 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 83 + pos: -13.5,-0.5 + parent: 5438 + - uid: 5650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 - parent: 2 - - uid: 6639 + pos: -12.5,-0.5 + parent: 5438 + - uid: 5651 components: - type: Transform - pos: 0.5,4.5 - parent: 6631 -- proto: AirlockMedicalLocked - entities: - - uid: 84 + pos: -14.5,-0.5 + parent: 5438 + - uid: 5652 components: - type: Transform - pos: -7.5,-1.5 - parent: 2 - - uid: 85 + pos: -15.5,-0.5 + parent: 5438 + - uid: 6718 components: - type: Transform - pos: 9.5,16.5 - parent: 2 -- proto: AirlockMining - entities: - - uid: 5390 + pos: -3.5,0.5 + parent: 6685 + - uid: 6719 components: - type: Transform - pos: -6.5,3.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5393: - - DoorStatus: DoorBolt - - uid: 5391 + pos: -2.5,0.5 + parent: 6685 + - uid: 6720 components: - type: Transform - pos: 8.5,9.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - uid: 5392 + pos: -1.5,0.5 + parent: 6685 + - uid: 6721 components: - type: Transform - pos: 11.5,9.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - uid: 5393 + pos: -0.5,0.5 + parent: 6685 + - uid: 6722 components: - type: Transform - pos: -6.5,1.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5390: - - DoorStatus: DoorBolt - - uid: 5394 + pos: 0.5,0.5 + parent: 6685 + - uid: 6723 components: - type: Transform - pos: -9.5,-0.5 - parent: 5384 - - type: AccessReader - access: - - - External - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5395 + pos: 1.5,0.5 + parent: 6685 + - uid: 6724 components: - type: Transform - pos: 10.5,1.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5397: - - DoorStatus: DoorBolt - - uid: 5396 + pos: 2.5,0.5 + parent: 6685 + - uid: 6725 components: - type: Transform - pos: 10.5,7.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - uid: 5397 + pos: 3.5,0.5 + parent: 6685 + - uid: 6726 components: - type: Transform - pos: 10.5,-0.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5395: - - DoorStatus: DoorBolt - - uid: 5398 + pos: 4.5,0.5 + parent: 6685 + - uid: 6727 components: - type: Transform - pos: 3.5,-9.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5399: - - DoorStatus: DoorBolt - - uid: 5399 + pos: 1.5,-0.5 + parent: 6685 + - uid: 6728 components: - type: Transform - pos: 5.5,-9.5 - parent: 5384 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5398: - - DoorStatus: DoorBolt - - uid: 5400 + pos: 0.5,13.5 + parent: 6685 + - uid: 6729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 5384 -- proto: AirlockQuartermasterLocked - entities: - - uid: 86 + pos: 0.5,12.5 + parent: 6685 + - uid: 6730 components: - type: Transform - pos: 16.5,9.5 - parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 87 + pos: 0.5,11.5 + parent: 6685 + - uid: 6731 components: - type: Transform - pos: 19.5,-3.5 - parent: 2 -- proto: AirlockSalvageGlassLocked - entities: - - uid: 88 + pos: 0.5,10.5 + parent: 6685 + - uid: 6732 components: - type: Transform - pos: 19.5,15.5 - parent: 2 -- proto: AirlockSalvageLocked - entities: - - uid: 89 + pos: 0.5,9.5 + parent: 6685 + - uid: 6733 components: - type: Transform - pos: 24.5,14.5 - parent: 2 -- proto: AirlockScienceGlassLocked - entities: - - uid: 90 + pos: -0.5,7.5 + parent: 6685 + - uid: 6734 components: - type: Transform - pos: 22.5,-3.5 - parent: 2 - - uid: 91 + pos: -0.5,8.5 + parent: 6685 + - uid: 6735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-13.5 - parent: 2 - - uid: 92 + pos: 1.5,9.5 + parent: 6685 + - uid: 6736 components: - type: Transform - pos: 25.5,-10.5 - parent: 2 -- proto: AirlockScienceLocked - entities: - - uid: 93 + pos: -0.5,9.5 + parent: 6685 + - uid: 6737 components: - type: Transform - pos: 12.5,-5.5 - parent: 2 - - uid: 94 + pos: -1.5,6.5 + parent: 6685 + - uid: 6738 components: - type: Transform - pos: 17.5,-5.5 - parent: 2 - - uid: 95 + pos: -0.5,6.5 + parent: 6685 + - uid: 6739 components: - type: Transform - pos: 22.5,-8.5 - parent: 2 -- proto: AirlockSecurityLocked - entities: - - uid: 96 + pos: 0.5,6.5 + parent: 6685 + - uid: 6740 components: - type: Transform - pos: -6.5,7.5 - parent: 2 -- proto: AirlockServiceGlassLocked - entities: - - uid: 97 + pos: 1.5,6.5 + parent: 6685 + - uid: 6741 components: - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 98 + pos: 2.5,6.5 + parent: 6685 + - uid: 6742 components: - type: Transform - pos: 6.5,-11.5 - parent: 2 -- proto: AirlockServiceLocked - entities: - - uid: 99 + pos: 0.5,1.5 + parent: 6685 + - uid: 6743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 2 - - uid: 100 + pos: 0.5,2.5 + parent: 6685 + - uid: 6744 components: - type: Transform - pos: -7.5,0.5 - parent: 2 -- proto: AirlockShuttleSyndicate - entities: - - uid: 5401 + pos: 0.5,3.5 + parent: 6685 + - uid: 6745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 5384 -- proto: AirlockTheatreLocked - entities: - - uid: 101 + pos: 1.5,3.5 + parent: 6685 + - uid: 6746 components: - type: Transform - pos: -17.5,1.5 - parent: 2 - - uid: 102 + pos: 2.5,3.5 + parent: 6685 + - uid: 6747 components: - type: Transform - pos: -17.5,4.5 - parent: 2 - - uid: 103 + pos: 3.5,3.5 + parent: 6685 + - uid: 6748 components: - type: Transform - pos: -15.5,5.5 - parent: 2 -- proto: AirSensor - entities: - - uid: 104 + pos: -0.5,3.5 + parent: 6685 + - uid: 6749 components: - type: Transform - pos: 9.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - uid: 105 + pos: -1.5,3.5 + parent: 6685 + - uid: 6750 components: - type: Transform - pos: -2.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - uid: 106 + pos: -2.5,3.5 + parent: 6685 + - uid: 6751 components: - type: Transform - pos: -1.5,10.5 - parent: 2 - - uid: 107 + pos: 1.5,-1.5 + parent: 6685 + - uid: 6752 components: - type: Transform - pos: 6.5,11.5 - parent: 2 - - uid: 108 + pos: 0.5,-1.5 + parent: 6685 + - uid: 6753 components: - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 109 + pos: 0.5,-2.5 + parent: 6685 + - uid: 6754 components: - type: Transform - pos: 17.5,3.5 - parent: 2 - - uid: 110 + pos: 1.5,-2.5 + parent: 6685 + - uid: 6755 components: - type: Transform - pos: 18.5,-6.5 - parent: 2 - - uid: 111 + pos: -0.5,-2.5 + parent: 6685 + - uid: 6756 components: - type: Transform - pos: 16.5,-3.5 - parent: 2 - - uid: 112 + pos: -0.5,-3.5 + parent: 6685 + - uid: 6757 components: - type: Transform - pos: 8.5,-12.5 - parent: 2 - - uid: 113 + pos: 1.5,-3.5 + parent: 6685 + - uid: 6758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 114 + pos: 2.5,-2.5 + parent: 6685 + - uid: 6759 components: - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 115 + pos: 3.5,-2.5 + parent: 6685 + - uid: 6760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 2 - - uid: 116 + pos: 4.5,-2.5 + parent: 6685 + - uid: 6761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 2 - - uid: 117 + pos: -3.5,-2.5 + parent: 6685 + - uid: 6762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2273 -- proto: AirTankFilled - entities: - - uid: 118 + pos: -2.5,-2.5 + parent: 6685 + - uid: 6763 components: - type: Transform - pos: -26.5,-7.5 - parent: 2 -- proto: AloeSeeds - entities: - - uid: 119 + pos: -1.5,-2.5 + parent: 6685 + - uid: 6764 components: - type: Transform - pos: 5.196375,7.684155 - parent: 2 -- proto: AltarConvertOrange - entities: - - uid: 120 + pos: 4.5,3.5 + parent: 6685 + - uid: 6765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 2 -- proto: AlwaysPoweredlightOrange - entities: - - uid: 121 + pos: 3.5,6.5 + parent: 6685 + - uid: 6766 components: - type: Transform - pos: -22.5,-6.5 - parent: 2 - - uid: 6640 + pos: 2.5,9.5 + parent: 6685 + - uid: 6767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 6631 - - uid: 6641 + pos: -1.5,9.5 + parent: 6685 + - uid: 6768 components: - type: Transform - pos: 4.5,1.5 - parent: 6631 - - uid: 6642 + pos: -2.5,6.5 + parent: 6685 + - uid: 6769 components: - type: Transform - pos: -3.5,1.5 - parent: 6631 - - uid: 6643 + pos: -0.5,-1.5 + parent: 6685 + - uid: 7092 components: - type: Transform - pos: 0.5,13.5 - parent: 6631 - - uid: 6644 + pos: 6.5,22.5 + parent: 7020 + - uid: 7093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 6631 - - uid: 6645 + pos: 7.5,22.5 + parent: 7020 + - uid: 7094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 6631 - - uid: 6646 + pos: 6.5,23.5 + parent: 7020 + - uid: 7095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 6631 - - uid: 6647 + pos: 6.5,24.5 + parent: 7020 + - uid: 7096 components: - type: Transform - pos: 2.5,3.5 - parent: 6631 - - uid: 6648 + pos: 6.5,25.5 + parent: 7020 + - uid: 7097 components: - type: Transform - pos: -1.5,3.5 - parent: 6631 -- proto: AnomalyFloraBulb - entities: - - uid: 122 + pos: 5.5,25.5 + parent: 7020 + - uid: 7098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 2 - - uid: 123 + pos: 4.5,25.5 + parent: 7020 + - uid: 7099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 2 - - uid: 124 + pos: 3.5,25.5 + parent: 7020 + - uid: 7100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 2 - - uid: 125 + pos: 2.5,25.5 + parent: 7020 + - uid: 7101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 2 - - uid: 126 + pos: 8.5,25.5 + parent: 7020 + - uid: 7102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 2 - - uid: 127 + pos: 7.5,25.5 + parent: 7020 + - uid: 7103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,23.5 - parent: 2 - - uid: 128 + pos: 8.5,24.5 + parent: 7020 + - uid: 7104 components: - type: Transform - pos: 17.5,-19.5 - parent: 2 -- proto: AnomalyScanner - entities: - - uid: 129 + pos: 8.5,23.5 + parent: 7020 + - uid: 7105 components: - type: Transform - pos: 26.268942,-3.116735 - parent: 2 - - uid: 130 + pos: 8.5,22.5 + parent: 7020 + - uid: 7106 components: - type: Transform - pos: 26.284567,-3.38236 - parent: 2 -- proto: AnomalyVesselCircuitboard - entities: - - uid: 131 + pos: 8.5,21.5 + parent: 7020 + - uid: 7107 components: - type: Transform - pos: 26.298496,-3.8155608 - parent: 2 -- proto: APCBasic - entities: - - uid: 132 + pos: 9.5,21.5 + parent: 7020 + - uid: 7108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,23.5 - parent: 2 - - uid: 133 + pos: 9.5,19.5 + parent: 7020 + - uid: 7109 components: - type: Transform - pos: 10.5,42.5 - parent: 2 - - uid: 134 + pos: 9.5,18.5 + parent: 7020 + - uid: 7110 components: - type: Transform - pos: -50.5,21.5 - parent: 2 -- proto: APCHighCapacity - entities: - - uid: 135 + pos: 9.5,17.5 + parent: 7020 + - uid: 7111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,4.5 - parent: 2 - - uid: 136 + pos: 9.5,20.5 + parent: 7020 + - uid: 7112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 2 - - uid: 137 + pos: 6.5,21.5 + parent: 7020 + - uid: 7113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 2 - - uid: 138 + pos: 6.5,19.5 + parent: 7020 + - uid: 7114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 2 - - uid: 139 + pos: 6.5,18.5 + parent: 7020 + - uid: 7115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 2 - - uid: 140 + pos: 6.5,20.5 + parent: 7020 + - uid: 7116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 2 - - uid: 141 + pos: 1.5,21.5 + parent: 7020 + - uid: 7117 components: - type: Transform - pos: -12.5,5.5 - parent: 2 - - uid: 142 + pos: 0.5,21.5 + parent: 7020 + - uid: 7118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 2 - - uid: 143 + pos: 0.5,20.5 + parent: 7020 + - uid: 7119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 2 - - uid: 144 + pos: 0.5,18.5 + parent: 7020 + - uid: 7120 components: - type: Transform - pos: -16.5,-1.5 - parent: 2 - - uid: 5402 + pos: 0.5,17.5 + parent: 7020 + - uid: 7121 components: - type: Transform - pos: 14.5,7.5 - parent: 5384 - - uid: 6649 + pos: 0.5,19.5 + parent: 7020 + - uid: 7122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 6631 - - uid: 6650 + pos: 0.5,16.5 + parent: 7020 + - uid: 7123 components: - type: Transform - pos: -0.5,8.5 - parent: 6631 -- proto: APCHyperCapacity - entities: - - uid: 145 + pos: 0.5,14.5 + parent: 7020 + - uid: 7124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,5.5 - parent: 2 - - uid: 5403 + pos: 0.5,15.5 + parent: 7020 + - uid: 7125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 5384 -- proto: APCSuperCapacity - entities: - - uid: 146 + pos: 0.5,12.5 + parent: 7020 + - uid: 7126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 2 -- proto: APECircuitboard - entities: - - uid: 147 + pos: 0.5,11.5 + parent: 7020 + - uid: 7127 components: - type: Transform - pos: 26.720371,-3.8155608 - parent: 2 -- proto: Ash - entities: - - uid: 5404 + pos: 0.5,10.5 + parent: 7020 + - uid: 7128 components: - type: Transform - pos: 5.5560274,10.74631 - parent: 5384 -- proto: Ashtray - entities: - - uid: 5405 + pos: 0.5,9.5 + parent: 7020 + - uid: 7129 components: - type: Transform - pos: 9.322304,-4.294775 - parent: 5384 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 155 + pos: 0.5,8.5 + parent: 7020 + - uid: 7130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 2 -- proto: AtmosDeviceFanTiny - entities: - - uid: 148 + pos: 0.5,7.5 + parent: 7020 + - uid: 7131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 2 - - uid: 149 + pos: 0.5,6.5 + parent: 7020 + - uid: 7132 components: - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 150 + pos: 0.5,5.5 + parent: 7020 + - uid: 7133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 2 - - uid: 151 + pos: -8.5,22.5 + parent: 7020 + - uid: 7134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 2 - - uid: 152 + pos: -8.5,21.5 + parent: 7020 + - uid: 7135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 2 - - uid: 153 + pos: -8.5,20.5 + parent: 7020 + - uid: 7136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 2 - - uid: 154 + pos: -8.5,19.5 + parent: 7020 + - uid: 7137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 2 - - uid: 156 + pos: -8.5,18.5 + parent: 7020 + - uid: 7138 components: - type: Transform - pos: 7.5,40.5 - parent: 2 -- proto: AtmosFixFreezerMarker - entities: - - uid: 157 + pos: -8.5,17.5 + parent: 7020 + - uid: 7139 components: - type: Transform - pos: -2.5,-4.5 - parent: 2 - - uid: 158 + pos: -7.5,18.5 + parent: 7020 + - uid: 7140 components: - type: Transform - pos: -3.5,-4.5 - parent: 2 - - uid: 159 + pos: -6.5,18.5 + parent: 7020 + - uid: 7141 components: - type: Transform - pos: -3.5,-3.5 - parent: 2 - - uid: 160 + pos: -5.5,18.5 + parent: 7020 + - uid: 7142 components: - type: Transform - pos: -2.5,-3.5 - parent: 2 - - uid: 161 + pos: -4.5,18.5 + parent: 7020 + - uid: 7143 components: - type: Transform - pos: -2.5,-2.5 - parent: 2 - - uid: 162 + pos: -3.5,18.5 + parent: 7020 + - uid: 7144 components: - type: Transform - pos: -3.5,-2.5 - parent: 2 - - uid: 163 + pos: -8.5,16.5 + parent: 7020 + - uid: 7145 components: - type: Transform - pos: 16.5,-9.5 - parent: 2 - - uid: 164 + pos: -7.5,16.5 + parent: 7020 + - uid: 7146 components: - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 165 + pos: -7.5,15.5 + parent: 7020 + - uid: 7147 components: - type: Transform - pos: 14.5,-10.5 - parent: 2 - - uid: 166 + pos: -7.5,14.5 + parent: 7020 + - uid: 7148 components: - type: Transform - pos: 16.5,-10.5 - parent: 2 - - uid: 167 + pos: -8.5,25.5 + parent: 7020 + - uid: 7149 components: - type: Transform - pos: 14.5,-8.5 - parent: 2 - - uid: 168 + pos: -9.5,25.5 + parent: 7020 + - uid: 7150 components: - type: Transform - pos: 14.5,-9.5 - parent: 2 - - uid: 169 + pos: -10.5,25.5 + parent: 7020 + - uid: 7151 components: - type: Transform - pos: 16.5,-8.5 - parent: 2 - - uid: 170 + pos: -11.5,25.5 + parent: 7020 + - uid: 7152 components: - type: Transform - pos: 15.5,-9.5 - parent: 2 - - uid: 171 + pos: -11.5,26.5 + parent: 7020 + - uid: 7153 components: - type: Transform - pos: 15.5,-8.5 - parent: 2 -- proto: Autolathe - entities: - - uid: 172 + pos: -11.5,27.5 + parent: 7020 + - uid: 7154 components: - type: Transform - pos: -12.5,0.5 - parent: 2 - - uid: 173 + pos: -11.5,28.5 + parent: 7020 + - uid: 7155 components: - type: Transform - pos: 16.5,5.5 - parent: 2 - - uid: 174 + pos: -11.5,29.5 + parent: 7020 + - uid: 7156 components: - type: Transform - pos: 14.5,-6.5 - parent: 2 -- proto: Barricade - entities: - - uid: 5406 + pos: -11.5,30.5 + parent: 7020 + - uid: 7157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,6.5 - parent: 5384 -- proto: BarricadeBlock - entities: - - uid: 5407 + pos: -10.5,30.5 + parent: 7020 + - uid: 7158 components: - type: Transform - pos: 10.5,-0.5 - parent: 5384 - - uid: 5408 + pos: -9.5,30.5 + parent: 7020 + - uid: 7159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 5384 -- proto: BarricadeDirectional - entities: - - uid: 5409 + pos: -8.5,30.5 + parent: 7020 + - uid: 7160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 5384 - - uid: 5410 + pos: -8.5,31.5 + parent: 7020 + - uid: 7161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,5.5 - parent: 5384 - - uid: 5411 + pos: -8.5,32.5 + parent: 7020 + - uid: 7162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 5384 - - uid: 5412 + pos: -7.5,32.5 + parent: 7020 + - uid: 7163 components: - type: Transform - pos: 7.5,-7.5 - parent: 5384 -- proto: BaseComputer - entities: - - uid: 5413 + pos: -5.5,32.5 + parent: 7020 + - uid: 7164 components: - type: Transform - pos: -0.5,-6.5 - parent: 5384 - - uid: 5414 + pos: -4.5,32.5 + parent: 7020 + - uid: 7165 components: - type: Transform - pos: 3.5,11.5 - parent: 5384 -- proto: BeachBall - entities: - - uid: 175 + pos: -6.5,32.5 + parent: 7020 + - uid: 7166 components: - type: Transform - pos: -25.525738,17.811102 - parent: 2 -- proto: Bed - entities: - - uid: 176 + pos: -3.5,32.5 + parent: 7020 + - uid: 7167 components: - type: Transform - pos: -22.5,26.5 - parent: 2 - - uid: 177 + pos: -2.5,32.5 + parent: 7020 + - uid: 7168 components: - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 178 + pos: -12.5,25.5 + parent: 7020 + - uid: 7169 components: - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 179 + pos: -13.5,25.5 + parent: 7020 + - uid: 7170 components: - type: Transform - pos: 16.5,7.5 - parent: 2 - - uid: 180 + pos: -14.5,25.5 + parent: 7020 + - uid: 7171 components: - type: Transform - pos: 19.5,-1.5 - parent: 2 - - uid: 181 + pos: -16.5,25.5 + parent: 7020 + - uid: 7172 components: - type: Transform - pos: -3.5,-0.5 - parent: 2 - - uid: 182 + pos: -15.5,25.5 + parent: 7020 + - uid: 7173 components: - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 183 + pos: -14.5,24.5 + parent: 7020 + - uid: 7174 components: - type: Transform - pos: -13.5,14.5 - parent: 2 - - uid: 184 + pos: -14.5,23.5 + parent: 7020 + - uid: 7175 components: - type: Transform - pos: -15.5,7.5 - parent: 2 - - uid: 185 + pos: -14.5,22.5 + parent: 7020 + - uid: 7176 components: - type: Transform - pos: -16.5,13.5 - parent: 2 - - uid: 186 + pos: -14.5,26.5 + parent: 7020 + - uid: 7177 components: - type: Transform - pos: -26.5,-7.5 - parent: 2 - - uid: 187 + pos: -14.5,27.5 + parent: 7020 + - uid: 7178 components: - type: Transform - pos: 3.5,17.5 - parent: 2 - - uid: 188 + pos: -14.5,28.5 + parent: 7020 + - uid: 7179 components: - type: Transform - pos: -18.5,5.5 - parent: 2 - - uid: 189 + pos: 0.5,13.5 + parent: 7020 + - uid: 8271 components: - type: Transform - pos: 3.5,18.5 - parent: 2 - - uid: 190 + pos: 0.5,-0.5 + parent: 8267 + - uid: 8272 components: - type: Transform - pos: -18.5,0.5 - parent: 2 - - uid: 191 + pos: -0.5,-0.5 + parent: 8267 + - uid: 8273 components: - type: Transform - pos: -8.5,21.5 - parent: 2 - - uid: 192 + pos: -1.5,-0.5 + parent: 8267 + - uid: 8274 components: - type: Transform - pos: -24.5,-8.5 - parent: 2 - - uid: 193 + pos: -2.5,-0.5 + parent: 8267 + - uid: 8275 components: - type: Transform - pos: -29.5,30.5 - parent: 2 - - uid: 194 + pos: -3.5,-0.5 + parent: 8267 + - uid: 8276 components: - type: Transform - pos: -47.5,17.5 - parent: 2 - - uid: 5415 + pos: -4.5,-0.5 + parent: 8267 + - uid: 8277 components: - type: Transform - pos: 13.5,-7.5 - parent: 5384 - - uid: 5416 + pos: -5.5,-0.5 + parent: 8267 + - uid: 8278 components: - type: Transform - pos: 13.5,-3.5 - parent: 5384 - - uid: 6651 + pos: -6.5,-0.5 + parent: 8267 + - uid: 8279 components: - type: Transform - pos: 1.5,9.5 - parent: 6631 - - uid: 6652 + pos: -7.5,-0.5 + parent: 8267 + - uid: 8280 components: - type: Transform - pos: 3.5,3.5 - parent: 6631 - - uid: 6653 + pos: -8.5,-0.5 + parent: 8267 + - uid: 8281 components: - type: Transform - pos: -2.5,3.5 - parent: 6631 -- proto: BedsheetBlack - entities: - - uid: 5417 + pos: -8.5,0.5 + parent: 8267 + - uid: 8282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 5384 -- proto: BedsheetBrown - entities: - - uid: 195 + pos: -8.5,-1.5 + parent: 8267 + - uid: 8283 components: - type: Transform - pos: -15.5,7.5 - parent: 2 -- proto: BedsheetCaptain - entities: - - uid: 196 + pos: -5.5,-1.5 + parent: 8267 + - uid: 8284 components: - type: Transform - pos: -3.5,-0.5 - parent: 2 -- proto: BedsheetCE - entities: - - uid: 197 + pos: -5.5,0.5 + parent: 8267 + - uid: 8285 components: - type: Transform - pos: 20.5,6.5 - parent: 2 -- proto: BedsheetClown + pos: -0.5,0.5 + parent: 8267 + - uid: 8286 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 8267 +- proto: CableApcStack10 entities: - - uid: 198 + - uid: 989 components: - type: Transform - pos: -18.5,5.5 + pos: 23.57246,-7.552832 parent: 2 -- proto: BedsheetCMO - entities: - - uid: 199 + - uid: 5653 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 2 -- proto: BedsheetGrey - entities: - - uid: 5418 + pos: -1.5037556,-10.556297 + parent: 5438 + - uid: 5654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 5384 -- proto: BedsheetHOP + pos: 14.500424,-3.208404 + parent: 5438 +- proto: CableHV entities: - - uid: 200 + - uid: 990 components: - type: Transform - pos: 7.5,-3.5 + pos: -8.5,18.5 parent: 2 -- proto: BedsheetHOS - entities: - - uid: 201 + - uid: 991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,14.5 + pos: -11.5,-9.5 parent: 2 -- proto: BedsheetMedical - entities: - - uid: 202 + - uid: 992 components: - type: Transform - pos: 1.5,11.5 + pos: 33.5,2.5 parent: 2 - - uid: 203 + - uid: 993 components: - type: Transform - pos: 5.5,13.5 + pos: 34.5,2.5 parent: 2 - - uid: 204 + - uid: 994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 + pos: -27.5,2.5 parent: 2 -- proto: BedsheetMime - entities: - - uid: 205 + - uid: 995 components: - type: Transform - pos: -18.5,0.5 + pos: 35.5,2.5 parent: 2 -- proto: BedsheetNT - entities: - - uid: 6654 + - uid: 996 components: - type: Transform - pos: 3.5,3.5 - parent: 6631 - - uid: 6655 + pos: -11.5,-8.5 + parent: 2 + - uid: 997 components: - type: Transform - pos: -2.5,3.5 - parent: 6631 - - uid: 6656 + pos: 13.5,-1.5 + parent: 2 + - uid: 998 components: - - type: Transform - pos: 2.5,6.5 - parent: 6631 - - uid: 6657 + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 999 components: - type: Transform - pos: 2.5,7.5 - parent: 6631 - - uid: 6658 + pos: 30.5,0.5 + parent: 2 + - uid: 1000 components: - type: Transform - pos: 1.5,9.5 - parent: 6631 -- proto: BedsheetOrange - entities: - - uid: 206 + pos: 30.5,-0.5 + parent: 2 + - uid: 1001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,18.5 + pos: 28.5,2.5 parent: 2 - - uid: 207 + - uid: 1002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,17.5 + pos: 25.5,2.5 parent: 2 - - uid: 208 + - uid: 1003 components: - type: Transform - pos: -24.5,-8.5 + pos: 25.5,2.5 parent: 2 -- proto: BedsheetQM - entities: - - uid: 209 + - uid: 1004 components: - type: Transform - pos: 16.5,7.5 + pos: 24.5,2.5 parent: 2 -- proto: BedsheetRD - entities: - - uid: 210 + - uid: 1005 components: - type: Transform - pos: 19.5,-1.5 + pos: 23.5,2.5 parent: 2 -- proto: BedsheetRed - entities: - - uid: 211 + - uid: 1006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,21.5 + pos: 22.5,2.5 parent: 2 -- proto: BedsheetSpawner - entities: - - uid: 212 + - uid: 1007 components: - type: Transform - pos: -22.5,26.5 + pos: 21.5,2.5 parent: 2 - - uid: 213 + - uid: 1008 components: - type: Transform - pos: -29.5,30.5 + pos: 20.5,2.5 parent: 2 - - uid: 214 + - uid: 1009 components: - type: Transform - pos: -47.5,17.5 + pos: 19.5,2.5 parent: 2 -- proto: BedsheetSyndie - entities: - - uid: 215 + - uid: 1010 components: - type: Transform - pos: -16.5,13.5 + pos: 18.5,2.5 parent: 2 - - uid: 216 + - uid: 1011 components: - type: Transform - pos: -26.5,-7.5 + pos: 17.5,2.5 parent: 2 -- proto: BikeHorn - entities: - - uid: 218 + - uid: 1012 components: - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BlastDoor - entities: - - uid: 228 + pos: 16.5,2.5 + parent: 2 + - uid: 1013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,17.5 + pos: 15.5,2.5 parent: 2 - - uid: 5419 + - uid: 1014 components: - type: Transform - pos: 3.5,4.5 - parent: 5384 - - uid: 5420 + pos: 14.5,2.5 + parent: 2 + - uid: 1015 components: - type: Transform - pos: 4.5,4.5 - parent: 5384 - - uid: 5421 + pos: 13.5,2.5 + parent: 2 + - uid: 1016 components: - type: Transform - pos: 5.5,5.5 - parent: 5384 - - uid: 5422 + pos: 12.5,2.5 + parent: 2 + - uid: 1017 components: - type: Transform - pos: 5.5,4.5 - parent: 5384 - - uid: 5423 + pos: 11.5,2.5 + parent: 2 + - uid: 1018 components: - type: Transform - pos: 3.5,5.5 - parent: 5384 - - uid: 5424 + pos: 10.5,2.5 + parent: 2 + - uid: 1019 components: - type: Transform - pos: 4.5,5.5 - parent: 5384 - - uid: 6659 + pos: 9.5,2.5 + parent: 2 + - uid: 1020 components: - type: Transform - pos: 3.5,-1.5 - parent: 6631 - - type: DeviceLinkSource - linkedPorts: - 6803: - - DoorStatus: InputA - - uid: 6660 + pos: 8.5,2.5 + parent: 2 + - uid: 1021 components: - type: Transform - pos: -2.5,-1.5 - parent: 6631 - - type: DeviceLinkSource - linkedPorts: - 6803: - - DoorStatus: InputB -- proto: BlastDoorOpen - entities: - - uid: 229 + pos: 18.5,3.5 + parent: 2 + - uid: 1022 components: - type: Transform - pos: 2.5,3.5 + pos: -28.5,5.5 parent: 2 - - uid: 230 + - uid: 1023 components: - type: Transform - pos: 1.5,3.5 + pos: -11.5,-7.5 parent: 2 - - uid: 231 + - uid: 1024 components: - type: Transform - pos: 0.5,3.5 + pos: -10.5,-7.5 parent: 2 - - uid: 232 + - uid: 1025 components: - type: Transform - pos: -0.5,3.5 + pos: -9.5,-7.5 parent: 2 - - uid: 233 + - uid: 1026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 + pos: -8.5,-7.5 parent: 2 - - uid: 234 + - uid: 1027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,19.5 + pos: -7.5,-7.5 parent: 2 - - uid: 235 + - uid: 1028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 + pos: -6.5,-7.5 parent: 2 - - uid: 236 + - uid: 1029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,18.5 + pos: -5.5,-7.5 parent: 2 -- proto: Bonfire - entities: - - uid: 237 + - uid: 1030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 + pos: -4.5,-7.5 parent: 2 - - uid: 238 + - uid: 1031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-24.5 + pos: -3.5,-7.5 parent: 2 - - uid: 239 + - uid: 1032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 + pos: -2.5,-7.5 parent: 2 -- proto: BookBase - entities: - - uid: 240 + - uid: 1033 components: - type: Transform - pos: 10.265241,-18.470917 + pos: -1.5,-7.5 parent: 2 -- proto: BookLeafLoversSecret - entities: - - uid: 241 + - uid: 1034 components: - type: Transform - pos: 5.838015,7.371655 + pos: -0.5,-7.5 parent: 2 -- proto: BookshelfFilled - entities: - - uid: 242 + - uid: 1035 components: - type: Transform - pos: -18.5,21.5 + pos: 0.5,-7.5 parent: 2 - - uid: 243 + - uid: 1036 components: - type: Transform - pos: -17.5,21.5 + pos: 1.5,-7.5 parent: 2 - - uid: 244 + - uid: 1037 components: - type: Transform - pos: -15.5,22.5 + pos: 2.5,-7.5 parent: 2 - - uid: 245 + - uid: 1038 components: - type: Transform - pos: -16.5,21.5 + pos: 3.5,-7.5 parent: 2 -- proto: BoozeDispenser - entities: - - uid: 246 + - uid: 1039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 + pos: 4.5,-7.5 parent: 2 -- proto: BorgCharger - entities: - - uid: 247 + - uid: 1040 components: - type: Transform - pos: 20.5,-4.5 + pos: 5.5,-7.5 parent: 2 -- proto: BoxBeaker - entities: - - uid: 248 + - uid: 1041 components: - type: Transform - pos: 5.5125084,8.750033 + pos: 6.5,-7.5 parent: 2 -- proto: BoxBeanbag - entities: - - uid: 250 + - uid: 1042 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxBodyBag - entities: - - uid: 258 + pos: 7.5,-7.5 + parent: 2 + - uid: 1043 components: - type: Transform - pos: -7.380177,-3.6274438 + pos: 8.5,-7.5 parent: 2 - - uid: 259 + - uid: 1044 components: - type: Transform - pos: 12.3391285,19.35756 + pos: 8.5,-6.5 parent: 2 - - uid: 260 + - uid: 1045 components: - type: Transform - pos: 12.6985035,19.654434 + pos: 10.5,-6.5 parent: 2 -- proto: BoxDarts - entities: - - uid: 261 + - uid: 1046 components: - type: Transform - pos: -14.252133,17.742851 + pos: 9.5,-6.5 parent: 2 -- proto: BoxFolderBlack - entities: - - uid: 262 + - uid: 1047 components: - type: Transform - pos: -7.2730103,20.032358 + pos: 11.5,-6.5 parent: 2 - - uid: 263 + - uid: 1048 components: - type: Transform - pos: 7.596985,-1.4089528 + pos: 11.5,-5.5 parent: 2 - - uid: 264 + - uid: 1049 components: - type: Transform - pos: -11.204005,8.685963 + pos: 11.5,-4.5 parent: 2 -- proto: BoxFolderBlue - entities: - - uid: 265 + - uid: 1050 components: - type: Transform - pos: 7.674737,-1.4089528 + pos: 11.5,-3.5 parent: 2 - - uid: 266 + - uid: 1051 components: - type: Transform - pos: -11.18838,8.326588 + pos: 11.5,-2.5 parent: 2 -- proto: BoxFolderGrey - entities: - - uid: 267 + - uid: 1052 components: - type: Transform - pos: 7.458217,-1.4053136 + pos: 11.5,-1.5 parent: 2 -- proto: BoxFolderRed - entities: - - uid: 268 + - uid: 1053 components: - type: Transform - pos: 7.5276613,-1.4053136 + pos: 11.5,-0.5 parent: 2 - - uid: 269 + - uid: 1054 components: - type: Transform - pos: -11.75088,8.326588 + pos: 11.5,0.5 parent: 2 -- proto: BoxFolderWhite - entities: - - uid: 270 + - uid: 1055 components: - type: Transform - pos: -7.6792603,20.032358 + pos: 11.5,1.5 parent: 2 - - uid: 271 + - uid: 1056 components: - type: Transform - pos: 7.347105,-1.4053136 + pos: 17.5,3.5 parent: 2 -- proto: BoxFolderYellow - entities: - - uid: 272 + - uid: 1057 components: - type: Transform - pos: 7.4026613,-1.4053136 + pos: 17.5,4.5 parent: 2 -- proto: BoxLethalshot - entities: - - uid: 251 + - uid: 1058 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxLightMixed - entities: - - uid: 273 + pos: 17.5,5.5 + parent: 2 + - uid: 1059 components: - type: Transform - pos: 13.386856,2.7189994 + pos: 17.5,6.5 parent: 2 - - uid: 274 + - uid: 1060 components: - type: Transform - pos: 13.567411,2.538443 + pos: 17.5,7.5 parent: 2 - - uid: 275 + - uid: 1061 components: - type: Transform - pos: -20.5,1.5 + pos: 17.5,8.5 parent: 2 - - uid: 276 + - uid: 1062 components: - type: Transform - pos: -20.5,1.5 + pos: 17.5,9.5 parent: 2 -- proto: BoxMagazineLightRifle - entities: - - uid: 6661 + - uid: 1063 components: - type: Transform - pos: 3.7285156,4.3629913 - parent: 6631 - - uid: 6662 + pos: 17.5,10.5 + parent: 2 + - uid: 1064 components: - type: Transform - pos: -2.1777344,4.3942413 - parent: 6631 -- proto: BoxMagazinePistol - entities: - - uid: 252 + pos: 18.5,10.5 + parent: 2 + - uid: 1065 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazinePistolSubMachineGun - entities: - - uid: 16 + pos: 19.5,10.5 + parent: 2 + - uid: 1066 components: - type: Transform - parent: 3 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 253 + pos: 20.5,10.5 + parent: 2 + - uid: 1067 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRifle - entities: - - uid: 254 + pos: 21.5,10.5 + parent: 2 + - uid: 1068 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6663 + pos: 22.5,10.5 + parent: 2 + - uid: 1069 components: - type: Transform - pos: 1.796875,10.330719 - parent: 6631 -- proto: BoxMousetrap - entities: - - uid: 277 + pos: 23.5,10.5 + parent: 2 + - uid: 1070 components: - type: Transform - pos: 16.5,-10.5 + pos: 24.5,10.5 parent: 2 - - uid: 278 + - uid: 1071 components: - type: Transform - pos: -20.5,1.5 + pos: 24.5,7.5 parent: 2 - - uid: 279 + - uid: 1072 components: - type: Transform - pos: -20.5,1.5 + pos: 24.5,8.5 parent: 2 -- proto: BoxMouthSwab - entities: - - uid: 280 + - uid: 1073 components: - type: Transform - pos: 7.3889604,-14.44551 + pos: 24.5,9.5 parent: 2 -- proto: BoxTrashbag - entities: - - uid: 281 + - uid: 1074 components: - type: Transform - pos: -20.5,1.5 + pos: 16.5,10.5 parent: 2 -- proto: BrigTimer - entities: - - uid: 282 + - uid: 1075 components: - type: Transform - pos: -5.5,16.5 + pos: 15.5,10.5 parent: 2 -- proto: Bucket - entities: - - uid: 283 + - uid: 1076 components: - type: Transform - pos: -20.5,2.5 + pos: 14.5,10.5 parent: 2 - - uid: 284 + - uid: 1077 components: - type: Transform - pos: -20.322598,2.452269 + pos: 13.5,10.5 parent: 2 - - uid: 285 + - uid: 1078 components: - type: Transform - pos: -4.425287,18.593027 + pos: 12.5,10.5 parent: 2 - - uid: 286 + - uid: 1079 components: - - type: MetaData - desc: Царский размер - name: ведро для химикатов - type: Transform - pos: 5.3406334,8.421908 + pos: 11.5,10.5 parent: 2 - - uid: 287 + - uid: 1080 components: - - type: MetaData - desc: Царский размер - name: ведро для химикатов - type: Transform - pos: 5.7156334,8.421908 + pos: 11.5,9.5 parent: 2 - - uid: 288 + - uid: 1081 components: - type: Transform - pos: -51.36958,18.509937 + pos: 11.5,8.5 parent: 2 -- proto: ButtonFrameCautionSecurity - entities: - - uid: 289 + - uid: 1082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,18.5 + pos: 11.5,7.5 parent: 2 - - uid: 290 + - uid: 1083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,18.5 + pos: 11.5,6.5 parent: 2 - - uid: 291 + - uid: 1084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 + pos: 11.5,5.5 parent: 2 - - uid: 292 + - uid: 1085 components: - type: Transform - pos: -13.5,15.5 + pos: 11.5,4.5 parent: 2 -- proto: CableApcExtension - entities: - - uid: 293 + - uid: 1086 components: - type: Transform - pos: 29.5,21.5 + pos: 11.5,3.5 parent: 2 - - uid: 294 + - uid: 1087 components: - type: Transform - pos: -3.5,17.5 + pos: 8.5,5.5 parent: 2 - - uid: 295 + - uid: 1088 components: - type: Transform - pos: 27.5,-13.5 + pos: 8.5,4.5 parent: 2 - - uid: 296 + - uid: 1089 components: - type: Transform - pos: -16.5,-1.5 + pos: 8.5,3.5 parent: 2 - - uid: 297 + - uid: 1090 components: - type: Transform - pos: 22.5,-13.5 + pos: 9.5,4.5 parent: 2 - - uid: 298 + - uid: 1091 components: - type: Transform - pos: 23.5,-13.5 + pos: 10.5,4.5 parent: 2 - - uid: 299 + - uid: 1092 components: - type: Transform - pos: 21.5,-10.5 + pos: 7.5,5.5 parent: 2 - - uid: 300 + - uid: 1093 components: - type: Transform - pos: 21.5,-9.5 + pos: 6.5,5.5 parent: 2 - - uid: 301 + - uid: 1094 components: - type: Transform - pos: -1.5,-9.5 + pos: 5.5,5.5 parent: 2 - - uid: 302 + - uid: 1095 components: - type: Transform - pos: 18.5,4.5 + pos: 4.5,5.5 parent: 2 - - uid: 303 + - uid: 1096 components: - type: Transform - pos: 17.5,4.5 + pos: 3.5,5.5 parent: 2 - - uid: 304 + - uid: 1097 components: - type: Transform - pos: 16.5,4.5 + pos: 2.5,5.5 parent: 2 - - uid: 305 + - uid: 1098 components: - type: Transform - pos: 15.5,4.5 + pos: 1.5,5.5 parent: 2 - - uid: 306 + - uid: 1099 components: - type: Transform - pos: 14.5,4.5 + pos: 0.5,5.5 parent: 2 - - uid: 307 + - uid: 1100 components: - type: Transform - pos: 13.5,4.5 + pos: -0.5,5.5 parent: 2 - - uid: 308 + - uid: 1101 components: - type: Transform - pos: 18.5,5.5 + pos: -1.5,5.5 parent: 2 - - uid: 309 + - uid: 1102 components: - type: Transform - pos: 19.5,5.5 + pos: -2.5,5.5 parent: 2 - - uid: 310 + - uid: 1103 components: - type: Transform - pos: 20.5,5.5 + pos: -3.5,5.5 parent: 2 - - uid: 311 + - uid: 1104 components: - type: Transform - pos: 18.5,3.5 + pos: -4.5,5.5 parent: 2 - - uid: 312 + - uid: 1105 components: - type: Transform - pos: 18.5,2.5 + pos: -5.5,5.5 parent: 2 - - uid: 313 + - uid: 1106 components: - type: Transform - pos: 18.5,1.5 + pos: -5.5,4.5 parent: 2 - - uid: 314 + - uid: 1107 components: - type: Transform - pos: 18.5,0.5 + pos: -5.5,3.5 parent: 2 - - uid: 315 + - uid: 1108 components: - type: Transform - pos: 15.5,3.5 + pos: -5.5,2.5 parent: 2 - - uid: 316 + - uid: 1109 components: - type: Transform - pos: 15.5,2.5 + pos: -5.5,1.5 parent: 2 - - uid: 317 + - uid: 1110 components: - type: Transform - pos: 15.5,1.5 + pos: -5.5,0.5 parent: 2 - - uid: 318 + - uid: 1111 components: - type: Transform - pos: 15.5,0.5 + pos: -5.5,-0.5 parent: 2 - - uid: 319 + - uid: 1112 components: - type: Transform - pos: 19.5,0.5 + pos: -5.5,-1.5 parent: 2 - - uid: 320 + - uid: 1113 components: - type: Transform - pos: 20.5,0.5 + pos: -5.5,-2.5 parent: 2 - - uid: 321 + - uid: 1114 components: - type: Transform - pos: 21.5,0.5 + pos: -5.5,-3.5 parent: 2 - - uid: 322 + - uid: 1115 components: - type: Transform - pos: 22.5,0.5 + pos: -5.5,-4.5 parent: 2 - - uid: 323 + - uid: 1116 components: - type: Transform - pos: 23.5,0.5 + pos: -5.5,-5.5 parent: 2 - - uid: 324 + - uid: 1117 components: - type: Transform - pos: 24.5,0.5 + pos: -5.5,-6.5 parent: 2 - - uid: 325 + - uid: 1118 components: - type: Transform - pos: 23.5,1.5 + pos: -26.5,2.5 parent: 2 - - uid: 326 + - uid: 1119 components: - type: Transform - pos: 23.5,2.5 + pos: -11.5,-4.5 parent: 2 - - uid: 327 + - uid: 1120 components: - type: Transform - pos: 21.5,1.5 + pos: -11.5,-5.5 parent: 2 - - uid: 328 + - uid: 1121 components: - type: Transform - pos: 21.5,2.5 + pos: -11.5,-6.5 parent: 2 - - uid: 329 + - uid: 1122 components: - type: Transform - pos: 13.5,-10.5 + pos: -11.5,4.5 parent: 2 - - uid: 330 + - uid: 1123 components: - type: Transform - pos: 12.5,-10.5 + pos: -10.5,4.5 parent: 2 - - uid: 331 + - uid: 1124 components: - type: Transform - pos: 11.5,-10.5 + pos: -9.5,4.5 parent: 2 - - uid: 332 + - uid: 1125 components: - type: Transform - pos: 10.5,-10.5 + pos: -8.5,4.5 parent: 2 - - uid: 333 + - uid: 1126 components: - type: Transform - pos: 9.5,-10.5 + pos: -7.5,4.5 parent: 2 - - uid: 334 + - uid: 1127 components: - type: Transform - pos: 8.5,-10.5 + pos: -6.5,4.5 parent: 2 - - uid: 335 + - uid: 1128 components: - type: Transform - pos: 7.5,-10.5 + pos: -25.5,2.5 parent: 2 - - uid: 336 + - uid: 1129 components: - type: Transform - pos: 6.5,-10.5 + pos: -16.5,-2.5 parent: 2 - - uid: 337 + - uid: 1130 components: - type: Transform - pos: 5.5,-10.5 + pos: -11.5,3.5 parent: 2 - - uid: 338 + - uid: 1131 components: - type: Transform - pos: 4.5,-10.5 + pos: -1.5,6.5 parent: 2 - - uid: 339 + - uid: 1132 components: - type: Transform - pos: 3.5,-10.5 + pos: -1.5,7.5 parent: 2 - - uid: 340 + - uid: 1133 components: - type: Transform - pos: 2.5,-10.5 + pos: -1.5,8.5 parent: 2 - - uid: 341 + - uid: 1134 components: - type: Transform - pos: 9.5,-11.5 + pos: -1.5,9.5 parent: 2 - - uid: 342 + - uid: 1135 components: - type: Transform - pos: 9.5,-12.5 + pos: -1.5,10.5 parent: 2 - - uid: 343 + - uid: 1136 components: - type: Transform - pos: 9.5,-13.5 + pos: -1.5,11.5 parent: 2 - - uid: 344 + - uid: 1137 components: - type: Transform - pos: 8.5,-13.5 + pos: -8.5,11.5 parent: 2 - - uid: 345 + - uid: 1138 components: - type: Transform - pos: 7.5,-13.5 + pos: -7.5,11.5 parent: 2 - - uid: 346 + - uid: 1139 components: - type: Transform - pos: 6.5,-13.5 + pos: -6.5,11.5 parent: 2 - - uid: 347 + - uid: 1140 components: - type: Transform - pos: 10.5,-13.5 + pos: -5.5,11.5 parent: 2 - - uid: 348 + - uid: 1141 components: - type: Transform - pos: 11.5,-13.5 + pos: -4.5,11.5 parent: 2 - - uid: 349 + - uid: 1142 components: - type: Transform - pos: 5.5,-13.5 + pos: -3.5,11.5 parent: 2 - - uid: 350 + - uid: 1143 components: - type: Transform - pos: 4.5,-13.5 + pos: -2.5,11.5 parent: 2 - - uid: 351 + - uid: 1144 components: - type: Transform - pos: 3.5,-13.5 + pos: -8.5,12.5 parent: 2 - - uid: 352 + - uid: 1145 components: - type: Transform - pos: 2.5,-13.5 + pos: -8.5,13.5 parent: 2 - - uid: 353 + - uid: 1146 components: - type: Transform - pos: 14.5,-10.5 + pos: -8.5,14.5 parent: 2 - - uid: 354 + - uid: 1147 components: - type: Transform - pos: 15.5,-10.5 + pos: -13.5,-2.5 parent: 2 - - uid: 355 + - uid: 1148 components: - type: Transform - pos: 16.5,-10.5 + pos: 7.5,6.5 parent: 2 - - uid: 356 + - uid: 1149 components: - type: Transform - pos: 16.5,-9.5 + pos: 7.5,7.5 parent: 2 - - uid: 357 + - uid: 1150 components: - type: Transform - pos: 20.5,-2.5 + pos: 7.5,8.5 parent: 2 - - uid: 358 + - uid: 1151 components: - type: Transform - pos: 20.5,-3.5 + pos: 7.5,9.5 parent: 2 - - uid: 359 + - uid: 1152 components: - type: Transform - pos: 20.5,-4.5 + pos: 7.5,10.5 parent: 2 - - uid: 360 + - uid: 1153 components: - type: Transform - pos: 21.5,-6.5 + pos: 7.5,11.5 parent: 2 - - uid: 361 + - uid: 1154 components: - type: Transform - pos: 19.5,-7.5 + pos: 7.5,12.5 parent: 2 - - uid: 362 + - uid: 1155 components: - type: Transform - pos: 19.5,-6.5 + pos: 7.5,13.5 parent: 2 - - uid: 363 + - uid: 1156 components: - type: Transform - pos: 21.5,-7.5 + pos: 7.5,14.5 parent: 2 - - uid: 364 + - uid: 1157 components: - type: Transform - pos: 23.5,-8.5 + pos: 6.5,14.5 parent: 2 - - uid: 365 + - uid: 1158 components: - type: Transform - pos: 23.5,-7.5 + pos: 24.5,6.5 parent: 2 - - uid: 366 + - uid: 1159 components: - type: Transform - pos: 23.5,-6.5 + pos: 8.5,-7.5 parent: 2 - - uid: 367 + - uid: 1160 components: - type: Transform - pos: 23.5,-5.5 + pos: 8.5,-8.5 parent: 2 - - uid: 368 + - uid: 1161 components: - type: Transform - pos: 21.5,-4.5 + pos: 8.5,-9.5 parent: 2 - - uid: 369 + - uid: 1162 components: - type: Transform - pos: 22.5,-4.5 + pos: 9.5,-9.5 parent: 2 - - uid: 370 + - uid: 1163 components: - type: Transform - pos: 22.5,-6.5 + pos: 10.5,-9.5 parent: 2 - - uid: 371 + - uid: 1164 components: - type: Transform - pos: 16.5,-6.5 + pos: 11.5,-9.5 parent: 2 - - uid: 372 + - uid: 1165 components: - type: Transform - pos: 15.5,-6.5 + pos: 12.5,-9.5 parent: 2 - - uid: 373 + - uid: 1166 components: - type: Transform - pos: 14.5,-6.5 + pos: 13.5,-9.5 parent: 2 - - uid: 374 + - uid: 1167 components: - type: Transform - pos: 14.5,-5.5 + pos: 13.5,-8.5 parent: 2 - - uid: 375 + - uid: 1168 components: - type: Transform - pos: 14.5,-4.5 + pos: 12.5,-2.5 parent: 2 - - uid: 376 + - uid: 1169 components: - type: Transform - pos: 14.5,-3.5 + pos: 13.5,-2.5 parent: 2 - - uid: 377 + - uid: 1170 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 378 + - uid: 1171 components: - type: Transform - pos: 14.5,-1.5 + pos: 15.5,-2.5 parent: 2 - - uid: 379 + - uid: 1172 components: - type: Transform - pos: 16.5,-5.5 + pos: 16.5,-2.5 parent: 2 - - uid: 380 + - uid: 1173 components: - type: Transform - pos: 16.5,-4.5 + pos: 17.5,-2.5 parent: 2 - - uid: 381 + - uid: 1174 components: - type: Transform - pos: 16.5,-3.5 + pos: 12.5,4.5 parent: 2 - - uid: 382 + - uid: 1175 components: - type: Transform - pos: 16.5,-2.5 + pos: 13.5,4.5 parent: 2 - - uid: 383 + - uid: 1176 components: - type: Transform - pos: 16.5,-1.5 + pos: 14.5,4.5 parent: 2 - - uid: 384 + - uid: 1177 components: - type: Transform - pos: 15.5,-1.5 + pos: 15.5,4.5 parent: 2 - - uid: 385 + - uid: 1178 components: - type: Transform - pos: 19.5,-2.5 + pos: 16.5,4.5 parent: 2 - - uid: 386 + - uid: 1179 components: - type: Transform - pos: 3.5,1.5 + pos: 0.5,-6.5 parent: 2 - - uid: 387 + - uid: 1180 components: - type: Transform - pos: 4.5,1.5 + pos: 0.5,-5.5 parent: 2 - - uid: 388 + - uid: 1181 components: - type: Transform - pos: 5.5,1.5 + pos: 0.5,-4.5 parent: 2 - - uid: 389 + - uid: 1182 components: - type: Transform - pos: 6.5,1.5 + pos: -0.5,-4.5 parent: 2 - - uid: 390 + - uid: 1183 components: - type: Transform - pos: 5.5,0.5 + pos: -0.5,-3.5 parent: 2 - - uid: 391 + - uid: 1184 components: - type: Transform - pos: -0.5,-0.5 + pos: -0.5,-2.5 parent: 2 - - uid: 392 + - uid: 1185 components: - type: Transform - pos: 0.5,-0.5 + pos: -0.5,-1.5 parent: 2 - - uid: 393 + - uid: 1186 components: - type: Transform - pos: 1.5,-0.5 + pos: -0.5,-0.5 parent: 2 - - uid: 394 + - uid: 1187 components: - type: Transform - pos: 2.5,-0.5 + pos: -0.5,0.5 parent: 2 - - uid: 395 + - uid: 1188 components: - type: Transform - pos: 2.5,0.5 + pos: 0.5,0.5 parent: 2 - - uid: 396 + - uid: 1189 components: - type: Transform - pos: 2.5,1.5 + pos: 1.5,0.5 parent: 2 - - uid: 397 + - uid: 1190 components: - type: Transform - pos: 0.5,0.5 + pos: 2.5,0.5 parent: 2 - - uid: 398 + - uid: 1191 components: - type: Transform - pos: 0.5,1.5 + pos: 2.5,1.5 parent: 2 - - uid: 399 + - uid: 1192 components: - type: Transform - pos: 0.5,2.5 + pos: 3.5,1.5 parent: 2 - - uid: 400 + - uid: 1193 components: - type: Transform - pos: -0.5,3.5 + pos: -22.5,24.5 parent: 2 - - uid: 401 + - uid: 1194 components: - type: Transform - pos: 0.5,3.5 + pos: -7.5,18.5 parent: 2 - - uid: 402 + - uid: 1195 components: - type: Transform - pos: 1.5,3.5 + pos: -7.5,19.5 parent: 2 - - uid: 403 + - uid: 1196 components: - type: Transform - pos: 2.5,3.5 + pos: -4.5,17.5 parent: 2 - - uid: 404 + - uid: 1197 components: - type: Transform - pos: -1.5,-0.5 + pos: -23.5,2.5 parent: 2 - - uid: 405 + - uid: 1198 components: - type: Transform - pos: -2.5,-0.5 + pos: -22.5,2.5 parent: 2 - - uid: 406 + - uid: 1199 components: - type: Transform - pos: -3.5,-0.5 + pos: 28.5,-1.5 parent: 2 - - uid: 407 + - uid: 1200 components: - type: Transform - pos: -3.5,0.5 + pos: 28.5,-0.5 parent: 2 - - uid: 408 + - uid: 1201 components: - type: Transform - pos: -0.5,-1.5 + pos: 29.5,2.5 parent: 2 - - uid: 409 + - uid: 1202 components: - type: Transform - pos: -0.5,-2.5 + pos: -22.5,25.5 parent: 2 - - uid: 410 + - uid: 1203 components: - type: Transform - pos: -0.5,-3.5 + pos: -23.5,24.5 parent: 2 - - uid: 411 + - uid: 1204 components: - type: Transform - pos: -0.5,-4.5 + pos: 29.5,-0.5 parent: 2 - - uid: 412 + - uid: 1205 components: - type: Transform - pos: -1.5,-3.5 + pos: 27.5,2.5 parent: 2 - - uid: 413 + - uid: 1206 components: - type: Transform - pos: -2.5,-3.5 + pos: 28.5,-3.5 parent: 2 - - uid: 414 + - uid: 1207 components: - type: Transform - pos: -3.5,-3.5 + pos: 28.5,-2.5 parent: 2 - - uid: 415 + - uid: 1208 components: - type: Transform - pos: 0.5,-3.5 + pos: 30.5,-3.5 parent: 2 - - uid: 416 + - uid: 1209 components: - type: Transform - pos: 1.5,-3.5 + pos: 30.5,-4.5 parent: 2 - - uid: 417 + - uid: 1210 components: - type: Transform - pos: 2.5,-3.5 + pos: 30.5,-2.5 parent: 2 - - uid: 418 + - uid: 1211 components: - type: Transform - pos: 3.5,-3.5 + pos: 30.5,1.5 parent: 2 - - uid: 419 + - uid: 1212 components: - type: Transform - pos: 4.5,-3.5 + pos: 30.5,2.5 parent: 2 - - uid: 420 + - uid: 1213 components: - type: Transform - pos: 5.5,-3.5 + pos: 29.5,0.5 parent: 2 - - uid: 421 + - uid: 1214 components: - type: Transform - pos: 5.5,-2.5 + pos: 29.5,-3.5 parent: 2 - - uid: 422 + - uid: 1215 components: - type: Transform - pos: 6.5,-2.5 + pos: 26.5,2.5 parent: 2 - - uid: 423 + - uid: 1216 components: - type: Transform - pos: 7.5,-2.5 + pos: -22.5,1.5 parent: 2 - - uid: 424 + - uid: 1217 components: - type: Transform - pos: 8.5,-2.5 + pos: -20.5,-0.5 parent: 2 - - uid: 425 + - uid: 1218 components: - type: Transform - pos: 22.5,21.5 + pos: -22.5,-0.5 parent: 2 - - uid: 426 + - uid: 1219 components: - type: Transform - pos: 21.5,-13.5 + pos: -22.5,0.5 parent: 2 - - uid: 427 + - uid: 1220 components: - type: Transform - pos: 24.5,-13.5 + pos: -20.5,-1.5 parent: 2 - - uid: 428 + - uid: 1221 components: - type: Transform - pos: 21.5,-11.5 + pos: -21.5,-0.5 parent: 2 - - uid: 429 + - uid: 1222 components: - type: Transform - pos: 21.5,-12.5 + pos: -19.5,-1.5 parent: 2 - - uid: 430 + - uid: 1223 components: - type: Transform - pos: 25.5,-13.5 + pos: -19.5,-2.5 parent: 2 - - uid: 431 + - uid: 1224 components: - type: Transform - pos: -6.5,-7.5 + pos: -18.5,-2.5 parent: 2 - - uid: 432 + - uid: 1225 components: - type: Transform - pos: -6.5,-6.5 + pos: -17.5,-2.5 parent: 2 - - uid: 433 + - uid: 1226 components: - type: Transform - pos: -7.5,-7.5 + pos: -24.5,2.5 parent: 2 - - uid: 434 + - uid: 1227 components: - type: Transform - pos: -8.5,-7.5 + pos: -14.5,-2.5 parent: 2 - - uid: 435 + - uid: 1228 components: - type: Transform - pos: -9.5,-7.5 + pos: -15.5,-2.5 parent: 2 - - uid: 436 + - uid: 1229 components: - type: Transform - pos: -10.5,-7.5 + pos: -8.5,19.5 parent: 2 - - uid: 437 + - uid: 1230 components: - type: Transform - pos: -11.5,-7.5 + pos: -2.5,16.5 parent: 2 - - uid: 438 + - uid: 1231 components: - type: Transform - pos: -12.5,-7.5 + pos: -3.5,16.5 parent: 2 - - uid: 439 + - uid: 1232 components: - type: Transform - pos: -13.5,-7.5 + pos: -1.5,20.5 parent: 2 - - uid: 440 + - uid: 1233 components: - type: Transform - pos: -14.5,-7.5 + pos: -4.5,20.5 parent: 2 - - uid: 441 + - uid: 1234 components: - type: Transform - pos: -15.5,-7.5 + pos: -4.5,19.5 parent: 2 - - uid: 442 + - uid: 1235 components: - type: Transform - pos: -16.5,-7.5 + pos: -2.5,20.5 parent: 2 - - uid: 443 + - uid: 1236 components: - type: Transform - pos: -17.5,-7.5 + pos: -4.5,16.5 parent: 2 - - uid: 444 + - uid: 1237 components: - type: Transform - pos: -18.5,-7.5 + pos: -4.5,18.5 parent: 2 - - uid: 445 + - uid: 1238 components: - type: Transform - pos: -19.5,-7.5 + pos: 32.5,2.5 parent: 2 - - uid: 446 + - uid: 1239 components: - type: Transform - pos: -5.5,-7.5 + pos: -11.5,-3.5 parent: 2 - - uid: 447 + - uid: 1240 components: - type: Transform - pos: -4.5,-7.5 + pos: -12.5,-3.5 parent: 2 - - uid: 448 + - uid: 1241 components: - type: Transform - pos: -3.5,-7.5 + pos: -9.5,22.5 parent: 2 - - uid: 449 + - uid: 1242 components: - type: Transform - pos: -2.5,-7.5 + pos: 0.5,20.5 parent: 2 - - uid: 450 + - uid: 1243 components: - type: Transform - pos: -1.5,-7.5 + pos: -8.5,16.5 parent: 2 - - uid: 451 + - uid: 1244 components: - type: Transform - pos: -0.5,-7.5 + pos: -8.5,17.5 parent: 2 - - uid: 452 + - uid: 1245 components: - type: Transform - pos: 0.5,-7.5 + pos: -6.5,15.5 parent: 2 - - uid: 453 + - uid: 1246 components: - type: Transform - pos: -0.5,-8.5 + pos: 29.5,-2.5 parent: 2 - - uid: 454 + - uid: 1247 components: - type: Transform - pos: -0.5,-9.5 + pos: -4.5,15.5 parent: 2 - - uid: 455 + - uid: 1248 components: - type: Transform - pos: -0.5,-10.5 + pos: 28.5,-4.5 parent: 2 - - uid: 456 + - uid: 1249 components: - type: Transform - pos: -0.5,-11.5 + pos: 29.5,-4.5 parent: 2 - - uid: 457 + - uid: 1250 components: - type: Transform - pos: -0.5,-12.5 + pos: -8.5,15.5 parent: 2 - - uid: 458 + - uid: 1251 components: - type: Transform - pos: -0.5,-13.5 + pos: 4.5,19.5 parent: 2 - - uid: 459 + - uid: 1252 components: - type: Transform - pos: -6.5,-5.5 + pos: -8.5,21.5 parent: 2 - - uid: 460 + - uid: 1253 components: - type: Transform - pos: -6.5,-4.5 + pos: 2.5,20.5 parent: 2 - - uid: 461 + - uid: 1254 components: - type: Transform - pos: -6.5,-3.5 + pos: 4.5,20.5 parent: 2 - - uid: 462 + - uid: 1255 components: - type: Transform - pos: -6.5,-2.5 + pos: 3.5,20.5 parent: 2 - - uid: 463 + - uid: 1256 components: - type: Transform - pos: -6.5,-1.5 + pos: 1.5,20.5 parent: 2 - - uid: 464 + - uid: 1257 components: - type: Transform - pos: -16.5,-2.5 + pos: -3.5,20.5 parent: 2 - - uid: 465 + - uid: 1258 components: - type: Transform - pos: -17.5,-2.5 + pos: -5.5,15.5 parent: 2 - - uid: 466 + - uid: 1259 components: - type: Transform - pos: -18.5,-2.5 + pos: -7.5,15.5 parent: 2 - - uid: 467 + - uid: 1260 components: - type: Transform - pos: -19.5,-2.5 + pos: -0.5,20.5 parent: 2 - - uid: 468 + - uid: 1261 components: - type: Transform - pos: -20.5,-2.5 + pos: -28.5,3.5 parent: 2 - - uid: 469 + - uid: 1262 components: - type: Transform - pos: -18.5,-3.5 + pos: -28.5,4.5 parent: 2 - - uid: 470 + - uid: 1263 components: - type: Transform - pos: -18.5,-4.5 + pos: -9.5,21.5 parent: 2 - - uid: 471 + - uid: 1264 components: - type: Transform - pos: -16.5,-2.5 + pos: -8.5,20.5 parent: 2 - - uid: 472 + - uid: 1265 components: - type: Transform - pos: -15.5,-2.5 + pos: -28.5,2.5 parent: 2 - - uid: 473 + - uid: 1266 components: - type: Transform - pos: -14.5,-2.5 + pos: 31.5,2.5 parent: 2 - - uid: 474 + - uid: 1267 components: - type: Transform - pos: -13.5,-2.5 + pos: -13.5,-3.5 parent: 2 - - uid: 475 + - uid: 1268 components: - type: Transform - pos: -12.5,-2.5 + pos: -11.5,2.5 parent: 2 - - uid: 476 + - uid: 1269 components: - type: Transform - pos: -11.5,-2.5 + pos: 11.5,43.5 parent: 2 - - uid: 477 + - uid: 1270 components: - type: Transform - pos: -10.5,-2.5 + pos: 11.5,42.5 parent: 2 - - uid: 478 + - uid: 1271 components: - type: Transform - pos: -9.5,-2.5 + pos: 10.5,42.5 parent: 2 - - uid: 479 + - uid: 1272 components: - type: Transform - pos: -8.5,-2.5 + pos: -6.5,18.5 parent: 2 - - uid: 480 + - uid: 1273 components: - type: Transform - pos: -11.5,-3.5 + pos: -6.5,19.5 parent: 2 - - uid: 481 + - uid: 1274 components: - type: Transform - pos: -6.5,-0.5 + pos: -5.5,19.5 parent: 2 - - uid: 482 + - uid: 1275 components: - type: Transform - pos: -6.5,0.5 + pos: -5.5,18.5 parent: 2 - - uid: 483 + - uid: 5655 components: - type: Transform - pos: -6.5,1.5 - parent: 2 - - uid: 484 + pos: -4.5,7.5 + parent: 5438 + - uid: 5656 components: - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 485 + pos: -4.5,6.5 + parent: 5438 + - uid: 5657 components: - type: Transform - pos: -7.5,0.5 - parent: 2 - - uid: 486 + pos: -3.5,7.5 + parent: 5438 + - uid: 5658 components: - type: Transform - pos: -8.5,0.5 - parent: 2 - - uid: 487 + pos: -3.5,6.5 + parent: 5438 + - uid: 5659 components: - type: Transform - pos: -9.5,0.5 - parent: 2 - - uid: 488 + pos: -2.5,6.5 + parent: 5438 + - uid: 6770 components: - type: Transform - pos: -10.5,0.5 - parent: 2 - - uid: 489 + pos: -0.5,-2.5 + parent: 6685 + - uid: 6771 components: - type: Transform - pos: -12.5,5.5 - parent: 2 - - uid: 490 + pos: 1.5,-1.5 + parent: 6685 + - uid: 6772 components: - type: Transform - pos: -12.5,4.5 - parent: 2 - - uid: 491 + pos: 1.5,-2.5 + parent: 6685 + - uid: 6773 components: - type: Transform - pos: -12.5,3.5 - parent: 2 - - uid: 492 + pos: -0.5,-1.5 + parent: 6685 + - uid: 6774 components: - type: Transform - pos: -13.5,3.5 - parent: 2 - - uid: 493 + pos: 0.5,-2.5 + parent: 6685 + - uid: 7180 components: - type: Transform - pos: -14.5,3.5 - parent: 2 - - uid: 494 + pos: 4.5,29.5 + parent: 7020 + - uid: 7181 components: - type: Transform - pos: -15.5,3.5 - parent: 2 - - uid: 495 + pos: 2.5,29.5 + parent: 7020 + - uid: 7182 components: - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 496 + pos: 4.5,30.5 + parent: 7020 + - uid: 7183 components: - type: Transform - pos: -17.5,3.5 - parent: 2 - - uid: 497 + pos: 2.5,30.5 + parent: 7020 + - uid: 7184 components: - type: Transform - pos: -21.5,5.5 - parent: 2 - - uid: 498 + pos: 2.5,31.5 + parent: 7020 + - uid: 7185 components: - type: Transform - pos: -19.5,3.5 - parent: 2 - - uid: 499 + pos: 3.5,31.5 + parent: 7020 + - uid: 8287 components: - type: Transform - pos: -17.5,4.5 - parent: 2 - - uid: 500 + pos: -6.5,-1.5 + parent: 8267 + - uid: 8288 components: - type: Transform - pos: -17.5,5.5 - parent: 2 - - uid: 501 + pos: -6.5,-0.5 + parent: 8267 + - uid: 8289 components: - type: Transform - pos: -17.5,2.5 - parent: 2 - - uid: 502 + pos: -6.5,0.5 + parent: 8267 +- proto: CableMV + entities: + - uid: 1276 components: - type: Transform - pos: -17.5,1.5 + pos: -16.5,-1.5 parent: 2 - - uid: 503 + - uid: 1277 components: - type: Transform - pos: -17.5,0.5 + pos: 21.5,-8.5 parent: 2 - - uid: 504 + - uid: 1278 components: - type: Transform - pos: -13.5,2.5 + pos: -3.5,-8.5 parent: 2 - - uid: 505 + - uid: 1279 components: - type: Transform - pos: -13.5,1.5 + pos: -11.5,-9.5 parent: 2 - - uid: 506 + - uid: 1280 components: - type: Transform - pos: -11.5,4.5 + pos: -11.5,-8.5 parent: 2 - - uid: 507 + - uid: 1281 components: - type: Transform - pos: -10.5,4.5 + pos: -10.5,18.5 parent: 2 - - uid: 508 + - uid: 1282 components: - type: Transform - pos: -9.5,4.5 + pos: -21.5,23.5 parent: 2 - - uid: 509 + - uid: 1283 components: - type: Transform - pos: -8.5,4.5 + pos: -11.5,2.5 parent: 2 - - uid: 510 + - uid: 1284 components: - type: Transform - pos: -7.5,4.5 + pos: -11.5,3.5 parent: 2 - - uid: 511 + - uid: 1285 components: - type: Transform - pos: -10.5,15.5 + pos: -10.5,20.5 parent: 2 - - uid: 512 + - uid: 1286 components: - type: Transform - pos: -10.5,16.5 + pos: -10.5,17.5 parent: 2 - - uid: 513 + - uid: 1287 components: - type: Transform - pos: -10.5,17.5 + pos: -10.5,16.5 parent: 2 - - uid: 514 + - uid: 1288 components: - type: Transform - pos: -10.5,18.5 + pos: -9.5,21.5 parent: 2 - - uid: 515 + - uid: 1289 components: - type: Transform - pos: -10.5,19.5 + pos: -10.5,21.5 parent: 2 - - uid: 516 + - uid: 1290 components: - type: Transform - pos: -11.5,15.5 + pos: -22.5,24.5 parent: 2 - - uid: 517 + - uid: 1291 components: - type: Transform - pos: -9.5,19.5 + pos: -22.5,23.5 parent: 2 - - uid: 518 + - uid: 1292 components: - type: Transform - pos: -8.5,19.5 + pos: -22.5,25.5 parent: 2 - - uid: 519 + - uid: 1293 components: - type: Transform - pos: -8.5,20.5 + pos: 16.5,-4.5 parent: 2 - - uid: 520 + - uid: 1294 components: - type: Transform - pos: -8.5,18.5 + pos: 15.5,-4.5 parent: 2 - - uid: 521 + - uid: 1295 components: - type: Transform - pos: -7.5,19.5 + pos: 14.5,-4.5 parent: 2 - - uid: 522 + - uid: 1296 components: - type: Transform - pos: -9.5,15.5 + pos: 14.5,-3.5 parent: 2 - - uid: 523 + - uid: 1297 components: - type: Transform - pos: -8.5,15.5 + pos: 14.5,-2.5 parent: 2 - - uid: 524 + - uid: 1298 components: - type: Transform - pos: -7.5,15.5 + pos: 13.5,-2.5 parent: 2 - - uid: 525 + - uid: 1299 components: - type: Transform - pos: -6.5,15.5 + pos: 13.5,-1.5 parent: 2 - - uid: 526 + - uid: 1300 components: - type: Transform - pos: -5.5,15.5 + pos: 13.5,-0.5 parent: 2 - - uid: 527 + - uid: 1301 components: - type: Transform - pos: -4.5,15.5 + pos: 18.5,3.5 parent: 2 - - uid: 528 + - uid: 1302 components: - type: Transform - pos: -3.5,15.5 + pos: 18.5,4.5 parent: 2 - - uid: 529 + - uid: 1303 components: - type: Transform - pos: -2.5,15.5 + pos: -1.5,-0.5 parent: 2 - - uid: 530 + - uid: 1304 components: - type: Transform - pos: -3.5,16.5 + pos: -0.5,-0.5 parent: 2 - - uid: 531 + - uid: 1305 components: - type: Transform - pos: -2.5,16.5 + pos: -0.5,0.5 parent: 2 - - uid: 532 + - uid: 1306 components: - type: Transform - pos: -5.5,14.5 + pos: 0.5,0.5 parent: 2 - - uid: 533 + - uid: 1307 components: - type: Transform - pos: -5.5,13.5 + pos: 1.5,0.5 parent: 2 - - uid: 534 + - uid: 1308 components: - type: Transform - pos: -5.5,12.5 + pos: 1.5,1.5 parent: 2 - - uid: 535 + - uid: 1309 components: - type: Transform - pos: -5.5,11.5 + pos: 2.5,1.5 parent: 2 - - uid: 536 + - uid: 1310 components: - type: Transform - pos: -5.5,10.5 + pos: 3.5,1.5 parent: 2 - - uid: 537 + - uid: 1311 components: - type: Transform - pos: -5.5,9.5 + pos: 13.5,-8.5 parent: 2 - - uid: 538 + - uid: 1312 components: - type: Transform - pos: -5.5,8.5 + pos: 13.5,-9.5 parent: 2 - - uid: 539 + - uid: 1313 components: - type: Transform - pos: -5.5,7.5 + pos: 13.5,-10.5 parent: 2 - - uid: 540 + - uid: 1314 components: - type: Transform - pos: -6.5,7.5 + pos: 17.5,-2.5 parent: 2 - - uid: 541 + - uid: 1315 components: - type: Transform - pos: -7.5,7.5 + pos: 18.5,-2.5 parent: 2 - - uid: 542 + - uid: 1316 components: - type: Transform - pos: -8.5,7.5 + pos: 19.5,-2.5 parent: 2 - - uid: 543 + - uid: 1317 components: - type: Transform - pos: -9.5,7.5 + pos: -7.5,-8.5 parent: 2 - - uid: 544 + - uid: 1318 components: - type: Transform - pos: -10.5,14.5 + pos: -6.5,-8.5 parent: 2 - - uid: 545 + - uid: 1319 components: - type: Transform - pos: -10.5,13.5 + pos: -16.5,-2.5 parent: 2 - - uid: 546 + - uid: 1320 components: - type: Transform - pos: -10.5,12.5 + pos: -15.5,-2.5 parent: 2 - - uid: 547 + - uid: 1321 components: - type: Transform - pos: -10.5,11.5 + pos: -12.5,5.5 parent: 2 - - uid: 548 + - uid: 1322 components: - type: Transform - pos: -10.5,10.5 + pos: -11.5,15.5 parent: 2 - - uid: 549 + - uid: 1323 components: - type: Transform - pos: -10.5,9.5 + pos: -10.5,15.5 parent: 2 - - uid: 550 + - uid: 1324 components: - type: Transform - pos: -10.5,8.5 + pos: 4.5,14.5 parent: 2 - - uid: 551 + - uid: 1325 components: - type: Transform - pos: -10.5,7.5 + pos: 5.5,14.5 parent: 2 - - uid: 552 + - uid: 1326 components: - type: Transform - pos: -11.5,11.5 + pos: 6.5,14.5 parent: 2 - - uid: 553 + - uid: 1327 components: - type: Transform - pos: -12.5,11.5 + pos: 23.5,6.5 parent: 2 - - uid: 554 + - uid: 1328 components: - type: Transform - pos: -13.5,11.5 + pos: 24.5,6.5 parent: 2 - - uid: 555 + - uid: 1329 components: - type: Transform - pos: -14.5,11.5 + pos: -17.5,-2.5 parent: 2 - - uid: 556 + - uid: 1330 components: - type: Transform - pos: -15.5,11.5 + pos: -18.5,-2.5 parent: 2 - - uid: 557 + - uid: 1331 components: - type: Transform - pos: -14.5,10.5 + pos: -19.5,-2.5 parent: 2 - - uid: 558 + - uid: 1332 components: - type: Transform - pos: -12.5,12.5 + pos: -14.5,-2.5 parent: 2 - - uid: 559 + - uid: 1333 components: - type: Transform - pos: -12.5,13.5 + pos: -22.5,-0.5 parent: 2 - - uid: 560 + - uid: 1334 components: - type: Transform - pos: -13.5,13.5 + pos: -22.5,0.5 parent: 2 - - uid: 561 + - uid: 1335 components: - type: Transform - pos: -12.5,10.5 + pos: -22.5,1.5 parent: 2 - - uid: 562 + - uid: 1336 components: - type: Transform - pos: -12.5,9.5 + pos: -22.5,2.5 parent: 2 - - uid: 563 + - uid: 1337 components: - type: Transform - pos: -9.5,11.5 + pos: -23.5,2.5 parent: 2 - - uid: 564 + - uid: 1338 components: - type: Transform - pos: -8.5,11.5 + pos: -24.5,2.5 parent: 2 - - uid: 565 + - uid: 1339 components: - type: Transform - pos: -7.5,11.5 + pos: -25.5,2.5 parent: 2 - - uid: 566 + - uid: 1340 components: - type: Transform - pos: -6.5,11.5 + pos: -26.5,2.5 parent: 2 - - uid: 567 + - uid: 1341 components: - type: Transform - pos: -8.5,12.5 + pos: -27.5,2.5 parent: 2 - - uid: 568 + - uid: 1342 components: - type: Transform - pos: -4.5,9.5 + pos: -28.5,2.5 parent: 2 - - uid: 569 + - uid: 1343 components: - type: Transform - pos: -3.5,9.5 + pos: -28.5,3.5 parent: 2 - - uid: 570 + - uid: 1344 components: - type: Transform - pos: -2.5,9.5 + pos: -28.5,4.5 parent: 2 - - uid: 571 + - uid: 1345 components: - type: Transform - pos: -1.5,9.5 + pos: -28.5,5.5 parent: 2 - - uid: 572 + - uid: 1346 components: - type: Transform - pos: -2.5,11.5 + pos: -27.5,5.5 parent: 2 - - uid: 573 + - uid: 1347 components: - type: Transform - pos: -2.5,10.5 + pos: -13.5,-2.5 parent: 2 - - uid: 574 + - uid: 1348 components: - type: Transform - pos: -2.5,9.5 + pos: 17.5,-4.5 parent: 2 - - uid: 575 + - uid: 1349 components: - type: Transform - pos: -2.5,8.5 + pos: 20.5,-4.5 parent: 2 - - uid: 576 + - uid: 1350 components: - type: Transform - pos: -2.5,7.5 + pos: 21.5,-4.5 parent: 2 - - uid: 577 + - uid: 1351 components: - type: Transform - pos: -2.5,6.5 + pos: 21.5,-5.5 parent: 2 - - uid: 578 + - uid: 1352 components: - type: Transform - pos: -2.5,12.5 + pos: 21.5,-6.5 parent: 2 - - uid: 579 + - uid: 1353 components: - type: Transform - pos: -2.5,13.5 + pos: 21.5,-7.5 parent: 2 - - uid: 580 + - uid: 1354 components: - type: Transform - pos: 4.5,14.5 + pos: 19.5,-4.5 parent: 2 - - uid: 581 + - uid: 1355 components: - type: Transform - pos: 3.5,14.5 + pos: 19.5,-3.5 parent: 2 - - uid: 582 + - uid: 1356 components: - type: Transform - pos: 2.5,14.5 + pos: -19.5,-1.5 parent: 2 - - uid: 583 + - uid: 1357 components: - type: Transform - pos: 1.5,14.5 + pos: -20.5,-0.5 parent: 2 - - uid: 584 + - uid: 1358 components: - type: Transform - pos: 0.5,14.5 + pos: -21.5,-0.5 parent: 2 - - uid: 585 + - uid: 1359 components: - type: Transform - pos: 4.5,14.5 + pos: -2.5,-8.5 parent: 2 - - uid: 586 + - uid: 1360 components: - type: Transform - pos: 4.5,13.5 + pos: -10.5,-8.5 parent: 2 - - uid: 587 + - uid: 1361 components: - type: Transform - pos: 4.5,12.5 + pos: -4.5,-8.5 parent: 2 - - uid: 588 + - uid: 1362 components: - type: Transform - pos: 4.5,11.5 + pos: -10.5,19.5 parent: 2 - - uid: 589 + - uid: 1363 components: - type: Transform - pos: 4.5,10.5 + pos: -9.5,22.5 parent: 2 - - uid: 590 + - uid: 1364 components: - type: Transform - pos: 4.5,9.5 + pos: -1.5,-8.5 parent: 2 - - uid: 591 + - uid: 1365 components: - type: Transform - pos: 4.5,8.5 + pos: -1.5,-9.5 parent: 2 - - uid: 592 + - uid: 1366 components: - type: Transform - pos: 4.5,7.5 + pos: -8.5,-8.5 parent: 2 - - uid: 593 + - uid: 1367 components: - type: Transform - pos: 0.5,13.5 + pos: -9.5,-8.5 parent: 2 - - uid: 594 + - uid: 1368 components: - type: Transform - pos: 0.5,12.5 + pos: -5.5,-8.5 parent: 2 - - uid: 595 + - uid: 1369 components: - type: Transform - pos: 0.5,11.5 + pos: 18.5,-4.5 parent: 2 - - uid: 596 + - uid: 1370 components: - type: Transform - pos: 0.5,10.5 + pos: -20.5,-1.5 parent: 2 - - uid: 597 + - uid: 1371 components: - type: Transform - pos: 0.5,9.5 + pos: 11.5,42.5 parent: 2 - - uid: 598 + - uid: 1372 components: - type: Transform - pos: 0.5,8.5 + pos: 10.5,42.5 parent: 2 - - uid: 599 + - uid: 1373 components: - type: Transform - pos: 0.5,7.5 + pos: -11.5,4.5 parent: 2 - - uid: 600 + - uid: 1374 components: - type: Transform - pos: 1.5,7.5 + pos: -12.5,4.5 parent: 2 - - uid: 601 + - uid: 5660 components: - type: Transform - pos: 2.5,7.5 - parent: 2 - - uid: 602 + pos: -2.5,6.5 + parent: 5438 + - uid: 5661 components: - type: Transform - pos: 3.5,7.5 - parent: 2 - - uid: 603 + pos: -3.5,6.5 + parent: 5438 + - uid: 5662 components: - type: Transform - pos: 5.5,7.5 - parent: 2 - - uid: 604 + pos: -3.5,5.5 + parent: 5438 + - uid: 5663 components: - type: Transform - pos: 6.5,7.5 - parent: 2 - - uid: 605 + pos: -3.5,4.5 + parent: 5438 + - uid: 5664 components: - type: Transform - pos: 7.5,7.5 - parent: 2 - - uid: 606 + pos: -2.5,4.5 + parent: 5438 + - uid: 5665 components: - type: Transform - pos: 8.5,7.5 - parent: 2 - - uid: 607 + pos: 14.5,7.5 + parent: 5438 + - uid: 5666 components: - type: Transform - pos: 8.5,8.5 - parent: 2 - - uid: 608 + pos: 14.5,8.5 + parent: 5438 + - uid: 5667 components: - type: Transform - pos: 8.5,9.5 - parent: 2 - - uid: 609 + pos: 14.5,9.5 + parent: 5438 + - uid: 5668 components: - type: Transform - pos: 8.5,10.5 - parent: 2 - - uid: 610 + pos: 14.5,10.5 + parent: 5438 + - uid: 5669 components: - type: Transform - pos: 8.5,11.5 - parent: 2 - - uid: 611 + pos: 13.5,10.5 + parent: 5438 + - uid: 5670 components: - type: Transform - pos: 8.5,12.5 - parent: 2 - - uid: 612 + pos: 12.5,10.5 + parent: 5438 + - uid: 5671 components: - type: Transform - pos: 8.5,13.5 - parent: 2 - - uid: 613 + pos: 11.5,10.5 + parent: 5438 + - uid: 5672 components: - type: Transform - pos: 8.5,14.5 - parent: 2 - - uid: 614 + pos: 11.5,11.5 + parent: 5438 + - uid: 5673 components: - type: Transform - pos: 8.5,15.5 - parent: 2 - - uid: 615 + pos: 11.5,12.5 + parent: 5438 + - uid: 5674 components: - type: Transform - pos: 8.5,16.5 - parent: 2 - - uid: 616 + pos: 10.5,12.5 + parent: 5438 + - uid: 5675 components: - type: Transform - pos: 8.5,17.5 - parent: 2 - - uid: 617 + pos: 9.5,12.5 + parent: 5438 + - uid: 5676 components: - type: Transform - pos: 6.5,18.5 - parent: 2 - - uid: 618 + pos: 8.5,12.5 + parent: 5438 + - uid: 5677 components: - type: Transform - pos: 6.5,17.5 - parent: 2 - - uid: 619 + pos: 7.5,12.5 + parent: 5438 + - uid: 5678 components: - type: Transform - pos: 6.5,16.5 - parent: 2 - - uid: 620 + pos: 6.5,12.5 + parent: 5438 + - uid: 5679 components: - type: Transform - pos: 6.5,15.5 - parent: 2 - - uid: 621 + pos: 5.5,12.5 + parent: 5438 + - uid: 5680 components: - type: Transform - pos: 7.5,16.5 - parent: 2 - - uid: 622 + pos: 4.5,12.5 + parent: 5438 + - uid: 5681 components: - type: Transform - pos: 5.5,14.5 - parent: 2 - - uid: 623 + pos: 3.5,12.5 + parent: 5438 + - uid: 5682 components: - type: Transform - pos: 6.5,14.5 - parent: 2 - - uid: 624 + pos: 2.5,12.5 + parent: 5438 + - uid: 5683 components: - type: Transform - pos: 6.5,13.5 - parent: 2 - - uid: 625 + pos: 1.5,12.5 + parent: 5438 + - uid: 5684 components: - type: Transform - pos: 6.5,12.5 - parent: 2 - - uid: 626 + pos: 0.5,12.5 + parent: 5438 + - uid: 5685 components: - type: Transform - pos: 6.5,11.5 - parent: 2 - - uid: 627 + pos: -0.5,12.5 + parent: 5438 + - uid: 5686 components: - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 628 + pos: -0.5,11.5 + parent: 5438 + - uid: 5687 components: - type: Transform - pos: 7.5,11.5 - parent: 2 - - uid: 629 + pos: -0.5,10.5 + parent: 5438 + - uid: 5688 components: - type: Transform - pos: 9.5,16.5 - parent: 2 - - uid: 630 + pos: -0.5,9.5 + parent: 5438 + - uid: 5689 components: - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 631 + pos: -0.5,8.5 + parent: 5438 + - uid: 5690 components: - type: Transform - pos: 11.5,16.5 - parent: 2 - - uid: 632 + pos: -0.5,7.5 + parent: 5438 + - uid: 5691 components: - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 633 + pos: -1.5,7.5 + parent: 5438 + - uid: 5692 components: - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 634 + pos: -2.5,7.5 + parent: 5438 + - uid: 5693 components: - type: Transform - pos: 11.5,15.5 - parent: 2 - - uid: 635 + pos: -4.5,4.5 + parent: 5438 + - uid: 5694 components: - type: Transform - pos: 11.5,14.5 - parent: 2 - - uid: 636 + pos: -5.5,4.5 + parent: 5438 + - uid: 5695 components: - type: Transform - pos: 11.5,13.5 - parent: 2 - - uid: 637 + pos: -6.5,4.5 + parent: 5438 + - uid: 5696 components: - type: Transform - pos: 23.5,6.5 - parent: 2 - - uid: 638 + pos: -6.5,3.5 + parent: 5438 + - uid: 5697 components: - type: Transform - pos: 23.5,7.5 - parent: 2 - - uid: 639 + pos: -6.5,2.5 + parent: 5438 + - uid: 5698 components: - type: Transform - pos: 23.5,8.5 - parent: 2 - - uid: 640 + pos: -6.5,1.5 + parent: 5438 + - uid: 5699 components: - type: Transform - pos: 23.5,9.5 - parent: 2 - - uid: 641 + pos: -6.5,0.5 + parent: 5438 + - uid: 5700 components: - type: Transform - pos: 23.5,10.5 - parent: 2 - - uid: 642 + pos: -6.5,-0.5 + parent: 5438 + - uid: 5701 components: - type: Transform - pos: 23.5,11.5 - parent: 2 - - uid: 643 + pos: -6.5,-1.5 + parent: 5438 + - uid: 5702 components: - type: Transform - pos: 23.5,12.5 - parent: 2 - - uid: 644 + pos: -6.5,-2.5 + parent: 5438 + - uid: 5703 components: - type: Transform - pos: 24.5,12.5 - parent: 2 - - uid: 645 + pos: -6.5,-3.5 + parent: 5438 + - uid: 5704 components: - type: Transform - pos: 24.5,13.5 - parent: 2 - - uid: 646 + pos: -6.5,-4.5 + parent: 5438 + - uid: 5705 components: - type: Transform - pos: 24.5,14.5 - parent: 2 - - uid: 647 + pos: -5.5,-4.5 + parent: 5438 + - uid: 5706 components: - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 648 + pos: -5.5,-5.5 + parent: 5438 + - uid: 5707 components: - type: Transform - pos: 23.5,15.5 - parent: 2 - - uid: 649 + pos: -5.5,-6.5 + parent: 5438 + - uid: 5708 components: - type: Transform - pos: 22.5,15.5 - parent: 2 - - uid: 650 + pos: -5.5,-7.5 + parent: 5438 + - uid: 5709 components: - type: Transform - pos: 21.5,15.5 - parent: 2 - - uid: 651 + pos: -4.5,-7.5 + parent: 5438 + - uid: 5710 components: - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 652 + pos: -4.5,-8.5 + parent: 5438 + - uid: 5711 components: - type: Transform - pos: 20.5,16.5 - parent: 2 - - uid: 653 + pos: -4.5,-9.5 + parent: 5438 + - uid: 5712 components: - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 654 + pos: -3.5,-9.5 + parent: 5438 + - uid: 5713 components: - type: Transform - pos: 20.5,18.5 - parent: 2 - - uid: 655 + pos: -2.5,-9.5 + parent: 5438 + - uid: 5714 components: - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 656 + pos: -1.5,-9.5 + parent: 5438 + - uid: 5715 components: - type: Transform - pos: 21.5,18.5 - parent: 2 - - uid: 657 + pos: -0.5,-9.5 + parent: 5438 + - uid: 5716 components: - type: Transform - pos: 22.5,18.5 - parent: 2 - - uid: 658 + pos: 0.5,-9.5 + parent: 5438 + - uid: 5717 components: - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 659 + pos: 1.5,-9.5 + parent: 5438 + - uid: 5718 components: - type: Transform - pos: 25.5,9.5 - parent: 2 - - uid: 660 + pos: 2.5,-9.5 + parent: 5438 + - uid: 5719 components: - type: Transform - pos: 22.5,10.5 - parent: 2 - - uid: 661 + pos: 3.5,-9.5 + parent: 5438 + - uid: 5720 components: - type: Transform - pos: 21.5,10.5 - parent: 2 - - uid: 662 + pos: 4.5,-9.5 + parent: 5438 + - uid: 5721 components: - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 663 + pos: 5.5,-9.5 + parent: 5438 + - uid: 5722 components: - type: Transform - pos: 19.5,10.5 - parent: 2 - - uid: 664 + pos: 6.5,-9.5 + parent: 5438 + - uid: 5723 components: - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 665 + pos: 8.5,-9.5 + parent: 5438 + - uid: 5724 components: - type: Transform - pos: 17.5,10.5 - parent: 2 - - uid: 666 + pos: 9.5,-9.5 + parent: 5438 + - uid: 5725 components: - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 667 + pos: 10.5,-9.5 + parent: 5438 + - uid: 5726 components: - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 668 + pos: 10.5,-8.5 + parent: 5438 + - uid: 5727 components: - type: Transform - pos: 14.5,10.5 - parent: 2 - - uid: 669 + pos: 10.5,-7.5 + parent: 5438 + - uid: 5728 components: - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 670 + pos: 10.5,-6.5 + parent: 5438 + - uid: 5729 components: - type: Transform - pos: 12.5,10.5 - parent: 2 - - uid: 671 + pos: 10.5,-5.5 + parent: 5438 + - uid: 5730 components: - type: Transform - pos: 16.5,9.5 - parent: 2 - - uid: 672 + pos: 10.5,-4.5 + parent: 5438 + - uid: 5731 components: - type: Transform - pos: 16.5,8.5 - parent: 2 - - uid: 673 + pos: 10.5,-3.5 + parent: 5438 + - uid: 5732 components: - type: Transform - pos: 16.5,7.5 - parent: 2 - - uid: 674 + pos: 10.5,-2.5 + parent: 5438 + - uid: 5733 components: - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 675 + pos: 10.5,-1.5 + parent: 5438 + - uid: 5734 components: - type: Transform - pos: 13.5,8.5 - parent: 2 - - uid: 676 + pos: 10.5,-0.5 + parent: 5438 + - uid: 5735 components: - type: Transform - pos: 13.5,7.5 - parent: 2 - - uid: 677 + pos: 10.5,0.5 + parent: 5438 + - uid: 5736 components: - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 678 + pos: 10.5,1.5 + parent: 5438 + - uid: 5737 components: - type: Transform - pos: 16.5,12.5 - parent: 2 - - uid: 679 + pos: 10.5,2.5 + parent: 5438 + - uid: 5738 components: - type: Transform - pos: 16.5,13.5 - parent: 2 - - uid: 680 + pos: 10.5,3.5 + parent: 5438 + - uid: 5739 components: - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 681 + pos: 10.5,4.5 + parent: 5438 + - uid: 5740 components: - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 682 + pos: 10.5,5.5 + parent: 5438 + - uid: 5741 components: - type: Transform - pos: 20.5,13.5 - parent: 2 - - uid: 683 + pos: 10.5,6.5 + parent: 5438 + - uid: 5742 components: - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 684 + pos: 10.5,7.5 + parent: 5438 + - uid: 5743 components: - type: Transform - pos: 20.5,8.5 - parent: 2 - - uid: 685 + pos: 10.5,8.5 + parent: 5438 + - uid: 5744 components: - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 686 + pos: 10.5,9.5 + parent: 5438 + - uid: 5745 components: - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 687 + pos: 9.5,9.5 + parent: 5438 + - uid: 5746 components: - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 688 + pos: 8.5,9.5 + parent: 5438 + - uid: 5747 components: - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 689 + pos: 7.5,9.5 + parent: 5438 + - uid: 5748 components: - type: Transform - pos: 11.5,6.5 - parent: 2 - - uid: 690 + pos: 6.5,9.5 + parent: 5438 + - uid: 5749 components: - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 691 + pos: 5.5,9.5 + parent: 5438 + - uid: 5750 components: - type: Transform - pos: -0.5,-16.5 - parent: 2 - - uid: 692 + pos: 4.5,9.5 + parent: 5438 + - uid: 5751 components: - type: Transform - pos: -0.5,-15.5 - parent: 2 - - uid: 693 + pos: 4.5,8.5 + parent: 5438 + - uid: 5752 components: - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 694 + pos: 4.5,7.5 + parent: 5438 + - uid: 5753 components: - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 695 + pos: 4.5,6.5 + parent: 5438 + - uid: 5754 components: - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 696 + pos: 4.5,5.5 + parent: 5438 + - uid: 5755 components: - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 697 + pos: 4.5,4.5 + parent: 5438 + - uid: 5756 components: - type: Transform - pos: -0.5,-21.5 - parent: 2 - - uid: 698 + pos: 5.5,5.5 + parent: 5438 + - uid: 5757 components: - type: Transform - pos: 0.5,-19.5 - parent: 2 - - uid: 699 + pos: 5.5,4.5 + parent: 5438 + - uid: 5758 components: - type: Transform - pos: 0.5,-10.5 - parent: 2 - - uid: 700 + pos: 3.5,5.5 + parent: 5438 + - uid: 5759 components: - type: Transform - pos: -27.5,5.5 - parent: 2 - - uid: 701 + pos: 3.5,4.5 + parent: 5438 + - uid: 5760 components: - type: Transform - pos: -28.5,5.5 - parent: 2 - - uid: 702 + pos: 7.5,-9.5 + parent: 5438 + - uid: 6775 components: - type: Transform - pos: -28.5,6.5 - parent: 2 - - uid: 703 + pos: -0.5,-1.5 + parent: 6685 + - uid: 6776 components: - type: Transform - pos: -28.5,4.5 - parent: 2 - - uid: 704 + pos: 0.5,-1.5 + parent: 6685 + - uid: 6777 components: - type: Transform - pos: -28.5,3.5 - parent: 2 - - uid: 705 + pos: 0.5,-0.5 + parent: 6685 + - uid: 6778 components: - type: Transform - pos: -28.5,2.5 - parent: 2 - - uid: 706 + pos: 1.5,-0.5 + parent: 6685 + - uid: 6779 components: - type: Transform - pos: -28.5,1.5 - parent: 2 - - uid: 707 + pos: -0.5,8.5 + parent: 6685 + - uid: 6780 components: - type: Transform - pos: -28.5,0.5 - parent: 2 - - uid: 708 + pos: 0.5,8.5 + parent: 6685 + - uid: 6781 components: - type: Transform - pos: -28.5,-0.5 - parent: 2 - - uid: 709 + pos: 0.5,7.5 + parent: 6685 + - uid: 6782 components: - type: Transform - pos: -28.5,-1.5 - parent: 2 - - uid: 710 + pos: 0.5,6.5 + parent: 6685 + - uid: 6783 components: - type: Transform - pos: -28.5,-2.5 - parent: 2 - - uid: 711 + pos: 0.5,5.5 + parent: 6685 + - uid: 6784 components: - type: Transform - pos: -27.5,-2.5 - parent: 2 - - uid: 712 + pos: 0.5,4.5 + parent: 6685 + - uid: 6785 components: - type: Transform - pos: -26.5,-2.5 - parent: 2 - - uid: 713 + pos: 0.5,3.5 + parent: 6685 + - uid: 6786 components: - type: Transform - pos: -25.5,-2.5 - parent: 2 - - uid: 714 + pos: 0.5,2.5 + parent: 6685 + - uid: 6787 components: - type: Transform - pos: -26.5,-1.5 - parent: 2 - - uid: 715 + pos: 0.5,1.5 + parent: 6685 + - uid: 6788 components: - type: Transform - pos: -26.5,-0.5 - parent: 2 - - uid: 716 + pos: 0.5,0.5 + parent: 6685 + - uid: 7186 components: - type: Transform - pos: -26.5,4.5 - parent: 2 - - uid: 717 + pos: 4.5,29.5 + parent: 7020 + - uid: 7187 components: - type: Transform - pos: -18.5,2.5 - parent: 2 - - uid: 718 + pos: 4.5,28.5 + parent: 7020 + - uid: 7188 components: - type: Transform - pos: -19.5,2.5 - parent: 2 - - uid: 719 + pos: 4.5,27.5 + parent: 7020 + - uid: 7189 components: - type: Transform - pos: -20.5,2.5 - parent: 2 - - uid: 720 + pos: 4.5,26.5 + parent: 7020 + - uid: 7190 components: - type: Transform - pos: -28.5,7.5 - parent: 2 - - uid: 721 + pos: 4.5,25.5 + parent: 7020 + - uid: 7191 components: - type: Transform - pos: -28.5,8.5 - parent: 2 - - uid: 722 + pos: 4.5,24.5 + parent: 7020 + - uid: 7192 components: - type: Transform - pos: -28.5,9.5 - parent: 2 - - uid: 723 + pos: 4.5,23.5 + parent: 7020 + - uid: 7193 components: - type: Transform - pos: -27.5,10.5 - parent: 2 - - uid: 724 + pos: 5.5,23.5 + parent: 7020 + - uid: 7194 components: - type: Transform - pos: -23.5,5.5 - parent: 2 - - uid: 725 + pos: 6.5,23.5 + parent: 7020 + - uid: 7195 components: - type: Transform - pos: -23.5,6.5 - parent: 2 - - uid: 726 + pos: 6.5,22.5 + parent: 7020 + - uid: 7196 components: - type: Transform - pos: -23.5,7.5 - parent: 2 - - uid: 727 + pos: 7.5,22.5 + parent: 7020 + - uid: 7197 components: - type: Transform - pos: -23.5,8.5 - parent: 2 - - uid: 728 + pos: 3.5,23.5 + parent: 7020 + - uid: 7198 components: - type: Transform - pos: -24.5,5.5 - parent: 2 - - uid: 729 + pos: 2.5,23.5 + parent: 7020 + - uid: 7199 components: - type: Transform - pos: -25.5,5.5 - parent: 2 - - uid: 730 + pos: 1.5,23.5 + parent: 7020 + - uid: 7200 components: - type: Transform - pos: -26.5,5.5 - parent: 2 - - uid: 731 + pos: 1.5,22.5 + parent: 7020 + - uid: 7201 components: - type: Transform - pos: -22.5,5.5 - parent: 2 - - uid: 732 + pos: 1.5,21.5 + parent: 7020 + - uid: 7202 components: - type: Transform - pos: 26.5,-13.5 - parent: 2 - - uid: 733 + pos: 0.5,23.5 + parent: 7020 + - uid: 7203 components: - type: Transform - pos: -15.5,18.5 - parent: 2 - - uid: 734 + pos: -1.5,23.5 + parent: 7020 + - uid: 7204 components: - type: Transform - pos: -14.5,16.5 - parent: 2 - - uid: 735 + pos: -2.5,23.5 + parent: 7020 + - uid: 7205 components: - type: Transform - pos: -15.5,16.5 - parent: 2 - - uid: 736 + pos: -3.5,23.5 + parent: 7020 + - uid: 7206 components: - type: Transform - pos: -15.5,17.5 - parent: 2 - - uid: 737 + pos: -4.5,23.5 + parent: 7020 + - uid: 7207 components: - type: Transform - pos: -18.5,-8.5 - parent: 2 - - uid: 738 + pos: -5.5,23.5 + parent: 7020 + - uid: 7208 components: - type: Transform - pos: -5.5,-0.5 - parent: 2 - - uid: 739 + pos: -6.5,23.5 + parent: 7020 + - uid: 7209 components: - type: Transform - pos: 14.5,1.5 - parent: 2 - - uid: 740 + pos: -0.5,23.5 + parent: 7020 + - uid: 7210 components: - type: Transform - pos: 13.5,1.5 - parent: 2 - - uid: 741 + pos: -7.5,23.5 + parent: 7020 + - uid: 7211 components: - type: Transform - pos: -1.5,-6.5 - parent: 2 - - uid: 742 + pos: -8.5,23.5 + parent: 7020 + - uid: 7212 components: - type: Transform - pos: -6.5,4.5 - parent: 2 - - uid: 743 + pos: -8.5,24.5 + parent: 7020 + - uid: 7213 components: - type: Transform - pos: -15.5,4.5 - parent: 2 - - uid: 744 + pos: -8.5,25.5 + parent: 7020 + - uid: 7214 components: - type: Transform - pos: -15.5,5.5 - parent: 2 - - uid: 745 + pos: -8.5,22.5 + parent: 7020 + - uid: 8290 components: - type: Transform - pos: -15.5,6.5 - parent: 2 - - uid: 746 + pos: -6.5,0.5 + parent: 8267 + - uid: 8291 components: - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 747 + pos: -6.5,-0.5 + parent: 8267 + - uid: 8292 components: - type: Transform - pos: -15.5,7.5 - parent: 2 - - uid: 748 + pos: -5.5,-0.5 + parent: 8267 + - uid: 8293 components: - type: Transform - pos: -18.5,5.5 - parent: 2 - - uid: 749 + pos: -4.5,-0.5 + parent: 8267 + - uid: 8294 components: - type: Transform - pos: -18.5,0.5 - parent: 2 - - uid: 750 + pos: -3.5,-0.5 + parent: 8267 + - uid: 8295 components: - type: Transform - pos: -14.5,1.5 - parent: 2 - - uid: 751 + pos: -2.5,-0.5 + parent: 8267 + - uid: 8296 components: - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 752 + pos: -1.5,-0.5 + parent: 8267 + - uid: 8297 components: - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 753 + pos: -0.5,-0.5 + parent: 8267 + - uid: 8298 components: - type: Transform - pos: 8.5,1.5 - parent: 2 - - uid: 754 + pos: 0.5,-0.5 + parent: 8267 +- proto: CableTerminal + entities: + - uid: 1375 components: - type: Transform - pos: 8.5,2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-0.5 parent: 2 - - uid: 755 + - uid: 1376 components: - type: Transform - pos: 8.5,0.5 + rot: 1.5707963267948966 rad + pos: 29.5,0.5 parent: 2 - - uid: 756 + - uid: 6789 components: - type: Transform - pos: 9.5,2.5 - parent: 2 - - uid: 757 + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 6685 + - uid: 7215 components: - type: Transform - pos: 9.5,0.5 - parent: 2 - - uid: 758 + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 7020 +- proto: CandleBlackInfinite + entities: + - uid: 1377 components: - type: Transform - pos: 7.5,6.5 + rot: -1.5707963267948966 rad + pos: -9.538256,-0.661039 parent: 2 - - uid: 759 +- proto: CandleBlueSmallInfinite + entities: + - uid: 7216 components: - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 760 + pos: 3.3646545,21.32026 + parent: 7020 +- proto: CandleRedInfinite + entities: + - uid: 1378 components: - type: Transform - pos: 8.5,5.5 + pos: -24.336254,-7.320579 parent: 2 - - uid: 761 + - uid: 1379 components: - type: Transform - pos: 4.5,6.5 + pos: -54.773777,20.700533 parent: 2 - - uid: 762 + - uid: 7217 components: - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 763 + pos: 3.260498,21.424427 + parent: 7020 +- proto: CannabisSeeds + entities: + - uid: 1380 components: - type: Transform - pos: 4.5,4.5 + pos: -23.595274,-2.5269341 parent: 2 - - uid: 764 + - uid: 1381 components: - type: Transform - pos: 7.5,4.5 + pos: -27.398703,-9.212158 parent: 2 - - uid: 765 +- proto: CaptainIDCard + entities: + - uid: 1382 components: - type: Transform - pos: 7.5,3.5 + pos: -2.4814332,1.8588014 parent: 2 - - uid: 766 +- proto: Carpet + entities: + - uid: 1383 components: - type: Transform - pos: -2.5,5.5 + pos: 17.5,7.5 parent: 2 - - uid: 767 + - uid: 1384 components: - type: Transform - pos: -1.5,5.5 + pos: 16.5,7.5 parent: 2 - - uid: 768 + - uid: 1385 components: - type: Transform - pos: -0.5,5.5 + rot: 1.5707963267948966 rad + pos: 16.5,12.5 parent: 2 - - uid: 769 + - uid: 1386 components: - type: Transform - pos: 0.5,5.5 + rot: 1.5707963267948966 rad + pos: 15.5,12.5 parent: 2 - - uid: 770 + - uid: 1387 components: - type: Transform - pos: 1.5,5.5 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 parent: 2 - - uid: 771 + - uid: 1388 components: - type: Transform - pos: -6.5,3.5 + rot: 1.5707963267948966 rad + pos: 19.5,9.5 parent: 2 - - uid: 772 + - uid: 1389 components: - type: Transform - pos: 10.5,-0.5 + pos: 17.5,12.5 parent: 2 - - uid: 773 + - uid: 1390 components: - type: Transform - pos: 11.5,-1.5 + pos: 13.5,3.5 parent: 2 - - uid: 774 + - uid: 1391 components: - type: Transform - pos: 11.5,-2.5 + pos: 13.5,4.5 parent: 2 - - uid: 775 + - uid: 1392 components: - type: Transform - pos: 12.5,-2.5 + rot: 3.141592653589793 rad + pos: -13.5,14.5 parent: 2 - - uid: 776 + - uid: 1393 components: - type: Transform - pos: 13.5,-2.5 + rot: 3.141592653589793 rad + pos: -12.5,14.5 parent: 2 - - uid: 777 + - uid: 1394 components: - type: Transform - pos: 8.5,-4.5 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 parent: 2 - - uid: 778 + - uid: 1395 components: - type: Transform - pos: 8.5,-5.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 2 - - uid: 779 + - uid: 1396 components: - type: Transform - pos: 9.5,-5.5 + rot: 1.5707963267948966 rad + pos: 8.5,1.5 parent: 2 - - uid: 780 + - uid: 1397 components: - type: Transform - pos: 9.5,-6.5 + rot: 1.5707963267948966 rad + pos: 8.5,2.5 parent: 2 - - uid: 781 + - uid: 1398 components: - type: Transform - pos: 4.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,2.5 parent: 2 - - uid: 782 + - uid: 1399 components: - type: Transform - pos: 4.5,-5.5 + rot: 1.5707963267948966 rad + pos: 9.5,1.5 parent: 2 - - uid: 783 + - uid: 1400 components: - type: Transform - pos: -5.5,3.5 + pos: -26.5,-7.5 parent: 2 - - uid: 784 + - uid: 1401 components: - type: Transform - pos: -5.5,1.5 + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 parent: 2 - - uid: 785 + - uid: 1402 components: - type: Transform - pos: 11.5,5.5 + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 parent: 2 - - uid: 786 + - uid: 1403 components: - type: Transform - pos: 10.5,5.5 + pos: -10.5,26.5 parent: 2 - - uid: 787 + - uid: 1404 components: - type: Transform - pos: 13.5,-5.5 + pos: -46.5,20.5 parent: 2 - - uid: 788 + - uid: 1405 components: - type: Transform - pos: 12.5,-5.5 + pos: -46.5,21.5 parent: 2 - - uid: 789 + - uid: 1406 components: - type: Transform - pos: 1.5,-17.5 + rot: 1.5707963267948966 rad + pos: 28.5,-6.5 parent: 2 - - uid: 790 + - uid: 1407 components: - type: Transform - pos: 0.5,-17.5 + rot: 3.141592653589793 rad + pos: -21.5,25.5 parent: 2 - - uid: 791 + - uid: 1408 components: - type: Transform - pos: -13.5,-8.5 + rot: 3.141592653589793 rad + pos: -20.5,25.5 parent: 2 - - uid: 792 + - uid: 1409 components: - type: Transform - pos: -13.5,-9.5 + rot: 3.141592653589793 rad + pos: -19.5,25.5 parent: 2 - - uid: 793 + - uid: 1410 components: - type: Transform - pos: 2.5,-17.5 + rot: 3.141592653589793 rad + pos: -21.5,26.5 parent: 2 - - uid: 794 + - uid: 1411 components: - type: Transform - pos: 3.5,-17.5 + rot: 3.141592653589793 rad + pos: -20.5,24.5 parent: 2 - - uid: 795 + - uid: 1412 components: - type: Transform - pos: 4.5,-17.5 + pos: -10.5,27.5 parent: 2 - - uid: 796 + - uid: 5761 components: - type: Transform - pos: 5.5,-17.5 - parent: 2 - - uid: 797 + pos: 1.5,-16.5 + parent: 5438 + - uid: 5762 components: - type: Transform - pos: 6.5,-17.5 - parent: 2 - - uid: 798 + pos: 1.5,-17.5 + parent: 5438 + - uid: 7218 components: - type: Transform - pos: 7.5,-17.5 - parent: 2 - - uid: 799 + rot: -1.5707963267948966 rad + pos: -17.5,28.5 + parent: 7020 + - uid: 7219 components: - type: Transform - pos: 4.5,-16.5 - parent: 2 - - uid: 800 + pos: 3.5,21.5 + parent: 7020 +- proto: CarpetBlack + entities: + - uid: 1413 components: - type: Transform - pos: 24.5,2.5 + rot: 3.141592653589793 rad + pos: -15.5,9.5 parent: 2 - - uid: 801 + - uid: 1414 components: - type: Transform - pos: 25.5,2.5 + rot: 3.141592653589793 rad + pos: -14.5,9.5 parent: 2 - - uid: 802 + - uid: 1415 components: - type: Transform - pos: 25.5,1.5 + rot: 3.141592653589793 rad + pos: -15.5,10.5 parent: 2 - - uid: 803 + - uid: 1416 components: - type: Transform - pos: 25.5,0.5 + pos: -15.5,7.5 parent: 2 - - uid: 804 + - uid: 1417 components: - type: Transform - pos: 22.5,-3.5 + pos: -14.5,7.5 parent: 2 - - uid: 805 + - uid: 1418 components: - type: Transform - pos: 22.5,-2.5 + pos: 5.5,41.5 parent: 2 - - uid: 806 + - uid: 1419 components: - type: Transform - pos: 22.5,-1.5 + pos: 5.5,40.5 parent: 2 - - uid: 807 + - uid: 1420 components: - type: Transform - pos: 11.5,-14.5 + pos: 6.5,41.5 parent: 2 - - uid: 808 + - uid: 1421 components: - type: Transform - pos: 11.5,-15.5 + pos: 6.5,40.5 parent: 2 - - uid: 809 + - uid: 1422 components: - type: Transform - pos: 11.5,-16.5 + pos: 6.5,42.5 parent: 2 - - uid: 810 + - uid: 1423 components: - type: Transform - pos: 11.5,-17.5 + pos: 5.5,39.5 parent: 2 - - uid: 811 + - uid: 1424 components: - type: Transform - pos: 10.5,-17.5 + rot: -1.5707963267948966 rad + pos: 9.5,41.5 parent: 2 - - uid: 812 + - uid: 1425 components: - type: Transform - pos: 9.5,-17.5 + rot: -1.5707963267948966 rad + pos: 10.5,41.5 parent: 2 - - uid: 813 + - uid: 1426 components: - type: Transform - pos: 12.5,-17.5 + rot: -1.5707963267948966 rad + pos: 9.5,40.5 parent: 2 - - uid: 814 + - uid: 1427 components: - type: Transform - pos: 17.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,40.5 parent: 2 - - uid: 815 + - uid: 1428 components: - type: Transform - pos: 21.5,-7.5 + rot: -1.5707963267948966 rad + pos: 8.5,39.5 parent: 2 - - uid: 816 + - uid: 1429 components: - type: Transform - pos: 20.5,-6.5 + rot: -1.5707963267948966 rad + pos: 9.5,39.5 parent: 2 - - uid: 817 + - uid: 5763 components: - type: Transform - pos: -13.5,-10.5 - parent: 2 - - uid: 818 + pos: 21.5,0.5 + parent: 5438 + - uid: 5764 components: - type: Transform - pos: -12.5,-21.5 - parent: 2 - - uid: 819 + pos: 22.5,0.5 + parent: 5438 + - uid: 6790 components: - type: Transform - pos: -13.5,-21.5 - parent: 2 - - uid: 820 + pos: 0.5,3.5 + parent: 6685 + - uid: 6791 components: - type: Transform - pos: -13.5,-20.5 - parent: 2 - - uid: 821 + pos: -0.5,3.5 + parent: 6685 + - uid: 6792 components: - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 822 + pos: -1.5,0.5 + parent: 6685 + - uid: 6793 components: - type: Transform - pos: -13.5,-14.5 - parent: 2 - - uid: 823 + pos: 1.5,2.5 + parent: 6685 + - uid: 6794 components: - type: Transform - pos: -13.5,-18.5 - parent: 2 - - uid: 824 + pos: 1.5,1.5 + parent: 6685 + - uid: 6795 components: - type: Transform - pos: -13.5,-19.5 - parent: 2 - - uid: 825 + pos: 1.5,0.5 + parent: 6685 + - uid: 6796 components: - type: Transform - pos: -13.5,-17.5 - parent: 2 - - uid: 826 + pos: 2.5,0.5 + parent: 6685 + - uid: 6797 components: - type: Transform - pos: -13.5,-15.5 - parent: 2 - - uid: 827 + pos: -0.5,1.5 + parent: 6685 + - uid: 6798 components: - type: Transform - pos: -12.5,-18.5 - parent: 2 - - uid: 828 + pos: 0.5,1.5 + parent: 6685 + - uid: 6799 components: - type: Transform - pos: 18.5,-6.5 - parent: 2 - - uid: 829 + pos: 0.5,2.5 + parent: 6685 + - uid: 6800 components: - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 830 + pos: -0.5,0.5 + parent: 6685 + - uid: 6801 components: - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 831 + pos: 2.5,2.5 + parent: 6685 +- proto: CarpetBlue + entities: + - uid: 1430 components: - type: Transform - pos: -13.5,-16.5 + rot: -1.5707963267948966 rad + pos: 1.5,8.5 parent: 2 - - uid: 832 + - uid: 1431 components: - type: Transform - pos: -13.5,-11.5 + rot: -1.5707963267948966 rad + pos: 2.5,8.5 parent: 2 - - uid: 833 + - uid: 1432 components: - type: Transform - pos: -13.5,-12.5 + rot: -1.5707963267948966 rad + pos: 3.5,8.5 parent: 2 - - uid: 834 + - uid: 1433 components: - type: Transform - pos: 33.5,2.5 + pos: 3.5,-4.5 parent: 2 - - uid: 835 + - uid: 1434 components: - type: Transform - pos: 26.5,2.5 + pos: 5.5,-4.5 parent: 2 - - uid: 836 + - uid: 1435 components: - type: Transform - pos: 29.5,2.5 + pos: 4.5,-4.5 parent: 2 - - uid: 837 + - uid: 1436 components: - type: Transform - pos: 33.5,1.5 + pos: 5.5,-3.5 parent: 2 - - uid: 838 + - uid: 1437 components: - type: Transform - pos: 32.5,2.5 + pos: 4.5,-3.5 parent: 2 - - uid: 839 + - uid: 1438 components: - type: Transform - pos: 33.5,3.5 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 2 - - uid: 840 + - uid: 6802 components: - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 841 + pos: -0.5,6.5 + parent: 6685 + - uid: 6803 components: - type: Transform - pos: 31.5,2.5 - parent: 2 - - uid: 842 + pos: 0.5,6.5 + parent: 6685 + - uid: 6804 components: - type: Transform - pos: 34.5,2.5 - parent: 2 - - uid: 843 + pos: 0.5,7.5 + parent: 6685 + - uid: 6805 components: - type: Transform - pos: 27.5,2.5 - parent: 2 - - uid: 844 + pos: 1.5,7.5 + parent: 6685 + - uid: 6806 components: - type: Transform - pos: 30.5,2.5 - parent: 2 - - uid: 845 + pos: 2.5,6.5 + parent: 6685 + - uid: 6807 components: - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 846 + pos: 2.5,7.5 + parent: 6685 + - uid: 6808 components: - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 847 + pos: 0.5,5.5 + parent: 6685 + - uid: 6809 components: - type: Transform - pos: -13.5,-22.5 - parent: 2 - - uid: 848 + pos: -1.5,7.5 + parent: 6685 + - uid: 6810 components: - type: Transform - pos: -0.5,-22.5 - parent: 2 - - uid: 849 + pos: -1.5,6.5 + parent: 6685 +- proto: CarpetCyan + entities: + - uid: 1439 components: - type: Transform - pos: -13.5,-23.5 + pos: -8.5,26.5 parent: 2 - - uid: 850 + - uid: 1440 components: - type: Transform - pos: 0.5,-21.5 + pos: -8.5,25.5 parent: 2 - - uid: 851 + - uid: 1441 components: - type: Transform - pos: -0.5,-23.5 + rot: 3.141592653589793 rad + pos: -10.5,-1.5 parent: 2 - - uid: 852 + - uid: 1442 components: - type: Transform - pos: -20.5,8.5 + rot: 3.141592653589793 rad + pos: -9.5,-1.5 parent: 2 - - uid: 853 + - uid: 1443 components: - type: Transform - pos: -20.5,12.5 + rot: 3.141592653589793 rad + pos: -9.5,-0.5 parent: 2 - - uid: 854 + - uid: 1444 components: - type: Transform - pos: -20.5,9.5 + rot: 3.141592653589793 rad + pos: -8.5,-0.5 parent: 2 - - uid: 855 + - uid: 1445 components: - type: Transform - pos: -20.5,6.5 + rot: 3.141592653589793 rad + pos: -11.5,-1.5 parent: 2 - - uid: 856 + - uid: 1446 components: - type: Transform - pos: -20.5,5.5 + rot: 3.141592653589793 rad + pos: -10.5,-0.5 parent: 2 - - uid: 857 +- proto: CarpetGreen + entities: + - uid: 1447 components: - type: Transform - pos: -20.5,10.5 + rot: 3.141592653589793 rad + pos: -23.5,-1.5 parent: 2 - - uid: 858 + - uid: 1448 components: - type: Transform - pos: -19.5,10.5 + rot: -1.5707963267948966 rad + pos: 15.5,16.5 parent: 2 - - uid: 859 + - uid: 1449 components: - type: Transform - pos: -17.5,11.5 + rot: -1.5707963267948966 rad + pos: 16.5,15.5 parent: 2 - - uid: 860 + - uid: 1450 components: - type: Transform - pos: -17.5,10.5 + rot: -1.5707963267948966 rad + pos: 18.5,16.5 parent: 2 - - uid: 861 + - uid: 1451 components: - type: Transform - pos: -20.5,7.5 + rot: -1.5707963267948966 rad + pos: 18.5,15.5 parent: 2 - - uid: 862 + - uid: 1452 components: - type: Transform - pos: -17.5,13.5 + rot: -1.5707963267948966 rad + pos: 15.5,15.5 parent: 2 - - uid: 863 + - uid: 1453 components: - type: Transform - pos: -18.5,10.5 + rot: -1.5707963267948966 rad + pos: 17.5,17.5 parent: 2 - - uid: 864 + - uid: 1454 components: - type: Transform - pos: -17.5,12.5 + rot: -1.5707963267948966 rad + pos: 17.5,16.5 parent: 2 - - uid: 865 + - uid: 1455 components: - type: Transform - pos: -17.5,8.5 + rot: -1.5707963267948966 rad + pos: 16.5,16.5 parent: 2 - - uid: 866 + - uid: 1456 components: - type: Transform - pos: -17.5,9.5 + rot: -1.5707963267948966 rad + pos: 17.5,15.5 parent: 2 - - uid: 867 + - uid: 1457 components: - type: Transform - pos: -20.5,11.5 + rot: -1.5707963267948966 rad + pos: 16.5,17.5 parent: 2 - - uid: 868 + - uid: 1458 components: - type: Transform - pos: -26.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,17.5 parent: 2 - - uid: 869 + - uid: 1459 components: - type: Transform - pos: -26.5,-4.5 + rot: -1.5707963267948966 rad + pos: 15.5,17.5 parent: 2 - - uid: 870 + - uid: 1460 components: - type: Transform - pos: -26.5,-5.5 + pos: -22.5,15.5 parent: 2 - - uid: 871 + - uid: 1461 components: - type: Transform - pos: -28.5,-5.5 + pos: -22.5,14.5 parent: 2 - - uid: 872 + - uid: 1462 components: - type: Transform - pos: -19.5,8.5 + pos: -21.5,15.5 parent: 2 - - uid: 873 + - uid: 1463 components: - type: Transform - pos: -26.5,-6.5 + pos: -21.5,14.5 parent: 2 - - uid: 874 + - uid: 1464 components: - type: Transform - pos: -27.5,-5.5 + pos: -12.5,26.5 parent: 2 - - uid: 875 + - uid: 1465 components: - type: Transform - pos: 26.5,0.5 + pos: -13.5,26.5 parent: 2 - - uid: 876 + - uid: 1466 components: - type: Transform - pos: 27.5,0.5 + pos: -42.5,16.5 parent: 2 - - uid: 877 + - uid: 1467 components: - type: Transform - pos: 28.5,0.5 + pos: -43.5,16.5 parent: 2 - - uid: 878 + - uid: 5765 components: - type: Transform - pos: 28.5,-0.5 - parent: 2 - - uid: 879 + pos: -0.5,15.5 + parent: 5438 + - uid: 5766 components: - type: Transform - pos: 28.5,-1.5 - parent: 2 - - uid: 880 + pos: -0.5,14.5 + parent: 5438 + - uid: 5767 components: - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 881 + pos: 0.5,15.5 + parent: 5438 + - uid: 5768 components: - type: Transform - pos: 28.5,-3.5 - parent: 2 - - uid: 882 + pos: 0.5,14.5 + parent: 5438 + - uid: 5769 components: - type: Transform - pos: 28.5,-4.5 - parent: 2 - - uid: 883 + pos: 1.5,14.5 + parent: 5438 + - uid: 5770 components: - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 884 + pos: 1.5,15.5 + parent: 5438 + - uid: 6811 components: - type: Transform - pos: 30.5,-3.5 - parent: 2 - - uid: 885 + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 6685 + - uid: 6812 components: - type: Transform - pos: -19.5,23.5 - parent: 2 - - uid: 886 + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 6685 +- proto: CarpetOrange + entities: + - uid: 1468 components: - type: Transform - pos: -20.5,23.5 + pos: 19.5,5.5 parent: 2 - - uid: 887 + - uid: 1469 components: - type: Transform - pos: -21.5,23.5 + pos: 19.5,6.5 parent: 2 - - uid: 888 + - uid: 1470 components: - type: Transform - pos: -26.5,10.5 + pos: 20.5,6.5 parent: 2 - - uid: 889 + - uid: 1471 components: - type: Transform - pos: -25.5,10.5 + rot: 3.141592653589793 rad + pos: -18.5,22.5 parent: 2 - - uid: 890 + - uid: 1472 components: - type: Transform - pos: -28.5,10.5 + rot: 3.141592653589793 rad + pos: -17.5,22.5 parent: 2 - - uid: 891 + - uid: 1473 components: - type: Transform + rot: 3.141592653589793 rad pos: -18.5,23.5 parent: 2 - - uid: 892 + - uid: 1474 components: - type: Transform - pos: 13.5,-16.5 + rot: 3.141592653589793 rad + pos: -19.5,23.5 parent: 2 - - uid: 893 +- proto: CarpetPink + entities: + - uid: 1475 components: - type: Transform - pos: -4.5,17.5 + pos: 18.5,-2.5 parent: 2 - - uid: 894 + - uid: 1476 components: - type: Transform - pos: 13.5,-15.5 + pos: 18.5,-1.5 parent: 2 - - uid: 895 + - uid: 1477 components: - type: Transform - pos: -2.5,14.5 + pos: 19.5,-1.5 parent: 2 - - uid: 896 + - uid: 6813 components: - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 897 + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 6685 + - uid: 6814 components: - type: Transform - pos: -17.5,23.5 - parent: 2 - - uid: 898 + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 6685 +- proto: CarpetPurple + entities: + - uid: 1478 components: - type: Transform - pos: -16.5,23.5 + pos: -27.5,-6.5 parent: 2 - - uid: 899 + - uid: 1479 components: - type: Transform - pos: -20.5,24.5 + pos: -28.5,-5.5 parent: 2 - - uid: 900 + - uid: 1480 components: - type: Transform - pos: -20.5,25.5 + pos: -28.5,-6.5 parent: 2 - - uid: 901 + - uid: 1481 components: - type: Transform - pos: 34.5,11.5 + pos: -27.5,-5.5 parent: 2 - - uid: 902 + - uid: 1482 components: - type: Transform - pos: -19.5,22.5 + pos: -9.5,0.5 parent: 2 - - uid: 903 + - uid: 1483 components: - type: Transform - pos: 26.5,21.5 + pos: -10.5,0.5 parent: 2 - - uid: 904 + - uid: 1484 components: - type: Transform - pos: 31.5,21.5 + pos: -9.5,1.5 parent: 2 - - uid: 905 + - uid: 1485 components: - type: Transform - pos: -12.5,16.5 + pos: -8.5,1.5 parent: 2 - - uid: 906 + - uid: 7220 components: - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 907 + pos: -1.5,30.5 + parent: 7020 + - uid: 7221 components: - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 908 + pos: -2.5,30.5 + parent: 7020 + - uid: 7222 components: - type: Transform - pos: 24.5,21.5 - parent: 2 - - uid: 909 + pos: -3.5,30.5 + parent: 7020 +- proto: CarpetSBlue + entities: + - uid: 1486 components: - type: Transform - pos: 33.5,11.5 + pos: -3.5,-0.5 parent: 2 - - uid: 910 + - uid: 1487 components: - type: Transform - pos: 30.5,21.5 + pos: -2.5,-0.5 parent: 2 - - uid: 911 + - uid: 1488 components: - type: Transform - pos: 23.5,21.5 + rot: 3.141592653589793 rad + pos: 12.5,17.5 parent: 2 - - uid: 912 + - uid: 1489 components: - type: Transform - pos: 27.5,21.5 + rot: 3.141592653589793 rad + pos: 13.5,17.5 parent: 2 - - uid: 913 + - uid: 1490 components: - type: Transform - pos: 25.5,21.5 + rot: 3.141592653589793 rad + pos: 13.5,16.5 parent: 2 - - uid: 914 + - uid: 1491 components: - type: Transform - pos: 21.5,24.5 + rot: -1.5707963267948966 rad + pos: 0.5,15.5 parent: 2 - - uid: 915 + - uid: 1492 components: - type: Transform - pos: -11.5,16.5 + rot: -1.5707963267948966 rad + pos: 1.5,15.5 parent: 2 - - uid: 916 + - uid: 1493 components: - type: Transform - pos: -2.5,17.5 + rot: -1.5707963267948966 rad + pos: 0.5,14.5 parent: 2 - - uid: 917 + - uid: 1494 components: - type: Transform - pos: 13.5,-17.5 + pos: 7.5,-3.5 parent: 2 - - uid: 918 + - uid: 1495 components: - type: Transform - pos: -1.5,17.5 + pos: 8.5,-3.5 parent: 2 - - uid: 919 +- proto: CarvedPumpkin + entities: + - uid: 1496 components: - type: Transform - pos: -0.5,17.5 + pos: -29.627066,29.817516 parent: 2 - - uid: 920 + - uid: 1497 components: - type: Transform - pos: -9.5,-1.5 + pos: 17.473278,13.740748 parent: 2 - - uid: 921 + - uid: 1498 components: - type: Transform - pos: -9.5,-0.5 + pos: 10.612191,-10.209353 parent: 2 - - uid: 922 + - uid: 1499 components: - type: Transform - pos: 21.5,-8.5 + pos: -53.50106,20.958181 parent: 2 - - uid: 923 + - uid: 7223 components: - type: Transform - pos: 21.5,25.5 - parent: 2 - - uid: 924 + pos: 10.3359375,22.77327 + parent: 7020 +- proto: CarvedPumpkinSmall + entities: + - uid: 1500 components: - type: Transform - pos: -16.5,16.5 + pos: 12.456646,7.7707825 parent: 2 - - uid: 925 +- proto: Catwalk + entities: + - uid: 1501 components: - type: Transform - pos: -17.5,16.5 + rot: 1.5707963267948966 rad + pos: -52.5,20.5 parent: 2 - - uid: 926 + - uid: 1502 components: - type: Transform - pos: -18.5,13.5 + rot: 1.5707963267948966 rad + pos: -54.5,19.5 parent: 2 - - uid: 927 + - uid: 1503 components: - type: Transform - pos: -19.5,13.5 + pos: 22.5,-13.5 parent: 2 - - uid: 928 + - uid: 1504 components: - type: Transform - pos: 21.5,20.5 + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 parent: 2 - - uid: 929 + - uid: 1505 components: - type: Transform - pos: -49.5,21.5 + rot: 3.141592653589793 rad + pos: 4.5,-22.5 parent: 2 - - uid: 930 + - uid: 1506 components: - type: Transform - pos: -49.5,20.5 + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 parent: 2 - - uid: 931 + - uid: 1507 components: - type: Transform - pos: -49.5,19.5 + pos: -40.5,21.5 parent: 2 - - uid: 932 + - uid: 1508 components: - type: Transform - pos: -49.5,18.5 + rot: -1.5707963267948966 rad + pos: 7.5,34.5 parent: 2 - - uid: 933 + - uid: 1509 components: - type: Transform - pos: -50.5,18.5 + rot: 3.141592653589793 rad + pos: 22.5,-11.5 parent: 2 - - uid: 934 + - uid: 1510 components: - type: Transform - pos: -49.5,17.5 + pos: 29.5,21.5 parent: 2 - - uid: 935 + - uid: 1511 components: - type: Transform - pos: -48.5,18.5 + pos: 28.5,21.5 parent: 2 - - uid: 936 + - uid: 1512 components: - type: Transform - pos: -47.5,18.5 + pos: 27.5,21.5 parent: 2 - - uid: 937 + - uid: 1513 components: - type: Transform - pos: -47.5,19.5 + pos: 26.5,21.5 parent: 2 - - uid: 938 + - uid: 1514 components: - type: Transform - pos: -47.5,20.5 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - - uid: 939 + - uid: 1515 components: - type: Transform - pos: -47.5,21.5 + pos: -23.5,24.5 parent: 2 - - uid: 940 + - uid: 1516 components: - type: Transform - pos: -50.5,20.5 + rot: -1.5707963267948966 rad + pos: -26.5,11.5 parent: 2 - - uid: 941 + - uid: 1517 components: - type: Transform - pos: 23.5,-4.5 + rot: -1.5707963267948966 rad + pos: -25.5,11.5 parent: 2 - - uid: 942 + - uid: 1518 components: - type: Transform - pos: 24.5,-4.5 + rot: 1.5707963267948966 rad + pos: -27.5,11.5 parent: 2 - - uid: 943 + - uid: 1519 components: - type: Transform - pos: 25.5,-4.5 + rot: 1.5707963267948966 rad + pos: -28.5,10.5 parent: 2 - - uid: 944 + - uid: 1520 components: - type: Transform - pos: 25.5,-3.5 + rot: -1.5707963267948966 rad + pos: -24.5,11.5 parent: 2 - - uid: 945 + - uid: 1521 components: - type: Transform - pos: -28.5,-3.5 + pos: -34.5,19.5 parent: 2 - - uid: 946 + - uid: 1522 components: - type: Transform - pos: 21.5,21.5 + pos: 27.5,-3.5 parent: 2 - - uid: 947 + - uid: 1523 components: - type: Transform - pos: 21.5,22.5 + pos: 29.5,-3.5 parent: 2 - - uid: 948 + - uid: 1524 components: - type: Transform - pos: 21.5,23.5 + pos: 28.5,-3.5 parent: 2 - - uid: 949 + - uid: 1525 components: - type: Transform - pos: 20.5,20.5 + pos: 13.5,-6.5 parent: 2 - - uid: 950 + - uid: 1526 components: - type: Transform - pos: 22.5,18.5 + pos: 22.5,-3.5 parent: 2 - - uid: 951 + - uid: 1527 components: - type: Transform - pos: 11.5,42.5 + pos: 21.5,-3.5 parent: 2 - - uid: 952 + - uid: 1528 components: - type: Transform - pos: 10.5,42.5 + pos: 21.5,-1.5 parent: 2 - - uid: 953 + - uid: 1529 components: - type: Transform - pos: 10.5,41.5 + rot: 3.141592653589793 rad + pos: 23.5,-13.5 parent: 2 - - uid: 954 + - uid: 1530 components: - type: Transform - pos: 9.5,41.5 + pos: -35.5,19.5 parent: 2 - - uid: 955 + - uid: 1531 components: - type: Transform - pos: 9.5,40.5 + rot: 3.141592653589793 rad + pos: 22.5,-12.5 parent: 2 - - uid: 956 + - uid: 1532 components: - type: Transform - pos: 8.5,40.5 + pos: -34.5,21.5 parent: 2 - - uid: 957 + - uid: 1533 components: - type: Transform - pos: 7.5,40.5 + pos: -34.5,20.5 parent: 2 - - uid: 958 + - uid: 1534 components: - type: Transform - pos: 6.5,40.5 + pos: -36.5,19.5 parent: 2 - - uid: 959 + - uid: 1535 components: - type: Transform - pos: 5.5,40.5 + pos: -36.5,20.5 parent: 2 - - uid: 960 + - uid: 1536 components: - type: Transform - pos: 5.5,41.5 + pos: -36.5,21.5 parent: 2 - - uid: 961 + - uid: 1537 components: - type: Transform - pos: -29.5,-3.5 + rot: 3.141592653589793 rad + pos: 22.5,19.5 parent: 2 - - uid: 962 + - uid: 1538 components: - type: Transform - pos: -30.5,-3.5 + rot: 3.141592653589793 rad + pos: 22.5,18.5 parent: 2 - - uid: 963 + - uid: 1539 components: - type: Transform - pos: -50.5,21.5 + rot: 3.141592653589793 rad + pos: -28.5,11.5 parent: 2 - - uid: 964 + - uid: 1540 components: - type: Transform - pos: 24.5,11.5 + rot: 3.141592653589793 rad + pos: 32.5,2.5 parent: 2 - - uid: 965 + - uid: 1541 components: - type: Transform - pos: 25.5,11.5 + rot: 3.141592653589793 rad + pos: 32.5,1.5 parent: 2 - - uid: 966 + - uid: 1542 components: - type: Transform - pos: 26.5,11.5 + pos: -23.5,8.5 parent: 2 - - uid: 967 + - uid: 1543 components: - type: Transform - pos: 27.5,11.5 + pos: -24.5,5.5 parent: 2 - - uid: 968 + - uid: 1544 components: - type: Transform - pos: 28.5,11.5 + pos: -22.5,6.5 parent: 2 - - uid: 969 + - uid: 1545 components: - type: Transform - pos: 29.5,11.5 + pos: -26.5,4.5 parent: 2 - - uid: 970 + - uid: 1546 components: - type: Transform - pos: 30.5,11.5 + pos: -22.5,4.5 parent: 2 - - uid: 971 + - uid: 1547 components: - type: Transform - pos: 31.5,11.5 + rot: -1.5707963267948966 rad + pos: -28.5,4.5 parent: 2 - - uid: 972 + - uid: 1548 components: - type: Transform - pos: 32.5,11.5 + rot: 3.141592653589793 rad + pos: 3.5,-22.5 parent: 2 - - uid: 973 + - uid: 1549 components: - type: Transform - pos: 31.5,12.5 + rot: -1.5707963267948966 rad + pos: -29.5,7.5 parent: 2 - - uid: 974 + - uid: 1550 components: - type: Transform - pos: 31.5,13.5 + rot: -1.5707963267948966 rad + pos: -29.5,9.5 parent: 2 - - uid: 975 + - uid: 1551 components: - type: Transform - pos: 31.5,14.5 + rot: 3.141592653589793 rad + pos: -29.5,10.5 parent: 2 - - uid: 976 + - uid: 1552 components: - type: Transform - pos: 31.5,15.5 + pos: 2.5,-22.5 parent: 2 - - uid: 977 + - uid: 1553 components: - type: Transform - pos: 31.5,16.5 + pos: 2.5,-21.5 parent: 2 - - uid: 978 + - uid: 1554 components: - type: Transform - pos: 30.5,16.5 + rot: 3.141592653589793 rad + pos: 33.5,0.5 parent: 2 - - uid: 979 + - uid: 1555 components: - type: Transform - pos: 30.5,17.5 + rot: 3.141592653589793 rad + pos: 22.5,-10.5 parent: 2 - - uid: 980 + - uid: 1556 components: - type: Transform - pos: 30.5,18.5 + rot: 3.141592653589793 rad + pos: -29.5,8.5 parent: 2 - - uid: 981 + - uid: 1557 components: - type: Transform - pos: 30.5,19.5 + pos: 3.5,-21.5 parent: 2 - - uid: 5425 + - uid: 1558 components: - type: Transform - pos: -2.5,4.5 - parent: 5384 - - uid: 5426 + pos: 4.5,-21.5 + parent: 2 + - uid: 1559 components: - type: Transform - pos: -3.5,4.5 - parent: 5384 - - uid: 5427 + pos: 32.5,21.5 + parent: 2 + - uid: 1560 components: - type: Transform - pos: -4.5,4.5 - parent: 5384 - - uid: 5428 + rot: 1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - uid: 1561 components: - type: Transform - pos: -5.5,4.5 - parent: 5384 - - uid: 5429 + pos: 31.5,21.5 + parent: 2 + - uid: 1562 components: - type: Transform - pos: -6.5,4.5 - parent: 5384 - - uid: 5430 + rot: 3.141592653589793 rad + pos: 22.5,-9.5 + parent: 2 + - uid: 1563 components: - type: Transform - pos: -5.5,5.5 - parent: 5384 - - uid: 5431 + pos: 30.5,21.5 + parent: 2 + - uid: 1564 components: - type: Transform - pos: -5.5,6.5 - parent: 5384 - - uid: 5432 + rot: 3.141592653589793 rad + pos: 34.5,2.5 + parent: 2 + - uid: 1565 components: - type: Transform - pos: -3.5,5.5 - parent: 5384 - - uid: 5433 + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 2 + - uid: 1566 components: - type: Transform - pos: -3.5,6.5 - parent: 5384 - - uid: 5434 + rot: 3.141592653589793 rad + pos: 32.5,3.5 + parent: 2 + - uid: 1567 components: - type: Transform - pos: -4.5,3.5 - parent: 5384 - - uid: 5435 + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 2 + - uid: 1568 components: - type: Transform - pos: -6.5,3.5 - parent: 5384 - - uid: 5436 + rot: 3.141592653589793 rad + pos: 33.5,2.5 + parent: 2 + - uid: 1569 components: - type: Transform - pos: -6.5,2.5 - parent: 5384 - - uid: 5437 + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - uid: 1570 components: - type: Transform - pos: -6.5,1.5 - parent: 5384 - - uid: 5438 + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 2 + - uid: 1571 components: - type: Transform - pos: -6.5,0.5 - parent: 5384 - - uid: 5439 + rot: 3.141592653589793 rad + pos: 34.5,1.5 + parent: 2 + - uid: 1572 components: - type: Transform - pos: -6.5,-0.5 - parent: 5384 - - uid: 5440 + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 1573 components: - type: Transform - pos: -6.5,-1.5 - parent: 5384 - - uid: 5441 + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 + - uid: 1574 components: - type: Transform - pos: -6.5,-2.5 - parent: 5384 - - uid: 5442 + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 1575 components: - type: Transform - pos: -6.5,-3.5 - parent: 5384 - - uid: 5443 + rot: 3.141592653589793 rad + pos: -29.5,6.5 + parent: 2 + - uid: 1576 components: - type: Transform - pos: -6.5,-4.5 - parent: 5384 - - uid: 5444 + pos: 3.5,-17.5 + parent: 2 + - uid: 1577 components: - type: Transform - pos: -5.5,-4.5 - parent: 5384 - - uid: 5445 + pos: 24.5,21.5 + parent: 2 + - uid: 1578 components: - type: Transform - pos: -5.5,-5.5 - parent: 5384 - - uid: 5446 + pos: 25.5,21.5 + parent: 2 + - uid: 1579 components: - type: Transform - pos: -5.5,-6.5 - parent: 5384 - - uid: 5447 + pos: 23.5,21.5 + parent: 2 + - uid: 1580 components: - type: Transform - pos: -5.5,-7.5 - parent: 5384 - - uid: 5448 + pos: 22.5,21.5 + parent: 2 + - uid: 1581 components: - type: Transform - pos: -5.5,-0.5 - parent: 5384 - - uid: 5449 + pos: 22.5,20.5 + parent: 2 + - uid: 1582 components: - type: Transform - pos: -4.5,-0.5 - parent: 5384 - - uid: 5450 + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 1583 components: - type: Transform - pos: -7.5,-0.5 - parent: 5384 - - uid: 5451 + pos: 19.5,-7.5 + parent: 2 + - uid: 1584 components: - type: Transform - pos: -8.5,-0.5 - parent: 5384 - - uid: 5452 + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 2 + - uid: 1585 components: - type: Transform - pos: -9.5,-0.5 - parent: 5384 - - uid: 5453 + rot: -1.5707963267948966 rad + pos: 7.5,32.5 + parent: 2 + - uid: 1586 components: - type: Transform - pos: -10.5,-0.5 - parent: 5384 - - uid: 5454 + rot: -1.5707963267948966 rad + pos: 7.5,33.5 + parent: 2 + - uid: 1587 components: - type: Transform - pos: -11.5,-0.5 - parent: 5384 - - uid: 5455 + rot: -1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 + - uid: 1588 components: - type: Transform - pos: -10.5,0.5 - parent: 5384 - - uid: 5456 + pos: 20.5,-7.5 + parent: 2 + - uid: 1589 components: - type: Transform - pos: -10.5,-1.5 - parent: 5384 - - uid: 5457 + rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 2 + - uid: 1590 components: - type: Transform - pos: -4.5,-7.5 - parent: 5384 - - uid: 5458 + pos: -39.5,19.5 + parent: 2 + - uid: 1591 components: - type: Transform - pos: 5.5,-9.5 - parent: 5384 - - uid: 5459 + pos: -39.5,20.5 + parent: 2 + - uid: 1592 components: - type: Transform - pos: 4.5,-9.5 - parent: 5384 - - uid: 5460 + pos: -40.5,19.5 + parent: 2 + - uid: 1593 components: - type: Transform - pos: 3.5,-9.5 - parent: 5384 - - uid: 5461 + pos: -41.5,21.5 + parent: 2 + - uid: 1594 components: - type: Transform - pos: 1.5,-8.5 - parent: 5384 - - uid: 5462 + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 1595 components: - type: Transform - pos: 0.5,-7.5 - parent: 5384 - - uid: 5463 + rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + - uid: 1596 components: - type: Transform - pos: 1.5,-7.5 - parent: 5384 - - uid: 5464 + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - uid: 1597 components: - type: Transform - pos: 2.5,-7.5 - parent: 5384 - - uid: 5465 + rot: -1.5707963267948966 rad + pos: 7.5,31.5 + parent: 2 + - uid: 1598 components: - type: Transform - pos: -4.5,-8.5 - parent: 5384 - - uid: 5466 + pos: -38.5,21.5 + parent: 2 + - uid: 1599 components: - type: Transform - pos: -3.5,-8.5 - parent: 5384 - - uid: 5467 + pos: -37.5,21.5 + parent: 2 + - uid: 1600 components: - type: Transform - pos: -2.5,-8.5 - parent: 5384 - - uid: 5468 + pos: -38.5,20.5 + parent: 2 + - uid: 1601 components: - type: Transform - pos: -1.5,-8.5 - parent: 5384 - - uid: 5469 + pos: -38.5,19.5 + parent: 2 + - uid: 1602 components: - type: Transform - pos: -1.5,-9.5 - parent: 5384 - - uid: 5470 + pos: -39.5,21.5 + parent: 2 + - uid: 1603 components: - type: Transform - pos: -0.5,-9.5 - parent: 5384 - - uid: 5471 + pos: -37.5,20.5 + parent: 2 + - uid: 1604 components: - type: Transform - pos: 0.5,-9.5 - parent: 5384 - - uid: 5472 + pos: 18.5,-7.5 + parent: 2 + - uid: 1605 components: - type: Transform - pos: 1.5,-9.5 - parent: 5384 - - uid: 5473 + pos: -5.5,14.5 + parent: 2 + - uid: 1606 components: - type: Transform - pos: 2.5,-9.5 - parent: 5384 - - uid: 5474 + pos: -2.5,12.5 + parent: 2 + - uid: 1607 components: - type: Transform - pos: 6.5,-9.5 - parent: 5384 - - uid: 5475 + pos: 21.5,-7.5 + parent: 2 + - uid: 1608 components: - type: Transform - pos: 7.5,-9.5 - parent: 5384 - - uid: 5476 + pos: -41.5,20.5 + parent: 2 + - uid: 1609 components: - type: Transform - pos: 8.5,-9.5 - parent: 5384 - - uid: 5477 + pos: -41.5,19.5 + parent: 2 + - uid: 1610 components: - type: Transform - pos: 9.5,-9.5 - parent: 5384 - - uid: 5478 + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 1611 components: - type: Transform - pos: 9.5,-10.5 - parent: 5384 - - uid: 5479 + pos: 2.5,-17.5 + parent: 2 + - uid: 1612 components: - type: Transform - pos: 9.5,-11.5 - parent: 5384 - - uid: 5480 + rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 2 + - uid: 1613 components: - type: Transform - pos: 9.5,-12.5 - parent: 5384 - - uid: 5481 + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - uid: 1614 components: - type: Transform - pos: 11.5,-9.5 - parent: 5384 - - uid: 5482 + pos: -5.5,13.5 + parent: 2 + - uid: 1615 components: - type: Transform - pos: 11.5,-10.5 - parent: 5384 - - uid: 5483 + pos: -4.5,11.5 + parent: 2 + - uid: 1616 components: - type: Transform - pos: 12.5,-10.5 - parent: 5384 - - uid: 5484 + pos: -2.5,9.5 + parent: 2 + - uid: 1617 components: - type: Transform - pos: 7.5,-8.5 - parent: 5384 - - uid: 5485 + pos: -3.5,9.5 + parent: 2 + - uid: 1618 components: - type: Transform - pos: 7.5,-7.5 - parent: 5384 - - uid: 5486 + pos: -10.5,11.5 + parent: 2 + - uid: 1619 components: - type: Transform - pos: 7.5,-6.5 - parent: 5384 - - uid: 5487 + pos: -10.5,16.5 + parent: 2 + - uid: 1620 components: - type: Transform - pos: 10.5,-9.5 - parent: 5384 - - uid: 5488 + pos: -8.5,13.5 + parent: 2 + - uid: 1621 components: - type: Transform - pos: 8.5,-12.5 - parent: 5384 - - uid: 5489 + pos: -9.5,13.5 + parent: 2 + - uid: 1622 components: - type: Transform - pos: 10.5,-12.5 - parent: 5384 - - uid: 5490 + pos: -9.5,16.5 + parent: 2 + - uid: 1623 components: - type: Transform - pos: 10.5,-8.5 - parent: 5384 - - uid: 5491 + pos: -11.5,11.5 + parent: 2 + - uid: 1624 components: - type: Transform - pos: 10.5,-7.5 - parent: 5384 - - uid: 5492 + pos: -5.5,11.5 + parent: 2 + - uid: 1625 components: - type: Transform - pos: 10.5,-6.5 - parent: 5384 - - uid: 5493 + pos: -5.5,10.5 + parent: 2 + - uid: 1626 components: - type: Transform - pos: 10.5,-5.5 - parent: 5384 - - uid: 5494 + pos: -1.5,15.5 + parent: 2 + - uid: 1627 components: - type: Transform - pos: 10.5,-4.5 - parent: 5384 - - uid: 5495 + pos: -2.5,13.5 + parent: 2 + - uid: 1628 components: - type: Transform - pos: 10.5,-3.5 - parent: 5384 - - uid: 5496 + pos: -35.5,20.5 + parent: 2 + - uid: 1629 components: - type: Transform - pos: 10.5,-2.5 - parent: 5384 - - uid: 5497 + rot: -1.5707963267948966 rad + pos: -48.5,17.5 + parent: 2 + - uid: 1630 components: - type: Transform - pos: 11.5,-2.5 - parent: 5384 - - uid: 5498 + rot: -1.5707963267948966 rad + pos: -47.5,20.5 + parent: 2 + - uid: 1631 components: - type: Transform - pos: 12.5,-2.5 - parent: 5384 - - uid: 5499 + pos: 7.5,42.5 + parent: 2 + - uid: 1632 components: - type: Transform - pos: 13.5,-2.5 - parent: 5384 - - uid: 5500 + rot: -1.5707963267948966 rad + pos: 7.5,29.5 + parent: 2 + - uid: 1633 components: - type: Transform - pos: 14.5,-2.5 - parent: 5384 - - uid: 5501 + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - uid: 1634 components: - type: Transform - pos: 15.5,-2.5 - parent: 5384 - - uid: 5502 + rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 2 + - uid: 1635 components: - type: Transform - pos: 14.5,-1.5 - parent: 5384 - - uid: 5503 + rot: -1.5707963267948966 rad + pos: 8.5,31.5 + parent: 2 + - uid: 1636 components: - type: Transform - pos: 14.5,-3.5 - parent: 5384 - - uid: 5504 + rot: -1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + - uid: 1637 components: - type: Transform - pos: 11.5,-6.5 - parent: 5384 - - uid: 5505 + rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 2 + - uid: 1638 components: - type: Transform - pos: 12.5,-6.5 - parent: 5384 - - uid: 5506 + rot: -1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - uid: 1639 components: - type: Transform - pos: 13.5,-6.5 - parent: 5384 - - uid: 5507 + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - uid: 1640 components: - type: Transform - pos: 13.5,-7.5 - parent: 5384 - - uid: 5508 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 + - uid: 1641 components: - type: Transform - pos: 13.5,-5.5 - parent: 5384 - - uid: 5509 + rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 + - uid: 1642 components: - type: Transform - pos: 10.5,-1.5 - parent: 5384 - - uid: 5510 + pos: 11.5,43.5 + parent: 2 + - uid: 1643 components: - type: Transform - pos: 10.5,-0.5 - parent: 5384 - - uid: 5511 + rot: 1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - uid: 1644 components: - type: Transform - pos: 10.5,0.5 - parent: 5384 - - uid: 5512 + rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - uid: 1645 components: - type: Transform - pos: 10.5,1.5 - parent: 5384 - - uid: 5513 + rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 2 + - uid: 1646 components: - type: Transform - pos: 10.5,2.5 - parent: 5384 - - uid: 5514 + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 2 + - uid: 1647 components: - type: Transform - pos: 10.5,3.5 - parent: 5384 - - uid: 5515 + rot: 1.5707963267948966 rad + pos: 30.5,8.5 + parent: 2 + - uid: 1648 components: - type: Transform - pos: 10.5,4.5 - parent: 5384 - - uid: 5516 + rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 2 + - uid: 1649 components: - type: Transform - pos: 12.5,4.5 - parent: 5384 - - uid: 5517 + rot: 1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 1650 components: - type: Transform - pos: 13.5,4.5 - parent: 5384 - - uid: 5518 + rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - uid: 1651 components: - type: Transform - pos: 14.5,4.5 - parent: 5384 - - uid: 5519 + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - uid: 1652 components: - type: Transform - pos: 15.5,4.5 - parent: 5384 - - uid: 5520 + rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2 + - uid: 1653 components: - type: Transform - pos: 16.5,4.5 - parent: 5384 - - uid: 5521 + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - uid: 1654 components: - type: Transform - pos: 14.5,5.5 - parent: 5384 - - uid: 5522 + rot: 1.5707963267948966 rad + pos: 27.5,17.5 + parent: 2 + - uid: 1655 components: - type: Transform - pos: 14.5,6.5 - parent: 5384 - - uid: 5523 + rot: 1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - uid: 1656 components: - type: Transform - pos: 14.5,7.5 - parent: 5384 - - uid: 5524 + rot: 1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - uid: 1657 components: - type: Transform - pos: 14.5,3.5 - parent: 5384 - - uid: 5525 + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 1658 components: - type: Transform - pos: 14.5,2.5 - parent: 5384 - - uid: 5526 + rot: 3.141592653589793 rad + pos: 34.5,4.5 + parent: 2 + - uid: 1659 components: - type: Transform - pos: 10.5,5.5 - parent: 5384 - - uid: 5527 + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 1660 components: - type: Transform - pos: 10.5,6.5 - parent: 5384 - - uid: 5528 + rot: 1.5707963267948966 rad + pos: -54.5,20.5 + parent: 2 + - uid: 1661 components: - type: Transform - pos: 10.5,7.5 - parent: 5384 - - uid: 5529 + rot: 1.5707963267948966 rad + pos: -50.5,19.5 + parent: 2 + - uid: 1662 components: - type: Transform - pos: 10.5,8.5 - parent: 5384 - - uid: 5530 + rot: 1.5707963267948966 rad + pos: -51.5,19.5 + parent: 2 + - uid: 1663 components: - type: Transform - pos: 10.5,9.5 - parent: 5384 - - uid: 5531 + rot: 1.5707963267948966 rad + pos: -49.5,18.5 + parent: 2 + - uid: 5771 components: - type: Transform - pos: 12.5,9.5 - parent: 5384 - - uid: 5532 + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 5438 + - uid: 5772 components: - type: Transform - pos: 13.5,9.5 - parent: 5384 - - uid: 5533 + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 5438 + - uid: 5773 components: - type: Transform - pos: 13.5,8.5 - parent: 5384 - - uid: 5534 + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 5438 + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 5438 + - uid: 5775 components: - type: Transform - pos: 9.5,9.5 - parent: 5384 - - uid: 5535 + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 5438 + - uid: 5776 components: - type: Transform - pos: 8.5,9.5 - parent: 5384 - - uid: 5536 + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 5438 + - uid: 5777 components: - type: Transform - pos: 7.5,9.5 - parent: 5384 - - uid: 5537 + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 5438 + - uid: 5778 components: - type: Transform - pos: 6.5,9.5 - parent: 5384 - - uid: 5538 + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 5438 + - uid: 5779 components: - type: Transform - pos: 5.5,9.5 - parent: 5384 - - uid: 5539 + rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 5438 + - uid: 6815 components: - type: Transform - pos: 4.5,9.5 - parent: 5384 - - uid: 5540 + pos: -0.5,-1.5 + parent: 6685 + - uid: 6816 components: - type: Transform - pos: 3.5,10.5 - parent: 5384 - - uid: 5541 + pos: -0.5,-2.5 + parent: 6685 + - uid: 6817 components: - type: Transform - pos: 4.5,10.5 - parent: 5384 - - uid: 5542 + pos: 1.5,-1.5 + parent: 6685 + - uid: 6818 components: - type: Transform - pos: 4.5,8.5 - parent: 5384 - - uid: 5543 + pos: 1.5,-2.5 + parent: 6685 + - uid: 6819 components: - type: Transform - pos: 4.5,7.5 - parent: 5384 - - uid: 5544 + pos: 0.5,-2.5 + parent: 6685 + - uid: 7224 components: - type: Transform - pos: 4.5,6.5 - parent: 5384 - - uid: 5545 + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 7020 + - uid: 7225 components: - type: Transform - pos: 7.5,8.5 - parent: 5384 - - uid: 5546 + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 7020 + - uid: 7226 components: - type: Transform - pos: 7.5,7.5 - parent: 5384 - - uid: 5547 + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 7020 + - uid: 7227 components: - type: Transform - pos: 7.5,6.5 - parent: 5384 - - uid: 5548 + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 7020 + - uid: 7228 components: - type: Transform - pos: 2.5,10.5 - parent: 5384 - - uid: 5549 + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 7020 + - uid: 7229 components: - type: Transform - pos: 4.5,11.5 - parent: 5384 - - uid: 5550 + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 7020 + - uid: 7230 components: - type: Transform - pos: 3.5,8.5 - parent: 5384 - - uid: 5551 + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 7020 + - uid: 7231 components: - type: Transform - pos: 2.5,8.5 - parent: 5384 - - uid: 5552 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 7020 + - uid: 7232 components: - type: Transform - pos: 0.5,4.5 - parent: 5384 - - uid: 5553 + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 7020 + - uid: 7233 components: - type: Transform - pos: 0.5,3.5 - parent: 5384 - - uid: 5554 + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 7020 + - uid: 7234 components: - type: Transform - pos: 0.5,2.5 - parent: 5384 - - uid: 5555 + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 7020 + - uid: 7235 components: - type: Transform - pos: 0.5,1.5 - parent: 5384 - - uid: 5556 + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 7020 + - uid: 7236 components: - type: Transform - pos: 0.5,0.5 - parent: 5384 - - uid: 5557 + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 7020 + - uid: 7237 components: - type: Transform - pos: 0.5,-0.5 - parent: 5384 - - uid: 5558 + pos: 9.5,16.5 + parent: 7020 + - uid: 7238 components: - type: Transform - pos: 1.5,-0.5 - parent: 5384 - - uid: 5559 + pos: 9.5,15.5 + parent: 7020 + - uid: 7239 components: - type: Transform - pos: 2.5,-0.5 - parent: 5384 - - uid: 5560 + pos: 8.5,15.5 + parent: 7020 + - uid: 7240 components: - type: Transform - pos: 3.5,-0.5 - parent: 5384 - - uid: 5561 + pos: 7.5,13.5 + parent: 7020 + - uid: 7241 components: - type: Transform - pos: 4.5,-0.5 - parent: 5384 - - uid: 5562 + pos: 6.5,13.5 + parent: 7020 + - uid: 7242 components: - type: Transform - pos: 5.5,-0.5 - parent: 5384 - - uid: 5563 + pos: 5.5,11.5 + parent: 7020 + - uid: 7243 components: - type: Transform - pos: 6.5,-0.5 - parent: 5384 - - uid: 5564 + pos: 4.5,10.5 + parent: 7020 + - uid: 7244 components: - type: Transform - pos: -0.5,-0.5 - parent: 5384 - - uid: 5565 + pos: 3.5,10.5 + parent: 7020 + - uid: 7245 components: - type: Transform - pos: 1.5,-1.5 - parent: 5384 - - uid: 5566 + pos: 2.5,9.5 + parent: 7020 + - uid: 7246 components: - type: Transform - pos: 1.5,-2.5 - parent: 5384 - - uid: 5567 + rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 7020 + - uid: 7247 components: - type: Transform - pos: 1.5,-3.5 - parent: 5384 - - uid: 5568 + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 7020 + - uid: 7248 components: - type: Transform - pos: 4.5,-1.5 - parent: 5384 - - uid: 5569 + rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 7020 + - uid: 7249 components: - type: Transform - pos: 4.5,-2.5 - parent: 5384 - - uid: 5570 + rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 7020 + - uid: 7250 components: - type: Transform - pos: 4.5,-3.5 - parent: 5384 - - uid: 5571 + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 7020 + - uid: 7251 components: - type: Transform - pos: 4.5,0.5 - parent: 5384 - - uid: 5572 + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 7020 + - uid: 7252 components: - type: Transform - pos: 4.5,1.5 - parent: 5384 - - uid: 5573 + rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 7020 + - uid: 7253 components: - type: Transform - pos: 4.5,2.5 - parent: 5384 - - uid: 5574 + rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 7020 + - uid: 7254 components: - type: Transform - pos: 4.5,3.5 - parent: 5384 - - uid: 5575 + pos: -5.5,15.5 + parent: 7020 + - uid: 7255 components: - type: Transform - pos: 2.5,0.5 - parent: 5384 - - uid: 5576 + pos: -4.5,15.5 + parent: 7020 + - uid: 7256 components: - type: Transform - pos: 2.5,1.5 - parent: 5384 - - uid: 5577 + rot: 3.141592653589793 rad + pos: 3.5,29.5 + parent: 7020 + - uid: 7257 components: - type: Transform - pos: 2.5,2.5 - parent: 5384 - - uid: 5578 + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 7020 + - uid: 7258 components: - type: Transform - pos: 2.5,3.5 - parent: 5384 - - uid: 5579 + rot: 3.141592653589793 rad + pos: -8.5,23.5 + parent: 7020 + - uid: 7259 components: - type: Transform - pos: -0.5,-1.5 - parent: 5384 - - uid: 5580 + rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 7020 + - uid: 7260 components: - type: Transform - pos: -0.5,-2.5 - parent: 5384 - - uid: 5581 + rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 7020 + - uid: 7261 components: - type: Transform - pos: 6.5,-1.5 - parent: 5384 - - uid: 5582 + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 7020 + - uid: 7262 components: - type: Transform - pos: 6.5,-2.5 - parent: 5384 - - uid: 5583 + rot: 3.141592653589793 rad + pos: -3.5,23.5 + parent: 7020 + - uid: 7263 components: - type: Transform - pos: 6.5,0.5 - parent: 5384 - - uid: 5584 + rot: 3.141592653589793 rad + pos: -6.5,24.5 + parent: 7020 + - uid: 7264 components: - type: Transform - pos: 6.5,1.5 - parent: 5384 - - uid: 5585 + rot: 3.141592653589793 rad + pos: -5.5,24.5 + parent: 7020 +- proto: CelloInstrument + entities: + - uid: 1664 components: - type: Transform - pos: 6.5,2.5 - parent: 5384 - - uid: 5586 + pos: -13.713502,6.5177207 + parent: 2 +- proto: CentcomComputerComms + entities: + - uid: 6820 components: - type: Transform - pos: -1.5,-10.5 - parent: 5384 - - uid: 5587 + pos: -0.5,10.5 + parent: 6685 +- proto: Chair + entities: + - uid: 1665 components: - type: Transform - pos: -2.5,-10.5 - parent: 5384 - - uid: 5588 + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - uid: 1666 components: - type: Transform - pos: 1.5,-10.5 - parent: 5384 - - uid: 5589 + rot: -1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - uid: 1667 components: - type: Transform - pos: 4.5,4.5 - parent: 5384 - - uid: 5590 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - uid: 1668 components: - type: Transform - pos: 3.5,4.5 - parent: 5384 - - uid: 5591 + pos: 7.5,-5.5 + parent: 2 + - uid: 1669 components: - type: Transform - pos: 3.5,5.5 - parent: 5384 - - uid: 5592 + pos: 8.5,-5.5 + parent: 2 + - uid: 1670 components: - type: Transform - pos: 4.5,5.5 - parent: 5384 - - uid: 5593 + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - uid: 1671 components: - type: Transform - pos: 5.5,5.5 - parent: 5384 - - uid: 5594 + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - uid: 1672 components: - type: Transform - pos: 5.5,4.5 - parent: 5384 - - uid: 5595 + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 2 + - uid: 1673 components: - type: Transform - pos: -13.5,-0.5 - parent: 5384 - - uid: 5596 + rot: -1.5707963267948966 rad + pos: -15.5,17.5 + parent: 2 + - uid: 1674 components: - type: Transform - pos: -12.5,-0.5 - parent: 5384 - - uid: 5597 + pos: -1.5,-17.5 + parent: 2 + - uid: 1675 components: - type: Transform - pos: -14.5,-0.5 - parent: 5384 - - uid: 5598 + pos: -11.5,-10.5 + parent: 2 + - uid: 1676 components: - type: Transform - pos: -15.5,-0.5 - parent: 5384 - - uid: 6664 + rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 2 + - uid: 1677 components: - type: Transform - pos: -3.5,0.5 - parent: 6631 - - uid: 6665 + pos: -2.5,13.5 + parent: 2 + - uid: 1678 components: - type: Transform - pos: -2.5,0.5 - parent: 6631 - - uid: 6666 + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 2 + - uid: 5780 components: - type: Transform - pos: -1.5,0.5 - parent: 6631 - - uid: 6667 + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 5438 + - uid: 5781 components: - type: Transform - pos: -0.5,0.5 - parent: 6631 - - uid: 6668 + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 5438 + - uid: 5782 components: - type: Transform - pos: 0.5,0.5 - parent: 6631 - - uid: 6669 + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 5438 + - uid: 5783 components: - type: Transform - pos: 1.5,0.5 - parent: 6631 - - uid: 6670 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 5438 + - uid: 8299 components: - type: Transform - pos: 2.5,0.5 - parent: 6631 - - uid: 6671 + pos: -4.5,0.5 + parent: 8267 + - uid: 8300 components: - type: Transform - pos: 3.5,0.5 - parent: 6631 - - uid: 6672 + pos: -3.5,0.5 + parent: 8267 + - uid: 8301 components: - type: Transform - pos: 4.5,0.5 - parent: 6631 - - uid: 6673 + pos: -2.5,0.5 + parent: 8267 + - uid: 8302 components: - type: Transform - pos: 1.5,-0.5 - parent: 6631 - - uid: 6674 + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 8267 + - uid: 8303 components: - type: Transform - pos: 0.5,13.5 - parent: 6631 - - uid: 6675 + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 8267 + - uid: 8304 components: - type: Transform - pos: 0.5,12.5 - parent: 6631 - - uid: 6676 + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 8267 + - uid: 8305 components: - type: Transform - pos: 0.5,11.5 - parent: 6631 - - uid: 6677 + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 8267 + - uid: 8306 components: - type: Transform - pos: 0.5,10.5 - parent: 6631 - - uid: 6678 + pos: -5.5,0.5 + parent: 8267 +- proto: ChairCarp + entities: + - uid: 1679 components: - type: Transform - pos: 0.5,9.5 - parent: 6631 - - uid: 6679 + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 1680 components: - type: Transform - pos: -0.5,7.5 - parent: 6631 - - uid: 6680 + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 1681 components: - type: Transform - pos: -0.5,8.5 - parent: 6631 - - uid: 6681 + rot: -1.5707963267948966 rad + pos: 7.6984005,-17.490208 + parent: 2 + - uid: 1682 components: - type: Transform - pos: 1.5,9.5 - parent: 6631 - - uid: 6682 + rot: 1.5707963267948966 rad + pos: -24.276302,7.0611467 + parent: 2 + - uid: 1683 components: - type: Transform - pos: -0.5,9.5 - parent: 6631 - - uid: 6683 + rot: -1.5707963267948966 rad + pos: -22.672136,7.3215632 + parent: 2 + - uid: 1684 components: - type: Transform - pos: -1.5,6.5 - parent: 6631 - - uid: 6684 + rot: -1.5707963267948966 rad + pos: -23.601019,23.067463 + parent: 2 + - uid: 1685 components: - type: Transform - pos: -0.5,6.5 - parent: 6631 - - uid: 6685 + rot: 3.141592653589793 rad + pos: -25.101019,15.917768 + parent: 2 + - uid: 1686 components: - type: Transform - pos: 0.5,6.5 - parent: 6631 - - uid: 6686 + rot: 1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - uid: 1687 components: - type: Transform - pos: 1.5,6.5 - parent: 6631 - - uid: 6687 + rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 2 + - uid: 1688 components: - type: Transform - pos: 2.5,6.5 - parent: 6631 - - uid: 6688 + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - uid: 1689 components: - type: Transform - pos: 0.5,1.5 - parent: 6631 - - uid: 6689 + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 1690 components: - type: Transform - pos: 0.5,2.5 - parent: 6631 - - uid: 6690 + rot: 3.141592653589793 rad + pos: 24.5,-25.5 + parent: 2 + - uid: 1691 components: - type: Transform - pos: 0.5,3.5 - parent: 6631 - - uid: 6691 + rot: 3.141592653589793 rad + pos: -11.5,27.5 + parent: 2 + - uid: 1692 components: - type: Transform - pos: 1.5,3.5 - parent: 6631 - - uid: 6692 + rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 2 + - uid: 1693 components: - type: Transform - pos: 2.5,3.5 - parent: 6631 - - uid: 6693 + rot: 3.141592653589793 rad + pos: -13.5,27.5 + parent: 2 + - uid: 1694 components: - type: Transform - pos: 3.5,3.5 - parent: 6631 - - uid: 6694 + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 2 + - uid: 1695 components: - type: Transform - pos: -0.5,3.5 - parent: 6631 - - uid: 6695 + rot: -1.5707963267948966 rad + pos: -21.5,14.5 + parent: 2 + - uid: 1696 components: - type: Transform - pos: -1.5,3.5 - parent: 6631 - - uid: 6696 + rot: 3.141592653589793 rad + pos: -25.5,31.5 + parent: 2 + - uid: 1697 components: - type: Transform - pos: -2.5,3.5 - parent: 6631 - - uid: 6697 + pos: -29.899103,30.342901 + parent: 2 + - uid: 1698 components: - type: Transform - pos: 1.5,-1.5 - parent: 6631 - - uid: 6698 + rot: 1.5707963267948966 rad + pos: -29.611563,23.384096 + parent: 2 + - uid: 1699 components: - type: Transform - pos: 0.5,-1.5 - parent: 6631 - - uid: 6699 + rot: -1.5707963267948966 rad + pos: -27.517813,22.894514 + parent: 2 + - uid: 1700 components: - type: Transform - pos: 0.5,-2.5 - parent: 6631 - - uid: 6700 + pos: -28.477325,24.839209 + parent: 2 + - uid: 5784 components: - type: Transform - pos: 1.5,-2.5 - parent: 6631 - - uid: 6701 + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 5438 + - uid: 5785 components: - type: Transform - pos: -0.5,-2.5 - parent: 6631 - - uid: 6702 + pos: 0.5,-15.5 + parent: 5438 + - uid: 5786 components: - type: Transform - pos: -0.5,-3.5 - parent: 6631 - - uid: 6703 + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 5438 + - uid: 5787 components: - type: Transform - pos: 1.5,-3.5 - parent: 6631 - - uid: 6704 + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 5438 + - uid: 7265 components: - type: Transform - pos: 2.5,-2.5 - parent: 6631 - - uid: 6705 + rot: 3.141592653589793 rad + pos: -7.514862,23.857994 + parent: 7020 + - uid: 7266 components: - type: Transform - pos: 3.5,-2.5 - parent: 6631 - - uid: 6706 + rot: -1.5707963267948966 rad + pos: 1.6494751,20.552708 + parent: 7020 + - uid: 7267 components: - type: Transform - pos: 4.5,-2.5 - parent: 6631 - - uid: 6707 + rot: -1.5707963267948966 rad + pos: 1.7328186,19.72979 + parent: 7020 + - uid: 7268 components: - type: Transform - pos: -3.5,-2.5 - parent: 6631 - - uid: 6708 + pos: -6.049652,15.866207 + parent: 7020 + - uid: 7269 components: - type: Transform - pos: -2.5,-2.5 - parent: 6631 - - uid: 6709 + pos: -0.3296814,20.865208 + parent: 7020 + - uid: 7270 components: - type: Transform - pos: -1.5,-2.5 - parent: 6631 - - uid: 6710 + rot: 1.5707963267948966 rad + pos: -0.7463379,19.927708 + parent: 7020 + - uid: 7271 components: - type: Transform - pos: 4.5,3.5 - parent: 6631 - - uid: 6711 + rot: -1.5707963267948966 rad + pos: -16.410126,28.642231 + parent: 7020 + - uid: 7272 components: - type: Transform - pos: 3.5,6.5 - parent: 6631 - - uid: 6712 + rot: 1.5707963267948966 rad + pos: -18.572235,28.652649 + parent: 7020 +- proto: ChairMeat + entities: + - uid: 1701 components: - type: Transform - pos: 2.5,9.5 - parent: 6631 - - uid: 6713 + pos: -23.290197,-6.3942575 + parent: 2 + - uid: 1702 components: - type: Transform - pos: -1.5,9.5 - parent: 6631 - - uid: 6714 + rot: -1.5707963267948966 rad + pos: -23.754168,-7.248424 + parent: 2 + - uid: 5788 components: - type: Transform - pos: -2.5,6.5 - parent: 6631 - - uid: 6715 + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 5438 + - uid: 5789 components: - type: Transform - pos: -0.5,-1.5 - parent: 6631 -- proto: CableApcStack + pos: 9.5,-3.5 + parent: 5438 +- proto: ChairOfficeDark entities: - - uid: 982 + - uid: 1703 components: - type: Transform - pos: 19.568346,3.5169168 + pos: -20.497835,6.383761 parent: 2 - - uid: 983 + - uid: 1704 components: - type: Transform - pos: 19.568346,3.5169168 + pos: 19.5,-6.5 parent: 2 - - uid: 984 + - uid: 1705 components: - type: Transform - pos: 19.568346,3.5169168 + pos: 13.5,8.5 parent: 2 -- proto: CableApcStack10 - entities: - - uid: 985 + - uid: 1706 components: - type: Transform - pos: 23.57246,-7.552832 + rot: 3.141592653589793 rad + pos: 16.5,12.5 parent: 2 - - uid: 5599 + - uid: 1707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5037556,-10.556297 - parent: 5384 - - uid: 5600 + pos: 20.5,9.5 + parent: 2 + - uid: 1708 components: - type: Transform - pos: 14.500424,-3.208404 - parent: 5384 -- proto: CableHV - entities: - - uid: 986 + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 + - uid: 1709 components: - type: Transform - pos: -8.5,18.5 + pos: -8.5,6.5 parent: 2 - - uid: 987 + - uid: 1710 components: - type: Transform - pos: -11.5,-9.5 + rot: 1.5707963267948966 rad + pos: -19.38485,11.017952 parent: 2 - - uid: 988 + - uid: 1711 components: - type: Transform - pos: 33.5,2.5 + rot: 3.141592653589793 rad + pos: 21.5,-4.5 parent: 2 - - uid: 989 + - uid: 1712 components: - type: Transform - pos: 34.5,2.5 + pos: -8.5,18.5 parent: 2 - - uid: 990 + - uid: 1713 components: - type: Transform - pos: -27.5,2.5 + rot: 3.141592653589793 rad + pos: 12.517141,13.474756 parent: 2 - - uid: 991 + - uid: 5790 components: - type: Transform - pos: 35.5,2.5 - parent: 2 - - uid: 992 + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 5438 + - uid: 5791 components: - type: Transform - pos: -11.5,-8.5 - parent: 2 - - uid: 993 + rot: -1.5707963267948966 rad + pos: 3.8918304,10.5524 + parent: 5438 + - uid: 6821 components: - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 994 + rot: 3.141592653589793 rad + pos: -0.4814453,9.717406 + parent: 6685 + - uid: 7273 components: - type: Transform - pos: 13.5,-0.5 - parent: 2 - - uid: 995 + pos: 0.5140686,22.646458 + parent: 7020 +- proto: ChairOfficeLight + entities: + - uid: 1714 components: - type: Transform - pos: 30.5,0.5 + pos: 3.5,8.5 parent: 2 - - uid: 996 + - uid: 1715 components: - type: Transform - pos: 30.5,-0.5 + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 parent: 2 - - uid: 997 +- proto: ChairPilotSeat + entities: + - uid: 6822 components: - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 998 + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 6685 + - uid: 7274 components: - type: Transform - pos: 25.5,2.5 - parent: 2 - - uid: 999 + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 7020 + - uid: 8307 components: - type: Transform - pos: 25.5,2.5 - parent: 2 - - uid: 1000 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 8267 +- proto: ChairWood + entities: + - uid: 1716 components: - type: Transform - pos: 24.5,2.5 + rot: 3.141592653589793 rad + pos: 16.5,16.5 parent: 2 - - uid: 1001 + - uid: 1717 components: - type: Transform - pos: 23.5,2.5 + pos: -15.5,10.5 parent: 2 - - uid: 1002 + - uid: 1718 components: - type: Transform - pos: 22.5,2.5 + rot: 1.5707963267948966 rad + pos: -17.5,17.5 parent: 2 - - uid: 1003 + - uid: 1719 components: - type: Transform - pos: 21.5,2.5 + rot: 3.141592653589793 rad + pos: 17.5,16.5 parent: 2 - - uid: 1004 + - uid: 1720 components: - type: Transform - pos: 20.5,2.5 + rot: 3.141592653589793 rad + pos: -19.379978,23.632008 parent: 2 - - uid: 1005 + - uid: 1721 components: - type: Transform - pos: 19.5,2.5 + pos: -19.395603,25.507008 parent: 2 - - uid: 1006 + - uid: 1722 components: - type: Transform - pos: 18.5,2.5 + pos: -27.5,30.5 parent: 2 - - uid: 1007 + - uid: 1723 components: - type: Transform - pos: 17.5,2.5 + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 parent: 2 - - uid: 1008 + - uid: 7275 components: - type: Transform - pos: 16.5,2.5 - parent: 2 - - uid: 1009 + rot: 1.5707963267948966 rad + pos: -3.3659973,31.582397 + parent: 7020 + - uid: 7276 components: - type: Transform - pos: 15.5,2.5 - parent: 2 - - uid: 1010 + rot: -1.5707963267948966 rad + pos: -1.5847473,31.332397 + parent: 7020 +- proto: CheapLighter + entities: + - uid: 1724 components: - type: Transform - pos: 14.5,2.5 + pos: -28.816736,-5.9759064 parent: 2 - - uid: 1011 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 1725 components: - type: Transform - pos: 13.5,2.5 + pos: -7.7343435,-3.0232773 parent: 2 - - uid: 1012 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 1726 components: - type: Transform - pos: 12.5,2.5 + pos: 19.47009,-16.0625 parent: 2 - - uid: 1013 +- proto: ChemistryHotplate + entities: + - uid: 1727 components: - type: Transform - pos: 11.5,2.5 + pos: 1.5,7.5 parent: 2 - - uid: 1014 +- proto: ChemMaster + entities: + - uid: 1728 components: - type: Transform - pos: 10.5,2.5 + pos: 2.5,7.5 parent: 2 - - uid: 1015 + - uid: 6823 components: - type: Transform - pos: 9.5,2.5 - parent: 2 - - uid: 1016 + pos: -1.5,7.5 + parent: 6685 +- proto: CigarCase + entities: + - uid: 1729 components: - type: Transform - pos: 8.5,2.5 + rot: -1.5707963267948966 rad + pos: -14.5,13.5 parent: 2 - - uid: 1017 +- proto: CigaretteSpent + entities: + - uid: 1730 components: - type: Transform - pos: 18.5,3.5 + pos: -19.448488,11.595508 parent: 2 - - uid: 1018 + - uid: 1731 components: - type: Transform - pos: -28.5,5.5 + rot: 3.141592653589793 rad + pos: -19.528736,11.330075 parent: 2 - - uid: 1019 + - uid: 1732 components: - type: Transform - pos: -11.5,-7.5 + pos: -19.392933,11.521434 parent: 2 - - uid: 1020 + - uid: 1733 components: - type: Transform - pos: -10.5,-7.5 + rot: 1.5707963267948966 rad + pos: -19.880587,11.385632 parent: 2 - - uid: 1021 + - uid: 1734 components: - type: Transform - pos: -9.5,-7.5 + rot: -1.5707963267948966 rad + pos: -19.04108,11.453532 parent: 2 - - uid: 1022 + - uid: 1735 components: - type: Transform - pos: -8.5,-7.5 + pos: -19.25713,11.77452 parent: 2 - - uid: 1023 + - uid: 5792 components: - type: Transform - pos: -7.5,-7.5 - parent: 2 - - uid: 1024 + pos: 11.628232,-3.741358 + parent: 5438 + - uid: 5793 components: - type: Transform - pos: -6.5,-7.5 - parent: 2 - - uid: 1025 + pos: 11.794899,-3.658025 + parent: 5438 + - uid: 5794 components: - type: Transform - pos: -5.5,-7.5 - parent: 2 - - uid: 1026 + rot: -1.5707963267948966 rad + pos: 11.656011,-3.8246915 + parent: 5438 + - uid: 5795 components: - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 1027 + rot: 1.5707963267948966 rad + pos: 11.697678,-3.6858027 + parent: 5438 + - uid: 5796 components: - type: Transform - pos: -3.5,-7.5 - parent: 2 - - uid: 1028 + pos: 11.753232,-3.7969143 + parent: 5438 + - uid: 5797 components: - type: Transform - pos: -2.5,-7.5 - parent: 2 - - uid: 1029 + pos: 11.281011,-3.764356 + parent: 5438 + - uid: 5798 components: - type: Transform - pos: -1.5,-7.5 - parent: 2 - - uid: 1030 + pos: 9.572304,-4.1252627 + parent: 5438 +- proto: CigaretteSyndicate + entities: + - uid: 1736 components: - type: Transform - pos: -0.5,-7.5 + rot: 1.5707963267948966 rad + pos: -28.427847,-5.6286836 parent: 2 - - uid: 1031 + - uid: 1737 components: - type: Transform - pos: 0.5,-7.5 + rot: 1.5707963267948966 rad + pos: -28.302847,-5.642573 parent: 2 - - uid: 1032 + - uid: 7277 components: - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 1033 + pos: -20.354218,27.428867 + parent: 7020 +- proto: CigarGold + entities: + - uid: 1739 components: - type: Transform - pos: 2.5,-7.5 - parent: 2 - - uid: 1034 + parent: 1738 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigCartonRed + entities: + - uid: 1744 components: - type: Transform - pos: 3.5,-7.5 + pos: 9.492766,0.5854777 parent: 2 - - uid: 1035 +- proto: CigPackSyndicate + entities: + - uid: 1745 components: - type: Transform - pos: 4.5,-7.5 + rot: -1.5707963267948966 rad + pos: -19.617434,11.728224 parent: 2 - - uid: 1036 +- proto: CircuitImprinter + entities: + - uid: 1746 components: - type: Transform - pos: 5.5,-7.5 + pos: 16.5,-6.5 parent: 2 - - uid: 1037 +- proto: CleanerDispenser + entities: + - uid: 1747 components: - type: Transform - pos: 6.5,-7.5 + rot: 3.141592653589793 rad + pos: -19.5,1.5 parent: 2 - - uid: 1038 +- proto: ClockworkGrille + entities: + - uid: 6824 components: - type: Transform - pos: 7.5,-7.5 - parent: 2 - - uid: 1039 + pos: -1.5,10.5 + parent: 6685 + - uid: 6825 components: - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 1040 + pos: -2.5,7.5 + parent: 6685 + - uid: 6826 components: - type: Transform - pos: 8.5,-6.5 - parent: 2 - - uid: 1041 + pos: 2.5,10.5 + parent: 6685 + - uid: 6827 components: - type: Transform - pos: 10.5,-6.5 - parent: 2 - - uid: 1042 + pos: -3.5,4.5 + parent: 6685 + - uid: 6828 components: - type: Transform - pos: 9.5,-6.5 - parent: 2 - - uid: 1043 + pos: 4.5,4.5 + parent: 6685 + - uid: 6829 components: - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 1044 + pos: 3.5,7.5 + parent: 6685 + - uid: 6830 components: - type: Transform - pos: 11.5,-5.5 - parent: 2 - - uid: 1045 + pos: -0.5,13.5 + parent: 6685 + - uid: 6831 components: - type: Transform - pos: 11.5,-4.5 - parent: 2 - - uid: 1046 + pos: -0.5,14.5 + parent: 6685 + - uid: 6832 components: - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 1047 + pos: 0.5,14.5 + parent: 6685 + - uid: 6833 components: - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 1048 + pos: 1.5,14.5 + parent: 6685 + - uid: 6834 components: - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 1049 + pos: 1.5,13.5 + parent: 6685 + - uid: 7278 components: - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 1050 + rot: -1.5707963267948966 rad + pos: 16.5,26.5 + parent: 7020 + - uid: 7279 components: - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 1051 + rot: -1.5707963267948966 rad + pos: 16.5,25.5 + parent: 7020 +- proto: ClosetBombFilled + entities: + - uid: 1748 components: - type: Transform - pos: 11.5,1.5 + pos: 20.5,-9.5 parent: 2 - - uid: 1052 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1749 components: - type: Transform - pos: 17.5,3.5 + pos: -25.5,-2.5 parent: 2 - - uid: 1053 + - uid: 7280 components: - type: Transform - pos: 17.5,4.5 - parent: 2 - - uid: 1054 + pos: -17.302734,20.522278 + parent: 7020 +- proto: ClosetFireFilled + entities: + - uid: 1750 components: - type: Transform - pos: 17.5,5.5 + pos: -14.5,-20.5 parent: 2 - - uid: 1055 + - uid: 1751 components: - type: Transform - pos: 17.5,6.5 + pos: -1.5,-23.5 parent: 2 - - uid: 1056 +- proto: ClosetL3ScienceFilled + entities: + - uid: 1752 components: - type: Transform - pos: 17.5,7.5 + pos: 19.5,-9.5 parent: 2 - - uid: 1057 +- proto: ClosetMaintenance + entities: + - uid: 1753 components: - type: Transform - pos: 17.5,8.5 + pos: 9.5,42.5 parent: 2 - - uid: 1058 + - uid: 1754 components: - type: Transform - pos: 17.5,9.5 + pos: 11.5,41.5 parent: 2 - - uid: 1059 + - uid: 1755 components: - type: Transform - pos: 17.5,10.5 + pos: 10.5,40.5 parent: 2 - - uid: 1060 + - uid: 1756 components: - type: Transform - pos: 18.5,10.5 + pos: 9.5,38.5 parent: 2 - - uid: 1061 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1762 + - 1763 + - 1764 + - 1765 + - 1766 + - 1757 + - 1758 + - 1759 + - 1760 + - 1761 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1767 components: - type: Transform - pos: 19.5,10.5 + pos: -14.5,-19.5 parent: 2 - - uid: 1062 + - uid: 1768 components: - type: Transform - pos: 20.5,10.5 + pos: 1.5,-23.5 parent: 2 - - uid: 1063 + - uid: 7281 components: - type: Transform - pos: 21.5,10.5 - parent: 2 - - uid: 1064 + pos: -4.2172546,14.517551 + parent: 7020 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7284 + - 7282 + - 7283 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetRadiationSuitFilled + entities: + - uid: 1769 components: - type: Transform - pos: 22.5,10.5 + pos: 18.5,-9.5 parent: 2 - - uid: 1065 + - uid: 1770 components: - type: Transform - pos: 23.5,10.5 + pos: 29.5,-0.5 parent: 2 - - uid: 1066 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1771 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetSteelBase + entities: + - uid: 7082 components: - type: Transform - pos: 24.5,10.5 - parent: 2 - - uid: 1067 + pos: 7.677246,19.505535 + parent: 7020 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7083 + - 7088 + - 7087 + - 7085 + - 7090 + - 7089 + - 7086 + - 7084 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetWall + entities: + - uid: 8308 components: - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 1068 + pos: -1.5,1.5 + parent: 8267 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8309 + - 8312 + - 8310 + - 8311 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 1772 components: - type: Transform - pos: 24.5,8.5 + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 parent: 2 - - uid: 1069 + - uid: 1773 components: - type: Transform - pos: 24.5,9.5 + rot: 3.141592653589793 rad + pos: 5.5,-19.5 parent: 2 - - uid: 1070 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 1774 components: - type: Transform - pos: 16.5,10.5 + pos: -24.5,3.5 parent: 2 - - uid: 1071 +- proto: ClothingBackpack + entities: + - uid: 7286 components: - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 1072 + parent: 7285 + - type: Physics + canCollide: False +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 1775 components: - type: Transform - pos: 14.5,10.5 + pos: 23.427187,-7.249175 parent: 2 - - uid: 1073 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 1776 components: - type: Transform - pos: 13.5,10.5 + pos: -15.442857,1.210175 parent: 2 - - uid: 1074 +- proto: ClothingEyesBlindfold + entities: + - uid: 1777 components: - type: Transform - pos: 12.5,10.5 + pos: -14.679216,17.565767 parent: 2 - - uid: 1075 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 7084 components: - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 1076 + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 7085 components: - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 1077 + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 1778 components: - type: Transform - pos: 11.5,8.5 + pos: -15.43945,1.1719149 parent: 2 - - uid: 1078 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 5799 components: - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 1079 + pos: 13.186774,-6.6650424 + parent: 5438 +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 5800 components: - type: Transform - pos: 11.5,6.5 - parent: 2 - - uid: 1080 + pos: 13.855815,-3.0644848 + parent: 5438 +- proto: ClothingHandsGlovesJanitor + entities: + - uid: 1779 components: - type: Transform - pos: 11.5,5.5 + pos: -20.5,1.5 parent: 2 - - uid: 1081 +- proto: ClothingHeadHatBeretHoS + entities: + - uid: 12 components: - type: Transform - pos: 11.5,4.5 - parent: 2 - - uid: 1082 + parent: 3 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 13 + - type: InsideEntityStorage +- proto: ClothingHeadHatCapHoS + entities: + - uid: 17 components: + - type: MetaData + desc: Кажется эту фуражку носил какой-то Генри, и он явно был ГСБ! + name: фуражка Генри - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 1083 + parent: 3 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodWinterHOS + entities: + - uid: 7 components: - type: Transform - pos: 8.5,5.5 - parent: 2 - - uid: 1084 + parent: 4 + - type: AttachedClothing + attachedUid: 4 +- proto: ClothingHeadHatHoshat + entities: + - uid: 14 components: - type: Transform - pos: 8.5,4.5 - parent: 2 - - uid: 1085 + parent: 3 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 15 + - type: InsideEntityStorage +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 7086 components: - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 1086 + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatStrawHat + entities: + - uid: 1740 components: - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 1087 + parent: 1738 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWelding + entities: + - uid: 7291 components: - type: Transform - pos: 10.5,4.5 - parent: 2 - - uid: 1088 + parent: 7290 + - type: Physics + canCollide: False +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 7294 components: - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 1089 + parent: 7293 + - type: Physics + canCollide: False +- proto: ClothingHeadHatWitch1 + entities: + - uid: 7298 components: - type: Transform - pos: 6.5,5.5 - parent: 2 - - uid: 1090 + parent: 7297 + - type: Physics + canCollide: False +- proto: ClothingHeadHatYellowsoft + entities: + - uid: 7302 components: - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 1091 + parent: 7301 + - type: Physics + canCollide: False +- proto: ClothingHeadHelmetAncient + entities: + - uid: 5802 components: - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 1092 + parent: 5801 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetERTLeader + entities: + - uid: 6835 components: - type: Transform - pos: 3.5,5.5 - parent: 2 - - uid: 1093 + pos: 1.796875,10.761618 + parent: 6685 +- proto: ClothingHeadHelmetERTSecurity + entities: + - uid: 6836 components: - type: Transform - pos: 2.5,5.5 - parent: 2 - - uid: 1094 + pos: 3.2363281,4.803143 + parent: 6685 + - uid: 6837 components: - type: Transform - pos: 1.5,5.5 - parent: 2 - - uid: 1095 + pos: -2.6855469,4.787518 + parent: 6685 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 236 components: - type: Transform - pos: 0.5,5.5 - parent: 2 - - uid: 1096 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetPodWars + entities: + - uid: 5806 components: - type: Transform - pos: -0.5,5.5 - parent: 2 - - uid: 1097 + pos: 4.6011963,-0.3486328 + parent: 5438 +- proto: ClothingHeadHelmetRaid + entities: + - uid: 5807 components: - type: Transform - pos: -1.5,5.5 - parent: 2 - - uid: 1098 + pos: -0.118377686,0.45568848 + parent: 5438 +- proto: ClothingHeadPyjamaSyndicateBlack + entities: + - uid: 7059 components: - type: Transform - pos: -2.5,5.5 - parent: 2 - - uid: 1099 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 7060 components: - type: Transform - pos: -3.5,5.5 - parent: 2 - - uid: 1100 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBear + entities: + - uid: 1781 components: - type: Transform - pos: -4.5,5.5 - parent: 2 - - uid: 1101 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBee + entities: + - uid: 1782 components: - type: Transform - pos: -5.5,5.5 - parent: 2 - - uid: 1102 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7303 components: - type: Transform - pos: -5.5,4.5 - parent: 2 - - uid: 1103 + parent: 7301 + - type: Physics + canCollide: False +- proto: ClothingMaskFox + entities: + - uid: 1783 components: - type: Transform - pos: -5.5,3.5 - parent: 2 - - uid: 1104 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7299 components: - type: Transform - pos: -5.5,2.5 - parent: 2 - - uid: 1105 + parent: 7297 + - type: Physics + canCollide: False +- proto: ClothingMaskGasSyndicate + entities: + - uid: 1789 components: - type: Transform - pos: -5.5,1.5 + rot: -1.5707963267948966 rad + pos: -26.233402,-7.652699 parent: 2 - - uid: 1106 +- proto: ClothingMaskJackal + entities: + - uid: 1790 components: - type: Transform - pos: -5.5,0.5 + pos: -4.7166624,17.56398 parent: 2 - - uid: 1107 +- proto: ClothingMaskMime + entities: + - uid: 1791 components: - type: Transform - pos: -5.5,-0.5 + pos: -17.311483,-0.3427291 parent: 2 - - uid: 1108 +- proto: ClothingMaskMuzzle + entities: + - uid: 1792 components: - type: Transform - pos: -5.5,-1.5 + pos: -14.679216,17.826183 parent: 2 - - uid: 1109 + - uid: 1793 components: - type: Transform - pos: -5.5,-2.5 + rot: 1.5707963267948966 rad + pos: -4.2947874,17.47023 parent: 2 - - uid: 1110 +- proto: ClothingMaskRat + entities: + - uid: 1784 components: - type: Transform - pos: -5.5,-3.5 - parent: 2 - - uid: 1111 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskRaven + entities: + - uid: 1785 components: - type: Transform - pos: -5.5,-4.5 - parent: 2 - - uid: 1112 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7087 components: - type: Transform - pos: -5.5,-5.5 - parent: 2 - - uid: 1113 + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSadMime + entities: + - uid: 1794 components: - type: Transform - pos: -5.5,-6.5 + pos: -17.342733,-0.3427291 parent: 2 - - uid: 1114 +- proto: ClothingMaskScaredMime + entities: + - uid: 1795 components: - type: Transform - pos: -26.5,2.5 + pos: -17.358358,-0.3427291 parent: 2 - - uid: 1115 +- proto: ClothingMaskSexyMime + entities: + - uid: 1796 components: - type: Transform - pos: -11.5,-4.5 + pos: -17.342733,-0.3427291 parent: 2 - - uid: 1116 +- proto: ClothingMaskWeldingGas + entities: + - uid: 7287 components: - type: Transform - pos: -11.5,-5.5 - parent: 2 - - uid: 1117 + parent: 7285 + - type: Physics + canCollide: False +- proto: ClothingNeckCloakHos + entities: + - uid: 10 components: - type: Transform - pos: -11.5,-6.5 - parent: 2 - - uid: 1118 + parent: 3 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 11 + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedBlack + entities: + - uid: 7088 components: - type: Transform - pos: -11.5,4.5 - parent: 2 - - uid: 1119 + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedOrange + entities: + - uid: 7304 components: - type: Transform - pos: -10.5,4.5 - parent: 2 - - uid: 1120 + parent: 7301 + - type: Physics + canCollide: False +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 7306 components: - type: Transform - pos: -9.5,4.5 - parent: 2 - - uid: 1121 + pos: -22.516907,24.46994 + parent: 7020 +- proto: ClothingNeckSyndicakePin + entities: + - uid: 1797 components: - type: Transform - pos: -8.5,4.5 + pos: -28.539452,-5.9368467 parent: 2 - - uid: 1122 + - uid: 7061 components: - type: Transform - pos: -7.5,4.5 - parent: 2 - - uid: 1123 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7062 components: - type: Transform - pos: -6.5,4.5 - parent: 2 - - uid: 1124 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7063 components: - type: Transform - pos: -25.5,2.5 - parent: 2 - - uid: 1125 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckTieSci + entities: + - uid: 1798 components: - type: Transform - pos: -16.5,-2.5 + pos: 26.890278,-12.601395 parent: 2 - - uid: 1126 +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 7288 components: - type: Transform - pos: -11.5,3.5 + parent: 7285 + - type: Physics + canCollide: False +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 1799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.681165,21.664278 parent: 2 - - uid: 1127 + - uid: 1800 components: - type: Transform - pos: -1.5,6.5 + rot: 3.141592653589793 rad + pos: -11.587415,21.497612 parent: 2 - - uid: 1128 +- proto: ClothingOuterArmorHeavyGreen + entities: + - uid: 6838 components: - type: Transform - pos: -1.5,7.5 - parent: 2 - - uid: 1129 + pos: 1.3613281,10.347843 + parent: 6685 +- proto: ClothingOuterArmorHeavyRed + entities: + - uid: 6839 components: - type: Transform - pos: -1.5,8.5 - parent: 2 - - uid: 1130 + pos: -2.6542969,4.3634686 + parent: 6685 + - uid: 6840 components: - type: Transform - pos: -1.5,9.5 - parent: 2 - - uid: 1131 + pos: 3.2988281,4.3634686 + parent: 6685 +- proto: ClothingOuterArmorPodWars + entities: + - uid: 5808 components: + - type: MetaData + name: тяжёлая броня Броненосец II - type: Transform - pos: -1.5,10.5 - parent: 2 - - uid: 1132 + pos: 4.5543213,-0.7392578 + parent: 5438 + - type: ClothingSpeedModifier + sprintModifier: 0.65 + walkModifier: 0.95 +- proto: ClothingOuterArmorReflective + entities: + - uid: 1801 components: - type: Transform - pos: -1.5,11.5 + pos: -12.624288,21.448252 parent: 2 - - uid: 1133 + - uid: 1802 components: - type: Transform - pos: -8.5,11.5 + pos: -12.738872,21.656586 parent: 2 - - uid: 1134 +- proto: ClothingOuterCoatExpensive + entities: + - uid: 1803 components: + - type: MetaData + desc: Кажется её носил сам Керн Грей! - type: Transform - pos: -7.5,11.5 + pos: 4.5549645,37.390812 parent: 2 - - uid: 1135 + - uid: 1804 components: + - type: MetaData + desc: Кажется её носил сам Тиффани Андразез! - type: Transform - pos: -6.5,11.5 + pos: -27.050194,-9.37217 parent: 2 - - uid: 1136 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 5803 components: - type: Transform - pos: -5.5,11.5 - parent: 2 - - uid: 1137 + parent: 5801 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 240 components: - type: Transform - pos: -4.5,11.5 - parent: 2 - - uid: 1138 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6841 components: - type: Transform - pos: -3.5,11.5 - parent: 2 - - uid: 1139 + pos: 4.267578,1.458277 + parent: 6685 + - uid: 6842 components: - type: Transform - pos: -2.5,11.5 - parent: 2 - - uid: 1140 + pos: 4.658203,1.442652 + parent: 6685 + - uid: 6843 components: - type: Transform - pos: -8.5,12.5 - parent: 2 - - uid: 1141 + pos: 4.470703,1.661402 + parent: 6685 +- proto: ClothingOuterPlagueSuit + entities: + - uid: 1786 components: - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 1142 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterPonchoClassic + entities: + - uid: 1741 components: - type: Transform - pos: -8.5,14.5 - parent: 2 - - uid: 1143 + parent: 1738 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRedRacoon + entities: + - uid: 1787 components: - type: Transform - pos: -13.5,-2.5 - parent: 2 - - uid: 1144 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitMonkey + entities: + - uid: 1788 components: - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 1145 + parent: 1780 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitWitchRobes + entities: + - uid: 7300 components: - type: Transform - pos: 7.5,7.5 - parent: 2 - - uid: 1146 + parent: 7297 + - type: Physics + canCollide: False +- proto: ClothingOuterVestHazard + entities: + - uid: 7307 components: - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 1147 + pos: 1.4588623,16.668957 + parent: 7020 + - uid: 7308 components: - type: Transform - pos: 7.5,9.5 - parent: 2 - - uid: 1148 + pos: 1.6567688,16.554375 + parent: 7020 + - uid: 7309 components: - type: Transform - pos: 7.5,10.5 - parent: 2 - - uid: 1149 + pos: -0.5723877,16.637707 + parent: 7020 + - uid: 7310 components: - type: Transform - pos: 7.5,11.5 - parent: 2 - - uid: 1150 + pos: -0.4265747,16.408543 + parent: 7020 +- proto: ClothingOuterWinterCoat + entities: + - uid: 7295 components: - type: Transform - pos: 7.5,12.5 - parent: 2 - - uid: 1151 + parent: 7293 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterHoS + entities: + - uid: 4 components: - type: Transform - pos: 7.5,13.5 - parent: 2 - - uid: 1152 + parent: 3 + - type: ToggleableClothing + clothingUid: 7 + actionEntity: 6 + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot + showEnts: False + occludes: True + ent: 7 + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6 + solution@food: !type:ContainerSlot + showEnts: False + occludes: True + ent: 5 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage +- proto: ClothingShoesBling + entities: + - uid: 1805 components: - type: Transform - pos: 7.5,14.5 + pos: 5.5,-0.5 parent: 2 - - uid: 1153 +- proto: ClothingShoesBootsLaceup + entities: + - uid: 5809 components: - type: Transform - pos: 6.5,14.5 - parent: 2 - - uid: 1154 + pos: 13.340893,-7.206709 + parent: 5438 +- proto: ClothingShoesBootsMag + entities: + - uid: 1806 components: - type: Transform - pos: 24.5,6.5 + pos: 20.38795,-7.506245 parent: 2 - - uid: 1155 + - uid: 1807 components: - type: Transform - pos: 8.5,-7.5 + pos: 7.666774,-16.19854 parent: 2 - - uid: 1156 + - uid: 1808 components: - type: Transform - pos: 8.5,-8.5 + pos: 7.427191,-16.365208 parent: 2 - - uid: 1157 + - uid: 1809 components: - type: Transform - pos: 8.5,-9.5 + pos: 7.698024,-16.490208 parent: 2 - - uid: 1158 +- proto: ClothingShoesBootsMagSyndie + entities: + - uid: 5810 components: - type: Transform - pos: 9.5,-9.5 - parent: 2 - - uid: 1159 + pos: -1.5,9.5 + parent: 5438 +- proto: ClothingShoesBootsSalvage + entities: + - uid: 5811 components: - type: Transform - pos: 10.5,-9.5 - parent: 2 - - uid: 1160 + pos: 10.381824,-4.2077317 + parent: 5438 +- proto: ClothingShoesBootsWork + entities: + - uid: 5812 components: - type: Transform - pos: 11.5,-9.5 - parent: 2 - - uid: 1161 + rot: -1.5707963267948966 rad + pos: 13.31538,-3.5293458 + parent: 5438 + - uid: 5813 components: - type: Transform - pos: 12.5,-9.5 - parent: 2 - - uid: 1162 + pos: 6.903199,-7.673198 + parent: 5438 +- proto: ClothingShoesColorBlack + entities: + - uid: 1811 components: - type: Transform - pos: 13.5,-9.5 - parent: 2 - - uid: 1163 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1812 components: - type: Transform - pos: 13.5,-8.5 - parent: 2 - - uid: 1164 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1813 components: - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 1165 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1814 components: - type: Transform - pos: 13.5,-2.5 - parent: 2 - - uid: 1166 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1815 components: - type: Transform - pos: 14.5,-2.5 - parent: 2 - - uid: 1167 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1816 components: - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 1168 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1817 components: - type: Transform - pos: 16.5,-2.5 - parent: 2 - - uid: 1169 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1818 components: - type: Transform - pos: 17.5,-2.5 - parent: 2 - - uid: 1170 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7089 components: - type: Transform - pos: 12.5,4.5 - parent: 2 - - uid: 1171 + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesCult + entities: + - uid: 5814 components: + - type: MetaData + desc: Ботинки Броненосец II, реликвия войн подов + name: ботинки Броненосец II - type: Transform - pos: 13.5,4.5 - parent: 2 - - uid: 1172 + pos: 4.5543213,-1.0673828 + parent: 5438 +- proto: ClothingShoesGaloshes + entities: + - uid: 1742 components: - type: Transform - pos: 14.5,4.5 - parent: 2 - - uid: 1173 + parent: 1738 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1827 components: - type: Transform - pos: 15.5,4.5 + pos: -19.628536,2.6641564 parent: 2 - - uid: 1174 +- proto: ClothingShoesTourist + entities: + - uid: 1828 components: - type: Transform - pos: 16.5,4.5 + pos: -13.506974,24.506996 parent: 2 - - uid: 1175 + - uid: 1829 components: - type: Transform - pos: 0.5,-6.5 + pos: -13.506974,24.303871 parent: 2 - - uid: 1176 +- proto: ClothingUniformJumpskirtOrangeStripedDress + entities: + - uid: 7305 components: - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 1177 + parent: 7301 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 1819 components: - type: Transform - pos: 0.5,-4.5 - parent: 2 - - uid: 1178 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1820 components: - type: Transform - pos: -0.5,-4.5 - parent: 2 - - uid: 1179 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1821 components: - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 1180 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1822 components: - type: Transform - pos: -0.5,-2.5 - parent: 2 - - uid: 1181 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAerostatic + entities: + - uid: 5815 components: - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 1182 + rot: -1.5707963267948966 rad + pos: 13.661739,-3.5450866 + parent: 5438 +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 7289 components: - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 1183 + parent: 7285 + - type: Physics + canCollide: False + - uid: 7292 components: - type: Transform - pos: -0.5,0.5 - parent: 2 - - uid: 1184 + parent: 7290 + - type: Physics + canCollide: False + - uid: 7296 components: - type: Transform - pos: 0.5,0.5 - parent: 2 - - uid: 1185 + parent: 7293 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitColorLightBrown + entities: + - uid: 1743 components: - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 1186 + parent: 1738 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 5816 components: - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 1187 + rot: -1.5707963267948966 rad + pos: 13.756218,-6.9428196 + parent: 5438 +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 5817 components: - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 1188 + rot: 1.5707963267948966 rad + pos: 6.544435,-7.607968 + parent: 5438 +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 1830 components: - type: Transform - pos: 3.5,1.5 + pos: -13.006974,24.460121 parent: 2 - - uid: 1189 +- proto: ClothingUniformJumpsuitHawaiBlue + entities: + - uid: 1831 components: - type: Transform - pos: -22.5,24.5 + pos: -12.772599,24.663246 parent: 2 - - uid: 1190 +- proto: ClothingUniformJumpsuitHawaiRed + entities: + - uid: 1832 components: - type: Transform - pos: -7.5,18.5 + pos: -12.585099,24.413246 parent: 2 - - uid: 1191 +- proto: ClothingUniformJumpsuitHawaiYellow + entities: + - uid: 1833 components: - type: Transform - pos: -7.5,19.5 + pos: -12.319474,24.694496 parent: 2 - - uid: 1192 +- proto: ClothingUniformJumpsuitHosFormal + entities: + - uid: 8 components: - type: Transform - pos: -4.5,17.5 - parent: 2 - - uid: 1193 + parent: 3 + - type: SuitSensor + mode: SensorBinary + - type: DeviceNetwork + address: 4F5B-785D + transmitFrequency: 1262 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 9 + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLoungewear + entities: + - uid: 5818 components: - type: Transform - pos: -23.5,2.5 - parent: 2 - - uid: 1194 + pos: 9.544706,-3.4584973 + parent: 5438 +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 7090 components: - type: Transform - pos: -22.5,2.5 - parent: 2 - - uid: 1195 + parent: 7082 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 1823 components: - type: Transform - pos: 28.5,-1.5 - parent: 2 - - uid: 1196 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1824 components: - type: Transform - pos: 28.5,-0.5 - parent: 2 - - uid: 1197 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1825 components: - type: Transform - pos: 29.5,2.5 - parent: 2 - - uid: 1198 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1826 components: - type: Transform - pos: -22.5,25.5 - parent: 2 - - uid: 1199 + parent: 1810 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack + entities: + - uid: 7064 + components: + - type: Transform + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 7065 components: - type: Transform - pos: -23.5,24.5 - parent: 2 - - uid: 1200 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClownRecorder + entities: + - uid: 1834 components: - type: Transform - pos: 29.5,-0.5 + pos: -17.175377,6.5738945 parent: 2 - - uid: 1201 +- proto: Cobweb1 + entities: + - uid: 1835 components: - type: Transform - pos: 27.5,2.5 + pos: -30.5,31.5 parent: 2 - - uid: 1202 + - uid: 1836 components: - type: Transform - pos: 28.5,-3.5 + rot: 3.141592653589793 rad + pos: -26.5,6.5 parent: 2 - - uid: 1203 + - uid: 1837 components: - type: Transform - pos: 28.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,5.5 parent: 2 - - uid: 1204 + - uid: 1838 components: - type: Transform - pos: 30.5,-3.5 + pos: -26.5,4.5 parent: 2 - - uid: 1205 + - uid: 1839 components: - type: Transform - pos: 30.5,-4.5 + pos: -30.5,24.5 parent: 2 - - uid: 1206 + - uid: 1840 components: - type: Transform - pos: 30.5,-2.5 + rot: 3.141592653589793 rad + pos: -29.5,21.5 parent: 2 - - uid: 1207 + - uid: 1841 components: - type: Transform - pos: 30.5,1.5 + pos: -27.5,17.5 parent: 2 - - uid: 1208 + - uid: 1842 components: - type: Transform - pos: 30.5,2.5 + rot: -1.5707963267948966 rad + pos: -29.5,17.5 parent: 2 - - uid: 1209 + - uid: 1843 components: - type: Transform - pos: 29.5,0.5 + pos: -24.5,-6.5 parent: 2 - - uid: 1210 + - uid: 1844 components: - type: Transform - pos: 29.5,-3.5 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 2 - - uid: 1211 + - uid: 1845 components: - type: Transform - pos: 26.5,2.5 + rot: -1.5707963267948966 rad + pos: -19.5,25.5 parent: 2 - - uid: 1212 + - uid: 1846 components: - type: Transform - pos: -22.5,1.5 + pos: -5.5,5.5 parent: 2 - - uid: 1213 + - uid: 1847 components: - type: Transform - pos: -20.5,-0.5 + rot: -1.5707963267948966 rad + pos: -19.5,20.5 parent: 2 - - uid: 1214 + - uid: 1848 components: - type: Transform - pos: -22.5,-0.5 + rot: 3.141592653589793 rad + pos: -15.5,23.5 parent: 2 - - uid: 1215 + - uid: 1849 components: - type: Transform - pos: -22.5,0.5 + rot: 3.141592653589793 rad + pos: -16.5,22.5 parent: 2 - - uid: 1216 + - uid: 1850 components: - type: Transform - pos: -20.5,-1.5 + rot: 3.141592653589793 rad + pos: -28.5,22.5 parent: 2 - - uid: 1217 + - uid: 1851 components: - type: Transform - pos: -21.5,-0.5 + rot: 3.141592653589793 rad + pos: -3.5,25.5 parent: 2 - - uid: 1218 + - uid: 1852 components: - type: Transform - pos: -19.5,-1.5 + rot: -1.5707963267948966 rad + pos: 2.5,21.5 parent: 2 - - uid: 1219 + - uid: 1853 components: - type: Transform - pos: -19.5,-2.5 + pos: 19.5,3.5 parent: 2 - - uid: 1220 + - uid: 1854 components: - type: Transform - pos: -18.5,-2.5 + pos: 21.5,-1.5 parent: 2 - - uid: 1221 + - uid: 1855 components: - type: Transform - pos: -17.5,-2.5 + pos: -28.5,-0.5 parent: 2 - - uid: 1222 + - uid: 1856 components: - type: Transform - pos: -24.5,2.5 + pos: 15.5,17.5 parent: 2 - - uid: 1223 + - uid: 1857 components: - type: Transform - pos: -14.5,-2.5 + rot: -1.5707963267948966 rad + pos: 3.5,15.5 parent: 2 - - uid: 1224 + - uid: 1858 components: - type: Transform - pos: -15.5,-2.5 + pos: 10.5,-8.5 parent: 2 - - uid: 1225 + - uid: 7311 components: - type: Transform - pos: -8.5,19.5 - parent: 2 - - uid: 1226 + pos: -9.5,21.5 + parent: 7020 + - uid: 7312 components: - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 1227 + pos: -6.5,21.5 + parent: 7020 + - uid: 7313 components: - type: Transform - pos: -3.5,16.5 - parent: 2 - - uid: 1228 + rot: -1.5707963267948966 rad + pos: -8.5,21.5 + parent: 7020 + - uid: 7314 components: - type: Transform - pos: -1.5,20.5 - parent: 2 - - uid: 1229 + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 7020 + - uid: 7315 components: - type: Transform - pos: -4.5,20.5 - parent: 2 - - uid: 1230 + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 7020 + - uid: 7316 components: - type: Transform - pos: -4.5,19.5 - parent: 2 - - uid: 1231 + rot: 3.141592653589793 rad + pos: -8.5,21.5 + parent: 7020 +- proto: Cobweb2 + entities: + - uid: 1859 components: - type: Transform - pos: -2.5,20.5 + pos: 17.5,5.5 parent: 2 - - uid: 1232 + - uid: 1860 components: - type: Transform - pos: -4.5,16.5 + rot: 3.141592653589793 rad + pos: -21.5,25.5 parent: 2 - - uid: 1233 + - uid: 1861 components: - type: Transform - pos: -4.5,18.5 + pos: -33.5,23.5 parent: 2 - - uid: 1234 + - uid: 1862 components: - type: Transform - pos: 32.5,2.5 + pos: -14.5,7.5 parent: 2 - - uid: 1235 + - uid: 1863 components: - type: Transform - pos: -11.5,-3.5 + rot: 1.5707963267948966 rad + pos: -25.5,5.5 parent: 2 - - uid: 1236 + - uid: 1864 components: - type: Transform - pos: -12.5,-3.5 + rot: -1.5707963267948966 rad + pos: -19.5,21.5 parent: 2 - - uid: 1237 + - uid: 1865 components: - type: Transform - pos: -9.5,22.5 + pos: -16.5,21.5 parent: 2 - - uid: 1238 + - uid: 1866 components: - type: Transform - pos: 0.5,20.5 + pos: -20.5,26.5 parent: 2 - - uid: 1239 + - uid: 1867 components: - type: Transform - pos: -8.5,16.5 + rot: 3.141592653589793 rad + pos: -27.5,22.5 parent: 2 - - uid: 1240 + - uid: 1868 components: - type: Transform - pos: -8.5,17.5 + rot: 3.141592653589793 rad + pos: -1.5,25.5 parent: 2 - - uid: 1241 + - uid: 1869 components: - type: Transform - pos: -6.5,15.5 + pos: 26.5,-1.5 parent: 2 - - uid: 1242 + - uid: 1870 components: - type: Transform - pos: 29.5,-2.5 + rot: 1.5707963267948966 rad + pos: 10.5,14.5 parent: 2 - - uid: 1243 + - uid: 7317 components: - type: Transform - pos: -4.5,15.5 - parent: 2 - - uid: 1244 + pos: -5.5,21.5 + parent: 7020 + - uid: 7318 components: - type: Transform - pos: 28.5,-4.5 - parent: 2 - - uid: 1245 + rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 7020 +- proto: ComfyChair + entities: + - uid: 1871 components: - type: Transform - pos: 29.5,-4.5 + pos: 8.5,9.5 parent: 2 - - uid: 1246 + - uid: 1872 components: - type: Transform - pos: -8.5,15.5 + rot: 3.141592653589793 rad + pos: 8.5,7.5 parent: 2 - - uid: 1247 + - uid: 1873 components: - type: Transform - pos: 4.5,19.5 + pos: -11.5,9.5 parent: 2 - - uid: 1248 + - uid: 1874 components: - type: Transform - pos: -8.5,21.5 + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 - - uid: 1249 + - uid: 1875 components: - type: Transform - pos: 2.5,20.5 + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 parent: 2 - - uid: 1250 +- proto: ComputerAnalysisConsole + entities: + - uid: 1876 components: - type: Transform - pos: 4.5,20.5 + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 parent: 2 - - uid: 1251 + - uid: 1877 components: - type: Transform - pos: 3.5,20.5 + pos: 21.5,-3.5 parent: 2 - - uid: 1252 + - type: DeviceLinkSource + linkedPorts: + 3314: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerCargoBounty + entities: + - uid: 1878 components: - type: Transform - pos: 1.5,20.5 + pos: 15.5,13.5 parent: 2 - - uid: 1253 +- proto: ComputerCargoOrders + entities: + - uid: 1879 components: - type: Transform - pos: -3.5,20.5 + pos: 10.5,11.5 parent: 2 - - uid: 1254 + - uid: 1880 components: - type: Transform - pos: -5.5,15.5 + rot: 3.141592653589793 rad + pos: 13.5,7.5 parent: 2 - - uid: 1255 +- proto: ComputerComms + entities: + - uid: 1881 components: - type: Transform - pos: -7.5,15.5 + pos: -3.5,1.5 parent: 2 - - uid: 1256 + - uid: 1882 components: - type: Transform - pos: -0.5,20.5 + pos: 0.5,2.5 parent: 2 - - uid: 1257 +- proto: ComputerCriminalRecords + entities: + - uid: 1883 components: - type: Transform - pos: -28.5,3.5 + rot: 3.141592653589793 rad + pos: -15.5,9.5 parent: 2 - - uid: 1258 +- proto: ComputerFrame + entities: + - uid: 7319 components: - type: Transform - pos: -28.5,4.5 - parent: 2 - - uid: 1259 + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 7020 +- proto: ComputerId + entities: + - uid: 1884 components: - type: Transform - pos: -9.5,21.5 + pos: 1.5,2.5 parent: 2 - - uid: 1260 + - uid: 1885 components: - type: Transform - pos: -8.5,20.5 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 parent: 2 - - uid: 1261 +- proto: ComputerMassMedia + entities: + - uid: 1886 components: - type: Transform - pos: -28.5,2.5 + pos: -9.5,1.5 parent: 2 - - uid: 1262 +- proto: ComputerPowerMonitoring + entities: + - uid: 1887 components: - type: Transform - pos: 31.5,2.5 + pos: 13.5,4.5 parent: 2 - - uid: 1263 + - uid: 5819 components: - type: Transform - pos: -49.5,22.5 - parent: 2 - - uid: 1264 + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 5438 + - uid: 5820 components: - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 1265 + pos: -1.5,-6.5 + parent: 5438 +- proto: ComputerRadar + entities: + - uid: 1888 components: - type: Transform - pos: -13.5,-3.5 + rot: -1.5707963267948966 rad + pos: 2.5,1.5 parent: 2 - - uid: 1266 + - uid: 1889 components: - type: Transform - pos: -11.5,2.5 + rot: 3.141592653589793 rad + pos: -27.5,-7.5 parent: 2 - - uid: 1267 + - uid: 1890 components: - type: Transform - pos: 11.5,43.5 + rot: 3.141592653589793 rad + pos: -20.5,5.5 parent: 2 - - uid: 1268 + - uid: 5821 components: - type: Transform - pos: 11.5,42.5 - parent: 2 - - uid: 1269 + pos: -8.5,0.5 + parent: 5438 + - uid: 5822 components: - type: Transform - pos: 10.5,42.5 - parent: 2 - - uid: 1270 + rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 5438 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 1891 components: - type: Transform - pos: -6.5,18.5 + rot: 3.141592653589793 rad + pos: 18.5,-7.5 parent: 2 - - uid: 1271 + - uid: 1892 components: - type: Transform - pos: -6.5,19.5 + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 parent: 2 - - uid: 1272 +- proto: ComputerRoboticsControl + entities: + - uid: 1893 components: - type: Transform - pos: -5.5,19.5 + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 parent: 2 - - uid: 1273 +- proto: ComputerSalvageExpedition + entities: + - uid: 1894 components: - type: Transform - pos: -5.5,18.5 + rot: 3.141592653589793 rad + pos: 19.5,8.5 parent: 2 - - uid: 5601 +- proto: ComputerShuttle + entities: + - uid: 6844 components: - type: Transform - pos: -4.5,7.5 - parent: 5384 - - uid: 5602 + pos: 0.5,13.5 + parent: 6685 + - uid: 8313 components: - type: Transform - pos: -4.5,6.5 - parent: 5384 - - uid: 5603 + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 8267 +- proto: ComputerShuttleCargo + entities: + - uid: 1895 components: - type: Transform - pos: -3.5,7.5 - parent: 5384 - - uid: 5604 + pos: 16.5,13.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 1896 components: - type: Transform - pos: -3.5,6.5 - parent: 5384 - - uid: 5605 + rot: 1.5707963267948966 rad + pos: -29.5,9.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 1897 components: - type: Transform - pos: -2.5,6.5 - parent: 5384 - - uid: 6716 + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1898 components: - type: Transform - pos: -0.5,-2.5 - parent: 6631 - - uid: 6717 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 1899 components: - type: Transform - pos: 1.5,-1.5 - parent: 6631 - - uid: 6718 + rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - uid: 1900 components: - type: Transform - pos: 1.5,-2.5 - parent: 6631 - - uid: 6719 + rot: -1.5707963267948966 rad + pos: -19.5,9.5 + parent: 2 + - uid: 1901 components: - type: Transform - pos: -0.5,-1.5 - parent: 6631 - - uid: 6720 + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 5823 components: - type: Transform - pos: 0.5,-2.5 - parent: 6631 -- proto: CableHVStack - entities: - - uid: 1274 + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 5438 + - uid: 5824 components: - type: Transform - pos: 19.498901,3.7391386 - parent: 2 - - uid: 1275 + pos: 4.5,11.5 + parent: 5438 + - uid: 5825 components: - type: Transform - pos: 19.498901,3.7391386 - parent: 2 - - uid: 1276 + pos: 0.5,-6.5 + parent: 5438 + - uid: 5826 components: - type: Transform - pos: 19.498901,3.7391386 - parent: 2 -- proto: CableMV + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 5438 +- proto: ComputerTechnologyDiskTerminal entities: - - uid: 1277 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 2 - - uid: 1278 + - uid: 1902 components: - type: Transform - pos: 21.5,-8.5 + pos: 13.5,-3.5 parent: 2 - - uid: 1279 +- proto: ComputerTelevision + entities: + - uid: 1903 components: - type: Transform - pos: -3.5,-8.5 + pos: 15.5,17.5 parent: 2 - - uid: 1280 + - uid: 1904 components: - type: Transform - pos: -11.5,-9.5 + rot: 3.141592653589793 rad + pos: -10.5,1.5 parent: 2 - - uid: 1281 +- proto: ConveyorBelt + entities: + - uid: 1905 components: - type: Transform - pos: -11.5,-8.5 + rot: -1.5707963267948966 rad + pos: -18.5,17.5 parent: 2 - - uid: 1282 + - uid: 1906 components: - type: Transform - pos: -10.5,18.5 + rot: -1.5707963267948966 rad + pos: 27.5,21.5 parent: 2 - - uid: 1283 + - uid: 1907 components: - type: Transform - pos: -21.5,23.5 + rot: -1.5707963267948966 rad + pos: 29.5,21.5 parent: 2 - - uid: 1284 + - uid: 1908 components: - type: Transform - pos: -11.5,2.5 + rot: 1.5707963267948966 rad + pos: 24.5,16.5 parent: 2 - - uid: 1285 + - uid: 1909 components: - type: Transform - pos: -11.5,3.5 + pos: 22.5,20.5 parent: 2 - - uid: 1286 + - uid: 1910 components: - type: Transform - pos: -10.5,20.5 + rot: -1.5707963267948966 rad + pos: 26.5,21.5 parent: 2 - - uid: 1287 + - uid: 1911 components: - type: Transform - pos: -10.5,17.5 + rot: -1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - - uid: 1288 + - uid: 1912 components: - type: Transform - pos: -10.5,16.5 + rot: -1.5707963267948966 rad + pos: 31.5,21.5 parent: 2 - - uid: 1289 + - uid: 1913 components: - type: Transform - pos: -9.5,21.5 + rot: -1.5707963267948966 rad + pos: 32.5,21.5 parent: 2 - - uid: 1290 + - uid: 1914 components: - type: Transform - pos: -10.5,21.5 + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 parent: 2 - - uid: 1291 + - uid: 1915 components: - type: Transform - pos: -22.5,24.5 + rot: -1.5707963267948966 rad + pos: -28.5,-3.5 parent: 2 - - uid: 1292 + - uid: 1916 components: - type: Transform - pos: -22.5,23.5 + rot: -1.5707963267948966 rad + pos: -29.5,-3.5 parent: 2 - - uid: 1293 + - uid: 1917 components: - type: Transform - pos: -22.5,25.5 + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 parent: 2 - - uid: 1294 + - uid: 1918 components: - type: Transform - pos: 16.5,-4.5 + rot: -1.5707963267948966 rad + pos: 23.5,21.5 parent: 2 - - uid: 1295 + - uid: 1919 components: - type: Transform - pos: 15.5,-4.5 + rot: -1.5707963267948966 rad + pos: 24.5,21.5 parent: 2 - - uid: 1296 + - uid: 1920 components: - type: Transform - pos: 14.5,-4.5 + rot: -1.5707963267948966 rad + pos: 25.5,21.5 parent: 2 - - uid: 1297 + - uid: 1921 components: - type: Transform - pos: 14.5,-3.5 + pos: 22.5,18.5 parent: 2 - - uid: 1298 + - uid: 1922 components: - type: Transform - pos: 14.5,-2.5 + pos: 22.5,19.5 parent: 2 - - uid: 1299 + - uid: 1923 components: - type: Transform - pos: 13.5,-2.5 + rot: -1.5707963267948966 rad + pos: -17.5,17.5 parent: 2 - - uid: 1300 + - uid: 1924 components: - type: Transform - pos: 13.5,-1.5 + rot: -1.5707963267948966 rad + pos: 30.5,21.5 parent: 2 - - uid: 1301 + - uid: 1925 components: - type: Transform - pos: 13.5,-0.5 + pos: 22.5,17.5 parent: 2 - - uid: 1302 + - uid: 1926 components: - type: Transform - pos: 18.5,3.5 + pos: 22.5,21.5 parent: 2 - - uid: 1303 + - uid: 1927 components: - type: Transform - pos: 18.5,4.5 + rot: -1.5707963267948966 rad + pos: -30.5,-3.5 parent: 2 - - uid: 1304 + - uid: 1928 components: - type: Transform - pos: -1.5,-0.5 + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 parent: 2 - - uid: 1305 + - uid: 1929 components: - type: Transform - pos: -0.5,-0.5 + rot: 1.5707963267948966 rad + pos: 23.5,16.5 parent: 2 - - uid: 1306 + - uid: 1930 components: - type: Transform - pos: -0.5,0.5 + rot: 1.5707963267948966 rad + pos: 22.5,16.5 parent: 2 - - uid: 1307 +- proto: CowCube + entities: + - uid: 1931 components: + - type: MetaData + desc: Кажется пока строили эту станцию она совсем засохла... - type: Transform - pos: 0.5,0.5 + pos: 6.568431,-14.727572 parent: 2 - - uid: 1308 +- proto: CrateArtifactContainer + entities: + - uid: 1932 components: - type: Transform - pos: 1.5,0.5 + pos: 25.5,-7.5 parent: 2 - - uid: 1309 + - uid: 1933 components: - type: Transform - pos: 1.5,1.5 + pos: 24.5,-7.5 parent: 2 - - uid: 1310 +- proto: CrateEngineeringCableBulk + entities: + - uid: 1934 components: - type: Transform - pos: 2.5,1.5 + pos: 19.5,3.5 parent: 2 - - uid: 1311 +- proto: CrateGenericSteel + entities: + - uid: 1780 components: - type: Transform - pos: 3.5,1.5 + pos: -30.5,31.5 parent: 2 - - uid: 1312 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1782 + - 1781 + - 1784 + - 1787 + - 1783 + - 1785 + - 1786 + - 1788 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1935 components: - type: Transform - pos: 13.5,-8.5 + pos: 24.5,16.5 parent: 2 - - uid: 1313 + - uid: 1936 components: - type: Transform - pos: 13.5,-9.5 + pos: 23.5,16.5 parent: 2 - - uid: 1314 + - uid: 1937 components: - type: Transform - pos: 13.5,-10.5 + pos: 22.5,8.5 parent: 2 - - uid: 1315 + - uid: 1938 components: - type: Transform - pos: 17.5,-2.5 + pos: 22.5,9.5 parent: 2 - - uid: 1316 + - uid: 7057 components: - type: Transform - pos: 18.5,-2.5 - parent: 2 - - uid: 1317 + pos: -0.5,22.5 + parent: 7020 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7065 + - 7076 + - 7071 + - 7072 + - 7058 + - 7074 + - 7059 + - 7073 + - 7070 + - 7069 + - 7063 + - 7062 + - 7061 + - 7064 + - 7077 + - 7060 + - 7075 + - 7068 + - 7067 + - 7066 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateLivestock + entities: + - uid: 1939 components: - type: Transform - pos: 19.5,-2.5 + pos: 27.5,13.5 parent: 2 - - uid: 1318 +- proto: CrateNPCHamlet + entities: + - uid: 1940 components: - type: Transform - pos: -7.5,-8.5 + pos: 1.5,-4.5 parent: 2 - - uid: 1319 +- proto: CrateStoneGrave + entities: + - uid: 1941 components: - type: Transform - pos: -6.5,-8.5 + pos: 13.5,20.5 parent: 2 - - uid: 1320 + - uid: 1942 components: - type: Transform - pos: -16.5,-2.5 + pos: 9.5,22.5 parent: 2 - - uid: 1321 + - uid: 1943 components: - type: Transform - pos: -15.5,-2.5 + pos: 12.5,22.5 parent: 2 - - uid: 1323 + - uid: 1944 components: - type: Transform - pos: -12.5,5.5 + pos: 9.5,20.5 parent: 2 - - uid: 1324 + - uid: 1945 components: - type: Transform - pos: -11.5,15.5 + pos: 12.5,20.5 parent: 2 - - uid: 1325 +- proto: CrateWeaponSecure + entities: + - uid: 264 components: + - type: MetaData + desc: Большой ящик патрон + name: ящик для патрон - type: Transform - pos: -10.5,15.5 + pos: -9.5,18.5 parent: 2 - - uid: 1326 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 267 + - 266 + - 268 + - 269 + - 271 + - 265 + - 272 + - 270 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateWoodenGrave + entities: + - uid: 1946 components: - type: Transform - pos: 4.5,14.5 + pos: 2.5,25.5 parent: 2 - - uid: 1327 +- proto: CrayonRainbow + entities: + - uid: 234 components: - type: Transform - pos: 5.5,14.5 - parent: 2 - - uid: 1328 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CrewMonitoringServer + entities: + - uid: 1947 components: - type: Transform - pos: 6.5,14.5 + pos: -3.5,-4.5 parent: 2 - - uid: 1329 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: CrowbarRed + entities: + - uid: 1948 components: - type: Transform - pos: 23.5,6.5 + pos: -29.18533,9.488508 parent: 2 - - uid: 1330 + - uid: 5827 components: - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 1331 + rot: 3.141592653589793 rad + pos: 13.485455,-1.4102929 + parent: 5438 + - uid: 7320 components: - type: Transform - pos: -17.5,-2.5 - parent: 2 - - uid: 1332 + pos: -7.471924,15.600887 + parent: 7020 +- proto: CryogenicSleepUnit + entities: + - uid: 1949 components: - type: Transform - pos: -18.5,-2.5 + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 parent: 2 - - uid: 1333 + - uid: 1950 components: - type: Transform - pos: -19.5,-2.5 + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 parent: 2 - - uid: 1334 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 1951 components: - type: Transform - pos: -14.5,-2.5 + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 parent: 2 - - uid: 1335 +- proto: CrystalBlue + entities: + - uid: 7321 components: - type: Transform - pos: -22.5,-0.5 - parent: 2 - - uid: 1336 + rot: -1.5707963267948966 rad + pos: -19.5,15.5 + parent: 7020 + - uid: 7322 components: - type: Transform - pos: -22.5,0.5 - parent: 2 - - uid: 1337 + rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 7020 + - uid: 7323 components: - type: Transform - pos: -22.5,1.5 - parent: 2 - - uid: 1338 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 7020 + - uid: 7324 components: - type: Transform - pos: -22.5,2.5 - parent: 2 - - uid: 1339 + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 7020 +- proto: CrystalCyan + entities: + - uid: 7325 components: - type: Transform - pos: -23.5,2.5 - parent: 2 - - uid: 1340 + rot: -1.5707963267948966 rad + pos: -15.5,18.5 + parent: 7020 + - uid: 7326 components: - type: Transform - pos: -24.5,2.5 - parent: 2 - - uid: 1341 + rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 7020 + - uid: 7327 components: - type: Transform - pos: -25.5,2.5 - parent: 2 - - uid: 1342 + rot: -1.5707963267948966 rad + pos: -17.5,31.5 + parent: 7020 + - uid: 7328 components: - type: Transform - pos: -26.5,2.5 - parent: 2 - - uid: 1343 + rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 7020 +- proto: CrystalGrey + entities: + - uid: 5828 components: - type: Transform - pos: -27.5,2.5 - parent: 2 - - uid: 1344 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 5438 + - uid: 5829 components: - type: Transform - pos: -28.5,2.5 - parent: 2 - - uid: 1345 + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 5438 + - uid: 5830 components: - type: Transform - pos: -28.5,3.5 - parent: 2 - - uid: 1346 + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 5438 +- proto: CurtainsBlueOpen + entities: + - uid: 1952 components: - type: Transform - pos: -28.5,4.5 + pos: 2.5,12.5 parent: 2 - - uid: 1347 +- proto: CurtainsOrange + entities: + - uid: 1953 components: - type: Transform - pos: -28.5,5.5 + pos: -22.5,26.5 parent: 2 - - uid: 1348 + - uid: 1954 components: - type: Transform - pos: -27.5,5.5 + pos: -47.5,17.5 parent: 2 - - uid: 1349 + - uid: 1955 components: - type: Transform - pos: -13.5,-2.5 + pos: 7.5,42.5 parent: 2 - - uid: 1350 +- proto: CurtainsOrangeOpen + entities: + - uid: 1956 components: - type: Transform - pos: 17.5,-4.5 + pos: -48.5,17.5 parent: 2 - - uid: 1351 +- proto: CurtainSpawner + entities: + - uid: 6845 components: - type: Transform - pos: 20.5,-4.5 - parent: 2 - - uid: 1352 + pos: 3.5,3.5 + parent: 6685 + - uid: 6846 components: - type: Transform - pos: 21.5,-4.5 - parent: 2 - - uid: 1353 + pos: -2.5,3.5 + parent: 6685 + - uid: 6847 components: - type: Transform - pos: 21.5,-5.5 - parent: 2 - - uid: 1354 + pos: 1.5,9.5 + parent: 6685 +- proto: DawInstrument + entities: + - uid: 7329 components: - type: Transform - pos: 21.5,-6.5 + pos: -7.5,24.5 + parent: 7020 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 1957 + components: + - type: Transform + pos: 25.5,-3.5 parent: 2 - - uid: 1355 + - type: WarpPoint + location: генератор аномалий +- proto: DefaultStationBeaconArmory + entities: + - uid: 1958 components: - type: Transform - pos: 21.5,-7.5 + pos: -10.5,19.5 parent: 2 - - uid: 1356 + - type: WarpPoint + location: оружейная +- proto: DefaultStationBeaconArrivals + entities: + - uid: 1959 components: - type: Transform - pos: 19.5,-4.5 + pos: -6.5,-8.5 parent: 2 - - uid: 1357 + - type: WarpPoint + location: прибытие +- proto: DefaultStationBeaconBar + entities: + - uid: 1960 components: - type: Transform - pos: 19.5,-3.5 + pos: 3.5,-12.5 parent: 2 - - uid: 1358 + - type: WarpPoint + location: бар +- proto: DefaultStationBeaconBotany + entities: + - uid: 1961 components: - type: Transform - pos: -19.5,-1.5 + pos: 12.5,-13.5 parent: 2 - - uid: 1359 + - type: WarpPoint + location: ботаника +- proto: DefaultStationBeaconBridge + entities: + - uid: 1962 components: - type: Transform - pos: -20.5,-0.5 + pos: 0.5,-3.5 parent: 2 - - uid: 1360 + - type: WarpPoint + location: мостик +- proto: DefaultStationBeaconBrig + entities: + - uid: 1963 components: - type: Transform - pos: -21.5,-0.5 + pos: -6.5,13.5 parent: 2 - - uid: 1361 + - type: WarpPoint + location: бриг +- proto: DefaultStationBeaconChapel + entities: + - uid: 1964 components: - type: Transform - pos: -50.5,21.5 + pos: -22.5,-7.5 parent: 2 - - uid: 1362 + - type: WarpPoint + location: церковь +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 1965 components: - type: Transform - pos: -2.5,-8.5 + pos: -8.5,-4.5 parent: 2 - - uid: 1363 + - type: WarpPoint + location: криогенные капсулы +- proto: DefaultStationBeaconDisposals + entities: + - uid: 1966 components: - type: Transform - pos: -10.5,-8.5 + pos: -26.5,-1.5 parent: 2 - - uid: 1364 + - type: WarpPoint + location: мусорка +- proto: DefaultStationBeaconEngineering + entities: + - uid: 1967 components: - type: Transform - pos: -4.5,-8.5 + pos: 15.5,2.5 parent: 2 - - uid: 1365 + - type: WarpPoint + location: инженерный отдел +- proto: DefaultStationBeaconEvac + entities: + - uid: 1968 components: - type: Transform - pos: -10.5,19.5 + pos: -14.5,-18.5 parent: 2 - - uid: 1366 + - type: WarpPoint + location: отбытие +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 1969 components: - type: Transform - pos: -9.5,22.5 + pos: 6.5,-17.5 parent: 2 - - uid: 1367 + - type: WarpPoint + location: ева +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 1970 components: - type: Transform - pos: -1.5,-8.5 + pos: -19.5,2.5 parent: 2 - - uid: 1368 + - type: WarpPoint + location: коморка уборщика +- proto: DefaultStationBeaconKitchen + entities: + - uid: 1971 components: - type: Transform - pos: -1.5,-9.5 + pos: 9.5,-9.5 parent: 2 - - uid: 1369 + - type: WarpPoint + location: кухня +- proto: DefaultStationBeaconLibrary + entities: + - uid: 1972 components: - type: Transform - pos: -8.5,-8.5 + pos: -18.5,23.5 parent: 2 - - uid: 1370 + - type: WarpPoint + location: Библиотека +- proto: DefaultStationBeaconMedical + entities: + - uid: 1973 components: - type: Transform - pos: -9.5,-8.5 + pos: 6.5,12.5 parent: 2 - - uid: 1371 + - type: WarpPoint + location: медицинский отдел +- proto: DefaultStationBeaconMorgue + entities: + - uid: 1974 components: - type: Transform - pos: -5.5,-8.5 + pos: 12.5,19.5 parent: 2 - - uid: 1372 + - type: WarpPoint + location: морг +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 1975 components: - type: Transform - pos: 18.5,-4.5 + pos: -0.5,17.5 parent: 2 - - uid: 1373 + - type: WarpPoint + location: камера брига +- proto: DefaultStationBeaconSalvage + entities: + - uid: 1976 components: - type: Transform - pos: -49.5,21.5 + pos: 20.5,16.5 parent: 2 - - uid: 1374 + - type: WarpPoint + location: утилизаторская +- proto: DefaultStationBeaconScience + entities: + - uid: 1977 components: - type: Transform - pos: -20.5,-1.5 + pos: 14.5,-4.5 parent: 2 - - uid: 1375 + - type: WarpPoint + location: рнд +- proto: DefaultStationBeaconSupply + entities: + - uid: 1978 components: - type: Transform - pos: 11.5,42.5 + pos: 13.5,10.5 parent: 2 - - uid: 1376 + - type: WarpPoint + location: карго +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 1979 components: - type: Transform - pos: 10.5,42.5 + pos: -3.5,-3.5 parent: 2 - - uid: 1377 + - type: WarpPoint + location: серверная +- proto: DefaultStationBeaconVault + entities: + - uid: 1980 components: + - type: MetaData + name: станционный маяк - type: Transform - pos: -11.5,4.5 + pos: 5.5,1.5 parent: 2 - - uid: 1378 + - type: WarpPoint + location: хранилище +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1981 components: - type: Transform - pos: -12.5,4.5 + rot: 3.141592653589793 rad + pos: 12.5,12.5 parent: 2 - - uid: 5606 + - uid: 1982 components: - type: Transform - pos: -2.5,6.5 - parent: 5384 - - uid: 5607 + pos: 8.5,14.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 1983 components: - type: Transform - pos: -3.5,6.5 - parent: 5384 - - uid: 5608 + pos: 12.5,9.5 + parent: 2 + - uid: 1984 components: - type: Transform - pos: -3.5,5.5 - parent: 5384 - - uid: 5609 + pos: 4.5,6.5 + parent: 2 + - uid: 1985 components: - type: Transform - pos: -3.5,4.5 - parent: 5384 - - uid: 5610 + pos: -8.508056,5.571272 + parent: 2 +- proto: DisposalBend + entities: + - uid: 1986 components: - type: Transform - pos: -2.5,4.5 - parent: 5384 - - uid: 5611 + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - uid: 1987 components: - type: Transform - pos: 14.5,7.5 - parent: 5384 - - uid: 5612 + rot: 3.141592653589793 rad + pos: -27.5,-3.5 + parent: 2 + - uid: 1988 components: - type: Transform - pos: 14.5,8.5 - parent: 5384 - - uid: 5613 + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + - uid: 1989 components: - type: Transform - pos: 14.5,9.5 - parent: 5384 - - uid: 5614 + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - uid: 1990 components: - type: Transform - pos: 14.5,10.5 - parent: 5384 - - uid: 5615 + pos: 0.5,-4.5 + parent: 2 + - uid: 1991 components: - type: Transform - pos: 13.5,10.5 - parent: 5384 - - uid: 5616 + rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 2 + - uid: 1992 components: - type: Transform - pos: 12.5,10.5 - parent: 5384 - - uid: 5617 + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 1993 components: - type: Transform - pos: 11.5,10.5 - parent: 5384 - - uid: 5618 + rot: 1.5707963267948966 rad + pos: -22.5,5.5 + parent: 2 + - uid: 1994 components: - type: Transform - pos: 11.5,11.5 - parent: 5384 - - uid: 5619 + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 1995 components: - type: Transform - pos: 11.5,12.5 - parent: 5384 - - uid: 5620 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 1996 components: - type: Transform - pos: 10.5,12.5 - parent: 5384 - - uid: 5621 + rot: 3.141592653589793 rad + pos: -22.5,2.5 + parent: 2 + - uid: 1997 components: - type: Transform - pos: 9.5,12.5 - parent: 5384 - - uid: 5622 + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - uid: 1998 components: - type: Transform - pos: 8.5,12.5 - parent: 5384 - - uid: 5623 + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - uid: 1999 components: - type: Transform - pos: 7.5,12.5 - parent: 5384 - - uid: 5624 + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 2000 components: - type: Transform - pos: 6.5,12.5 - parent: 5384 - - uid: 5625 + rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - uid: 2001 components: - type: Transform - pos: 5.5,12.5 - parent: 5384 - - uid: 5626 + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 2 + - uid: 2002 components: - type: Transform - pos: 4.5,12.5 - parent: 5384 - - uid: 5627 + pos: -2.5,9.5 + parent: 2 + - uid: 2003 components: - type: Transform - pos: 3.5,12.5 - parent: 5384 - - uid: 5628 + pos: -11.5,-4.5 + parent: 2 + - uid: 2004 components: - type: Transform - pos: 2.5,12.5 - parent: 5384 - - uid: 5629 + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 2005 components: - type: Transform - pos: 1.5,12.5 - parent: 5384 - - uid: 5630 + pos: -23.5,-0.5 + parent: 2 + - uid: 2006 components: - type: Transform - pos: 0.5,12.5 - parent: 5384 - - uid: 5631 + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 2007 components: - type: Transform - pos: -0.5,12.5 - parent: 5384 - - uid: 5632 + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 5831 components: - type: Transform - pos: -0.5,11.5 - parent: 5384 - - uid: 5633 + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 5438 + - uid: 5832 components: - type: Transform - pos: -0.5,10.5 - parent: 5384 - - uid: 5634 + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 5438 + - uid: 5833 components: - type: Transform - pos: -0.5,9.5 - parent: 5384 - - uid: 5635 + pos: 6.5,-9.5 + parent: 5438 +- proto: DisposalJunction + entities: + - uid: 2008 components: - type: Transform - pos: -0.5,8.5 - parent: 5384 - - uid: 5636 + pos: 10.5,3.5 + parent: 2 + - uid: 2009 components: - type: Transform - pos: -0.5,7.5 - parent: 5384 - - uid: 5637 + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 2010 components: - type: Transform - pos: -1.5,7.5 - parent: 5384 - - uid: 5638 + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 2011 components: - type: Transform - pos: -2.5,7.5 - parent: 5384 - - uid: 5639 + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 2012 components: - type: Transform - pos: -4.5,4.5 - parent: 5384 - - uid: 5640 + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 5834 components: - type: Transform - pos: -5.5,4.5 - parent: 5384 - - uid: 5641 + pos: -2.5,-9.5 + parent: 5438 +- proto: DisposalPipe + entities: + - uid: 2013 components: - type: Transform - pos: -6.5,4.5 - parent: 5384 - - uid: 5642 + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 2014 components: - type: Transform - pos: -6.5,3.5 - parent: 5384 - - uid: 5643 + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - uid: 2015 components: - type: Transform - pos: -6.5,2.5 - parent: 5384 - - uid: 5644 + rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - uid: 2016 components: - type: Transform - pos: -6.5,1.5 - parent: 5384 - - uid: 5645 + rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - uid: 2017 components: - type: Transform - pos: -6.5,0.5 - parent: 5384 - - uid: 5646 + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 + - uid: 2018 components: - type: Transform - pos: -6.5,-0.5 - parent: 5384 - - uid: 5647 + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - uid: 2019 components: - type: Transform - pos: -6.5,-1.5 - parent: 5384 - - uid: 5648 + pos: -5.5,0.5 + parent: 2 + - uid: 2020 components: - type: Transform - pos: -6.5,-2.5 - parent: 5384 - - uid: 5649 + pos: -5.5,1.5 + parent: 2 + - uid: 2021 components: - type: Transform - pos: -6.5,-3.5 - parent: 5384 - - uid: 5650 + pos: -1.5,15.5 + parent: 2 + - uid: 2022 components: - type: Transform - pos: -6.5,-4.5 - parent: 5384 - - uid: 5651 + pos: -5.5,-2.5 + parent: 2 + - uid: 2023 components: - type: Transform pos: -5.5,-4.5 - parent: 5384 - - uid: 5652 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 5384 - - uid: 5653 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 5384 - - uid: 5654 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 5384 - - uid: 5655 + parent: 2 + - uid: 2024 components: - type: Transform - pos: -4.5,-7.5 - parent: 5384 - - uid: 5656 + pos: -22.5,3.5 + parent: 2 + - uid: 2025 components: - type: Transform - pos: -4.5,-8.5 - parent: 5384 - - uid: 5657 + rot: -1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + - uid: 2026 components: - type: Transform - pos: -4.5,-9.5 - parent: 5384 - - uid: 5658 + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 2027 components: - type: Transform - pos: -3.5,-9.5 - parent: 5384 - - uid: 5659 + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 2028 components: - type: Transform - pos: -2.5,-9.5 - parent: 5384 - - uid: 5660 + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - uid: 2029 components: - type: Transform - pos: -1.5,-9.5 - parent: 5384 - - uid: 5661 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 2030 components: - type: Transform - pos: -0.5,-9.5 - parent: 5384 - - uid: 5662 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 2031 components: - type: Transform - pos: 0.5,-9.5 - parent: 5384 - - uid: 5663 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 2032 components: - type: Transform - pos: 1.5,-9.5 - parent: 5384 - - uid: 5664 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 2033 components: - type: Transform - pos: 2.5,-9.5 - parent: 5384 - - uid: 5665 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 2034 components: - type: Transform - pos: 3.5,-9.5 - parent: 5384 - - uid: 5666 + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 2035 components: - type: Transform - pos: 4.5,-9.5 - parent: 5384 - - uid: 5667 + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 2036 components: - type: Transform - pos: 5.5,-9.5 - parent: 5384 - - uid: 5668 + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 2037 components: - type: Transform - pos: 6.5,-9.5 - parent: 5384 - - uid: 5669 + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - uid: 2038 components: - type: Transform - pos: 8.5,-9.5 - parent: 5384 - - uid: 5670 + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 2039 components: - type: Transform - pos: 9.5,-9.5 - parent: 5384 - - uid: 5671 + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - uid: 2040 components: - type: Transform - pos: 10.5,-9.5 - parent: 5384 - - uid: 5672 + pos: -11.5,-5.5 + parent: 2 + - uid: 2041 components: - type: Transform - pos: 10.5,-8.5 - parent: 5384 - - uid: 5673 + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 2042 components: - type: Transform - pos: 10.5,-7.5 - parent: 5384 - - uid: 5674 + pos: -5.5,4.5 + parent: 2 + - uid: 2043 components: - type: Transform - pos: 10.5,-6.5 - parent: 5384 - - uid: 5675 + pos: -5.5,3.5 + parent: 2 + - uid: 2044 components: - type: Transform - pos: 10.5,-5.5 - parent: 5384 - - uid: 5676 + pos: -5.5,-0.5 + parent: 2 + - uid: 2045 components: - type: Transform - pos: 10.5,-4.5 - parent: 5384 - - uid: 5677 + pos: -5.5,2.5 + parent: 2 + - uid: 2046 components: - type: Transform - pos: 10.5,-3.5 - parent: 5384 - - uid: 5678 + pos: -5.5,-1.5 + parent: 2 + - uid: 2047 components: - type: Transform - pos: 10.5,-2.5 - parent: 5384 - - uid: 5679 + rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 2 + - uid: 2048 components: - type: Transform - pos: 10.5,-1.5 - parent: 5384 - - uid: 5680 + rot: 1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 2 + - uid: 2049 components: - type: Transform - pos: 10.5,-0.5 - parent: 5384 - - uid: 5681 + pos: -5.5,-3.5 + parent: 2 + - uid: 2050 components: - type: Transform - pos: 10.5,0.5 - parent: 5384 - - uid: 5682 + pos: -5.5,-5.5 + parent: 2 + - uid: 2051 components: - type: Transform - pos: 10.5,1.5 - parent: 5384 - - uid: 5683 + rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 2052 components: - type: Transform - pos: 10.5,2.5 - parent: 5384 - - uid: 5684 + pos: -23.5,-1.5 + parent: 2 + - uid: 2053 components: - type: Transform - pos: 10.5,3.5 - parent: 5384 - - uid: 5685 + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 2 + - uid: 2054 components: - type: Transform - pos: 10.5,4.5 - parent: 5384 - - uid: 5686 + rot: 1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 2 + - uid: 2055 components: - type: Transform - pos: 10.5,5.5 - parent: 5384 - - uid: 5687 + rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 2056 components: - type: Transform - pos: 10.5,6.5 - parent: 5384 - - uid: 5688 + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 2 + - uid: 2057 components: - type: Transform - pos: 10.5,7.5 - parent: 5384 - - uid: 5689 + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - uid: 2058 components: - type: Transform - pos: 10.5,8.5 - parent: 5384 - - uid: 5690 + rot: 1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 2059 components: - type: Transform - pos: 10.5,9.5 - parent: 5384 - - uid: 5691 + rot: 1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + - uid: 2060 components: - type: Transform - pos: 9.5,9.5 - parent: 5384 - - uid: 5692 + rot: 1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - uid: 2061 components: - type: Transform - pos: 8.5,9.5 - parent: 5384 - - uid: 5693 + rot: 1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 2 + - uid: 2062 components: - type: Transform - pos: 7.5,9.5 - parent: 5384 - - uid: 5694 + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 2063 components: - type: Transform - pos: 6.5,9.5 - parent: 5384 - - uid: 5695 + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 2064 components: - type: Transform - pos: 5.5,9.5 - parent: 5384 - - uid: 5696 + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 2065 components: - type: Transform - pos: 4.5,9.5 - parent: 5384 - - uid: 5697 + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 2066 components: - type: Transform - pos: 4.5,8.5 - parent: 5384 - - uid: 5698 + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 2067 components: - type: Transform - pos: 4.5,7.5 - parent: 5384 - - uid: 5699 + pos: 10.5,-5.5 + parent: 2 + - uid: 2068 components: - type: Transform - pos: 4.5,6.5 - parent: 5384 - - uid: 5700 + pos: 10.5,-4.5 + parent: 2 + - uid: 2069 components: - type: Transform - pos: 4.5,5.5 - parent: 5384 - - uid: 5701 + pos: 10.5,-3.5 + parent: 2 + - uid: 2070 components: - type: Transform - pos: 4.5,4.5 - parent: 5384 - - uid: 5702 + pos: 10.5,-2.5 + parent: 2 + - uid: 2071 components: - type: Transform - pos: 5.5,5.5 - parent: 5384 - - uid: 5703 + pos: 10.5,-1.5 + parent: 2 + - uid: 2072 components: - type: Transform - pos: 5.5,4.5 - parent: 5384 - - uid: 5704 + pos: 10.5,-0.5 + parent: 2 + - uid: 2073 components: - type: Transform - pos: 3.5,5.5 - parent: 5384 - - uid: 5705 + pos: 10.5,0.5 + parent: 2 + - uid: 2074 components: - type: Transform - pos: 3.5,4.5 - parent: 5384 - - uid: 5706 + pos: 10.5,1.5 + parent: 2 + - uid: 2075 components: - type: Transform - pos: 7.5,-9.5 - parent: 5384 - - uid: 6721 + pos: 10.5,2.5 + parent: 2 + - uid: 2076 components: - type: Transform - pos: -0.5,-1.5 - parent: 6631 - - uid: 6722 + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + - uid: 2077 components: - type: Transform - pos: 0.5,-1.5 - parent: 6631 - - uid: 6723 + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 2 + - uid: 2078 components: - type: Transform - pos: 0.5,-0.5 - parent: 6631 - - uid: 6724 + pos: 0.5,-5.5 + parent: 2 + - uid: 2079 components: - type: Transform - pos: 1.5,-0.5 - parent: 6631 - - uid: 6725 + pos: 25.5,12.5 + parent: 2 + - uid: 2080 components: - type: Transform - pos: -0.5,8.5 - parent: 6631 - - uid: 6726 + pos: 25.5,11.5 + parent: 2 + - uid: 2081 components: - type: Transform - pos: 0.5,8.5 - parent: 6631 - - uid: 6727 + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 2082 components: - type: Transform - pos: 0.5,7.5 - parent: 6631 - - uid: 6728 + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 2083 components: - type: Transform - pos: 0.5,6.5 - parent: 6631 - - uid: 6729 + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 2084 components: - type: Transform - pos: 0.5,5.5 - parent: 6631 - - uid: 6730 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 2085 components: - type: Transform - pos: 0.5,4.5 - parent: 6631 - - uid: 6731 + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 2086 components: - type: Transform - pos: 0.5,3.5 - parent: 6631 - - uid: 6732 + rot: 1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - uid: 2087 components: - type: Transform - pos: 0.5,2.5 - parent: 6631 - - uid: 6733 + rot: 1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 2088 components: - type: Transform - pos: 0.5,1.5 - parent: 6631 - - uid: 6734 + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 2089 components: - type: Transform - pos: 0.5,0.5 - parent: 6631 -- proto: CableMVStack - entities: - - uid: 1379 + rot: 1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - uid: 2090 components: - type: Transform - pos: 19.526678,3.628028 + rot: 1.5707963267948966 rad + pos: 21.5,10.5 parent: 2 - - uid: 1380 + - uid: 2091 components: - type: Transform - pos: 19.526678,3.628028 + rot: 1.5707963267948966 rad + pos: 20.5,10.5 parent: 2 - - uid: 1381 + - uid: 2092 components: - type: Transform - pos: 19.526678,3.628028 + rot: 1.5707963267948966 rad + pos: 22.5,10.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 1382 + - uid: 2093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + pos: 23.5,10.5 parent: 2 - - uid: 1383 + - uid: 2094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,0.5 + pos: 24.5,10.5 parent: 2 - - uid: 6735 + - uid: 2095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 6631 -- proto: CandleBlackInfinite - entities: - - uid: 1384 + pos: 10.5,9.5 + parent: 2 + - uid: 2096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.538256,-0.661039 + pos: 10.5,8.5 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 1385 + - uid: 2097 components: - type: Transform - pos: -23.595274,-2.5269341 + pos: 10.5,7.5 parent: 2 - - uid: 1386 + - uid: 2098 components: - type: Transform - pos: -27.398703,-9.212158 + pos: 10.5,6.5 parent: 2 -- proto: CaptainIDCard - entities: - - uid: 1387 + - uid: 2099 components: - type: Transform - pos: -2.4814332,1.8588014 + pos: 10.5,5.5 parent: 2 -- proto: Carpet - entities: - - uid: 1388 + - uid: 2100 components: - type: Transform - pos: 17.5,7.5 + pos: 10.5,4.5 parent: 2 - - uid: 1389 + - uid: 2101 components: - type: Transform - pos: 16.5,7.5 + rot: 1.5707963267948966 rad + pos: -16.5,3.5 parent: 2 - - uid: 1390 + - uid: 2102 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,12.5 + pos: -19.5,2.5 parent: 2 - - uid: 1391 + - uid: 2103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 2 + - uid: 2104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,12.5 + pos: -7.5,3.5 parent: 2 - - uid: 1392 + - uid: 2105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,9.5 + pos: -2.5,13.5 parent: 2 - - uid: 1393 + - uid: 2106 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,9.5 + pos: -8.5,3.5 parent: 2 - - uid: 1394 + - uid: 2107 components: - type: Transform - pos: 17.5,12.5 + rot: 3.141592653589793 rad + pos: -3.5,11.5 parent: 2 - - uid: 1395 + - uid: 2108 components: - type: Transform - pos: 13.5,3.5 + rot: 1.5707963267948966 rad + pos: -14.5,3.5 parent: 2 - - uid: 1396 + - uid: 2109 components: - type: Transform - pos: 13.5,4.5 + rot: 1.5707963267948966 rad + pos: -13.5,3.5 parent: 2 - - uid: 1397 + - uid: 2110 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,14.5 + pos: -2.5,8.5 parent: 2 - - uid: 1398 + - uid: 2111 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,14.5 + pos: -20.5,6.5 parent: 2 - - uid: 1399 + - uid: 2112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,0.5 + pos: -21.5,5.5 parent: 2 - - uid: 1400 + - uid: 2113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,0.5 + pos: -22.5,4.5 parent: 2 - - uid: 1401 + - uid: 2114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + - uid: 2116 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,1.5 + pos: -5.5,3.5 parent: 2 - - uid: 1402 + - uid: 2117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 2 + - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,2.5 + pos: -3.5,3.5 parent: 2 - - uid: 1403 + - uid: 2119 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,2.5 + pos: -12.5,3.5 parent: 2 - - uid: 1404 + - uid: 2120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,1.5 + pos: -10.5,3.5 parent: 2 - - uid: 1405 + - uid: 2121 components: - type: Transform - pos: -26.5,-7.5 + rot: 1.5707963267948966 rad + pos: -18.5,2.5 parent: 2 - - uid: 1406 + - uid: 2122 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -15.5,3.5 parent: 2 - - uid: 1407 + - uid: 2123 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-6.5 + pos: -11.5,3.5 parent: 2 - - uid: 1408 + - uid: 2124 components: - type: Transform - pos: -10.5,26.5 + rot: 1.5707963267948966 rad + pos: -9.5,3.5 parent: 2 - - uid: 1409 + - uid: 2125 components: - type: Transform - pos: -10.5,27.5 + rot: 3.141592653589793 rad + pos: -2.5,5.5 parent: 2 - - uid: 1410 + - uid: 2126 components: - type: Transform - pos: -46.5,20.5 + rot: 3.141592653589793 rad + pos: -3.5,12.5 parent: 2 - - uid: 1411 + - uid: 2127 components: - type: Transform - pos: -46.5,21.5 + rot: 3.141592653589793 rad + pos: -2.5,6.5 parent: 2 - - uid: 1412 + - uid: 2128 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-6.5 + pos: -6.5,3.5 parent: 2 - - uid: 1413 + - uid: 2129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,25.5 + rot: 1.5707963267948966 rad + pos: -4.5,3.5 parent: 2 - - uid: 1414 + - uid: 2130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,25.5 + rot: 1.5707963267948966 rad + pos: -21.5,2.5 parent: 2 - - uid: 1415 + - uid: 2131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,25.5 + rot: 1.5707963267948966 rad + pos: -20.5,2.5 parent: 2 - - uid: 1416 + - uid: 2132 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,26.5 + pos: -1.5,14.5 parent: 2 - - uid: 1417 + - uid: 2133 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,24.5 + pos: -27.5,-2.5 parent: 2 - - uid: 5707 + - uid: 2134 components: - type: Transform - pos: 1.5,-16.5 - parent: 5384 - - uid: 5708 + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 2135 components: - type: Transform - pos: 1.5,-17.5 - parent: 5384 -- proto: CarpetBlack - entities: - - uid: 1418 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + - uid: 2136 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,9.5 + pos: -23.5,-3.5 parent: 2 - - uid: 1419 + - uid: 2137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,9.5 + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 parent: 2 - - uid: 1420 + - uid: 2138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,10.5 + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 parent: 2 - - uid: 1421 + - uid: 2139 components: - type: Transform - pos: -15.5,7.5 + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 parent: 2 - - uid: 1422 + - uid: 2140 components: - type: Transform - pos: -14.5,7.5 + rot: 3.141592653589793 rad + pos: -27.5,-1.5 parent: 2 - - uid: 1423 + - uid: 2141 components: - type: Transform - pos: 5.5,41.5 + pos: -1.5,16.5 parent: 2 - - uid: 1424 + - uid: 2142 components: - type: Transform - pos: 5.5,40.5 + pos: -1.5,17.5 parent: 2 - - uid: 1425 + - uid: 5835 components: - type: Transform - pos: 6.5,41.5 - parent: 2 - - uid: 1426 + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 5438 + - uid: 5836 components: - type: Transform - pos: 6.5,40.5 - parent: 2 - - uid: 1427 + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 5438 + - uid: 5837 components: - type: Transform - pos: 6.5,42.5 - parent: 2 - - uid: 1428 + pos: 4.5,5.5 + parent: 5438 + - uid: 5838 components: - type: Transform - pos: 5.5,39.5 - parent: 2 - - uid: 1429 + pos: 4.5,4.5 + parent: 5438 + - uid: 5839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,41.5 - parent: 2 - - uid: 1430 + pos: 4.5,3.5 + parent: 5438 + - uid: 5840 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,41.5 - parent: 2 - - uid: 1431 + pos: 11.5,-10.5 + parent: 5438 + - uid: 5841 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,40.5 - parent: 2 - - uid: 1432 + pos: 10.5,-10.5 + parent: 5438 + - uid: 5842 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,40.5 - parent: 2 - - uid: 1433 + pos: 9.5,-10.5 + parent: 5438 + - uid: 5843 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,39.5 - parent: 2 - - uid: 1434 + pos: 8.5,-10.5 + parent: 5438 + - uid: 5844 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,39.5 - parent: 2 - - uid: 5709 + pos: 7.5,-10.5 + parent: 5438 + - uid: 5845 components: - type: Transform - pos: 21.5,0.5 - parent: 5384 - - uid: 5710 + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 5438 + - uid: 5846 components: - type: Transform - pos: 22.5,0.5 - parent: 5384 - - uid: 6736 + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 5438 + - uid: 5847 components: - type: Transform - pos: 0.5,3.5 - parent: 6631 - - uid: 6737 + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 5438 + - uid: 5848 components: - type: Transform - pos: -0.5,3.5 - parent: 6631 - - uid: 6738 + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 5438 + - uid: 5849 components: - type: Transform - pos: -1.5,0.5 - parent: 6631 - - uid: 6739 + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 5438 + - uid: 5850 components: - type: Transform - pos: 1.5,2.5 - parent: 6631 - - uid: 6740 + pos: -2.5,-8.5 + parent: 5438 + - uid: 5851 components: - type: Transform - pos: 1.5,1.5 - parent: 6631 - - uid: 6741 + pos: -2.5,-7.5 + parent: 5438 + - uid: 5852 components: - type: Transform - pos: 1.5,0.5 - parent: 6631 - - uid: 6742 + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 5438 + - uid: 5853 components: - type: Transform - pos: 2.5,0.5 - parent: 6631 - - uid: 6743 + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 5438 + - uid: 5854 components: - type: Transform - pos: -0.5,1.5 - parent: 6631 - - uid: 6744 + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 5438 + - uid: 5855 components: - type: Transform - pos: 0.5,1.5 - parent: 6631 - - uid: 6745 + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 5438 + - uid: 5856 components: - type: Transform - pos: 0.5,2.5 - parent: 6631 - - uid: 6746 + rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 5438 + - uid: 5857 components: - type: Transform - pos: -0.5,0.5 - parent: 6631 - - uid: 6747 + rot: 3.141592653589793 rad + pos: -2.5,-12.5 + parent: 5438 + - uid: 5858 components: - type: Transform - pos: 2.5,2.5 - parent: 6631 -- proto: CarpetBlue + rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 5438 +- proto: DisposalTrunk entities: - - uid: 1435 + - uid: 2143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 + pos: -5.5,5.5 parent: 2 - - uid: 1436 + - uid: 2144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,8.5 + pos: 3.5,19.5 parent: 2 - - uid: 1437 + - uid: 2145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 2 - - uid: 1438 - components: - - type: Transform - pos: -3.5,-0.5 + pos: -26.5,-3.5 parent: 2 - - uid: 1439 + - uid: 2146 components: - type: Transform - pos: -2.5,-0.5 + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 parent: 2 - - uid: 1440 + - uid: 2147 components: - type: Transform - pos: 3.5,-4.5 + rot: 1.5707963267948966 rad + pos: -15.5,-6.5 parent: 2 - - uid: 1441 + - uid: 2148 components: - type: Transform - pos: 5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 parent: 2 - - uid: 1442 + - uid: 2149 components: - type: Transform - pos: 4.5,-4.5 + pos: 8.5,5.5 parent: 2 - - uid: 1443 + - uid: 2150 components: - type: Transform - pos: 5.5,-3.5 + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 2 - - uid: 1444 + - uid: 2151 components: - type: Transform - pos: 4.5,-3.5 + pos: 25.5,13.5 parent: 2 - - uid: 1445 + - uid: 2152 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,8.5 + pos: -19.5,8.5 parent: 2 - - uid: 6748 + - uid: 5859 components: - type: Transform - pos: -0.5,6.5 - parent: 6631 - - uid: 6749 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 5438 + - uid: 5860 components: - type: Transform - pos: 0.5,6.5 - parent: 6631 - - uid: 6750 + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 5438 + - uid: 5861 components: - type: Transform - pos: 0.5,7.5 - parent: 6631 - - uid: 6751 + pos: -2.5,-6.5 + parent: 5438 + - uid: 5862 components: - type: Transform - pos: 1.5,7.5 - parent: 6631 - - uid: 6752 + rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 5438 +- proto: DisposalUnit + entities: + - uid: 2153 components: - type: Transform - pos: 2.5,6.5 - parent: 6631 - - uid: 6753 + pos: -5.5,5.5 + parent: 2 + - uid: 2154 components: - type: Transform - pos: 2.5,7.5 - parent: 6631 - - uid: 6754 + pos: 13.5,-6.5 + parent: 2 + - uid: 2155 components: - type: Transform - pos: 0.5,5.5 - parent: 6631 - - uid: 6755 + pos: 12.5,-8.5 + parent: 2 + - uid: 2156 components: - type: Transform - pos: -1.5,7.5 - parent: 6631 - - uid: 6756 + pos: 25.5,13.5 + parent: 2 + - uid: 2157 components: - type: Transform - pos: -1.5,6.5 - parent: 6631 -- proto: CarpetCyan - entities: - - uid: 1446 + pos: 6.5,-8.5 + parent: 2 + - uid: 2158 components: - type: Transform - pos: -8.5,26.5 + pos: 8.5,5.5 parent: 2 - - uid: 1447 + - uid: 2159 components: - type: Transform - pos: -8.5,25.5 + pos: -15.5,-6.5 parent: 2 - - uid: 1448 + - uid: 2160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-1.5 + pos: -0.5,-4.5 parent: 2 - - uid: 1449 + - uid: 2161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-1.5 + pos: -19.5,8.5 parent: 2 - - uid: 1450 + - uid: 5863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 2 - - uid: 1451 + pos: 12.5,-10.5 + parent: 5438 + - uid: 5864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 2 - - uid: 1452 + pos: 7.5,6.5 + parent: 5438 + - uid: 5865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-1.5 - parent: 2 - - uid: 1453 + pos: -2.5,-6.5 + parent: 5438 +- proto: DisposalYJunction + entities: + - uid: 2162 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-0.5 + pos: -11.5,-6.5 parent: 2 -- proto: CarpetGreen +- proto: DogBed entities: - - uid: 1454 + - uid: 2163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-1.5 + pos: 4.5,-2.5 parent: 2 - - uid: 1455 + - uid: 2164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,16.5 + pos: -4.5,17.5 parent: 2 - - uid: 1456 + - uid: 2165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 + pos: -9.5,21.5 parent: 2 - - uid: 1457 + - uid: 2166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,16.5 + pos: 1.5,9.5 parent: 2 - - uid: 1458 + - uid: 2167 components: + - type: MetaData + desc: Удобная лежанка для пауков, имеется ремень для пристёгивания. + name: паучья лежанка - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,15.5 + pos: -10.5,15.5 parent: 2 - - uid: 1459 + - uid: 2168 components: + - type: MetaData + desc: Лежанка для кота. Имеется ремешок для пристёгивания. + name: кошачья лежанка - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 + pos: 18.5,16.5 parent: 2 - - uid: 1460 +- proto: DresserCaptainFilled + entities: + - uid: 2169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 + pos: -2.5,1.5 parent: 2 - - uid: 1461 +- proto: DresserChiefEngineerFilled + entities: + - uid: 2170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,16.5 + pos: 19.5,6.5 parent: 2 - - uid: 1462 +- proto: DresserFilled + entities: + - uid: 2171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: -48.5,17.5 parent: 2 - - uid: 1463 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 2172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 + pos: 8.5,-3.5 parent: 2 - - uid: 1464 +- proto: DresserQuarterMasterFilled + entities: + - uid: 2173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 + pos: 17.5,7.5 parent: 2 - - uid: 1465 +- proto: DresserResearchDirectorFilled + entities: + - uid: 2174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 + pos: 18.5,-1.5 parent: 2 - - uid: 1466 +- proto: DrinkBeerBottleFull + entities: + - uid: 2175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,17.5 + pos: -3.613471,-3.884079 parent: 2 - - uid: 1467 + - uid: 2176 components: - type: Transform - pos: -22.5,15.5 + rot: -1.5707963267948966 rad + pos: -2.3912482,-4.1757455 parent: 2 - - uid: 1468 + - uid: 2177 components: - type: Transform - pos: -22.5,14.5 + pos: -27.502636,-1.4606961 parent: 2 - - uid: 1469 + - uid: 2178 components: - type: Transform - pos: -21.5,15.5 + pos: -27.266525,-1.3495847 parent: 2 - - uid: 1470 + - uid: 2179 components: - type: Transform - pos: -21.5,14.5 + pos: -27.266525,-1.53014 parent: 2 - - uid: 1471 + - uid: 5867 components: - type: Transform - pos: -12.5,26.5 - parent: 2 - - uid: 1472 + parent: 5866 + - type: Physics + canCollide: False +- proto: DrinkBeerCan + entities: + - uid: 5878 components: - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 1473 + pos: 13.313711,8.986102 + parent: 5438 +- proto: DrinkBeerGrowler + entities: + - uid: 5868 components: - type: Transform - pos: -42.5,16.5 - parent: 2 - - uid: 1474 + parent: 5866 + - type: Physics + canCollide: False + - uid: 5879 components: - type: Transform - pos: -43.5,16.5 - parent: 2 - - uid: 5711 + rot: -1.5707963267948966 rad + pos: 13.600749,9.782822 + parent: 5438 +- proto: DrinkBloodGlass + entities: + - uid: 7330 components: - type: Transform - pos: -0.5,15.5 - parent: 5384 - - uid: 5712 + pos: -2.2095032,31.424175 + parent: 7020 +- proto: DrinkBottleBeer + entities: + - uid: 5869 components: - type: Transform - pos: -0.5,14.5 - parent: 5384 - - uid: 5713 + parent: 5866 + - type: Physics + canCollide: False +- proto: DrinkBottleOfNothingFull + entities: + - uid: 2180 components: - type: Transform - pos: 0.5,15.5 - parent: 5384 - - uid: 5714 + pos: -18.030233,-0.4989791 + parent: 2 +- proto: DrinkBottlePatron + entities: + - uid: 2181 components: - type: Transform - pos: 0.5,14.5 - parent: 5384 - - uid: 5715 + pos: -20.182451,11.437634 + parent: 2 +- proto: DrinkChampagneBottleFull + entities: + - uid: 5870 components: - type: Transform - pos: 1.5,14.5 - parent: 5384 - - uid: 5716 + parent: 5866 + - type: Physics + canCollide: False + - uid: 5871 components: - type: Transform - pos: 1.5,15.5 - parent: 5384 - - uid: 6757 + parent: 5866 + - type: Physics + canCollide: False +- proto: DrinkChocolateGlass + entities: + - uid: 2182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 6631 - - uid: 6758 + pos: -13.252503,-1.3176099 + parent: 2 +- proto: DrinkDemonsBlood + entities: + - uid: 7331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 6631 -- proto: CarpetOrange + pos: -2.7928467,31.736675 + parent: 7020 +- proto: DrinkEmeraldGlass entities: - - uid: 1475 + - uid: 2183 components: - type: Transform - pos: 19.5,5.5 + pos: -18.20653,-5.41434 parent: 2 - - uid: 1476 + - uid: 2184 components: - type: Transform - pos: 19.5,6.5 + pos: -18.67528,-5.206007 parent: 2 - - uid: 1477 + - uid: 2185 components: - type: Transform - pos: 20.5,6.5 + pos: -17.76903,-5.10184 parent: 2 - - uid: 1478 +- proto: DrinkIcedBeerGlass + entities: + - uid: 2187 components: - type: Transform - pos: -24.5,-8.5 - parent: 2 - - uid: 1479 + parent: 2186 + - type: Physics + canCollide: False +- proto: DrinkIceGlass + entities: + - uid: 5872 components: - type: Transform - pos: -22.5,-7.5 - parent: 2 - - uid: 1480 + parent: 5866 + - type: Physics + canCollide: False + - uid: 5873 components: - type: Transform - pos: -22.5,-8.5 - parent: 2 - - uid: 1481 + parent: 5866 + - type: Physics + canCollide: False + - uid: 5874 components: - type: Transform - pos: -21.5,-7.5 - parent: 2 - - uid: 1482 + parent: 5866 + - type: Physics + canCollide: False + - uid: 5875 components: - type: Transform - pos: -21.5,-8.5 - parent: 2 - - uid: 1483 + parent: 5866 + - type: Physics + canCollide: False +- proto: DrinkMelonLiquorBottleFull + entities: + - uid: 2197 components: - type: Transform - pos: -23.5,-8.5 + pos: -17.26903,-5.018507 parent: 2 - - uid: 1484 +- proto: DrinkMugMetal + entities: + - uid: 5876 components: - type: Transform - pos: -23.5,-7.5 - parent: 2 - - uid: 1485 + parent: 5866 + - type: Physics + canCollide: False +- proto: DrinkMugRed + entities: + - uid: 2198 components: - type: Transform - pos: -29.5,30.5 + pos: -28.20171,-5.205429 parent: 2 - - uid: 1486 + - uid: 5877 + components: + - type: Transform + parent: 5866 + - type: Physics + canCollide: False +- proto: DrinkNukieCan + entities: + - uid: 7332 + components: + - type: Transform + pos: 3.6177063,21.674427 + parent: 7020 + - uid: 7333 + components: + - type: Transform + pos: 3.7739563,21.497345 + parent: 7020 +- proto: DrinkShakeMeat + entities: + - uid: 5880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,22.5 - parent: 2 - - uid: 1487 + pos: 9.415849,-10.197274 + parent: 5438 +- proto: DrinkSyndicatebomb + entities: + - uid: 2188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 2 - - uid: 1488 + parent: 2186 + - type: Physics + canCollide: False +- proto: DrinkTeaGlass + entities: + - uid: 7334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,23.5 - parent: 2 - - uid: 1489 + pos: -17.237244,28.631813 + parent: 7020 + - uid: 7335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,23.5 - parent: 2 -- proto: CarpetPink + pos: -17.601837,28.329731 + parent: 7020 +- proto: DrinkTeapot entities: - - uid: 1490 + - uid: 7336 components: - type: Transform - pos: 18.5,-2.5 - parent: 2 - - uid: 1491 + pos: -17.71643,28.798481 + parent: 7020 +- proto: DrinkWaterCup + entities: + - uid: 2199 components: - type: Transform - pos: 18.5,-1.5 + pos: -26.68073,4.7187457 parent: 2 - - uid: 1492 + - uid: 2200 components: - type: Transform - pos: 19.5,-1.5 + pos: -26.375175,4.524301 parent: 2 - - uid: 6759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,9.5 - parent: 6631 - - uid: 6760 +- proto: DrinkWhiskeySodaGlass + entities: + - uid: 2189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 6631 -- proto: CarpetPurple + parent: 2186 + - type: Physics + canCollide: False +- proto: DrinkYorshGlass entities: - - uid: 1493 + - uid: 2190 components: - type: Transform - pos: -27.5,-6.5 - parent: 2 - - uid: 1494 + parent: 2186 + - type: Physics + canCollide: False +- proto: EggSpider + entities: + - uid: 7337 components: - type: Transform - pos: -28.5,-5.5 - parent: 2 - - uid: 1495 + pos: -9.6683655,21.628506 + parent: 7020 + - uid: 7338 components: - type: Transform - pos: -28.5,-6.5 - parent: 2 - - uid: 1496 + pos: -9.210022,21.722256 + parent: 7020 + - uid: 7339 components: - type: Transform - pos: -27.5,-5.5 - parent: 2 - - uid: 1497 + pos: -9.491272,21.284756 + parent: 7020 +- proto: EmergencyLight + entities: + - uid: 2201 components: - type: Transform - pos: -9.5,0.5 + rot: 3.141592653589793 rad + pos: -3.5,9.5 parent: 2 - - uid: 1498 + - uid: 2202 components: - type: Transform - pos: -10.5,0.5 + pos: -9.5,16.5 parent: 2 - - uid: 1499 + - uid: 2203 components: - type: Transform - pos: -9.5,1.5 + pos: 6.5,13.5 parent: 2 - - uid: 1500 + - uid: 2204 components: - type: Transform - pos: -8.5,1.5 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 parent: 2 -- proto: CarpetSBlue - entities: - - uid: 1501 + - uid: 2205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,17.5 + pos: -0.5,-6.5 parent: 2 - - uid: 1502 + - uid: 2206 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,17.5 + pos: 18.5,10.5 parent: 2 - - uid: 1503 + - uid: 2207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,16.5 + rot: -1.5707963267948966 rad + pos: 17.5,1.5 parent: 2 - - uid: 1504 + - uid: 2208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,15.5 + pos: 20.5,-4.5 parent: 2 - - uid: 1505 + - uid: 2209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,15.5 + rot: 3.141592653589793 rad + pos: 1.5,-10.5 parent: 2 - - uid: 1506 + - uid: 2210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,14.5 + pos: -13.5,4.5 parent: 2 - - uid: 1507 +- proto: EncryptionKeySyndie + entities: + - uid: 5881 components: - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 1508 + pos: 15.5,8.5 + parent: 5438 +- proto: EnergyCutlass + entities: + - uid: 5882 components: - type: Transform - pos: 8.5,-3.5 - parent: 2 -- proto: CarrotSeeds + pos: 0.49856567,6.503723 + parent: 5438 +- proto: EnergyDagger entities: - - uid: 1509 + - uid: 2211 components: - type: Transform - pos: -50.267036,17.266376 + rot: 3.141592653589793 rad + pos: -18.4584,11.452088 parent: 2 -- proto: Catwalk +- proto: ERTSpawnerLeader entities: - - uid: 1510 + - uid: 6848 components: - type: Transform - pos: 22.5,-13.5 - parent: 2 - - uid: 1511 + pos: 1.5,9.5 + parent: 6685 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: ERTSpawnerSrcurity + entities: + - uid: 6849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 2 - - uid: 1512 + pos: 3.5,3.5 + parent: 6685 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6850 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-22.5 - parent: 2 - - uid: 1513 + pos: -2.5,3.5 + parent: 6685 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: ExGrenade + entities: + - uid: 5884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 2 - - uid: 1514 + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExosuitFabricator + entities: + - uid: 2212 components: - type: Transform - pos: -40.5,21.5 + pos: 13.5,-1.5 parent: 2 - - uid: 1515 +- proto: ExplosivePayload + entities: + - uid: 5885 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 2 - - uid: 1516 + pos: 15.439929,-1.5135942 + parent: 5438 +- proto: ExplosivesSignMed + entities: + - uid: 2213 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 2 - - uid: 1517 - components: - - type: Transform - pos: 29.5,21.5 + pos: 25.5,-11.5 parent: 2 - - uid: 1518 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 2214 components: - type: Transform - pos: 28.5,21.5 + pos: 9.5,-4.5 parent: 2 - - uid: 1519 + - uid: 2215 components: - type: Transform - pos: 27.5,21.5 + pos: 9.5,10.5 parent: 2 - - uid: 1520 + - uid: 2216 components: - type: Transform - pos: 26.5,21.5 + rot: -1.5707963267948966 rad + pos: 1.5,13.5 parent: 2 - - uid: 1521 + - uid: 2217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + pos: 1.5,6.5 parent: 2 - - uid: 1522 + - uid: 2218 components: - type: Transform - pos: -23.5,24.5 + pos: 20.5,-3.5 parent: 2 - - uid: 1523 + - uid: 2219 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,11.5 + pos: 18.5,5.5 parent: 2 - - uid: 1524 + - uid: 2220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,11.5 + pos: -18.5,3.5 parent: 2 - - uid: 1525 + - uid: 2221 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,11.5 + pos: 4.5,-18.5 parent: 2 - - uid: 1526 +- proto: FatExtractor + entities: + - uid: 2222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,10.5 + pos: 14.5,-8.5 parent: 2 - - uid: 1527 + - type: FatExtractor + processing: False +- proto: FaxMachineBase + entities: + - uid: 2223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,11.5 + pos: -18.5,24.5 parent: 2 - - uid: 1528 + - type: FaxMachine + name: Библиотека + destinationAddress: Библиотека + - uid: 2224 components: - type: Transform - pos: -34.5,19.5 + pos: 14.5,8.5 parent: 2 - - uid: 1529 + - type: FaxMachine + name: Снабжение + - uid: 2225 components: - type: Transform - pos: 27.5,-3.5 + pos: 6.5,13.5 parent: 2 - - uid: 1530 + - type: FaxMachine + name: Медицинский + - uid: 2226 components: - type: Transform - pos: 29.5,-3.5 + pos: 15.5,3.5 parent: 2 - - uid: 1531 + - type: FaxMachine + name: Инженерный + - uid: 2227 components: - type: Transform - pos: 28.5,-3.5 + pos: 2.5,-0.5 parent: 2 - - uid: 1532 + - type: FaxMachine + name: Мостик + receiveNukeCodes: True + receiveStationGoal: True +- proto: FaxMachineSyndie + entities: + - uid: 2228 components: - type: Transform - pos: 13.5,-6.5 + pos: -21.5,10.5 parent: 2 - - uid: 1533 +- proto: FenceMetalCorner + entities: + - uid: 2229 components: - type: Transform - pos: 22.5,-3.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2 - - uid: 1534 +- proto: FenceMetalStraight + entities: + - uid: 2230 components: - type: Transform - pos: 21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 2.5,20.5 parent: 2 - - uid: 1535 + - uid: 2231 components: - type: Transform - pos: 21.5,-1.5 + rot: -1.5707963267948966 rad + pos: 3.5,20.5 parent: 2 - - uid: 1536 + - uid: 2232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-13.5 + rot: -1.5707963267948966 rad + pos: -0.5,20.5 parent: 2 - - uid: 1537 + - uid: 2233 components: - type: Transform - pos: -35.5,19.5 + rot: -1.5707963267948966 rad + pos: -1.5,20.5 parent: 2 - - uid: 1538 + - uid: 2234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-12.5 + rot: -1.5707963267948966 rad + pos: -4.5,20.5 parent: 2 - - uid: 1539 + - uid: 2235 components: - type: Transform - pos: -34.5,21.5 + rot: -1.5707963267948966 rad + pos: -2.5,20.5 parent: 2 - - uid: 1540 + - uid: 2236 components: - type: Transform - pos: -34.5,20.5 + rot: -1.5707963267948966 rad + pos: -3.5,20.5 parent: 2 - - uid: 1541 + - uid: 2237 components: - type: Transform - pos: -36.5,19.5 + rot: -1.5707963267948966 rad + pos: 1.5,20.5 parent: 2 - - uid: 1542 + - uid: 2238 components: - type: Transform - pos: -36.5,20.5 + rot: -1.5707963267948966 rad + pos: 0.5,20.5 parent: 2 - - uid: 1543 + - uid: 2239 components: - type: Transform - pos: -36.5,21.5 + pos: 4.5,19.5 parent: 2 - - uid: 1544 +- proto: FenceWoodHighCorner + entities: + - uid: 2240 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,19.5 + pos: 8.5,23.5 parent: 2 - - uid: 1545 + - uid: 2241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,23.5 parent: 2 - - uid: 1546 + - uid: 2242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,11.5 + pos: 17.5,-16.5 parent: 2 - - uid: 1547 + - uid: 7340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 2 - - uid: 1548 + pos: -8.5,30.5 + parent: 7020 +- proto: FenceWoodHighGate + entities: + - uid: 2243 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,1.5 + pos: 11.5,23.5 parent: 2 - - uid: 1550 + - uid: 2244 components: - type: Transform - pos: -23.5,8.5 + rot: 1.5707963267948966 rad + pos: 8.5,19.5 parent: 2 - - uid: 1551 +- proto: FenceWoodHighStraight + entities: + - uid: 2245 components: - type: Transform - pos: -24.5,5.5 + rot: 1.5707963267948966 rad + pos: 12.5,23.5 parent: 2 - - uid: 1552 + - uid: 2246 components: - type: Transform - pos: -22.5,6.5 + pos: 8.5,22.5 parent: 2 - - uid: 1553 + - uid: 2247 components: - type: Transform - pos: -26.5,4.5 + rot: 1.5707963267948966 rad + pos: 10.5,23.5 parent: 2 - - uid: 1554 + - uid: 2248 components: - type: Transform - pos: -22.5,4.5 + rot: 1.5707963267948966 rad + pos: 9.5,23.5 parent: 2 - - uid: 1555 + - uid: 2249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 + rot: 1.5707963267948966 rad + pos: 24.5,-15.5 parent: 2 - - uid: 1556 + - uid: 2250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-22.5 + rot: 1.5707963267948966 rad + pos: 23.5,-15.5 parent: 2 - - uid: 1557 + - uid: 2251 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,7.5 + pos: 16.5,-16.5 parent: 2 - - uid: 1558 + - uid: 2252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,9.5 + rot: 1.5707963267948966 rad + pos: 22.5,-15.5 parent: 2 - - uid: 1559 + - uid: 2253 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,10.5 - parent: 2 - - uid: 1560 - components: - - type: Transform - pos: 2.5,-22.5 + pos: 17.5,-14.5 parent: 2 - - uid: 1561 + - uid: 2254 components: - type: Transform - pos: 2.5,-21.5 + rot: -1.5707963267948966 rad + pos: 14.5,-16.5 parent: 2 - - uid: 1562 + - uid: 2255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,0.5 + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 parent: 2 - - uid: 1563 + - uid: 2256 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-10.5 + pos: 17.5,-12.5 parent: 2 - - uid: 1564 + - uid: 2257 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,8.5 + pos: 17.5,-13.5 parent: 2 - - uid: 1565 + - uid: 2258 components: - type: Transform - pos: 3.5,-21.5 + rot: -1.5707963267948966 rad + pos: 15.5,-16.5 parent: 2 - - uid: 1566 + - uid: 2259 components: - type: Transform - pos: 4.5,-21.5 + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 parent: 2 - - uid: 1567 + - uid: 2260 components: - type: Transform - pos: 32.5,21.5 + rot: 1.5707963267948966 rad + pos: 19.5,-15.5 parent: 2 - - uid: 1568 + - uid: 2261 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,11.5 + pos: 20.5,-15.5 parent: 2 - - uid: 1569 + - uid: 2262 components: - type: Transform - pos: 31.5,21.5 + rot: 3.141592653589793 rad + pos: 8.5,20.5 parent: 2 - - uid: 1570 + - uid: 2263 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-9.5 + pos: 8.5,21.5 parent: 2 - - uid: 1571 + - uid: 7341 components: - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 1572 + rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 7020 + - uid: 7342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,2.5 - parent: 2 - - uid: 1573 + pos: -8.5,31.5 + parent: 7020 + - uid: 7343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 2 - - uid: 1574 + rot: -1.5707963267948966 rad + pos: -9.5,30.5 + parent: 7020 +- proto: FenceWoodHighTJunction + entities: + - uid: 2264 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,3.5 + pos: 17.5,-15.5 parent: 2 - - uid: 1575 +- proto: filingCabinetDrawer + entities: + - uid: 5886 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 5438 + - uid: 5887 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 5438 +- proto: filingCabinetTall + entities: + - uid: 2265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,0.5 + pos: -12.5,8.5 parent: 2 - - uid: 1576 +- proto: FireAlarm + entities: + - uid: 2266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,2.5 + pos: -13.5,5.5 parent: 2 - - uid: 1577 + - type: DeviceList + devices: + - 115 + - 2282 + - 2281 + - 2280 + - 2300 + - 2301 + - 2303 + - 2302 + - 2299 + - 2298 + - 2297 + - uid: 2267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 + rot: -1.5707963267948966 rad + pos: -0.5,11.5 parent: 2 - - uid: 1578 + - type: DeviceList + devices: + - 2305 + - 2304 + - 2309 + - 2308 + - 2307 + - 2306 + - 108 + - 2311 + - 2312 + - 2310 + - uid: 2268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,3.5 + rot: -1.5707963267948966 rad + pos: 9.5,13.5 parent: 2 - - uid: 1579 + - type: DeviceList + devices: + - 2322 + - 2321 + - 2320 + - 2319 + - 2318 + - 2316 + - 2317 + - 2315 + - 2313 + - 2314 + - 109 + - uid: 2269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 + pos: 15.5,9.5 parent: 2 - - uid: 1580 + - type: DeviceList + devices: + - 2326 + - 110 + - 2285 + - 2286 + - 2325 + - 2323 + - 2324 + - 2284 + - 2283 + - uid: 2270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-4.5 + rot: -1.5707963267948966 rad + pos: 18.5,3.5 parent: 2 - - uid: 1581 + - type: DeviceList + devices: + - 2329 + - 2328 + - 2327 + - 2330 + - 111 + - uid: 2271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-5.5 + rot: -1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 1582 + - type: DeviceList + devices: + - 2332 + - 2331 + - 113 + - 2333 + - 2334 + - uid: 2272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 parent: 2 - - uid: 1583 + - type: DeviceList + devices: + - 2347 + - 2341 + - 2340 + - 2343 + - 2345 + - 2344 + - 2342 + - 2346 + - 116 + - uid: 2273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,6.5 + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 parent: 2 - - uid: 1584 + - type: DeviceList + devices: + - 2356 + - 2355 + - 2354 + - 117 + - 2360 + - uid: 2274 components: - type: Transform - pos: 3.5,-17.5 + rot: 1.5707963267948966 rad + pos: 7.5,0.5 parent: 2 - - uid: 1585 + - type: DeviceList + devices: + - 2327 + - 2330 + - 2351 + - 2350 + - 2313 + - 2352 + - 2353 + - 2293 + - 2292 + - 2294 + - 119 + - uid: 2275 components: - type: Transform - pos: 24.5,21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 parent: 2 - - uid: 1586 + - type: DeviceList + devices: + - 2332 + - 2349 + - 2348 + - 2331 + - 2351 + - 2350 + - 118 + - 119 + - 2352 + - 2353 + - uid: 2276 components: - type: Transform - pos: 25.5,21.5 + pos: -6.5,5.5 parent: 2 - - uid: 1587 + - type: DeviceList + devices: + - 2354 + - 2355 + - 2302 + - 2303 + - 2353 + - 2352 + - 2312 + - 2311 + - 107 + - uid: 2277 components: - type: Transform - pos: 23.5,21.5 + pos: -1.5,-5.5 parent: 2 - - uid: 1588 + - type: DeviceList + devices: + - 2287 + - 2288 + - 2289 + - 2290 + - 2291 + - 2349 + - 2348 + - 2345 + - 2340 + - 2338 +- proto: FireAxeCabinetFilled + entities: + - uid: 2278 components: - type: Transform - pos: 22.5,21.5 + pos: 21.5,3.5 parent: 2 - - uid: 1589 +- proto: FireBombEmpty + entities: + - uid: 5888 components: - type: Transform - pos: 22.5,20.5 - parent: 2 - - uid: 1590 + pos: -2.6172562,-10.361404 + parent: 5438 +- proto: FireBombFuel + entities: + - uid: 5889 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 2 - - uid: 1591 + pos: 1.646759,-9.713562 + parent: 5438 +- proto: FireExtinguisher + entities: + - uid: 2279 components: - type: Transform - pos: 19.5,-7.5 + pos: 23.744146,-6.998329 parent: 2 - - uid: 1592 +- proto: FirelockEdge + entities: + - uid: 2280 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,5.5 + pos: -15.5,2.5 parent: 2 - - uid: 1593 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,32.5 + rot: 3.141592653589793 rad + pos: -14.5,2.5 parent: 2 - - uid: 1594 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,33.5 + rot: 3.141592653589793 rad + pos: -13.5,2.5 parent: 2 - - uid: 1595 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 + rot: 1.5707963267948966 rad + pos: 12.5,8.5 parent: 2 - - uid: 1596 + - uid: 2284 components: - type: Transform - pos: 20.5,-7.5 + rot: 3.141592653589793 rad + pos: 13.5,9.5 parent: 2 - - uid: 1597 + - uid: 2285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-3.5 + pos: 18.5,11.5 parent: 2 - - uid: 1598 + - uid: 2286 components: - type: Transform - pos: -39.5,19.5 + rot: 1.5707963267948966 rad + pos: 18.5,10.5 parent: 2 - - uid: 1599 + - uid: 2287 components: - type: Transform - pos: -39.5,20.5 + pos: 2.5,-7.5 parent: 2 - - uid: 1600 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2288 components: - type: Transform - pos: -40.5,19.5 + pos: 3.5,-7.5 parent: 2 - - uid: 1601 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2289 components: - type: Transform - pos: -41.5,21.5 + pos: 4.5,-7.5 parent: 2 - - uid: 1602 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,4.5 + pos: 5.5,-7.5 parent: 2 - - uid: 1603 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,5.5 + pos: 6.5,-7.5 parent: 2 - - uid: 1604 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2292 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,30.5 + pos: 10.5,1.5 parent: 2 - - uid: 1605 + - uid: 2293 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,31.5 + pos: 10.5,2.5 parent: 2 - - uid: 1606 + - uid: 2294 components: - type: Transform - pos: -38.5,21.5 + rot: -1.5707963267948966 rad + pos: 10.5,0.5 parent: 2 - - uid: 1607 + - uid: 2295 components: - type: Transform - pos: -37.5,21.5 + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 parent: 2 - - uid: 1608 + - type: DeviceNetwork + deviceLists: + - 29 + - uid: 2296 components: - type: Transform - pos: -38.5,20.5 + pos: 9.5,-11.5 parent: 2 - - uid: 1609 + - type: DeviceNetwork + deviceLists: + - 29 +- proto: FirelockGlass + entities: + - uid: 2297 components: - type: Transform - pos: -38.5,19.5 + pos: -17.5,4.5 parent: 2 - - uid: 1610 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2298 components: - type: Transform - pos: -39.5,21.5 + pos: -18.5,2.5 parent: 2 - - uid: 1611 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2299 components: - type: Transform - pos: -37.5,20.5 + pos: -17.5,1.5 parent: 2 - - uid: 1612 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2300 components: - type: Transform - pos: 18.5,-7.5 + pos: -15.5,5.5 parent: 2 - - uid: 1613 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2301 components: - type: Transform - pos: -5.5,14.5 + pos: -11.5,5.5 parent: 2 - - uid: 1614 + - type: DeviceNetwork + deviceLists: + - 2266 + - uid: 2302 components: - type: Transform - pos: -2.5,12.5 + rot: 3.141592653589793 rad + pos: -10.5,3.5 parent: 2 - - uid: 1615 + - type: DeviceNetwork + deviceLists: + - 2276 + - 2266 + - uid: 2303 components: - type: Transform - pos: 21.5,-7.5 + rot: 3.141592653589793 rad + pos: -10.5,4.5 parent: 2 - - uid: 1616 + - type: DeviceNetwork + deviceLists: + - 2276 + - 2266 + - uid: 2304 components: - type: Transform - pos: -41.5,20.5 + rot: 3.141592653589793 rad + pos: -2.5,8.5 parent: 2 - - uid: 1617 + - uid: 2305 components: - type: Transform - pos: -41.5,19.5 + rot: 3.141592653589793 rad + pos: -1.5,8.5 parent: 2 - - uid: 1618 + - uid: 2306 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-13.5 + pos: -12.5,12.5 parent: 2 - - uid: 1619 + - uid: 2307 components: - type: Transform - pos: 2.5,-17.5 + rot: 3.141592653589793 rad + pos: -13.5,11.5 parent: 2 - - uid: 1620 + - uid: 2308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: -12.5,10.5 parent: 2 - - uid: 1621 + - uid: 2309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,6.5 + rot: 3.141592653589793 rad + pos: -6.5,7.5 parent: 2 - - uid: 1622 + - uid: 2310 components: - type: Transform - pos: -5.5,13.5 + rot: 3.141592653589793 rad + pos: -8.5,5.5 parent: 2 - - uid: 1623 + - uid: 2311 components: - type: Transform - pos: -4.5,11.5 + rot: -1.5707963267948966 rad + pos: -2.5,6.5 parent: 2 - - uid: 1624 + - type: DeviceNetwork + deviceLists: + - 2276 + - uid: 2312 components: - type: Transform - pos: -2.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,6.5 parent: 2 - - uid: 1625 + - type: DeviceNetwork + deviceLists: + - 2276 + - uid: 2313 components: - type: Transform - pos: -3.5,9.5 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 parent: 2 - - uid: 1626 + - uid: 2314 components: - type: Transform - pos: -10.5,11.5 + rot: -1.5707963267948966 rad + pos: 7.5,10.5 parent: 2 - - uid: 1627 + - uid: 2315 components: - type: Transform - pos: -10.5,16.5 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 parent: 2 - - uid: 1628 + - uid: 2316 components: - type: Transform - pos: -8.5,13.5 + rot: -1.5707963267948966 rad + pos: 5.5,10.5 parent: 2 - - uid: 1629 + - uid: 2317 components: - type: Transform - pos: -9.5,13.5 + rot: -1.5707963267948966 rad + pos: 3.5,10.5 parent: 2 - - uid: 1630 + - uid: 2318 components: - type: Transform - pos: -9.5,16.5 + rot: -1.5707963267948966 rad + pos: 2.5,12.5 parent: 2 - - uid: 1631 + - uid: 2319 components: - type: Transform - pos: -11.5,11.5 + rot: -1.5707963267948966 rad + pos: 2.5,14.5 parent: 2 - - uid: 1632 + - uid: 2320 components: - type: Transform - pos: -5.5,11.5 + rot: -1.5707963267948966 rad + pos: 7.5,14.5 parent: 2 - - uid: 1633 + - uid: 2321 components: - type: Transform - pos: -5.5,10.5 + rot: -1.5707963267948966 rad + pos: 9.5,16.5 parent: 2 - - uid: 1634 + - uid: 2322 components: - type: Transform - pos: -1.5,15.5 + rot: -1.5707963267948966 rad + pos: 11.5,15.5 parent: 2 - - uid: 1635 + - uid: 2323 components: - type: Transform - pos: -2.5,13.5 + rot: -1.5707963267948966 rad + pos: 12.5,10.5 parent: 2 - - uid: 1636 + - uid: 2324 components: - type: Transform - pos: -35.5,20.5 + rot: -1.5707963267948966 rad + pos: 12.5,11.5 parent: 2 - - uid: 1637 + - uid: 2325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,20.5 + rot: 3.141592653589793 rad + pos: 16.5,9.5 parent: 2 - - uid: 1638 + - uid: 2326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,18.5 + rot: 3.141592653589793 rad + pos: 24.5,14.5 parent: 2 - - uid: 1639 + - uid: 2327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,17.5 + pos: 12.5,1.5 parent: 2 - - uid: 1640 + - uid: 2328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,20.5 + pos: 18.5,2.5 parent: 2 - - uid: 1641 + - uid: 2329 components: - type: Transform - pos: 7.5,42.5 + pos: 20.5,4.5 parent: 2 - - uid: 1642 + - uid: 2330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,29.5 + pos: 12.5,3.5 parent: 2 - - uid: 1643 + - uid: 2331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,34.5 + pos: 12.5,-2.5 parent: 2 - - uid: 1644 + - uid: 2332 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,33.5 + pos: 12.5,-5.5 parent: 2 - - uid: 1645 + - uid: 2333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,31.5 + pos: 17.5,-5.5 parent: 2 - - uid: 1646 + - uid: 2334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,30.5 + pos: 19.5,-3.5 parent: 2 - - uid: 1647 + - uid: 2335 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,29.5 + pos: 13.5,-9.5 parent: 2 - - uid: 1648 + - uid: 2336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,34.5 + pos: 7.5,-10.5 parent: 2 - - uid: 1649 + - uid: 2337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,32.5 + pos: 7.5,-9.5 parent: 2 - - uid: 1650 + - uid: 2338 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,31.5 + pos: 8.5,-8.5 parent: 2 - - uid: 1651 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,29.5 + pos: 6.5,-11.5 parent: 2 - - uid: 1652 + - uid: 2340 components: - type: Transform - pos: 11.5,43.5 + pos: 0.5,-5.5 parent: 2 - - uid: 1653 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2341 components: - type: Transform - pos: -49.5,22.5 + pos: -1.5,-3.5 parent: 2 - - uid: 1654 + - uid: 2342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,5.5 + pos: -0.5,-1.5 parent: 2 - - uid: 1655 + - uid: 2343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.5 + pos: 2.5,-3.5 parent: 2 - - uid: 1656 + - uid: 2344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: 6.5,-2.5 parent: 2 - - uid: 1657 + - uid: 2345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,9.5 + pos: 4.5,-5.5 parent: 2 - - uid: 1658 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 + pos: 3.5,0.5 parent: 2 - - uid: 1659 + - uid: 2347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,9.5 + pos: -1.5,0.5 parent: 2 - - uid: 1660 + - uid: 2348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,8.5 + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 parent: 2 - - uid: 1661 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,13.5 + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 parent: 2 - - uid: 1662 + - type: DeviceNetwork + deviceLists: + - 2277 + - uid: 2350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,14.5 + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 2 - - uid: 1663 + - uid: 2351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,13.5 + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 parent: 2 - - uid: 1664 + - uid: 2352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,14.5 + rot: -1.5707963267948966 rad + pos: 2.5,5.5 parent: 2 - - uid: 1665 + - type: DeviceNetwork + deviceLists: + - 2276 + - 2275 + - uid: 2353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,17.5 + rot: -1.5707963267948966 rad + pos: 2.5,4.5 parent: 2 - - uid: 1666 + - type: DeviceNetwork + deviceLists: + - 2276 + - 2275 + - uid: 2354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,16.5 + rot: -1.5707963267948966 rad + pos: -6.5,2.5 parent: 2 - - uid: 1667 + - type: DeviceNetwork + deviceLists: + - 2276 + - uid: 2355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,17.5 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 parent: 2 - - uid: 1668 + - type: DeviceNetwork + deviceLists: + - 2276 + - uid: 2356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,16.5 + rot: 3.141592653589793 rad + pos: -7.5,0.5 parent: 2 - - uid: 1669 + - uid: 2357 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,4.5 + pos: -23.5,3.5 parent: 2 - - uid: 1670 + - uid: 2358 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,4.5 + pos: -21.5,2.5 parent: 2 - - uid: 5717 + - uid: 2359 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 5384 - - uid: 5718 + pos: 11.5,-15.5 + parent: 2 + - uid: 2360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 5384 - - uid: 5719 + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2273 + - uid: 7344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,6.5 - parent: 5384 - - uid: 5720 + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 + - uid: 7345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 5384 - - uid: 5721 + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 + - uid: 7346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 5384 - - uid: 5722 + rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 + - uid: 7347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 5384 - - uid: 5723 + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 7020 + - uid: 7348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 5384 - - uid: 5724 + rot: 3.141592653589793 rad + pos: -9.5,18.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 + - uid: 7349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,3.5 - parent: 5384 - - uid: 5725 + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 + - uid: 7350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,4.5 - parent: 5384 - - uid: 6761 + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 + - uid: 7351 components: - type: Transform - pos: -0.5,-1.5 - parent: 6631 - - uid: 6762 + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 + - uid: 7352 components: - type: Transform - pos: -0.5,-2.5 - parent: 6631 - - uid: 6763 + rot: 3.141592653589793 rad + pos: -12.5,20.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7024 + - uid: 7353 components: - type: Transform - pos: 1.5,-1.5 - parent: 6631 - - uid: 6764 + rot: 3.141592653589793 rad + pos: -11.5,20.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7024 + - uid: 7354 components: - type: Transform - pos: 1.5,-2.5 - parent: 6631 - - uid: 6765 + rot: 3.141592653589793 rad + pos: -12.5,29.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7024 + - uid: 7355 components: - type: Transform - pos: 0.5,-2.5 - parent: 6631 -- proto: CelloInstrument + rot: 3.141592653589793 rad + pos: -12.5,28.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7024 + - uid: 7356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,26.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 + - uid: 7357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 +- proto: Fireplace entities: - - uid: 1671 + - uid: 2361 components: - type: Transform - pos: -13.713502,6.5177207 + pos: 6.5,43.5 parent: 2 -- proto: CentcomComputerComms +- proto: FlashlightLantern entities: - - uid: 6766 + - uid: 7358 components: - type: Transform - pos: -0.5,10.5 - parent: 6631 -- proto: Chair + pos: 5.598236,17.47464 + parent: 7020 +- proto: FleshBlocker entities: - - uid: 1672 + - uid: 5890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 2 - - uid: 1673 + pos: 10.5,-3.5 + parent: 5438 + - uid: 5891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,4.5 - parent: 2 - - uid: 1674 + pos: 13.5,-2.5 + parent: 5438 + - uid: 5892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 2 - - uid: 1675 + pos: 6.5,-11.5 + parent: 5438 + - uid: 5893 components: - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 1676 + pos: 1.5,-7.5 + parent: 5438 + - uid: 5894 components: - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 1677 + pos: -5.5,-6.5 + parent: 5438 + - uid: 5895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 2 - - uid: 1678 + pos: -5.5,0.5 + parent: 5438 + - uid: 5896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 2 - - uid: 1679 + pos: -3.5,4.5 + parent: 5438 + - uid: 5897 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 2 - - uid: 1680 + pos: 4.5,9.5 + parent: 5438 + - uid: 5898 + components: + - type: Transform + pos: 10.5,10.5 + parent: 5438 + - uid: 5899 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,17.5 - parent: 2 - - uid: 1681 + pos: 0.5,2.5 + parent: 5438 + - uid: 5900 components: - type: Transform - pos: -1.5,-17.5 - parent: 2 - - uid: 1682 + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 5438 + - uid: 5901 components: - type: Transform - pos: -11.5,-10.5 - parent: 2 - - uid: 1683 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 5438 + - uid: 5902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-20.5 - parent: 2 - - uid: 1684 + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 5438 + - uid: 5903 components: - type: Transform - pos: -2.5,13.5 - parent: 2 - - uid: 1685 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 5438 + - uid: 5904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 2 - - uid: 5726 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 5438 +- proto: FleshKudzu + entities: + - uid: 5905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 5384 - - uid: 5727 + pos: -0.5,3.5 + parent: 5438 + - uid: 5906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 5384 - - uid: 5728 + pos: 5.5,-3.5 + parent: 5438 + - uid: 5907 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 5384 - - uid: 5729 + pos: 0.5,3.5 + parent: 5438 + - uid: 5908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 5384 -- proto: ChairBrass - entities: - - uid: 1686 + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 5438 + - uid: 5909 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 2 -- proto: ChairCarp + pos: -2.5,4.5 + parent: 5438 +- proto: FloorCarpetItemRed entities: - - uid: 1687 + - uid: 7359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 2 - - uid: 1688 + pos: 3.406311,20.403595 + parent: 7020 + - uid: 7360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 2 - - uid: 1689 + pos: 4.562561,21.32026 + parent: 7020 +- proto: FloorChasmEntity + entities: + - uid: 2362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-5.5 + pos: -20.5,17.5 parent: 2 - - uid: 1690 + - uid: 2363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,0.5 + pos: -19.5,17.5 parent: 2 -- proto: ChairFolding +- proto: FloorDrain entities: - - uid: 1691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.601019,23.067463 - parent: 2 - - uid: 1692 + - uid: 2364 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.101019,15.917768 + pos: 3.5,9.5 parent: 2 - - uid: 1693 + - type: Fixtures + fixtures: {} + - uid: 2365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.757269,21.699018 + pos: 25.5,-5.5 parent: 2 - - uid: 1694 + - type: Fixtures + fixtures: {} + - uid: 2366 components: - type: Transform - pos: -30.210394,27.793148 + pos: -3.5,20.5 parent: 2 - - uid: 1695 + - type: Fixtures + fixtures: {} + - uid: 2367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,17.5 + pos: 15.5,-9.5 parent: 2 - - uid: 1696 + - type: Fixtures + fixtures: {} + - uid: 2368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,16.5 + pos: -20.5,2.5 parent: 2 - - uid: 1697 + - type: Fixtures + fixtures: {} + - uid: 2369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 + rot: 3.141592653589793 rad + pos: 21.5,-1.5 parent: 2 - - uid: 1698 + - type: Fixtures + fixtures: {} + - uid: 2370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 + pos: 2.5,20.5 parent: 2 - - uid: 1699 + - type: Fixtures + fixtures: {} + - uid: 2371 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-25.5 + pos: -20.5,12.5 parent: 2 - - uid: 1700 + - type: Fixtures + fixtures: {} + - uid: 2372 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,27.5 + pos: 27.5,-14.5 parent: 2 - - uid: 1701 + - type: Fixtures + fixtures: {} + - uid: 2373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,27.5 + pos: -28.5,-3.5 parent: 2 - - uid: 1702 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGrayConcrete + entities: + - uid: 5910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 2 - - uid: 1703 + pos: 11.317052,4.294863 + parent: 5438 + - uid: 5911 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 2 - - uid: 1704 + pos: 11.664274,5.5031967 + parent: 5438 + - uid: 5912 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,14.5 - parent: 2 - - uid: 1705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,31.5 - parent: 2 - - uid: 1706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,31.5 - parent: 2 - - uid: 1707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.698986,-18.488127 - parent: 2 - - uid: 5730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 - parent: 5384 - - uid: 5731 + pos: 7.109045,9.167932 + parent: 5438 +- proto: FloorTileItemOldConcrete + entities: + - uid: 5913 components: - type: Transform - pos: 0.5,-15.5 - parent: 5384 - - uid: 5732 + rot: -1.5707963267948966 rad + pos: 9.645167,-7.6818576 + parent: 5438 + - uid: 5914 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 5384 - - uid: 5733 + pos: 9.645167,-6.6818576 + parent: 5438 + - uid: 5915 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 5384 -- proto: ChairMeat - entities: - - uid: 5734 + pos: 10.700724,-6.1679688 + parent: 5438 + - uid: 5916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 5384 - - uid: 5735 + rot: 1.5707963267948966 rad + pos: -3.60949,-7.6966777 + parent: 5438 + - uid: 5917 components: - type: Transform - pos: 9.5,-3.5 - parent: 5384 -- proto: ChairOfficeDark + pos: -1.4844899,-7.1827884 + parent: 5438 + - uid: 5918 + components: + - type: Transform + pos: -0.8456006,-8.877233 + parent: 5438 + - uid: 5919 + components: + - type: Transform + pos: -0.06782323,-7.5994554 + parent: 5438 +- proto: FloorTrapExplosion entities: - - uid: 1708 + - uid: 5920 components: - type: Transform - pos: -20.497835,6.383761 - parent: 2 - - uid: 1709 + pos: -6.5,3.5 + parent: 5438 +- proto: FloorWaterEntity + entities: + - uid: 2374 components: - type: Transform - pos: 19.5,-6.5 + pos: 3.5,41.5 parent: 2 - - uid: 1710 + - uid: 2375 components: - type: Transform - pos: 13.5,8.5 + pos: 3.5,40.5 parent: 2 - - uid: 1711 + - uid: 2376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,12.5 + pos: 4.5,41.5 parent: 2 - - uid: 1712 + - uid: 2377 components: - type: Transform - pos: 20.5,9.5 + pos: 4.5,40.5 parent: 2 - - uid: 1713 +- proto: FloraRockSolid01 + entities: + - uid: 2378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,3.5 + pos: 28.053844,-16.522423 parent: 2 - - uid: 1714 + - uid: 2379 components: - type: Transform - pos: -8.5,6.5 + pos: 18.447817,-25.615334 parent: 2 - - uid: 1715 + - uid: 2380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.38485,11.017952 + pos: -30.773163,14.049292 parent: 2 - - uid: 1716 + - uid: 2381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-4.5 + pos: -26.518412,-9.377987 parent: 2 - - uid: 1717 + - uid: 2382 components: - type: Transform - pos: -8.5,18.5 + pos: 15.976806,19.524523 parent: 2 - - uid: 1718 + - uid: 2383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.517141,13.474756 + pos: -53.160328,14.058586 parent: 2 - - uid: 5736 + - uid: 7361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 5384 - - uid: 5737 + rot: 1.5707963267948966 rad + pos: -6.7652283,29.674507 + parent: 7020 + - uid: 7362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.8918304,10.5524 - parent: 5384 - - uid: 6767 + rot: 1.5707963267948966 rad + pos: -10.034729,26.893257 + parent: 7020 + - uid: 7363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.4814453,9.717406 - parent: 6631 -- proto: ChairOfficeLight + rot: 1.5707963267948966 rad + pos: -2.9305725,28.018257 + parent: 7020 +- proto: FloraRockSolid02 entities: - - uid: 1719 + - uid: 2384 components: - type: Transform - pos: 3.5,8.5 + pos: 16.321539,-23.4769 parent: 2 - - uid: 1720 + - uid: 2385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 + pos: 8.713559,-20.567253 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 6768 + - uid: 2386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 6631 -- proto: ChairWood - entities: - - uid: 1721 + pos: 21.298412,-26.689472 + parent: 2 + - uid: 2387 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,16.5 + pos: -3.9137,28.38272 parent: 2 - - uid: 1722 + - uid: 2388 components: - type: Transform - pos: -15.5,10.5 + pos: -18.667484,29.074667 parent: 2 - - uid: 1723 + - uid: 2389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,17.5 + pos: -31.601288,5.4406104 parent: 2 - - uid: 1724 + - uid: 2390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,16.5 + pos: -49.548893,26.031582 parent: 2 - - uid: 1725 + - uid: 7364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.379978,23.632008 - parent: 2 - - uid: 1726 + rot: 1.5707963267948966 rad + pos: -9.166748,31.763214 + parent: 7020 +- proto: FloraRockSolid03 + entities: + - uid: 2391 components: - type: Transform - pos: -19.395603,25.507008 + pos: 18.738363,-17.547651 parent: 2 - - uid: 1727 + - uid: 2392 components: - type: Transform - pos: -27.5,30.5 + pos: 26.48864,-22.464691 parent: 2 - - uid: 1728 + - uid: 2393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 + pos: -23.602444,18.64699 parent: 2 -- proto: CheapLighter - entities: - - uid: 1729 + - uid: 2394 components: - type: Transform - pos: -28.816736,-5.9759064 + pos: -32.288788,-1.263641 parent: 2 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 1730 + - uid: 2395 components: - type: Transform - pos: -7.7343435,-3.0232773 + pos: 4.456428,25.585846 parent: 2 -- proto: ChemDispenserMachineCircuitboard - entities: - - uid: 1731 + - uid: 2396 components: - type: Transform - pos: 19.47009,-16.0625 + pos: -42.213253,23.096977 parent: 2 -- proto: ChemistryHotplate +- proto: FloraTree01 entities: - - uid: 1732 + - uid: 2397 components: - type: Transform - pos: 1.5,7.5 + pos: -27.701632,-9.653059 parent: 2 -- proto: ChemMaster - entities: - - uid: 1733 + - uid: 2398 components: - type: Transform - pos: 2.5,7.5 + rot: 1.5707963267948966 rad + pos: -4.60924,24.49527 parent: 2 - - uid: 6769 + - uid: 5921 components: - type: Transform - pos: -1.5,7.5 - parent: 6631 -- proto: CigarCase - entities: - - uid: 1734 + pos: -11.613159,5.4780273 + parent: 5438 + - uid: 5922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 2 -- proto: CigaretteSpent + pos: -10.766693,-9.28891 + parent: 5438 +- proto: FloraTree02 entities: - - uid: 1735 + - uid: 2399 components: - type: Transform - pos: -19.448488,11.595508 + rot: 3.141592653589793 rad + pos: 24.489185,-22.66298 parent: 2 - - uid: 1736 + - uid: 2400 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.528736,11.330075 + pos: 19.718418,-17.104683 parent: 2 - - uid: 1737 + - uid: 2401 components: - type: Transform - pos: -19.392933,11.521434 + pos: -44.745293,17.449074 parent: 2 - - uid: 1738 + - uid: 5923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.880587,11.385632 - parent: 2 - - uid: 1739 + pos: 20.161346,6.8259277 + parent: 5438 +- proto: FloraTree03 + entities: + - uid: 2402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.04108,11.453532 + rot: 3.141592653589793 rad + pos: 22.204302,-18.399342 parent: 2 - - uid: 1740 + - uid: 2403 components: - type: Transform - pos: -19.25713,11.77452 + rot: 1.5707963267948966 rad + pos: -0.064441025,22.385895 parent: 2 - - uid: 5738 - components: - - type: Transform - pos: 11.628232,-3.741358 - parent: 5384 - - uid: 5739 + - uid: 5924 components: - type: Transform - pos: 11.794899,-3.658025 - parent: 5384 - - uid: 5740 + pos: -1.4570007,-19.103851 + parent: 5438 + - uid: 5925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.656011,-3.8246915 - parent: 5384 - - uid: 5741 + pos: 9.94455,-17.299042 + parent: 5438 + - uid: 5926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.697678,-3.6858027 - parent: 5384 - - uid: 5742 + pos: 20.755096,-1.6310425 + parent: 5438 + - uid: 5927 components: - type: Transform - pos: 11.753232,-3.7969143 - parent: 5384 - - uid: 5743 + pos: -2.648346,13.356171 + parent: 5438 + - uid: 5928 components: - type: Transform - pos: 11.281011,-3.764356 - parent: 5384 - - uid: 5744 + pos: -6.3550415,-14.216278 + parent: 5438 + - uid: 5929 components: - type: Transform - pos: 9.572304,-4.1252627 - parent: 5384 -- proto: CigaretteSyndicate + pos: 15.200394,-14.7534485 + parent: 5438 +- proto: FloraTree04 entities: - - uid: 1741 + - uid: 2404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.427847,-5.6286836 + rot: 3.141592653589793 rad + pos: 15.944457,-22.88742 parent: 2 - - uid: 1742 + - uid: 2405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.302847,-5.642573 - parent: 2 -- proto: CigarGold - entities: - - uid: 1743 - components: - - type: Transform - pos: -23.191368,7.1791983 + pos: -22.999718,-3.056841 parent: 2 - - uid: 1745 - components: - - type: Transform - parent: 1744 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CigCartonRed - entities: - - uid: 1750 + - uid: 2406 components: - type: Transform - pos: 9.492766,0.5854777 + rot: 3.141592653589793 rad + pos: 26.496601,-20.78823 parent: 2 -- proto: CigPackSyndicate - entities: - - uid: 1751 + - uid: 2407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.617434,11.728224 + pos: 5.7795143,-21.623447 parent: 2 -- proto: CircuitImprinter - entities: - - uid: 1752 + - uid: 2408 components: - type: Transform - pos: 16.5,-6.5 + rot: 1.5707963267948966 rad + pos: 4.563669,36.356842 parent: 2 -- proto: CleanerDispenser - entities: - - uid: 1753 + - uid: 2409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,1.5 + rot: 1.5707963267948966 rad + pos: 12.256464,38.075592 parent: 2 -- proto: ClockworkGrille - entities: - - uid: 1754 + - uid: 2410 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-9.5 + pos: 31.144978,-7.414804 parent: 2 - - uid: 1755 + - uid: 5930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-9.5 - parent: 2 - - uid: 1756 + pos: -11.192657,-6.7471313 + parent: 5438 +- proto: FloraTree05 + entities: + - uid: 2411 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-9.5 + pos: 21.596924,-25.567657 parent: 2 - - uid: 1757 + - uid: 2412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.1939673,21.010895 parent: 2 - - uid: 6770 - components: - - type: Transform - pos: -1.5,10.5 - parent: 6631 - - uid: 6771 + - uid: 5931 components: - type: Transform - pos: -2.5,7.5 - parent: 6631 - - uid: 6772 + pos: 3.3729248,15.090546 + parent: 5438 + - uid: 5932 components: - type: Transform - pos: 2.5,10.5 - parent: 6631 - - uid: 6773 + pos: 18.747269,-5.875946 + parent: 5438 +- proto: FloraTree06 + entities: + - uid: 2413 components: - type: Transform - pos: -3.5,4.5 - parent: 6631 - - uid: 6774 + rot: 3.141592653589793 rad + pos: 19.312038,-21.541523 + parent: 2 + - uid: 5933 components: - type: Transform - pos: 4.5,4.5 - parent: 6631 - - uid: 6775 + pos: 19.161346,10.404205 + parent: 5438 + - uid: 5934 components: - type: Transform - pos: 3.5,7.5 - parent: 6631 - - uid: 6776 + pos: 10.65448,14.528046 + parent: 5438 +- proto: FloraTreeLarge01 + entities: + - uid: 2414 components: - type: Transform - pos: -0.5,13.5 - parent: 6631 - - uid: 6777 + rot: 3.141592653589793 rad + pos: 26.806042,-19.129515 + parent: 2 + - uid: 2415 components: - type: Transform - pos: -0.5,14.5 - parent: 6631 - - uid: 6778 + pos: 17.556114,-18.59428 + parent: 2 + - uid: 2416 components: - type: Transform - pos: 0.5,14.5 - parent: 6631 - - uid: 6779 + rot: 1.5707963267948966 rad + pos: 1.2824192,41.602203 + parent: 2 + - uid: 5935 components: - type: Transform - pos: 1.5,14.5 - parent: 6631 - - uid: 6780 + pos: -13.903656,2.1660767 + parent: 5438 + - uid: 5936 components: - type: Transform - pos: 1.5,13.5 - parent: 6631 -- proto: ClockworkShield + pos: -4.2998047,-16.323639 + parent: 5438 +- proto: FloraTreeLarge02 entities: - - uid: 1758 + - uid: 2417 components: - type: Transform - pos: -24.552418,-6.604625 + pos: 21.549353,-23.755053 parent: 2 -- proto: ClockworkWindow - entities: - - uid: 1759 + - uid: 2418 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-9.5 + pos: -44.72395,23.432573 parent: 2 - - uid: 1760 + - uid: 2419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-9.5 + rot: 1.5707963267948966 rad + pos: 9.500604,44.52408 parent: 2 - - uid: 1761 + - uid: 2420 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-9.5 + pos: 29.886478,-8.789006 parent: 2 - - uid: 1762 + - uid: 5937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-9.5 - parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 1763 + pos: -9.718201,-13.716431 + parent: 5438 + - uid: 5938 components: - type: Transform - pos: 20.5,-9.5 - parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1764 + pos: -5.857361,11.366547 + parent: 5438 + - uid: 5939 components: - type: Transform - pos: -25.5,-2.5 - parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 1765 + pos: 17.40747,-12.447815 + parent: 5438 + - uid: 5940 components: - type: Transform - pos: -14.5,-20.5 - parent: 2 - - uid: 1766 + pos: 2.538208,-18.211426 + parent: 5438 +- proto: FloraTreeLarge03 + entities: + - uid: 2421 components: - type: Transform - pos: -1.5,-23.5 + pos: -49.015957,13.50914 parent: 2 -- proto: ClosetL3ScienceFilled +- proto: FloraTreeLarge04 entities: - - uid: 1767 + - uid: 2422 components: - type: Transform - pos: 19.5,-9.5 + pos: -26.616955,31.479336 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 1768 + - uid: 5941 components: - type: Transform - pos: 9.5,42.5 - parent: 2 - - uid: 1769 + pos: 21.333466,1.8431091 + parent: 5438 +- proto: FloraTreeLarge05 + entities: + - uid: 2423 components: - type: Transform - pos: 11.5,41.5 + rot: 3.141592653589793 rad + pos: 14.122406,-22.217464 parent: 2 - - uid: 1770 + - uid: 5942 components: - type: Transform - pos: 10.5,40.5 - parent: 2 - - uid: 1771 + pos: -13.514252,-4.69812 + parent: 5438 + - uid: 5943 components: - type: Transform - pos: 9.5,38.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1777 - - 1778 - - 1779 - - 1780 - - 1781 - - 1772 - - 1773 - - 1774 - - 1775 - - 1776 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom + pos: 16.860977,12.61496 + parent: 5438 +- proto: FloraTreeLarge06 entities: - - uid: 1782 + - uid: 5944 + components: + - type: Transform + pos: -10.391846,7.539734 + parent: 5438 + - uid: 5945 components: - type: Transform - pos: -14.5,-19.5 - parent: 2 - - uid: 1783 + pos: 6.5676575,15.313446 + parent: 5438 +- proto: FoamCutlass + entities: + - uid: 5946 components: - type: Transform - pos: 1.5,-23.5 - parent: 2 -- proto: ClosetRadiationSuitFilled + pos: -3.4474792,-2.5195618 + parent: 5438 +- proto: FoamedIronMetal entities: - - uid: 1784 + - uid: 5947 components: - type: Transform - pos: 18.5,-9.5 - parent: 2 - - uid: 1785 + pos: -6.5,-3.5 + parent: 5438 + - uid: 5948 components: - type: Transform - pos: 29.5,-0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1786 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 1787 + pos: -7.5,-3.5 + parent: 5438 + - uid: 5949 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 5438 + - uid: 5950 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 5438 + - uid: 5951 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 5438 + - uid: 5952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 2 - - uid: 4202 + pos: -5.5,-5.5 + parent: 5438 + - uid: 5953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 5438 + - uid: 5954 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-19.5 - parent: 2 -- proto: ClosetWallMaintenanceFilledRandom + pos: -6.5,-2.5 + parent: 5438 +- proto: FoodBakedVulpkaninPlate entities: - - uid: 1788 + - uid: 7365 components: - type: Transform - pos: -24.5,3.5 - parent: 2 -- proto: ClothingBeltUtilityEngineering + pos: -2.4633484,31.74842 + parent: 7020 +- proto: FoodBluePumpkin entities: - - uid: 1789 + - uid: 2424 components: - type: Transform - pos: 23.427187,-7.249175 + pos: -3.3849654,19.382927 parent: 2 -- proto: ClothingBeltUtilityFilled +- proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 1790 + - uid: 2425 components: - type: Transform - pos: -15.442857,1.210175 + rot: 3.141592653589793 rad + pos: -28.618376,-5.4970956 parent: 2 -- proto: ClothingEyesBlindfold +- proto: FoodBreadMimana entities: - - uid: 1791 + - uid: 2426 components: - type: Transform - pos: -14.679216,17.565767 + pos: -18.514608,-0.3739791 parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget +- proto: FoodCakePumpkin entities: - - uid: 1792 + - uid: 2427 components: - type: Transform - pos: -15.43945,1.1719149 + pos: -19.383614,-5.3101735 parent: 2 -- proto: ClothingHandsGlovesCombat +- proto: FoodCartCold entities: - - uid: 5745 + - uid: 2186 components: - type: Transform - pos: 13.186774,-6.6650424 - parent: 5384 -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 5746 + rot: -1.5707963267948966 rad + pos: -21.5,15.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2194 + - 2196 + - 2191 + - 2195 + - 2192 + - 2193 + - 2189 + - 2188 + - 2190 + - 2187 + - type: Storage + storedItems: + 2194: + position: 0,0 + _rotation: South + 2196: + position: 1,0 + _rotation: South + 2191: + position: 2,0 + _rotation: South + 2195: + position: 3,0 + _rotation: South + 2192: + position: 4,0 + _rotation: South + 2193: + position: 5,0 + _rotation: South + 2189: + position: 6,0 + _rotation: South + 2188: + position: 7,0 + _rotation: South + 2190: + position: 0,2 + _rotation: South + 2187: + position: 1,2 + _rotation: South + - uid: 5866 components: - type: Transform - pos: 13.855815,-3.0644848 - parent: 5384 -- proto: ClothingHandsGlovesJanitor + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 5438 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 5870 + - 5871 + - 5872 + - 5873 + - 5874 + - 5875 + - 5876 + - 5877 + - 5869 + - 5868 + - 5867 + - type: Storage + storedItems: + 5870: + position: 0,0 + _rotation: South + 5871: + position: 2,0 + _rotation: South + 5872: + position: 4,0 + _rotation: South + 5873: + position: 5,0 + _rotation: South + 5874: + position: 6,0 + _rotation: South + 5875: + position: 7,0 + _rotation: South + 5876: + position: 0,2 + _rotation: South + 5877: + position: 1,2 + _rotation: South + 5869: + position: 2,2 + _rotation: South + 5868: + position: 3,2 + _rotation: South + 5867: + position: 5,2 + _rotation: South +- proto: FoodChevre entities: - - uid: 1793 + - uid: 2428 components: + - type: MetaData + desc: Последний наивкуснейший сырок во вселенной. Надеемся что скоро гуманоиды научатся его производить вновь. + name: сырок - type: Transform - pos: -20.5,1.5 + pos: -13.502503,-1.6144849 parent: 2 -- proto: ClothingHeadHatBeretHoS +- proto: FoodCondimentBottleKetchup entities: - - uid: 12 + - uid: 7282 components: - type: Transform - parent: 3 - - type: SolutionContainerManager - solutions: null - containers: - - food + parent: 7281 - type: Physics canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 13 - type: InsideEntityStorage -- proto: ClothingHeadHatCapHoS +- proto: FoodCondimentPacketKetchup entities: - - uid: 17 + - uid: 7283 components: - - type: MetaData - desc: Кажется эту фуражку носил какой-то Генри, и он явно был ГСБ! - name: фуражка Генри - type: Transform - parent: 3 + parent: 7281 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHatFlowerWreath +- proto: FoodDonutMeat entities: - - uid: 1794 + - uid: 5955 + components: + - type: Transform + pos: 8.471405,-10.322275 + parent: 5438 +- proto: FoodEggBoiled + entities: + - uid: 2429 components: - type: Transform - pos: 9.458004,20.346401 + pos: -29.607687,20.429268 parent: 2 - - uid: 1795 + - uid: 2430 components: - type: Transform - pos: 12.489254,22.393276 + pos: -26.347271,19.752184 parent: 2 -- proto: ClothingHeadHatHoodWinterHOS - entities: - - uid: 7 + - uid: 2431 components: - type: Transform - parent: 4 - - type: AttachedClothing - attachedUid: 4 -- proto: ClothingHeadHatHoshat + rot: -1.5707963267948966 rad + pos: -32.555603,23.335518 + parent: 2 +- proto: FoodFrozenPopsicleBerry entities: - - uid: 14 + - uid: 2191 components: - type: Transform - parent: 3 - - type: SolutionContainerManager - solutions: null - containers: - - food + parent: 2186 - type: Physics canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 15 - - type: InsideEntityStorage -- proto: ClothingHeadHatStrawHat +- proto: FoodFrozenPopsicleJumbo entities: - - uid: 1746 + - uid: 2192 components: - type: Transform - parent: 1744 + parent: 2186 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetAncient +- proto: FoodFrozenPopsicleOrange entities: - - uid: 5748 + - uid: 2193 components: - type: Transform - parent: 5747 + parent: 2186 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetERTLeader - entities: - - uid: 6781 - components: - - type: Transform - pos: 1.796875,10.761618 - parent: 6631 -- proto: ClothingHeadHelmetERTSecurity +- proto: FoodFrozenPopsicleTrash entities: - - uid: 6782 - components: - - type: Transform - pos: 3.2363281,4.803143 - parent: 6631 - - uid: 6783 + - uid: 5956 components: + - type: MetaData + desc: Кажется она утеряла свою страшную силу... + name: волшебная палочка - type: Transform - pos: -2.6855469,4.787518 - parent: 6631 -- proto: ClothingHeadHelmetEVA + pos: 4.1941924,-0.761803 + parent: 5438 +- proto: FoodFrozenSandwich entities: - - uid: 219 + - uid: 2194 components: - type: Transform - parent: 217 + parent: 2186 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetPodWars - entities: - - uid: 5752 - components: - - type: Transform - pos: 4.6011963,-0.3486328 - parent: 5384 -- proto: ClothingHeadHelmetRaid +- proto: FoodFrozenSandwichStrawberry entities: - - uid: 5753 + - uid: 2195 components: - type: Transform - pos: -0.118377686,0.45568848 - parent: 5384 -- proto: ClothingMaskGasSyndicate + parent: 2186 + - type: Physics + canCollide: False +- proto: FoodFrozenSundae entities: - - uid: 1796 + - uid: 2196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.233402,-7.652699 - parent: 2 -- proto: ClothingMaskJackal + parent: 2186 + - type: Physics + canCollide: False +- proto: FoodKebabSkewer entities: - - uid: 1797 + - uid: 2432 components: - type: Transform - pos: -4.7166624,17.56398 + pos: -22.505842,-4.494341 parent: 2 -- proto: ClothingMaskMime - entities: - - uid: 1798 + - uid: 2433 components: - type: Transform - pos: -17.311483,-0.3427291 + pos: 25.38586,-25.260622 parent: 2 -- proto: ClothingMaskMuzzle - entities: - - uid: 1799 + - uid: 2434 components: - type: Transform - pos: -14.679216,17.826183 + pos: -2.5440254,-2.3007455 parent: 2 - - uid: 1800 + - uid: 2435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.2947874,17.47023 + pos: 25.54434,-25.260622 parent: 2 -- proto: ClothingMaskSadMime - entities: - - uid: 1801 + - uid: 2436 components: - type: Transform - pos: -17.342733,-0.3427291 + pos: 25.531134,-25.432255 parent: 2 -- proto: ClothingMaskScaredMime +- proto: FoodMeat entities: - - uid: 1802 + - uid: 2437 components: - type: Transform - pos: -17.358358,-0.3427291 + pos: 15.340123,-10.511646 parent: 2 -- proto: ClothingMaskSexyMime - entities: - - uid: 1803 + - uid: 2438 components: - type: Transform - pos: -17.342733,-0.3427291 + pos: 15.53804,-10.699146 parent: 2 -- proto: ClothingNeckCloakHos - entities: - - uid: 10 + - uid: 7366 components: - type: Transform - parent: 3 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 11 - - type: InsideEntityStorage -- proto: ClothingNeckSyndicakePin - entities: - - uid: 1804 + pos: -7.939209,20.45142 + parent: 7020 + - uid: 7367 components: - type: Transform - pos: -28.539452,-5.9368467 - parent: 2 -- proto: ClothingOuterArmorBulletproof + pos: -9.553772,20.691006 + parent: 7020 +- proto: FoodMeatClown entities: - - uid: 1805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.681165,21.664278 - parent: 2 - - uid: 1806 + - uid: 2439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.587415,21.497612 + pos: -27.530617,-0.5479635 parent: 2 -- proto: ClothingOuterArmorHeavyGreen - entities: - - uid: 6784 - components: - - type: Transform - pos: 1.3613281,10.347843 - parent: 6631 -- proto: ClothingOuterArmorHeavyRed - entities: - - uid: 6785 - components: - - type: Transform - pos: -2.6542969,4.3634686 - parent: 6631 - - uid: 6786 - components: - - type: Transform - pos: 3.2988281,4.3634686 - parent: 6631 -- proto: ClothingOuterArmorPodWars - entities: - - uid: 5754 + - uid: 7368 components: - - type: MetaData - name: тяжёлая броня Броненосец II - type: Transform - pos: 4.5543213,-0.7392578 - parent: 5384 - - type: ClothingSpeedModifier - sprintModifier: 0.65 - walkModifier: 0.95 -- proto: ClothingOuterArmorReflective + pos: -7.5259094,27.425537 + parent: 7020 +- proto: FoodMeatMeatball entities: - - uid: 1807 - components: - - type: Transform - pos: -12.624288,21.448252 - parent: 2 - - uid: 1808 + - uid: 5958 components: - type: Transform - pos: -12.738872,21.656586 - parent: 2 -- proto: ClothingOuterCoatExpensive + parent: 5957 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatWheat entities: - - uid: 1809 + - uid: 5959 components: - - type: MetaData - desc: Кажется её носил сам Керн Грей! - type: Transform - pos: 4.5549645,37.390812 - parent: 2 - - uid: 1810 + pos: 8.721405,-10.266719 + parent: 5438 + - uid: 5960 components: - - type: MetaData - desc: Кажется её носил сам Тиффани Андразез! - type: Transform - pos: -27.050194,-9.37217 - parent: 2 -- proto: ClothingOuterHardsuitAncientEVA - entities: - - uid: 5749 + pos: 0.6918235,-10.724166 + parent: 5438 + - uid: 5961 components: - type: Transform - parent: 5747 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 220 + pos: 13.748808,-6.2607083 + parent: 5438 + - uid: 5962 components: - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6787 + pos: -4.3498435,-7.6825004 + parent: 5438 + - uid: 5963 components: - type: Transform - pos: 4.267578,1.458277 - parent: 6631 - - uid: 6788 + pos: 5.413028,-2.497959 + parent: 5438 + - uid: 5964 components: - type: Transform - pos: 4.658203,1.442652 - parent: 6631 - - uid: 6789 + pos: 1.9408052,2.9048193 + parent: 5438 + - uid: 5965 components: - type: Transform - pos: 4.470703,1.661402 - parent: 6631 -- proto: ClothingOuterPonchoClassic - entities: - - uid: 1747 + pos: -0.46118033,-2.622959 + parent: 5438 + - uid: 5966 components: - type: Transform - parent: 1744 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterHoS + pos: 2.747153,-0.38684744 + parent: 5438 +- proto: FoodMimana entities: - - uid: 4 + - uid: 2440 components: - type: Transform - parent: 3 - - type: ToggleableClothing - clothingUid: 7 - actionEntity: 6 - - type: ContainerContainer - containers: - toggleable-clothing: !type:ContainerSlot - showEnts: False - occludes: True - ent: 7 - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6 - solution@food: !type:ContainerSlot - showEnts: False - occludes: True - ent: 5 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage -- proto: ClothingShoesBling - entities: - - uid: 1811 + pos: -17.762913,-0.31614935 + parent: 2 + - uid: 2441 components: - type: Transform - pos: 5.5,-0.5 + pos: -17.669163,-0.51927435 parent: 2 -- proto: ClothingShoesBootsLaceup +- proto: FoodPieBananaCream entities: - - uid: 5755 + - uid: 2442 components: - type: Transform - pos: 13.340893,-7.206709 - parent: 5384 -- proto: ClothingShoesBootsMag + pos: -17.540585,6.6822104 + parent: 2 +- proto: FoodPoppy entities: - - uid: 1812 + - uid: 7066 components: + - type: MetaData + desc: Красивый цветок, который крепится на голове + name: цветок на голове - type: Transform - pos: 20.38795,-7.506245 - parent: 2 - - uid: 1813 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPumpkin + entities: + - uid: 2443 components: - type: Transform - pos: 7.6359763,-18.404793 + pos: 1.4038715,22.46007 parent: 2 - - uid: 1814 + - uid: 2444 components: - type: Transform - pos: 7.2953143,-18.269377 + pos: -4.5905547,23.418402 parent: 2 - - uid: 1815 + - uid: 2445 components: - type: Transform - pos: 7.365143,-18.561043 + pos: 5.705955,23.33507 parent: 2 -- proto: ClothingShoesBootsMagSyndie - entities: - - uid: 5756 + - uid: 2446 components: - type: Transform - pos: -1.5,9.5 - parent: 5384 -- proto: ClothingShoesBootsSalvage - entities: - - uid: 5757 + pos: 2.4222903,25.360151 + parent: 2 + - uid: 2447 components: - type: Transform - pos: 10.381824,-4.2077317 - parent: 5384 -- proto: ClothingShoesBootsWork - entities: - - uid: 5758 + pos: 14.497608,-15.6885195 + parent: 2 + - uid: 2448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.31538,-3.5293458 - parent: 5384 - - uid: 5759 + pos: 16.62261,-14.65727 + parent: 2 + - uid: 2449 components: - type: Transform - pos: 6.903199,-7.673198 - parent: 5384 -- proto: ClothingShoesColorBlack + pos: 16.455942,-13.50102 + parent: 2 +- proto: FoodSnackSyndi entities: - - uid: 1817 + - uid: 7067 components: - type: Transform - parent: 1816 + parent: 7057 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1818 + - uid: 7068 components: - type: Transform - parent: 1816 + parent: 7057 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1819 + - uid: 7069 components: - type: Transform - parent: 1816 + parent: 7057 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1820 + - uid: 7070 components: - type: Transform - parent: 1816 + parent: 7057 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1821 + - uid: 7369 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1822 + pos: -4.3307495,20.679192 + parent: 7020 + - uid: 7370 + components: + - type: Transform + pos: 3.9516907,21.73716 + parent: 7020 + - uid: 7371 + components: + - type: Transform + pos: -13.513916,25.398727 + parent: 7020 + - uid: 8309 components: - type: Transform - parent: 1816 + parent: 8308 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1823 + - uid: 8310 components: - type: Transform - parent: 1816 + parent: 8308 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1824 + - uid: 8311 components: - type: Transform - parent: 1816 + parent: 8308 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesCult +- proto: FoodTinMRETrash entities: - - uid: 5760 + - uid: 2450 components: - - type: MetaData - desc: Ботинки Броненосец II, реликвия войн подов - name: ботинки Броненосец II - type: Transform - pos: 4.5543213,-1.0673828 - parent: 5384 -- proto: ClothingShoesGaloshes + pos: -20.133705,10.270635 + parent: 2 +- proto: FoodTinPeachesTrash entities: - - uid: 1748 + - uid: 2451 components: - type: Transform - parent: 1744 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1833 + rot: 1.5707963267948966 rad + pos: -20.695131,8.423355 + parent: 2 +- proto: FoodWatermelon + entities: + - uid: 2452 components: - type: Transform - pos: -19.628536,2.6641564 + pos: -17.383614,-5.424757 parent: 2 -- proto: ClothingShoesTourist +- proto: ForkPlastic entities: - - uid: 1834 + - uid: 2453 components: - type: Transform - pos: -13.506974,24.506996 + pos: -21.374422,15.488436 parent: 2 - - uid: 1835 +- proto: FuelDispenser + entities: + - uid: 2454 components: - type: Transform - pos: -13.506974,24.303871 + pos: 23.5,-3.5 parent: 2 -- proto: ClothingUniformJumpskirtPrisoner +- proto: GasCanisterBrokenBase entities: - - uid: 1825 + - uid: 5967 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1826 + pos: 9.5,8.5 + parent: 5438 +- proto: GasMinerNitrogenStation + entities: + - uid: 2455 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1827 + pos: 22.5,5.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 2456 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1828 + pos: 24.5,5.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 2457 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitAerostatic + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPassiveVent entities: - - uid: 5761 + - uid: 2458 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2459 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-12.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 2 + - uid: 7372 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.661739,-3.5450866 - parent: 5384 -- proto: ClothingUniformJumpsuitColorLightBrown - entities: - - uid: 1749 + pos: 16.5,25.5 + parent: 7020 + - uid: 7373 components: - type: Transform - parent: 1744 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitDetective + rot: -1.5707963267948966 rad + pos: 16.5,26.5 + parent: 7020 +- proto: GasPipeBend entities: - - uid: 5762 + - uid: 2465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2466 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.756218,-6.9428196 - parent: 5384 -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 5763 + pos: 1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.544435,-7.607968 - parent: 5384 -- proto: ClothingUniformJumpsuitHawaiBlack - entities: - - uid: 1836 + pos: 16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2468 components: - type: Transform - pos: -13.006974,24.460121 + rot: 3.141592653589793 rad + pos: 18.5,0.5 parent: 2 -- proto: ClothingUniformJumpsuitHawaiBlue - entities: - - uid: 1837 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2469 components: - type: Transform - pos: -12.772599,24.663246 + rot: -1.5707963267948966 rad + pos: 24.5,2.5 parent: 2 -- proto: ClothingUniformJumpsuitHawaiRed - entities: - - uid: 1838 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2470 components: - type: Transform - pos: -12.585099,24.413246 + rot: -1.5707963267948966 rad + pos: 21.5,1.5 parent: 2 -- proto: ClothingUniformJumpsuitHawaiYellow - entities: - - uid: 1839 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2471 components: - type: Transform - pos: -12.319474,24.694496 + rot: 3.141592653589793 rad + pos: 19.5,1.5 parent: 2 -- proto: ClothingUniformJumpsuitHosFormal - entities: - - uid: 8 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2472 components: - type: Transform - parent: 3 - - type: SuitSensor - mode: SensorBinary - - type: DeviceNetwork - address: 4F5B-785D - transmitFrequency: 1262 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 9 - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitLoungewear - entities: - - uid: 5764 + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2473 components: - type: Transform - pos: 9.544706,-3.4584973 - parent: 5384 -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 1829 + pos: 3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2474 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1830 + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2475 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1831 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2476 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1832 + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2477 components: - type: Transform - parent: 1816 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClownRecorder - entities: - - uid: 1840 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2478 components: - type: Transform - pos: -17.175377,6.5738945 + rot: 3.141592653589793 rad + pos: -3.5,-0.5 parent: 2 -- proto: Cobweb2 - entities: - - uid: 1841 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2479 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,21.5 + pos: 11.5,-6.5 parent: 2 - - uid: 1842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2481 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2482 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2483 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,21.5 + pos: 8.5,10.5 parent: 2 - - uid: 1843 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2484 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,21.5 + pos: -5.5,3.5 parent: 2 - - uid: 1844 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,21.5 + rot: -1.5707963267948966 rad + pos: -4.5,3.5 parent: 2 - - uid: 1845 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,21.5 + rot: 3.141592653589793 rad + pos: -9.5,12.5 parent: 2 - - uid: 1846 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2487 components: - type: Transform - pos: -27.5,21.5 + rot: 3.141592653589793 rad + pos: -7.5,10.5 parent: 2 - - uid: 1847 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,21.5 + rot: 3.141592653589793 rad + pos: -14.5,4.5 parent: 2 - - uid: 1848 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,21.5 + rot: -1.5707963267948966 rad + pos: -8.5,4.5 parent: 2 - - uid: 1849 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2490 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,21.5 + pos: -13.5,1.5 parent: 2 - - uid: 1850 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2491 components: - type: Transform - pos: -29.5,21.5 + pos: 23.5,-4.5 parent: 2 - - uid: 1851 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2492 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,21.5 + pos: 27.5,-5.5 parent: 2 - - uid: 1852 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2494 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,21.5 + pos: -8.5,16.5 parent: 2 - - uid: 1853 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2495 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2496 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 7020 + - uid: 7375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 7020 + - uid: 7376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 7020 + - uid: 7377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 7020 + - uid: 7378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 7020 + - uid: 7379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 7020 +- proto: GasPipeFourway + entities: + - uid: 2499 components: - type: Transform - pos: -26.5,21.5 + pos: 19.5,2.5 parent: 2 - - uid: 1854 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,21.5 + pos: 7.5,11.5 parent: 2 - - uid: 1855 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2501 components: - type: Transform - pos: -25.5,21.5 + pos: -12.5,11.5 parent: 2 - - uid: 1856 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2502 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,21.5 + pos: 10.5,-5.5 parent: 2 - - uid: 1857 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,21.5 + pos: -18.5,-7.5 parent: 2 - - uid: 1858 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,21.5 + pos: -6.5,0.5 parent: 2 - - uid: 1859 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,21.5 + pos: -15.5,3.5 parent: 2 - - uid: 1860 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2506 components: - type: Transform - pos: -28.5,21.5 + pos: -15.5,-6.5 parent: 2 -- proto: ComfyChair - entities: - - uid: 1861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2507 components: - type: Transform - pos: 8.5,9.5 + pos: 11.5,7.5 parent: 2 - - uid: 1862 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,7.5 + pos: -4.5,9.5 parent: 2 - - uid: 1863 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2509 components: - type: Transform - pos: -11.5,9.5 + pos: -4.5,10.5 parent: 2 - - uid: 1864 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + pos: -14.5,6.5 parent: 2 - - uid: 1865 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeStraight + entities: + - uid: 2511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 + rot: 3.141592653589793 rad + pos: 26.5,-11.5 parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 1866 + - uid: 2512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-12.5 + pos: 7.5,18.5 parent: 2 - - uid: 1867 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2513 components: - type: Transform - pos: 21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3292: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerCargoBounty - entities: - - uid: 1868 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2514 components: - type: Transform - pos: 15.5,13.5 + pos: 7.5,17.5 parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 1869 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2515 components: - type: Transform - pos: 10.5,11.5 + rot: 3.141592653589793 rad + pos: 6.5,16.5 parent: 2 - - uid: 1870 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2516 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,7.5 + pos: 6.5,18.5 parent: 2 -- proto: ComputerComms - entities: - - uid: 1871 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2517 components: - type: Transform - pos: -3.5,1.5 + rot: 3.141592653589793 rad + pos: -7.5,14.5 parent: 2 - - uid: 1872 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2518 components: - type: Transform - pos: 0.5,2.5 + rot: 3.141592653589793 rad + pos: -7.5,13.5 parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 1873 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2519 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,9.5 + pos: -7.5,15.5 parent: 2 -- proto: ComputerId - entities: - - uid: 1874 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2520 components: - type: Transform - pos: 1.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,17.5 parent: 2 - - uid: 1875 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 parent: 2 -- proto: ComputerMassMedia - entities: - - uid: 1876 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2522 components: - type: Transform - pos: -9.5,1.5 + rot: 3.141592653589793 rad + pos: 34.5,-6.5 parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 1877 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2523 components: - type: Transform - pos: 13.5,4.5 + pos: 12.5,11.5 parent: 2 - - uid: 5765 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2524 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 5384 - - uid: 5766 + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2525 components: - type: Transform - pos: -1.5,-6.5 - parent: 5384 -- proto: ComputerRadar - entities: - - uid: 1878 + rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2526 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,1.5 + pos: 23.5,2.5 parent: 2 - - uid: 1879 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-7.5 + rot: -1.5707963267948966 rad + pos: 18.5,2.5 parent: 2 - - uid: 1880 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,5.5 + rot: -1.5707963267948966 rad + pos: 17.5,2.5 parent: 2 - - uid: 5767 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2529 components: - type: Transform - pos: -8.5,0.5 - parent: 5384 - - uid: 5768 + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,10.5 - parent: 5384 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 1881 + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 + rot: -1.5707963267948966 rad + pos: 13.5,2.5 parent: 2 - - uid: 1882 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-4.5 + rot: -1.5707963267948966 rad + pos: 12.5,2.5 parent: 2 -- proto: ComputerRoboticsControl - entities: - - uid: 1883 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2533 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-4.5 + pos: 11.5,2.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 1884 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,8.5 + pos: 19.5,4.5 parent: 2 -- proto: ComputerShuttle - entities: - - uid: 6790 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2535 components: - type: Transform - pos: 0.5,13.5 - parent: 6631 -- proto: ComputerShuttleCargo - entities: - - uid: 1885 + pos: 10.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2536 components: - type: Transform - pos: 16.5,13.5 + pos: 10.5,5.5 parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 1886 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,9.5 + pos: 10.5,6.5 parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 1887 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,6.5 + pos: 10.5,7.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 1888 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 + pos: 10.5,8.5 parent: 2 - - uid: 1889 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,6.5 + pos: 10.5,9.5 parent: 2 - - uid: 1890 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,9.5 + pos: 10.5,10.5 parent: 2 - - uid: 1891 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2542 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,18.5 + pos: 9.5,11.5 parent: 2 - - uid: 5769 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2543 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 5384 - - uid: 5770 - components: - - type: Transform - pos: 4.5,11.5 - parent: 5384 - - uid: 5771 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 5384 - - uid: 5772 + pos: 8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 5384 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 1892 + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2545 components: - type: Transform - pos: 13.5,-3.5 + pos: 7.5,10.5 parent: 2 -- proto: ComputerTelevision - entities: - - uid: 1893 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2546 components: - type: Transform - pos: 15.5,17.5 + pos: 7.5,9.5 parent: 2 - - uid: 1894 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,1.5 + rot: 1.5707963267948966 rad + pos: 12.5,11.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 1895 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,17.5 + rot: 1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 - - uid: 1896 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 + rot: 1.5707963267948966 rad + pos: 15.5,11.5 parent: 2 - - uid: 1897 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,21.5 + rot: 1.5707963267948966 rad + pos: 17.5,11.5 parent: 2 - - uid: 1898 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,16.5 + pos: 18.5,11.5 parent: 2 - - uid: 1899 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2552 components: - type: Transform - pos: 22.5,20.5 + rot: 1.5707963267948966 rad + pos: 19.5,11.5 parent: 2 - - uid: 1900 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,21.5 + rot: 1.5707963267948966 rad + pos: 20.5,11.5 parent: 2 - - uid: 1901 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,21.5 + rot: 1.5707963267948966 rad + pos: 21.5,11.5 parent: 2 - - uid: 1902 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,21.5 + rot: 1.5707963267948966 rad + pos: 22.5,11.5 parent: 2 - - uid: 1903 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,21.5 + rot: 1.5707963267948966 rad + pos: 23.5,11.5 parent: 2 - - uid: 1904 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 + rot: 1.5707963267948966 rad + pos: 24.5,11.5 parent: 2 - - uid: 1905 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-3.5 + rot: 3.141592653589793 rad + pos: 16.5,10.5 parent: 2 - - uid: 1906 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-3.5 + rot: 3.141592653589793 rad + pos: 16.5,9.5 parent: 2 - - uid: 1907 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2560 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-3.5 + pos: 5.5,11.5 parent: 2 - - uid: 1908 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,21.5 + rot: 3.141592653589793 rad + pos: 7.5,12.5 parent: 2 - - uid: 1909 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,21.5 + rot: 3.141592653589793 rad + pos: 7.5,13.5 parent: 2 - - uid: 1910 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,21.5 + rot: 3.141592653589793 rad + pos: 7.5,14.5 parent: 2 - - uid: 1911 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2564 components: - type: Transform - pos: 22.5,18.5 + rot: 3.141592653589793 rad + pos: 7.5,15.5 parent: 2 - - uid: 1912 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2565 components: - type: Transform - pos: 22.5,19.5 + rot: 3.141592653589793 rad + pos: 11.5,12.5 parent: 2 - - uid: 1913 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,17.5 + rot: 3.141592653589793 rad + pos: 11.5,13.5 parent: 2 - - uid: 1914 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,21.5 + pos: 11.5,15.5 parent: 2 - - uid: 1915 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2568 components: - type: Transform - pos: 22.5,17.5 + pos: 4.5,10.5 parent: 2 - - uid: 1916 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2569 components: - type: Transform - pos: 22.5,21.5 + rot: 3.141592653589793 rad + pos: 3.5,13.5 parent: 2 - - uid: 1917 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2570 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-3.5 + pos: 2.5,14.5 parent: 2 - - uid: 1918 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2571 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-3.5 + pos: 9.5,4.5 parent: 2 - - uid: 1919 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,16.5 + rot: -1.5707963267948966 rad + pos: 8.5,4.5 parent: 2 - - uid: 1920 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,16.5 + rot: -1.5707963267948966 rad + pos: 7.5,4.5 parent: 2 -- proto: CowCube - entities: - - uid: 1921 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2574 components: - - type: MetaData - desc: Кажется пока строили эту станцию она совсем засохла... - type: Transform - pos: 6.568431,-14.727572 + rot: -1.5707963267948966 rad + pos: 6.5,4.5 parent: 2 -- proto: CrateArtifactContainer - entities: - - uid: 1922 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2575 components: - type: Transform - pos: 25.5,-7.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 2 - - uid: 1923 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2576 components: - type: Transform - pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + pos: 3.5,4.5 parent: 2 -- proto: CrateGenericSteel - entities: - - uid: 1924 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2577 components: - type: Transform - pos: 24.5,16.5 + rot: -1.5707963267948966 rad + pos: 2.5,4.5 parent: 2 - - uid: 1925 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2578 components: - type: Transform - pos: 23.5,16.5 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 parent: 2 - - uid: 1926 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2579 components: - type: Transform - pos: 22.5,8.5 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 parent: 2 - - uid: 1927 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2580 components: - type: Transform - pos: 22.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,4.5 parent: 2 -- proto: CrateLivestock - entities: - - uid: 1928 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2581 components: - type: Transform - pos: 27.5,13.5 + rot: -1.5707963267948966 rad + pos: -3.5,4.5 parent: 2 -- proto: CrateNPCHamlet - entities: - - uid: 1929 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2582 components: - type: Transform - pos: 1.5,-4.5 + rot: -1.5707963267948966 rad + pos: -4.5,4.5 parent: 2 -- proto: CrateStoneGrave - entities: - - uid: 1930 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2583 components: - type: Transform - pos: 13.5,20.5 + rot: 3.141592653589793 rad + pos: -2.5,3.5 parent: 2 - - uid: 1931 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2584 components: - type: Transform - pos: 9.5,22.5 + rot: 3.141592653589793 rad + pos: -2.5,2.5 parent: 2 - - uid: 1932 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2585 components: - type: Transform - pos: 12.5,22.5 + rot: 3.141592653589793 rad + pos: -2.5,1.5 parent: 2 - - uid: 1933 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2586 components: - type: Transform - pos: 9.5,20.5 + rot: 3.141592653589793 rad + pos: 0.5,3.5 parent: 2 - - uid: 1934 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2587 components: - type: Transform - pos: 12.5,20.5 + rot: 3.141592653589793 rad + pos: 0.5,2.5 parent: 2 -- proto: CrateWeaponSecure - entities: - - uid: 249 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2588 components: - - type: MetaData - desc: Большой ящик патрон - name: ящик для патрон - type: Transform - pos: -9.5,18.5 + rot: 3.141592653589793 rad + pos: 0.5,1.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 252 - - 251 - - 253 - - 254 - - 256 - - 250 - - 257 - - 255 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrayonRainbow - entities: - - uid: 221 - components: - - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CrewMonitoringServer - entities: - - uid: 1935 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2589 components: - type: Transform - pos: -3.5,-4.5 + rot: 3.141592653589793 rad + pos: 4.5,3.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: CrowbarRed - entities: - - uid: 1936 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2590 components: - type: Transform - pos: -29.18533,9.488508 + rot: 3.141592653589793 rad + pos: 4.5,2.5 parent: 2 - - uid: 5773 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2591 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.485455,-1.4102929 - parent: 5384 -- proto: CryogenicSleepUnit - entities: - - uid: 1937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-3.5 + pos: 4.5,1.5 parent: 2 - - uid: 1938 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 + rot: 3.141592653589793 rad + pos: -5.5,5.5 parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 1939 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 + rot: 3.141592653589793 rad + pos: -5.5,6.5 parent: 2 -- proto: CrystalGrey - entities: - - uid: 5774 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2594 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 5384 - - uid: 5775 + pos: -5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2595 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 5384 - - uid: 5776 + pos: -5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2596 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 5384 -- proto: CurtainsBlueOpen - entities: - - uid: 1940 + pos: -5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2597 components: - type: Transform - pos: 2.5,12.5 + rot: -1.5707963267948966 rad + pos: -4.5,11.5 parent: 2 -- proto: CurtainsOrange - entities: - - uid: 1941 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2598 components: - type: Transform - pos: -22.5,26.5 + rot: 3.141592653589793 rad + pos: -3.5,12.5 parent: 2 - - uid: 1942 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2599 components: - type: Transform - pos: -47.5,17.5 + rot: 1.5707963267948966 rad + pos: -6.5,11.5 parent: 2 - - uid: 1943 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2600 components: - type: Transform - pos: 7.5,42.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 parent: 2 - - uid: 1944 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2601 components: - type: Transform - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: -9.5,11.5 parent: 2 - - uid: 1945 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2602 components: - type: Transform - pos: -22.5,-9.5 + rot: 1.5707963267948966 rad + pos: -11.5,11.5 parent: 2 - - uid: 1946 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2603 components: - type: Transform - pos: -23.5,-9.5 + rot: 1.5707963267948966 rad + pos: -13.5,11.5 parent: 2 - - uid: 1947 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2604 components: - type: Transform - pos: -24.5,-9.5 + rot: 3.141592653589793 rad + pos: -8.5,12.5 parent: 2 -- proto: CurtainsOrangeOpen - entities: - - uid: 1948 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2605 components: - type: Transform - pos: -29.5,30.5 + rot: 3.141592653589793 rad + pos: -8.5,13.5 parent: 2 - - uid: 1949 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2606 components: - type: Transform - pos: -48.5,17.5 + pos: -12.5,12.5 parent: 2 -- proto: CurtainSpawner - entities: - - uid: 6791 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2607 components: - type: Transform - pos: 3.5,3.5 - parent: 6631 - - uid: 6792 + pos: -12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2608 components: - type: Transform - pos: -2.5,3.5 - parent: 6631 - - uid: 6793 + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2609 components: - type: Transform - pos: 1.5,9.5 - parent: 6631 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 1950 + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2610 components: - type: Transform - pos: 25.5,-3.5 + rot: 3.141592653589793 rad + pos: 10.5,0.5 parent: 2 - - type: WarpPoint - location: генератор аномалий -- proto: DefaultStationBeaconArmory - entities: - - uid: 1951 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2611 components: - type: Transform - pos: -10.5,19.5 + rot: 3.141592653589793 rad + pos: 10.5,-0.5 parent: 2 - - type: WarpPoint - location: оружейная -- proto: DefaultStationBeaconArrivals - entities: - - uid: 1952 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2612 components: - type: Transform - pos: -6.5,-8.5 + rot: 3.141592653589793 rad + pos: 10.5,-1.5 parent: 2 - - type: WarpPoint - location: прибытие -- proto: DefaultStationBeaconBar - entities: - - uid: 1953 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2613 components: - type: Transform - pos: 3.5,-12.5 + rot: 3.141592653589793 rad + pos: 10.5,-2.5 parent: 2 - - type: WarpPoint - location: бар -- proto: DefaultStationBeaconBotany - entities: - - uid: 1954 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2614 components: - type: Transform - pos: 12.5,-13.5 + rot: 3.141592653589793 rad + pos: 10.5,-3.5 parent: 2 - - type: WarpPoint - location: ботаника -- proto: DefaultStationBeaconBridge - entities: - - uid: 1955 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2615 components: - type: Transform - pos: 0.5,-3.5 + rot: 3.141592653589793 rad + pos: 10.5,-4.5 parent: 2 - - type: WarpPoint - location: мостик -- proto: DefaultStationBeaconBrig - entities: - - uid: 1956 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2616 components: - type: Transform - pos: -6.5,13.5 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 parent: 2 - - type: WarpPoint - location: бриг -- proto: DefaultStationBeaconChapel - entities: - - uid: 1957 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2617 components: - type: Transform - pos: -22.5,-7.5 + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 parent: 2 - - type: WarpPoint - location: церковь -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 1958 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2618 components: - type: Transform - pos: -8.5,-4.5 + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 parent: 2 - - type: WarpPoint - location: криогенные капсулы -- proto: DefaultStationBeaconDisposals - entities: - - uid: 1959 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2619 components: - type: Transform - pos: -26.5,-1.5 + rot: -1.5707963267948966 rad + pos: 15.5,-5.5 parent: 2 - - type: WarpPoint - location: мусорка -- proto: DefaultStationBeaconEngineering - entities: - - uid: 1960 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2620 components: - type: Transform - pos: 15.5,2.5 + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 parent: 2 - - type: WarpPoint - location: инженерный отдел -- proto: DefaultStationBeaconEvac - entities: - - uid: 1961 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2621 components: - type: Transform - pos: -14.5,-18.5 + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 parent: 2 - - type: WarpPoint - location: отбытие -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 1962 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2622 components: - type: Transform - pos: 6.5,-17.5 + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 2 - - type: WarpPoint - location: ева -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 1963 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2623 components: - type: Transform - pos: -19.5,2.5 + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 parent: 2 - - type: WarpPoint - location: коморка уборщика -- proto: DefaultStationBeaconKitchen - entities: - - uid: 1964 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2624 components: - type: Transform - pos: 9.5,-9.5 + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 parent: 2 - - type: WarpPoint - location: кухня -- proto: DefaultStationBeaconLibrary - entities: - - uid: 1965 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2625 components: - type: Transform - pos: -18.5,23.5 + rot: 3.141592653589793 rad + pos: 18.5,-4.5 parent: 2 - - type: WarpPoint - location: Библиотека -- proto: DefaultStationBeaconMedical - entities: - - uid: 1966 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2626 components: - type: Transform - pos: 6.5,12.5 + rot: 3.141592653589793 rad + pos: 18.5,-3.5 parent: 2 - - type: WarpPoint - location: медицинский отдел -- proto: DefaultStationBeaconMorgue - entities: - - uid: 1967 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2627 components: - type: Transform - pos: 12.5,19.5 + rot: 3.141592653589793 rad + pos: 22.5,-6.5 parent: 2 - - type: WarpPoint - location: морг -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 1968 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2628 components: - type: Transform - pos: -0.5,17.5 + rot: 3.141592653589793 rad + pos: 22.5,-7.5 parent: 2 - - type: WarpPoint - location: камера брига -- proto: DefaultStationBeaconSalvage - entities: - - uid: 1969 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2629 components: - type: Transform - pos: 20.5,16.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 2 - - type: WarpPoint - location: утилизаторская -- proto: DefaultStationBeaconScience - entities: - - uid: 1970 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2630 components: - type: Transform - pos: 14.5,-4.5 + rot: 3.141592653589793 rad + pos: 10.5,-7.5 parent: 2 - - type: WarpPoint - location: рнд -- proto: DefaultStationBeaconSupply - entities: - - uid: 1971 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2631 components: - type: Transform - pos: 13.5,10.5 + rot: 3.141592653589793 rad + pos: 10.5,-8.5 parent: 2 - - type: WarpPoint - location: карго -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 1972 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2632 components: - type: Transform - pos: -3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 parent: 2 - - type: WarpPoint - location: серверная -- proto: DefaultStationBeaconVault - entities: - - uid: 1973 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2633 components: - - type: MetaData - name: станционный маяк - type: Transform - pos: 5.5,1.5 + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 parent: 2 - - type: WarpPoint - location: хранилище -- proto: DefibrillatorCabinetFilled - entities: - - uid: 1974 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 + pos: 9.5,-10.5 parent: 2 - - uid: 1975 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2635 components: - type: Transform - pos: 8.5,14.5 + pos: 9.5,-11.5 parent: 2 -- proto: DeskBell - entities: - - uid: 1976 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2636 components: - type: Transform - pos: 12.5,9.5 + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 parent: 2 - - uid: 1977 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2637 components: - type: Transform - pos: 4.5,6.5 + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 parent: 2 - - uid: 1978 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2638 components: - type: Transform - pos: -8.508056,5.571272 + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 parent: 2 -- proto: DiceBag - entities: - - uid: 1979 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2639 components: - type: Transform - pos: -23.600153,7.0858197 + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 parent: 2 -- proto: DisposalBend - entities: - - uid: 1980 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 parent: 2 - - uid: 1981 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2641 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-3.5 + pos: 3.5,-10.5 parent: 2 - - uid: 1982 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2642 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-8.5 + pos: 3.5,-11.5 parent: 2 - - uid: 1983 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 + pos: 2.5,-8.5 parent: 2 - - uid: 1984 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2644 components: - type: Transform - pos: 0.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,-5.5 parent: 2 - - uid: 1985 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 parent: 2 - - uid: 1986 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,10.5 + pos: 6.5,-5.5 parent: 2 - - uid: 1987 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,5.5 + pos: 5.5,-5.5 parent: 2 - - uid: 1988 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,5.5 + pos: 8.5,-4.5 parent: 2 - - uid: 1989 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2649 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,3.5 + pos: 1.5,-7.5 parent: 2 - - uid: 1990 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,2.5 + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 parent: 2 - - uid: 1991 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,8.5 + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 parent: 2 - - uid: 1992 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 parent: 2 - - uid: 1993 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,3.5 + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 parent: 2 - - uid: 1994 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2654 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,2.5 + pos: -4.5,-7.5 parent: 2 - - uid: 1995 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,9.5 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 2 - - uid: 1996 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2656 components: - type: Transform - pos: -2.5,9.5 + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 parent: 2 - - uid: 1997 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2657 components: - type: Transform - pos: -11.5,-4.5 + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 parent: 2 - - uid: 1998 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-4.5 + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 parent: 2 - - uid: 1999 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2659 components: - type: Transform - pos: -23.5,-0.5 + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 parent: 2 - - uid: 2000 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 + rot: -1.5707963267948966 rad + pos: -13.5,-7.5 parent: 2 - - uid: 2001 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 + rot: -1.5707963267948966 rad + pos: -14.5,-7.5 parent: 2 - - uid: 5777 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 5384 - - uid: 5778 + rot: -1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 5384 - - uid: 5779 + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2664 components: - type: Transform - pos: 6.5,-9.5 - parent: 5384 -- proto: DisposalJunction - entities: - - uid: 2002 + rot: -1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2665 components: - type: Transform - pos: 10.5,3.5 + rot: -1.5707963267948966 rad + pos: -19.5,-7.5 parent: 2 - - uid: 2003 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2666 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-6.5 + pos: -20.5,-7.5 parent: 2 - - uid: 2004 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2667 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 - - uid: 2005 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 + pos: 0.5,-5.5 parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 2006 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + pos: -18.5,-6.5 parent: 2 - - uid: 5780 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2670 components: - type: Transform - pos: -2.5,-9.5 - parent: 5384 -- proto: DisposalPipe - entities: - - uid: 1549 + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 2 - - uid: 2007 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,20.5 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 parent: 2 - - uid: 2008 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,20.5 + pos: -6.5,-2.5 parent: 2 - - uid: 2009 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,-3.5 parent: 2 - - uid: 2010 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,-4.5 parent: 2 - - uid: 2011 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,-5.5 parent: 2 - - uid: 2012 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,-6.5 parent: 2 - - uid: 2013 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,18.5 + rot: -1.5707963267948966 rad + pos: -7.5,0.5 parent: 2 - - uid: 2014 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2680 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: -8.5,3.5 parent: 2 - - uid: 2015 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2681 components: - type: Transform - pos: -5.5,1.5 + rot: -1.5707963267948966 rad + pos: -9.5,3.5 parent: 2 - - uid: 2016 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2682 components: - type: Transform - pos: -1.5,15.5 + rot: -1.5707963267948966 rad + pos: -10.5,3.5 parent: 2 - - uid: 2017 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2683 components: - type: Transform - pos: -5.5,-2.5 + rot: -1.5707963267948966 rad + pos: -12.5,3.5 parent: 2 - - uid: 2018 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2684 components: - type: Transform - pos: -5.5,-4.5 + rot: -1.5707963267948966 rad + pos: -13.5,3.5 parent: 2 - - uid: 2019 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2685 components: - type: Transform - pos: -22.5,3.5 + rot: -1.5707963267948966 rad + pos: -14.5,3.5 parent: 2 - - uid: 2020 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2686 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-6.5 + pos: -16.5,3.5 parent: 2 - - uid: 2021 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + rot: 3.141592653589793 rad + pos: -17.5,1.5 parent: 2 - - uid: 2022 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 + rot: 1.5707963267948966 rad + pos: -18.5,2.5 parent: 2 - - uid: 2023 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 + pos: -17.5,4.5 parent: 2 - - uid: 2024 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 + rot: 3.141592653589793 rad + pos: -15.5,4.5 parent: 2 - - uid: 2025 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + rot: 3.141592653589793 rad + pos: -15.5,5.5 parent: 2 - - uid: 2026 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + rot: 3.141592653589793 rad + pos: -10.5,12.5 parent: 2 - - uid: 2027 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + rot: 3.141592653589793 rad + pos: -10.5,13.5 parent: 2 - - uid: 2028 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: -10.5,14.5 parent: 2 - - uid: 2029 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 + rot: 3.141592653589793 rad + pos: -10.5,15.5 parent: 2 - - uid: 2030 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 + rot: 3.141592653589793 rad + pos: -10.5,16.5 parent: 2 - - uid: 2031 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 + rot: 3.141592653589793 rad + pos: -10.5,17.5 parent: 2 - - uid: 2032 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 + rot: 3.141592653589793 rad + pos: 4.5,-11.5 parent: 2 - - uid: 2033 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 + rot: 3.141592653589793 rad + pos: 6.5,-11.5 parent: 2 - - uid: 2034 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-6.5 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 parent: 2 - - uid: 2035 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2701 components: - type: Transform - pos: -11.5,-5.5 + rot: 3.141592653589793 rad + pos: 4.5,-9.5 parent: 2 - - uid: 2036 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 + rot: 3.141592653589793 rad + pos: 4.5,-8.5 parent: 2 - - uid: 2037 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2703 components: - type: Transform - pos: -5.5,4.5 + rot: 3.141592653589793 rad + pos: 4.5,-7.5 parent: 2 - - uid: 2038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2704 components: - type: Transform - pos: -5.5,3.5 + rot: 3.141592653589793 rad + pos: 6.5,-9.5 parent: 2 - - uid: 2039 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2705 components: - type: Transform - pos: -5.5,-0.5 + rot: 3.141592653589793 rad + pos: 6.5,-8.5 parent: 2 - - uid: 2040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2706 components: - type: Transform - pos: -5.5,2.5 + rot: 3.141592653589793 rad + pos: 6.5,-7.5 parent: 2 - - uid: 2041 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2707 components: - type: Transform - pos: -5.5,-1.5 + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 parent: 2 - - uid: 2042 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-4.5 + pos: 9.5,-10.5 parent: 2 - - uid: 2043 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-4.5 + pos: 10.5,-10.5 parent: 2 - - uid: 2044 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2710 components: - type: Transform - pos: -5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 - - uid: 2045 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2711 components: - type: Transform - pos: -5.5,-5.5 + rot: -1.5707963267948966 rad + pos: 12.5,-10.5 parent: 2 - - uid: 2046 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 parent: 2 - - uid: 2047 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2713 components: - type: Transform - pos: -23.5,-1.5 + rot: -1.5707963267948966 rad + pos: 14.5,-10.5 parent: 2 - - uid: 2048 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 parent: 2 - - uid: 2049 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-5.5 parent: 2 - - uid: 2050 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-4.5 parent: 2 - - uid: 2051 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2717 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-2.5 + pos: 5.5,-3.5 parent: 2 - - uid: 2052 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2718 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-0.5 + pos: 6.5,-2.5 parent: 2 - - uid: 2054 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 parent: 2 - - uid: 2055 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-6.5 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - - uid: 2056 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-6.5 + pos: 1.5,-5.5 parent: 2 - - uid: 2057 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-6.5 + pos: 1.5,-4.5 parent: 2 - - uid: 2058 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 parent: 2 - - uid: 2059 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 + rot: 3.141592653589793 rad + pos: 1.5,-1.5 parent: 2 - - uid: 2060 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-6.5 + pos: 3.5,-0.5 parent: 2 - - uid: 2061 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-6.5 + pos: 4.5,-0.5 parent: 2 - - uid: 2062 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 parent: 2 - - uid: 2063 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2728 components: - type: Transform - pos: 10.5,-5.5 + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 parent: 2 - - uid: 2064 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2729 components: - type: Transform - pos: 10.5,-4.5 + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 parent: 2 - - uid: 2065 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2730 components: - type: Transform - pos: 10.5,-3.5 + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 parent: 2 - - uid: 2066 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2731 components: - type: Transform - pos: 10.5,-2.5 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 parent: 2 - - uid: 2067 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2732 components: - type: Transform - pos: 10.5,-1.5 + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 parent: 2 - - uid: 2068 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2733 components: - type: Transform - pos: 10.5,-0.5 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 parent: 2 - - uid: 2069 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2734 components: - type: Transform - pos: 10.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 parent: 2 - - uid: 2070 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2735 components: - type: Transform - pos: 10.5,1.5 + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 parent: 2 - - uid: 2071 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2736 components: - type: Transform - pos: 10.5,2.5 + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 parent: 2 - - uid: 2072 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 parent: 2 - - uid: 2073 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,4.5 + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 parent: 2 - - uid: 2074 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2739 components: - type: Transform - pos: 0.5,-5.5 + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 parent: 2 - - uid: 2075 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2740 components: - type: Transform - pos: 25.5,12.5 + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 parent: 2 - - uid: 2076 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2741 components: - type: Transform - pos: 25.5,11.5 + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 parent: 2 - - uid: 2077 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2742 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,10.5 + pos: -11.5,-6.5 parent: 2 - - uid: 2078 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2743 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,10.5 + pos: -12.5,-6.5 parent: 2 - - uid: 2079 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2744 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,10.5 + pos: -13.5,-6.5 parent: 2 - - uid: 2080 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2745 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,10.5 + pos: -14.5,-6.5 parent: 2 - - uid: 2081 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2746 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,10.5 + pos: -16.5,-6.5 parent: 2 - - uid: 2082 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2747 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,10.5 + pos: -17.5,-6.5 parent: 2 - - uid: 2083 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2748 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,10.5 + pos: -18.5,-6.5 parent: 2 - - uid: 2084 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2749 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,10.5 + pos: -19.5,-6.5 parent: 2 - - uid: 2085 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2750 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,10.5 + pos: -20.5,-6.5 parent: 2 - - uid: 2086 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2751 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,10.5 + pos: 7.5,-6.5 parent: 2 - - uid: 2087 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2752 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,10.5 + pos: 8.5,-6.5 parent: 2 - - uid: 2088 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2753 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,10.5 + pos: 9.5,-6.5 parent: 2 - - uid: 2089 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2754 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,10.5 + pos: 10.5,-6.5 parent: 2 - - uid: 2090 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 + rot: 3.141592653589793 rad + pos: 11.5,-5.5 parent: 2 - - uid: 2091 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2756 components: - type: Transform - pos: 10.5,9.5 + rot: 3.141592653589793 rad + pos: 11.5,-4.5 parent: 2 - - uid: 2092 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2757 components: - type: Transform - pos: 10.5,8.5 + rot: 3.141592653589793 rad + pos: 11.5,-3.5 parent: 2 - - uid: 2093 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2758 components: - type: Transform - pos: 10.5,7.5 + rot: 3.141592653589793 rad + pos: 11.5,-1.5 parent: 2 - - uid: 2094 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2759 components: - type: Transform - pos: 10.5,6.5 + rot: 3.141592653589793 rad + pos: 11.5,-0.5 parent: 2 - - uid: 2095 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2760 components: - type: Transform - pos: 10.5,5.5 + rot: -1.5707963267948966 rad + pos: 12.5,0.5 parent: 2 - - uid: 2096 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2761 components: - type: Transform - pos: 10.5,4.5 + rot: -1.5707963267948966 rad + pos: 13.5,0.5 parent: 2 - - uid: 2097 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,3.5 + rot: -1.5707963267948966 rad + pos: 15.5,0.5 parent: 2 - - uid: 2098 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,2.5 + rot: -1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 - - uid: 2099 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,7.5 + rot: -1.5707963267948966 rad + pos: 20.5,0.5 parent: 2 - - uid: 2100 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 + rot: -1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 - - uid: 2101 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,13.5 + rot: -1.5707963267948966 rad + pos: 23.5,0.5 parent: 2 - - uid: 2102 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 + rot: -1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - - uid: 2103 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 + rot: -1.5707963267948966 rad + pos: 26.5,0.5 parent: 2 - - uid: 2104 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,3.5 + pos: 27.5,-0.5 parent: 2 - - uid: 2105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,3.5 + pos: 27.5,-1.5 parent: 2 - - uid: 2106 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2771 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 + pos: 27.5,-2.5 parent: 2 - - uid: 2107 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,6.5 + pos: 27.5,-3.5 parent: 2 - - uid: 2108 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,5.5 + pos: 27.5,-4.5 parent: 2 - - uid: 2109 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2774 components: - type: Transform - pos: -22.5,4.5 + pos: 11.5,1.5 parent: 2 - - uid: 2110 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,10.5 + pos: 11.5,2.5 parent: 2 - - uid: 2111 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 + pos: 11.5,3.5 parent: 2 - - uid: 2112 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 + pos: 11.5,4.5 parent: 2 - - uid: 2113 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,7.5 + pos: 11.5,5.5 parent: 2 - - uid: 2114 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 + pos: 11.5,6.5 parent: 2 - - uid: 2115 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + pos: 11.5,9.5 parent: 2 - - uid: 2116 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,3.5 + rot: -1.5707963267948966 rad + pos: 10.5,7.5 parent: 2 - - uid: 2117 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,2.5 + rot: -1.5707963267948966 rad + pos: 9.5,7.5 parent: 2 - - uid: 2118 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,3.5 + rot: -1.5707963267948966 rad + pos: 8.5,7.5 parent: 2 - - uid: 2119 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2784 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,3.5 + pos: 12.5,7.5 parent: 2 - - uid: 2120 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2785 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,3.5 + pos: 13.5,7.5 parent: 2 - - uid: 2121 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: 14.5,7.5 parent: 2 - - uid: 2122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,12.5 + rot: 1.5707963267948966 rad + pos: 15.5,7.5 parent: 2 - - uid: 2123 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,6.5 + rot: 1.5707963267948966 rad + pos: 13.5,10.5 parent: 2 - - uid: 2124 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2789 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,3.5 + pos: 14.5,10.5 parent: 2 - - uid: 2125 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2790 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,3.5 + pos: 15.5,10.5 parent: 2 - - uid: 2126 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,2.5 + pos: 16.5,10.5 parent: 2 - - uid: 2127 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,2.5 + pos: 17.5,10.5 parent: 2 - - uid: 2128 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,14.5 + rot: 1.5707963267948966 rad + pos: 18.5,10.5 parent: 2 - - uid: 2129 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-2.5 + rot: 1.5707963267948966 rad + pos: 19.5,10.5 parent: 2 - - uid: 2130 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-6.5 + pos: 21.5,10.5 parent: 2 - - uid: 2131 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-4.5 + pos: 22.5,10.5 parent: 2 - - uid: 2132 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-3.5 + rot: 1.5707963267948966 rad + pos: 23.5,10.5 parent: 2 - - uid: 2133 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-4.5 + pos: 24.5,10.5 parent: 2 - - uid: 2134 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 + pos: 12.5,12.5 parent: 2 - - uid: 2135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2800 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 2 - - uid: 2136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-1.5 + pos: 10.5,10.5 parent: 2 - - uid: 2137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2801 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,20.5 + pos: 9.5,10.5 parent: 2 - - uid: 2138 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2802 components: - type: Transform - pos: -1.5,16.5 + rot: 3.141592653589793 rad + pos: 8.5,11.5 parent: 2 - - uid: 2139 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2803 components: - type: Transform - pos: -1.5,17.5 + rot: 3.141592653589793 rad + pos: 8.5,13.5 parent: 2 - - uid: 2140 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,20.5 + rot: 3.141592653589793 rad + pos: 8.5,14.5 parent: 2 - - uid: 5781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 5384 - - uid: 5782 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2805 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,6.5 - parent: 5384 - - uid: 5783 - components: - - type: Transform - pos: 4.5,5.5 - parent: 5384 - - uid: 5784 - components: - - type: Transform - pos: 4.5,4.5 - parent: 5384 - - uid: 5785 + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2806 components: - type: Transform - pos: 4.5,3.5 - parent: 5384 - - uid: 5786 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 5384 - - uid: 5787 + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 5384 - - uid: 5788 + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-10.5 - parent: 5384 - - uid: 5789 + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 5384 - - uid: 5790 + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 5384 - - uid: 5791 + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 5384 - - uid: 5792 + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 5384 - - uid: 5793 + pos: -6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 5384 - - uid: 5794 + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 5384 - - uid: 5795 + pos: -5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 5384 - - uid: 5796 + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2817 components: - type: Transform - pos: -2.5,-8.5 - parent: 5384 - - uid: 5797 + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2818 components: - type: Transform - pos: -2.5,-7.5 - parent: 5384 - - uid: 5798 + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 5384 - - uid: 5799 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 5384 - - uid: 5800 + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 5384 - - uid: 5801 + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2822 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 5384 - - uid: 5802 + pos: -4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2823 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-11.5 - parent: 5384 - - uid: 5803 + pos: -4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2824 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-12.5 - parent: 5384 - - uid: 5804 + pos: -4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-13.5 - parent: 5384 -- proto: DisposalPipeBroken - entities: - - uid: 2141 + pos: -9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,20.5 + pos: -8.5,12.5 parent: 2 -- proto: DisposalTrunk - entities: - - uid: 2142 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2827 components: - type: Transform - pos: -5.5,5.5 + pos: -7.5,11.5 parent: 2 - - uid: 2143 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 + rot: 1.5707963267948966 rad + pos: -6.5,10.5 parent: 2 - - uid: 2144 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 parent: 2 - - uid: 2145 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 + rot: 1.5707963267948966 rad + pos: -10.5,9.5 parent: 2 - - uid: 2146 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2831 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-6.5 + pos: -9.5,9.5 parent: 2 - - uid: 2147 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 + rot: 1.5707963267948966 rad + pos: -8.5,9.5 parent: 2 - - uid: 2148 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2833 components: - type: Transform - pos: 8.5,5.5 + rot: 1.5707963267948966 rad + pos: -7.5,9.5 parent: 2 - - uid: 2149 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + pos: -6.5,9.5 parent: 2 - - uid: 2150 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2835 components: - type: Transform - pos: 25.5,13.5 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 parent: 2 - - uid: 2151 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,8.5 + pos: -14.5,9.5 parent: 2 - - uid: 2152 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,20.5 + pos: -14.5,8.5 parent: 2 - - uid: 5805 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 5384 - - uid: 5806 + pos: -14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 5384 - - uid: 5807 + pos: -14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2840 components: - type: Transform - pos: -2.5,-6.5 - parent: 5384 - - uid: 5808 + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2841 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 5384 -- proto: DisposalUnit - entities: - - uid: 2153 + pos: -11.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2842 components: - type: Transform - pos: -5.5,5.5 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 parent: 2 - - uid: 2154 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2843 components: - type: Transform - pos: 13.5,-6.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 parent: 2 - - uid: 2155 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2844 components: - type: Transform - pos: 12.5,-8.5 + rot: 1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - uid: 2156 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2845 components: - type: Transform - pos: 25.5,13.5 + rot: 1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 2157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2846 components: - type: Transform - pos: 6.5,-8.5 + rot: 1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - - uid: 2158 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2847 components: - type: Transform - pos: 8.5,5.5 + rot: 1.5707963267948966 rad + pos: -14.5,1.5 parent: 2 - - uid: 2159 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2848 components: - type: Transform - pos: -15.5,-6.5 + pos: -13.5,3.5 parent: 2 - - uid: 2160 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2849 components: - type: Transform - pos: -0.5,-4.5 + pos: -15.5,-5.5 parent: 2 - - uid: 2161 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2850 components: - type: Transform - pos: -19.5,8.5 + rot: -1.5707963267948966 rad + pos: -3.5,9.5 parent: 2 - - uid: 2162 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2851 components: - type: Transform - pos: -51.5,20.5 + rot: -1.5707963267948966 rad + pos: -2.5,9.5 parent: 2 - - uid: 5809 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2852 components: - type: Transform - pos: 12.5,-10.5 - parent: 5384 - - uid: 5810 + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2853 components: - type: Transform - pos: 7.5,6.5 - parent: 5384 - - uid: 5811 + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2854 components: - type: Transform - pos: -2.5,-6.5 - parent: 5384 -- proto: DisposalYJunction - entities: - - uid: 2163 + rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-6.5 + rot: 1.5707963267948966 rad + pos: -16.5,6.5 parent: 2 -- proto: DogBed - entities: - - uid: 2164 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2856 components: - type: Transform - pos: 4.5,-2.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 2 - - uid: 2165 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2857 components: - type: Transform - pos: -4.5,17.5 + rot: 3.141592653589793 rad + pos: 20.5,8.5 parent: 2 - - uid: 2166 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2858 components: - type: Transform - pos: -9.5,21.5 + rot: 3.141592653589793 rad + pos: 20.5,7.5 parent: 2 - - uid: 2167 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2859 components: - type: Transform - pos: 1.5,9.5 + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 parent: 2 - - uid: 2168 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2860 components: - - type: MetaData - desc: Удобная лежанка для пауков, имеется ремень для пристёгивания. - name: паучья лежанка - type: Transform - pos: -10.5,15.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 2 - - uid: 2169 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2861 components: - - type: MetaData - desc: Лежанка для кота. Имеется ремешок для пристёгивания. - name: кошачья лежанка - type: Transform - pos: 18.5,16.5 + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 parent: 2 -- proto: DresserCaptainFilled - entities: - - uid: 2170 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2862 components: - type: Transform - pos: -2.5,1.5 + rot: 1.5707963267948966 rad + pos: 16.5,-2.5 parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 2171 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2863 components: - type: Transform - pos: 19.5,6.5 + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 parent: 2 -- proto: DresserFilled - entities: - - uid: 2172 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2864 components: - type: Transform - pos: -48.5,17.5 + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 parent: 2 - - uid: 2173 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2865 components: - type: Transform - pos: -21.5,-8.5 + rot: 3.141592653589793 rad + pos: 19.5,-3.5 parent: 2 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 2174 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2866 components: - type: Transform - pos: 8.5,-3.5 + pos: 19.5,-5.5 parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 2175 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2867 components: - type: Transform - pos: 17.5,7.5 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 2176 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2868 components: - type: Transform - pos: 18.5,-1.5 + rot: 3.141592653589793 rad + pos: 23.5,-6.5 parent: 2 -- proto: DrinkBeerBottleFull - entities: - - uid: 2177 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2869 components: - type: Transform - pos: -3.613471,-3.884079 + rot: 3.141592653589793 rad + pos: 23.5,-5.5 parent: 2 - - uid: 2178 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2870 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.3912482,-4.1757455 + pos: 22.5,-4.5 parent: 2 - - uid: 2179 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2871 components: - type: Transform - pos: -27.502636,-1.4606961 + rot: -1.5707963267948966 rad + pos: 21.5,-4.5 parent: 2 - - uid: 2180 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2872 components: - type: Transform - pos: -27.266525,-1.3495847 + rot: -1.5707963267948966 rad + pos: 20.5,-4.5 parent: 2 - - uid: 2181 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2873 components: - type: Transform - pos: -27.266525,-1.53014 + rot: 3.141592653589793 rad + pos: -5.5,-5.5 parent: 2 - - uid: 5813 - components: - - type: Transform - parent: 5812 - - type: Physics - canCollide: False -- proto: DrinkBeerCan - entities: - - uid: 5824 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2874 components: - type: Transform - pos: 13.313711,8.986102 - parent: 5384 -- proto: DrinkBeerGrowler - entities: - - uid: 5814 + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2875 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False - - uid: 5825 + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2876 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.600749,9.782822 - parent: 5384 -- proto: DrinkBottleBeer - entities: - - uid: 5815 - components: - - type: Transform - parent: 5812 - - type: Physics - canCollide: False -- proto: DrinkBottleOfNothingFull - entities: - - uid: 2182 + pos: -11.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2877 components: - type: Transform - pos: -18.030233,-0.4989791 + rot: -1.5707963267948966 rad + pos: -10.5,4.5 parent: 2 -- proto: DrinkBottlePatron - entities: - - uid: 2183 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2878 components: - type: Transform - pos: -20.182451,11.437634 + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 parent: 2 -- proto: DrinkChampagneBottleFull - entities: - - uid: 5816 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2879 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False - - uid: 5817 + rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2880 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False -- proto: DrinkChocolateGlass - entities: - - uid: 2184 + rot: 3.141592653589793 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 2881 components: - type: Transform - pos: -13.252503,-1.3176099 + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 parent: 2 -- proto: DrinkGlass - entities: - - uid: 5381 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2882 components: - type: Transform - pos: -18.057056,-5.340437 + rot: -1.5707963267948966 rad + pos: 30.5,-5.5 parent: 2 - - uid: 5382 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2883 components: - type: Transform - pos: -18.140388,-5.277937 + rot: -1.5707963267948966 rad + pos: 32.5,-5.5 parent: 2 - - uid: 5383 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2884 components: - type: Transform - pos: -18.057056,-5.2362704 + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 parent: 2 -- proto: DrinkIcedBeerGlass - entities: - - uid: 2186 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2885 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: DrinkIceGlass - entities: - - uid: 5818 + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2886 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False - - uid: 5819 + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2887 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False - - uid: 5820 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2888 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False - - uid: 5821 + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2889 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False -- proto: DrinkKiraSpecial - entities: - - uid: 2053 + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 2 + - uid: 2890 components: - type: Transform - pos: -19.440605,-5.1425204 + rot: 3.141592653589793 rad + pos: 0.5,13.5 parent: 2 - - uid: 5380 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2891 components: - type: Transform - pos: -18.596855,-5.382104 + rot: -1.5707963267948966 rad + pos: 0.5,10.5 parent: 2 -- proto: DrinkMugMetal - entities: - - uid: 5822 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2892 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False -- proto: DrinkMugRed - entities: - - uid: 2196 + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2893 components: - type: Transform - pos: -28.20171,-5.205429 + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 5823 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2894 components: - type: Transform - parent: 5812 - - type: Physics - canCollide: False -- proto: DrinkShakeMeat - entities: - - uid: 5826 + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7380 components: - type: Transform - pos: 9.415849,-10.197274 - parent: 5384 -- proto: DrinkSyndicatebomb - entities: - - uid: 2187 + rot: -1.5707963267948966 rad + pos: -2.5,17.5 + parent: 7020 + - uid: 7381 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: DrinkWaterCup - entities: - - uid: 2197 + rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 7020 + - uid: 7382 components: - type: Transform - pos: -26.68073,4.7187457 - parent: 2 - - uid: 2198 + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 7020 + - uid: 7383 components: - type: Transform - pos: -26.375175,4.524301 - parent: 2 -- proto: DrinkWhiskeySodaGlass - entities: - - uid: 2188 + rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 7020 + - uid: 7384 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: DrinkYorshGlass - entities: - - uid: 2189 + rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 7020 + - uid: 7385 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: EmergencyLight - entities: - - uid: 2199 + rot: -1.5707963267948966 rad + pos: -5.5,17.5 + parent: 7020 + - uid: 7386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,9.5 - parent: 2 - - uid: 2200 + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 7020 + - uid: 7387 components: - type: Transform - pos: -9.5,16.5 - parent: 2 - - uid: 2201 + rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 7020 + - uid: 7388 components: - type: Transform - pos: 6.5,13.5 - parent: 2 - - uid: 2202 + rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 7020 + - uid: 7389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 2 - - uid: 2203 + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 7020 + - uid: 7390 components: - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 2204 + rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 7020 + - uid: 7391 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 2 - - uid: 2205 + pos: -12.5,19.5 + parent: 7020 + - uid: 7392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,1.5 - parent: 2 - - uid: 2206 + rot: 3.141592653589793 rad + pos: -12.5,20.5 + parent: 7020 + - uid: 7393 components: - type: Transform - pos: 20.5,-4.5 - parent: 2 - - uid: 2207 + rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 7020 + - uid: 7394 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 2 - - uid: 2208 + pos: -12.5,18.5 + parent: 7020 + - uid: 7395 components: - type: Transform - pos: -13.5,4.5 - parent: 2 -- proto: EncryptionKeySyndie - entities: - - uid: 5827 + pos: -12.5,22.5 + parent: 7020 + - uid: 7396 components: - type: Transform - pos: 15.5,8.5 - parent: 5384 -- proto: EnergyCutlass - entities: - - uid: 5828 + pos: -12.5,23.5 + parent: 7020 + - uid: 7397 components: - type: Transform - pos: 0.49856567,6.503723 - parent: 5384 -- proto: EnergyDagger - entities: - - uid: 2209 + rot: 1.5707963267948966 rad + pos: -11.5,24.5 + parent: 7020 + - uid: 7398 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.4584,11.452088 - parent: 2 -- proto: ERTSpawnerLeader - entities: - - uid: 6794 + rot: 1.5707963267948966 rad + pos: -10.5,24.5 + parent: 7020 + - uid: 7399 components: - type: Transform - pos: 1.5,9.5 - parent: 6631 - - type: DeviceLinkSink - invokeCounter: 1 -- proto: ERTSpawnerSrcurity - entities: - - uid: 6795 + rot: 1.5707963267948966 rad + pos: -9.5,24.5 + parent: 7020 + - uid: 7400 components: - type: Transform - pos: 3.5,3.5 - parent: 6631 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 6796 + rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 7020 + - uid: 7401 components: - type: Transform - pos: -2.5,3.5 - parent: 6631 - - type: DeviceLinkSink - invokeCounter: 1 -- proto: ExGrenade - entities: - - uid: 5830 + rot: 1.5707963267948966 rad + pos: -7.5,24.5 + parent: 7020 + - uid: 7402 components: - type: Transform - parent: 5829 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ExosuitFabricator - entities: - - uid: 2210 + rot: 1.5707963267948966 rad + pos: -6.5,24.5 + parent: 7020 + - uid: 7403 components: - type: Transform - pos: 13.5,-1.5 - parent: 2 -- proto: ExplosivePayload - entities: - - uid: 5831 + rot: 1.5707963267948966 rad + pos: -5.5,24.5 + parent: 7020 + - uid: 7404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.439929,-1.5135942 - parent: 5384 -- proto: ExplosivesSignMed - entities: - - uid: 2211 + rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 7020 + - uid: 7405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 2 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 2212 + rot: 1.5707963267948966 rad + pos: -3.5,24.5 + parent: 7020 + - uid: 7406 components: - type: Transform - pos: 9.5,-4.5 - parent: 2 - - uid: 2213 + rot: 1.5707963267948966 rad + pos: -2.5,24.5 + parent: 7020 + - uid: 7407 components: - type: Transform - pos: 9.5,10.5 - parent: 2 - - uid: 2214 + rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 7020 + - uid: 7408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 2 - - uid: 2215 + rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 7020 + - uid: 7409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - - uid: 2216 + pos: 0.5,24.5 + parent: 7020 + - uid: 7410 components: - type: Transform - pos: 20.5,-3.5 - parent: 2 - - uid: 2217 + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 7020 + - uid: 7411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 2 - - uid: 2218 + rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 7020 + - uid: 7412 components: - type: Transform - pos: -18.5,3.5 - parent: 2 - - uid: 2219 + rot: 1.5707963267948966 rad + pos: 3.5,26.5 + parent: 7020 + - uid: 7413 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 2 -- proto: FatExtractor - entities: - - uid: 2220 + pos: 4.5,26.5 + parent: 7020 + - uid: 7414 components: - type: Transform - pos: 14.5,-8.5 - parent: 2 - - type: FatExtractor - processing: False -- proto: FaxMachineBase - entities: - - uid: 2221 + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 7020 + - uid: 7415 components: - type: Transform - pos: -18.5,24.5 - parent: 2 - - type: FaxMachine - name: Библиотека - destinationAddress: Библиотека - - uid: 2222 + rot: 1.5707963267948966 rad + pos: 7.5,26.5 + parent: 7020 + - uid: 7416 components: - type: Transform - pos: 14.5,8.5 - parent: 2 - - type: FaxMachine - name: Снабжение - - uid: 2223 + rot: 1.5707963267948966 rad + pos: 8.5,26.5 + parent: 7020 + - uid: 7417 components: - type: Transform - pos: 6.5,13.5 - parent: 2 - - type: FaxMachine - name: Медицинский - - uid: 2224 + pos: 9.5,25.5 + parent: 7020 + - uid: 7418 components: - type: Transform - pos: 15.5,3.5 - parent: 2 - - type: FaxMachine - name: Инженерный - - uid: 2225 + pos: 9.5,24.5 + parent: 7020 + - uid: 7419 components: - type: Transform - pos: 2.5,-0.5 - parent: 2 - - type: FaxMachine - name: Мостик - receiveNukeCodes: True - receiveStationGoal: True -- proto: FaxMachineSyndie - entities: - - uid: 2226 + pos: 9.5,23.5 + parent: 7020 + - uid: 7420 components: - type: Transform - pos: -21.5,10.5 - parent: 2 -- proto: FenceMetalCorner - entities: - - uid: 2227 + rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 7020 + - uid: 7421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 2 -- proto: FenceMetalStraight - entities: - - uid: 2228 + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 7020 + - uid: 7422 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 2 - - uid: 2229 + pos: -2.5,18.5 + parent: 7020 + - uid: 7423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 2 - - uid: 2230 + pos: -3.5,18.5 + parent: 7020 + - uid: 7424 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,20.5 - parent: 2 - - uid: 2231 + pos: -5.5,18.5 + parent: 7020 + - uid: 7425 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,20.5 - parent: 2 - - uid: 2232 + pos: -6.5,18.5 + parent: 7020 + - uid: 7426 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,20.5 - parent: 2 - - uid: 2233 + pos: -7.5,18.5 + parent: 7020 + - uid: 7427 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 2 - - uid: 2234 + pos: -8.5,18.5 + parent: 7020 + - uid: 7428 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 2 - - uid: 2235 + pos: -10.5,18.5 + parent: 7020 + - uid: 7429 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 2 - - uid: 2236 + pos: -9.5,18.5 + parent: 7020 + - uid: 7430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 2 - - uid: 2237 + rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 7020 + - uid: 7431 components: - type: Transform - pos: 4.5,19.5 - parent: 2 -- proto: FenceWoodHighCorner - entities: - - uid: 2238 + rot: 3.141592653589793 rad + pos: -11.5,20.5 + parent: 7020 + - uid: 7432 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 2 - - uid: 2239 + pos: -11.5,21.5 + parent: 7020 + - uid: 7433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,22.5 + parent: 7020 + - uid: 7434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,23.5 - parent: 2 - - uid: 2240 + pos: -10.5,23.5 + parent: 7020 + - uid: 7435 components: - type: Transform - pos: 17.5,-16.5 - parent: 2 -- proto: FenceWoodHighGate - entities: - - uid: 2241 + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 7020 + - uid: 7436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 2 - - uid: 2242 + rot: 1.5707963267948966 rad + pos: -9.5,23.5 + parent: 7020 + - uid: 7437 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 2 -- proto: FenceWoodHighStraight - entities: - - uid: 2243 + pos: -5.5,23.5 + parent: 7020 + - uid: 7438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 2 - - uid: 2244 + pos: -4.5,23.5 + parent: 7020 + - uid: 7439 components: - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 2245 + rot: 1.5707963267948966 rad + pos: -7.5,23.5 + parent: 7020 + - uid: 7440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 2 - - uid: 2246 + pos: -3.5,23.5 + parent: 7020 + - uid: 7441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,23.5 - parent: 2 - - uid: 2247 + pos: -2.5,23.5 + parent: 7020 + - uid: 7442 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 2 - - uid: 2248 + pos: -1.5,23.5 + parent: 7020 + - uid: 7443 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 2 - - uid: 2249 + pos: -0.5,23.5 + parent: 7020 + - uid: 7444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-16.5 - parent: 2 - - uid: 2250 + rot: 1.5707963267948966 rad + pos: -6.5,23.5 + parent: 7020 + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 2 - - uid: 2251 + pos: 1.5,23.5 + parent: 7020 + - uid: 7446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 7020 + - uid: 7447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 7020 + - uid: 7448 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 2 - - uid: 2252 + pos: 3.5,24.5 + parent: 7020 + - uid: 7449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 2 - - uid: 2253 + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 7020 + - uid: 7450 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 2 - - uid: 2254 + pos: 5.5,25.5 + parent: 7020 + - uid: 7451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 2 - - uid: 2255 + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 7020 + - uid: 7452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 2 - - uid: 2256 + pos: 8.5,24.5 + parent: 7020 + - uid: 7453 + components: + - type: Transform + pos: 8.5,23.5 + parent: 7020 + - uid: 7454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-16.5 - parent: 2 - - uid: 2257 + pos: 10.5,26.5 + parent: 7020 + - uid: 7455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 2 - - uid: 2258 + rot: -1.5707963267948966 rad + pos: 11.5,26.5 + parent: 7020 + - uid: 7456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 2 - - uid: 2259 + rot: -1.5707963267948966 rad + pos: 12.5,26.5 + parent: 7020 + - uid: 7457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-15.5 - parent: 2 - - uid: 2260 + rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 7020 + - uid: 7458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 2 - - uid: 2261 + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 7020 + - uid: 7459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 7020 + - uid: 7460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 7020 + - uid: 7461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 7020 + - uid: 7462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 2 -- proto: FenceWoodHighTJunction - entities: - - uid: 2262 + rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 7020 + - uid: 7463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 2 -- proto: filingCabinetDrawer - entities: - - uid: 5832 + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 7020 + - uid: 7464 components: - type: Transform - pos: 14.5,-3.5 - parent: 5384 - - uid: 5833 + rot: -1.5707963267948966 rad + pos: 13.5,25.5 + parent: 7020 + - uid: 7465 components: - type: Transform - pos: 12.5,-7.5 - parent: 5384 -- proto: filingCabinetTall - entities: - - uid: 2263 + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 7020 + - uid: 7466 components: - type: Transform - pos: -12.5,8.5 - parent: 2 -- proto: FireAlarm + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 7020 +- proto: GasPipeTJunction entities: - - uid: 2264 + - uid: 2895 components: - type: Transform - pos: -13.5,5.5 + rot: -1.5707963267948966 rad + pos: 7.5,16.5 parent: 2 - - type: DeviceList - devices: - - 113 - - 2280 - - 2279 - - 2278 - - 2298 - - 2299 - - 2301 - - 2300 - - 2297 - - 2296 - - 2295 - - uid: 2265 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,11.5 + pos: -7.5,12.5 parent: 2 - - type: DeviceList - devices: - - 2303 - - 2302 - - 2307 - - 2306 - - 2305 - - 2304 - - 106 - - 2309 - - 2310 - - 2308 - - uid: 2266 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,13.5 + pos: -18.5,1.5 parent: 2 - - type: DeviceList - devices: - - 2320 - - 2319 - - 2318 - - 2317 - - 2316 - - 2314 - - 2315 - - 2313 - - 2311 - - 2312 - - 107 - - uid: 2267 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2898 components: - type: Transform - pos: 15.5,9.5 + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 parent: 2 - - type: DeviceList - devices: - - 2324 - - 108 - - 2283 - - 2284 - - 2323 - - 2321 - - 2322 - - 2282 - - 2281 - - uid: 2268 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2899 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,3.5 + pos: -6.5,-1.5 parent: 2 - - type: DeviceList - devices: - - 2327 - - 2326 - - 2325 - - 2328 - - 109 - - uid: 2269 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2900 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-3.5 + pos: -5.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 2330 - - 2329 - - 111 - - 2331 - - 2332 - - uid: 2270 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + rot: 1.5707963267948966 rad + pos: -1.5,10.5 parent: 2 - - type: DeviceList - devices: - - 2345 - - 2339 - - 2338 - - 2341 - - 2343 - - 2342 - - 2340 - - 2344 - - 114 - - uid: 2271 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 + rot: 3.141592653589793 rad + pos: -3.5,11.5 parent: 2 - - type: DeviceList - devices: - - 2354 - - 2353 - - 2352 - - 115 - - 2358 - - uid: 2272 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + rot: 3.141592653589793 rad + pos: 14.5,-5.5 parent: 2 - - type: DeviceList - devices: - - 2325 - - 2328 - - 2349 - - 2348 - - 2311 - - 2350 - - 2351 - - 2291 - - 2290 - - 2292 - - 117 - - uid: 2273 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2904 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-3.5 + pos: 11.5,-2.5 parent: 2 - - type: DeviceList - devices: - - 2330 - - 2347 - - 2346 - - 2329 - - 2349 - - 2348 - - 116 - - 117 - - 2350 - - 2351 - - uid: 2274 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2905 components: - type: Transform - pos: -6.5,5.5 + rot: 3.141592653589793 rad + pos: 14.5,0.5 parent: 2 - - type: DeviceList - devices: - - 2352 - - 2353 - - 2300 - - 2301 - - 2351 - - 2350 - - 2310 - - 2309 - - 105 - - uid: 2275 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2906 components: - type: Transform - pos: -1.5,-5.5 + pos: 21.5,2.5 parent: 2 - - type: DeviceList - devices: - - 2285 - - 2286 - - 2287 - - 2288 - - 2289 - - 2347 - - 2346 - - 2343 - - 2338 - - 2336 -- proto: FireAxeCabinetFilled - entities: - - uid: 2276 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2907 components: - type: Transform - pos: 21.5,3.5 + rot: 3.141592653589793 rad + pos: 14.5,2.5 parent: 2 -- proto: FireBombEmpty - entities: - - uid: 5834 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2908 components: - type: Transform - pos: -2.6172562,-10.361404 - parent: 5384 -- proto: FireBombFuel - entities: - - uid: 5835 + rot: 1.5707963267948966 rad + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2910 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.646759,-9.713562 - parent: 5384 -- proto: FireExtinguisher - entities: - - uid: 2277 + pos: 10.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2911 components: - type: Transform - pos: 23.744146,-6.998329 + pos: 10.5,11.5 parent: 2 -- proto: FirelockEdge - entities: - - uid: 2278 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2912 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,2.5 + pos: 11.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2279 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,2.5 + pos: 16.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2280 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,2.5 + pos: 4.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2281 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2915 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,8.5 + pos: 11.5,14.5 parent: 2 - - uid: 2282 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,9.5 + rot: 1.5707963267948966 rad + pos: 3.5,12.5 parent: 2 - - uid: 2283 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,11.5 + pos: 4.5,4.5 parent: 2 - - uid: 2284 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 + pos: 0.5,4.5 parent: 2 - - uid: 2285 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2919 components: - type: Transform - pos: 2.5,-7.5 + pos: -2.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2286 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2920 components: - type: Transform - pos: 3.5,-7.5 + rot: 3.141592653589793 rad + pos: -5.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2287 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2921 components: - type: Transform - pos: 4.5,-7.5 + rot: -1.5707963267948966 rad + pos: -5.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2288 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2922 components: - type: Transform - pos: 5.5,-7.5 + pos: -5.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2289 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2923 components: - type: Transform - pos: 6.5,-7.5 + rot: 3.141592653589793 rad + pos: 24.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2290 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 + rot: 3.141592653589793 rad + pos: -8.5,11.5 parent: 2 - - uid: 2291 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 + rot: 3.141592653589793 rad + pos: -10.5,11.5 parent: 2 - - uid: 2292 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,0.5 + pos: 20.5,10.5 parent: 2 - - uid: 2293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-12.5 + pos: 22.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - uid: 2294 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2929 components: - type: Transform - pos: 9.5,-11.5 + rot: 3.141592653589793 rad + pos: 10.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 -- proto: FirelockGlass - entities: - - uid: 2295 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2930 components: - type: Transform - pos: -17.5,4.5 + pos: 11.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2296 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2931 components: - type: Transform - pos: -18.5,2.5 + pos: 9.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2297 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2932 components: - type: Transform - pos: -17.5,1.5 + pos: 3.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2298 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2933 components: - type: Transform - pos: -15.5,5.5 + pos: 2.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2299 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2934 components: - type: Transform - pos: -11.5,5.5 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2264 - - uid: 2300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2935 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,3.5 + pos: 0.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - 2264 - - uid: 2301 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2936 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,4.5 + pos: -6.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - 2264 - - uid: 2302 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2937 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,8.5 + pos: 22.5,0.5 parent: 2 - - uid: 2303 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 + rot: -1.5707963267948966 rad + pos: -17.5,2.5 parent: 2 - - uid: 2304 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2941 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,12.5 + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 parent: 2 - - uid: 2305 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2942 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,11.5 + pos: 8.5,-10.5 parent: 2 - - uid: 2306 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,10.5 + pos: 4.5,-6.5 parent: 2 - - uid: 2307 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,7.5 + pos: 6.5,-6.5 parent: 2 - - uid: 2308 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2945 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,5.5 + pos: 5.5,-6.5 parent: 2 - - uid: 2309 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,6.5 + pos: 5.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - uid: 2310 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,6.5 + rot: 3.141592653589793 rad + pos: 1.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - uid: 2311 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2948 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,6.5 + pos: 1.5,-3.5 parent: 2 - - uid: 2312 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,10.5 + pos: 1.5,-0.5 parent: 2 - - uid: 2313 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,6.5 + rot: 3.141592653589793 rad + pos: 2.5,-0.5 parent: 2 - - uid: 2314 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,10.5 + rot: 3.141592653589793 rad + pos: -5.5,-6.5 parent: 2 - - uid: 2315 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: 11.5,0.5 parent: 2 - - uid: 2316 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2953 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,12.5 + pos: 11.5,8.5 parent: 2 - - uid: 2317 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 + pos: 11.5,10.5 parent: 2 - - uid: 2318 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,14.5 + rot: 3.141592653589793 rad + pos: 12.5,10.5 parent: 2 - - uid: 2319 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2956 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,16.5 + pos: 8.5,12.5 parent: 2 - - uid: 2320 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: 5.5,12.5 parent: 2 - - uid: 2321 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,10.5 + pos: -5.5,1.5 parent: 2 - - uid: 2322 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - uid: 2323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,9.5 + pos: -4.5,5.5 parent: 2 - - uid: 2324 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: -8.5,5.5 parent: 2 - - uid: 2325 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2961 components: - type: Transform - pos: 12.5,1.5 + pos: -2.5,11.5 parent: 2 - - uid: 2326 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2962 components: - type: Transform - pos: 18.5,2.5 + pos: -13.5,4.5 parent: 2 - - uid: 2327 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2963 components: - type: Transform - pos: 20.5,4.5 + rot: -1.5707963267948966 rad + pos: -13.5,2.5 parent: 2 - - uid: 2328 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2964 components: - type: Transform - pos: 12.5,3.5 + pos: 14.5,-2.5 parent: 2 - - uid: 2329 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-2.5 + pos: 19.5,-2.5 parent: 2 - - uid: 2330 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 + rot: 1.5707963267948966 rad + pos: 19.5,-4.5 parent: 2 - - uid: 2331 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2967 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-5.5 + pos: 8.5,15.5 parent: 2 - - uid: 2332 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 2 - - uid: 2333 + pos: -4.5,18.5 + parent: 7020 + - uid: 7468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 2 - - uid: 2334 + pos: 9.5,26.5 + parent: 7020 + - uid: 7469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 2 - - uid: 2335 + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 7020 + - uid: 7470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 2 - - uid: 2336 + pos: 8.5,25.5 + parent: 7020 + - uid: 7471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2337 + pos: 5.5,26.5 + parent: 7020 + - uid: 7472 components: - type: Transform - pos: 6.5,-11.5 - parent: 2 - - uid: 2338 + rot: 3.141592653589793 rad + pos: 7.5,25.5 + parent: 7020 + - uid: 7473 components: - type: Transform - pos: 0.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2339 + pos: -12.5,24.5 + parent: 7020 + - uid: 7474 components: - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 2340 + pos: -11.5,23.5 + parent: 7020 +- proto: GasPort + entities: + - uid: 2968 components: - type: Transform - pos: -0.5,-1.5 + pos: 22.5,1.5 parent: 2 - - uid: 2341 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2969 components: - type: Transform - pos: 2.5,-3.5 + pos: 27.5,-9.5 parent: 2 - - uid: 2342 + - uid: 2970 components: - type: Transform - pos: 6.5,-2.5 + pos: 26.5,-9.5 parent: 2 - - uid: 2343 +- proto: GasPressurePump + entities: + - uid: 2971 components: - type: Transform - pos: 4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 20.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2344 + - type: GasPressurePump + targetPressure: 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2972 components: - type: Transform - pos: 3.5,0.5 + rot: 1.5707963267948966 rad + pos: 17.5,1.5 parent: 2 - - uid: 2345 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2973 components: - type: Transform - pos: -1.5,0.5 + pos: 27.5,-10.5 parent: 2 - - uid: 2346 + - uid: 2974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 + rot: 3.141592653589793 rad + pos: 26.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2275 - - uid: 2347 +- proto: GasVentPump + entities: + - uid: 2975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 + rot: 1.5707963267948966 rad + pos: 6.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2275 - - uid: 2348 + - 25 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 19.5,5.5 parent: 2 - - uid: 2349 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2977 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 20.5,3.5 parent: 2 - - uid: 2350 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,5.5 + pos: 14.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - 2273 - - uid: 2351 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 + rot: 3.141592653589793 rad + pos: 7.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - 2273 - - uid: 2352 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,2.5 + rot: 3.141592653589793 rad + pos: 16.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - uid: 2353 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,2.5 + pos: 25.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2274 - - uid: 2354 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,0.5 + pos: 11.5,16.5 parent: 2 - - uid: 2355 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 + rot: -1.5707963267948966 rad + pos: 12.5,14.5 parent: 2 - - uid: 2356 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2984 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,2.5 + pos: 4.5,9.5 parent: 2 - - uid: 2357 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2985 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-15.5 + pos: 4.5,12.5 parent: 2 - - uid: 2358 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2986 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-1.5 + pos: 1.5,14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2271 -- proto: Fireplace - entities: - - uid: 2359 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2987 components: - type: Transform - pos: -30.5,30.5 + pos: -3.5,13.5 parent: 2 - - uid: 2360 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2988 components: - type: Transform - pos: 6.5,43.5 + pos: -8.5,14.5 parent: 2 -- proto: FleshBlocker - entities: - - uid: 5836 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 5384 - - uid: 5837 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2989 components: - type: Transform - pos: 13.5,-2.5 - parent: 5384 - - uid: 5838 + pos: -12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2990 components: - type: Transform - pos: 6.5,-11.5 - parent: 5384 - - uid: 5839 + rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2991 components: - type: Transform - pos: 1.5,-7.5 - parent: 5384 - - uid: 5840 + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2992 components: - type: Transform - pos: -5.5,-6.5 - parent: 5384 - - uid: 5841 + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2993 components: - type: Transform - pos: -5.5,0.5 - parent: 5384 - - uid: 5842 + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2994 components: - type: Transform - pos: -3.5,4.5 - parent: 5384 - - uid: 5843 + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2995 components: - type: Transform - pos: 4.5,9.5 - parent: 5384 - - uid: 5844 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2996 components: - type: Transform - pos: 10.5,10.5 - parent: 5384 - - uid: 5845 + pos: 18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 5384 - - uid: 5846 + pos: 22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2998 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 5384 - - uid: 5847 + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 5384 - - uid: 5848 + rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 5384 - - uid: 5849 + rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 5384 - - uid: 5850 + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3002 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 5384 -- proto: FleshKudzu - entities: - - uid: 5851 + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 5384 - - uid: 5852 + pos: 4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 5384 - - uid: 5853 + pos: 8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 5384 - - uid: 5854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 5384 - - uid: 5855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 5384 -- proto: FloorChasmEntity - entities: - - uid: 2361 + pos: -21.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3006 components: - type: Transform - pos: -20.5,17.5 + pos: 0.5,-4.5 parent: 2 - - uid: 2362 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3007 components: - type: Transform - pos: -19.5,17.5 + pos: -18.5,-5.5 parent: 2 -- proto: FloorDrain - entities: - - uid: 2363 + - type: DeviceNetwork + deviceLists: + - 21 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2364 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3009 components: - type: Transform - pos: 25.5,-5.5 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2365 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3010 components: - type: Transform - pos: -3.5,20.5 + rot: 3.141592653589793 rad + pos: -17.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2366 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3011 components: - type: Transform - pos: 15.5,-9.5 + rot: 1.5707963267948966 rad + pos: -19.5,2.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2367 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3012 components: - type: Transform - pos: -20.5,2.5 + pos: -17.5,5.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2368 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3013 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-1.5 + pos: -15.5,2.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2369 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3014 components: - type: Transform - pos: 2.5,20.5 + pos: -15.5,6.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2370 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,12.5 + pos: -10.5,18.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2371 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-14.5 + rot: -1.5707963267948966 rad + pos: 0.5,11.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2372 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3017 components: - type: Transform - pos: -28.5,-3.5 + rot: 3.141592653589793 rad + pos: -2.5,10.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2373 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,20.5 + pos: 14.5,-4.5 parent: 2 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemGrayConcrete - entities: - - uid: 5856 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3019 components: - type: Transform - pos: 11.317052,4.294863 - parent: 5384 - - uid: 5857 + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.664274,5.5031967 - parent: 5384 - - uid: 5858 + rot: 1.5707963267948966 rad + pos: -12.5,23.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7024 + - uid: 7476 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.109045,9.167932 - parent: 5384 -- proto: FloorTileItemOldConcrete - entities: - - uid: 5859 + pos: 0.5,18.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 + - uid: 7477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.645167,-7.6818576 - parent: 5384 - - uid: 5860 + pos: 7.5,26.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 + - uid: 7478 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.645167,-6.6818576 - parent: 5384 - - uid: 5861 + pos: 8.5,22.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 + - uid: 7479 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.700724,-6.1679688 - parent: 5384 - - uid: 5862 + pos: -4.5,17.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 +- proto: GasVentScrubber + entities: + - uid: 3020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.60949,-7.6966777 - parent: 5384 - - uid: 5863 + pos: -21.5,-6.5 + parent: 2 + - uid: 3021 components: - type: Transform - pos: -1.4844899,-7.1827884 - parent: 5384 - - uid: 5864 + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3022 components: - type: Transform - pos: -0.8456006,-8.877233 - parent: 5384 - - uid: 5865 + pos: 8.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3023 components: - type: Transform - pos: -0.06782323,-7.5994554 - parent: 5384 -- proto: FloorTrapExplosion - entities: - - uid: 5866 + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3024 components: - type: Transform - pos: -6.5,3.5 - parent: 5384 -- proto: FloorWaterEntity - entities: - - uid: 2374 + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3025 components: - type: Transform - pos: 3.5,41.5 + rot: 3.141592653589793 rad + pos: 6.5,-12.5 parent: 2 - - uid: 2375 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3026 components: - type: Transform - pos: 3.5,40.5 + rot: -1.5707963267948966 rad + pos: 16.5,-10.5 parent: 2 - - uid: 2376 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3027 components: - type: Transform - pos: 4.5,41.5 + pos: 8.5,-9.5 parent: 2 - - uid: 2377 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3028 components: - type: Transform - pos: 4.5,40.5 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 parent: 2 -- proto: FloraRockSolid01 - entities: - - uid: 2378 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3029 components: - type: Transform - pos: 28.053844,-16.522423 + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 parent: 2 - - uid: 2379 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3030 components: - type: Transform - pos: 18.447817,-25.615334 + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 parent: 2 - - uid: 2380 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3031 components: - type: Transform - pos: -30.773163,14.049292 + pos: 5.5,0.5 parent: 2 - - uid: 2381 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3032 components: - type: Transform - pos: -26.518412,-9.377987 + pos: 2.5,0.5 parent: 2 - - uid: 2382 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3033 components: - type: Transform - pos: 15.976806,19.524523 + pos: -3.5,0.5 parent: 2 - - uid: 2383 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3034 components: - type: Transform - pos: -53.160328,14.058586 + rot: 1.5707963267948966 rad + pos: 7.5,7.5 parent: 2 -- proto: FloraRockSolid02 - entities: - - uid: 2384 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3035 components: - type: Transform - pos: 16.321539,-23.4769 + rot: -1.5707963267948966 rad + pos: 16.5,7.5 parent: 2 - - uid: 2385 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3036 components: - type: Transform - pos: 8.713559,-20.567253 + rot: 1.5707963267948966 rad + pos: 10.5,8.5 parent: 2 - - uid: 2386 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3037 components: - type: Transform - pos: 21.298412,-26.689472 + rot: -1.5707963267948966 rad + pos: 25.5,10.5 parent: 2 - - uid: 2387 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3038 components: - type: Transform - pos: -3.9137,28.38272 + pos: 12.5,13.5 parent: 2 - - uid: 2388 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3039 components: - type: Transform - pos: -18.667484,29.074667 + pos: 5.5,13.5 parent: 2 - - uid: 2389 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3040 components: - type: Transform - pos: -31.601288,5.4406104 + rot: 3.141592653589793 rad + pos: 5.5,9.5 parent: 2 - - uid: 2390 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3041 components: - type: Transform - pos: -49.548893,26.031582 + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 parent: 2 -- proto: FloraRockSolid03 - entities: - - uid: 2391 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3042 components: - type: Transform - pos: 18.738363,-17.547651 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 parent: 2 - - uid: 2392 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3043 components: - type: Transform - pos: 26.48864,-22.464691 + pos: -8.5,6.5 parent: 2 - - uid: 2393 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3044 components: - type: Transform - pos: -31.835663,25.149145 + pos: -4.5,13.5 parent: 2 - - uid: 2394 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3045 components: - type: Transform - pos: -23.602444,18.64699 + pos: -9.5,14.5 parent: 2 - - uid: 2395 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3046 components: - type: Transform - pos: -32.288788,-1.263641 + rot: -1.5707963267948966 rad + pos: -3.5,10.5 parent: 2 - - uid: 2396 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3047 components: - type: Transform - pos: 4.456428,25.585846 + rot: 1.5707963267948966 rad + pos: -11.5,9.5 parent: 2 - - uid: 2397 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3048 components: - type: Transform - pos: -42.213253,23.096977 + pos: -14.5,10.5 parent: 2 -- proto: FloraTree01 - entities: - - uid: 2398 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3049 components: - type: Transform - pos: -27.701632,-9.653059 + rot: -1.5707963267948966 rad + pos: -13.5,6.5 parent: 2 - - uid: 2399 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3050 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.60924,24.49527 + pos: -20.5,1.5 parent: 2 - - uid: 5867 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3051 components: - type: Transform - pos: -11.613159,5.4780273 - parent: 5384 - - uid: 5868 + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3052 components: - type: Transform - pos: -10.766693,-9.28891 - parent: 5384 -- proto: FloraTree02 - entities: - - uid: 2400 + pos: 14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3053 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3055 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.489185,-22.66298 + pos: 20.5,6.5 parent: 2 - - uid: 2401 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3056 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.718418,-17.104683 + pos: 14.5,-3.5 parent: 2 - - uid: 2402 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3057 components: - type: Transform - pos: -44.745293,17.449074 + pos: 19.5,-1.5 parent: 2 - - uid: 5869 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3058 components: - type: Transform - pos: 20.161346,6.8259277 - parent: 5384 -- proto: FloraTree03 - entities: - - uid: 2403 + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.204302,-18.399342 + pos: -8.5,18.5 parent: 2 - - uid: 2404 + - type: DeviceNetwork + deviceLists: + - 24 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.064441025,22.385895 + pos: 0.5,14.5 parent: 2 - - uid: 5870 + - type: DeviceNetwork + deviceLists: + - 25 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3061 components: - type: Transform - pos: -1.4570007,-19.103851 - parent: 5384 - - uid: 5871 + pos: 1.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7480 components: - type: Transform - pos: 9.94455,-17.299042 - parent: 5384 - - uid: 5872 + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 + - uid: 7481 components: - type: Transform - pos: 20.755096,-1.6310425 - parent: 5384 - - uid: 5873 + rot: 3.141592653589793 rad + pos: 5.5,25.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 + - uid: 7482 components: - type: Transform - pos: -2.648346,13.356171 - parent: 5384 - - uid: 5874 + rot: 1.5707963267948966 rad + pos: -13.5,24.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7024 + - uid: 7483 components: - type: Transform - pos: -6.3550415,-14.216278 - parent: 5384 - - uid: 5875 + rot: 3.141592653589793 rad + pos: 9.5,22.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7021 + - uid: 7484 components: - type: Transform - pos: 15.200394,-14.7534485 - parent: 5384 -- proto: FloraTree04 + pos: -6.5,18.5 + parent: 7020 + - type: DeviceNetwork + deviceLists: + - 7022 +- proto: GasVolumePump entities: - - uid: 2405 + - uid: 3062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.944457,-22.88742 + rot: -1.5707963267948966 rad + pos: 20.5,1.5 parent: 2 - - uid: 2406 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GeneratorBasic + entities: + - uid: 3063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.999718,-3.056841 + pos: -23.5,24.5 parent: 2 - - uid: 2407 + - uid: 3064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.496601,-20.78823 + pos: 11.5,43.5 parent: 2 - - uid: 2408 +- proto: GeneratorBasic15kW + entities: + - uid: 6851 components: - type: Transform - pos: 5.7795143,-21.623447 - parent: 2 - - uid: 2409 + pos: 1.5,-1.5 + parent: 6685 + - uid: 6852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.563669,36.356842 - parent: 2 - - uid: 2410 + pos: 1.5,-2.5 + parent: 6685 + - uid: 7485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.256464,38.075592 - parent: 2 - - uid: 2411 + pos: 2.5,30.5 + parent: 7020 + - uid: 7486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.144978,-7.414804 - parent: 2 - - uid: 5876 + pos: 2.5,29.5 + parent: 7020 + - uid: 8314 components: - type: Transform - pos: -11.192657,-6.7471313 - parent: 5384 -- proto: FloraTree05 + pos: -6.5,-1.5 + parent: 8267 +- proto: GeneratorRTGDamaged entities: - - uid: 2412 + - uid: 3065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.596924,-25.567657 + pos: 29.5,-3.5 parent: 2 - - uid: 2413 +- proto: GeneratorWallmountAPU + entities: + - uid: 5968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.1939673,21.010895 - parent: 2 - - uid: 5877 + pos: -4.5,7.5 + parent: 5438 + - uid: 5969 components: - type: Transform - pos: 3.3729248,15.090546 - parent: 5384 - - uid: 5878 + pos: -3.5,7.5 + parent: 5438 +- proto: GeneratorWallmountBasic + entities: + - uid: 7487 components: - type: Transform - pos: 18.747269,-5.875946 - parent: 5384 -- proto: FloraTree06 + pos: 3.5,31.5 + parent: 7020 +- proto: Girder entities: - - uid: 2414 + - uid: 3066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.312038,-21.541523 + pos: -48.5,22.5 parent: 2 - - uid: 5879 - components: - - type: Transform - pos: 19.161346,10.404205 - parent: 5384 - - uid: 5880 - components: - - type: Transform - pos: 10.65448,14.528046 - parent: 5384 -- proto: FloraTreeLarge01 - entities: - - uid: 2415 + - uid: 3067 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.806042,-19.129515 + pos: -49.5,21.5 parent: 2 - - uid: 2416 + - uid: 3068 components: - type: Transform - pos: 17.556114,-18.59428 + pos: -50.5,23.5 parent: 2 - - uid: 2417 + - uid: 3069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.2824192,41.602203 + rot: 3.141592653589793 rad + pos: -46.5,17.5 parent: 2 - - uid: 5881 + - uid: 3070 components: - type: Transform - pos: -13.903656,2.1660767 - parent: 5384 - - uid: 5882 + pos: -51.5,16.5 + parent: 2 + - uid: 3071 components: - type: Transform - pos: -4.2998047,-16.323639 - parent: 5384 -- proto: FloraTreeLarge02 + rot: 3.141592653589793 rad + pos: -52.5,17.5 + parent: 2 +- proto: GoatCube entities: - - uid: 2418 + - uid: 3072 components: + - type: MetaData + desc: Кажется пока строили эту станцию она совсем засохла... - type: Transform - pos: 21.549353,-23.755053 + pos: 6.224681,-14.758822 parent: 2 - - uid: 2419 +- proto: GoldOre + entities: + - uid: 5970 components: - type: Transform - pos: -44.72395,23.432573 - parent: 2 - - uid: 2420 + pos: 5.0553036,-0.5256923 + parent: 5438 + - uid: 5971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.500604,44.52408 - parent: 2 - - uid: 2421 + rot: -1.5707963267948966 rad + pos: 5.166415,-0.60902566 + parent: 5438 + - uid: 5972 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.886478,-8.789006 - parent: 2 - - uid: 5883 + pos: 5.041415,-0.72013634 + parent: 5438 +- proto: GoldOre1 + entities: + - uid: 3073 components: - type: Transform - pos: -9.718201,-13.716431 - parent: 5384 - - uid: 5884 + pos: 27.762573,19.492306 + parent: 2 + - uid: 3074 components: - type: Transform - pos: -5.857361,11.366547 - parent: 5384 - - uid: 5885 + pos: 27.387573,19.63293 + parent: 2 + - uid: 3075 components: - type: Transform - pos: 17.40747,-12.447815 - parent: 5384 - - uid: 5886 + pos: 28.262573,19.60168 + parent: 2 + - uid: 3076 components: - type: Transform - pos: 2.538208,-18.211426 - parent: 5384 -- proto: FloraTreeLarge03 - entities: - - uid: 2422 + pos: 28.684448,19.28918 + parent: 2 + - uid: 3077 components: - type: Transform - pos: -49.015957,13.50914 + pos: 27.996948,19.367306 parent: 2 -- proto: FloraTreeLarge04 +- proto: GravityGeneratorMini entities: - - uid: 2423 + - uid: 3078 components: + - type: MetaData + desc: Не стоит её трогать + name: гравитационная аномалия - type: Transform - pos: -26.616955,31.479336 + pos: 19.5,-19.5 parent: 2 - - uid: 2424 + - type: ApcPowerReceiver + needsPower: False + - type: Physics + canCollide: False + - type: Stealth + lastVisibility: -1 + - type: Godmode + missingComponents: + - Destructible + - PointLight + - LightningTarget + - Anchorable + - uid: 5973 components: - type: Transform - pos: -51.993362,22.401323 - parent: 2 - - uid: 5887 + pos: 17.5,0.5 + parent: 5438 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + lastVisibility: 0 + missingComponents: + - Destructible + - Anchorable + - uid: 6853 components: - type: Transform - pos: 21.333466,1.8431091 - parent: 5384 -- proto: FloraTreeLarge05 - entities: - - uid: 2425 + pos: 0.5,-1.5 + parent: 6685 + - uid: 7488 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.122406,-22.217464 - parent: 2 - - uid: 5888 + pos: 2.5,28.5 + parent: 7020 + - uid: 8315 components: - type: Transform - pos: -13.514252,-4.69812 - parent: 5384 - - uid: 5889 + pos: -7.5,0.5 + parent: 8267 +- proto: GrenadeDummy + entities: + - uid: 7489 components: - type: Transform - pos: 16.860977,12.61496 - parent: 5384 -- proto: FloraTreeLarge06 + rot: -1.5707963267948966 rad + pos: -7.8876343,21.19933 + parent: 7020 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + - uid: 7490 + components: + - type: Transform + pos: -5.0126343,20.334743 + parent: 7020 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger +- proto: Grille entities: - - uid: 5890 + - uid: 3079 components: - type: Transform - pos: -10.391846,7.539734 - parent: 5384 - - uid: 5891 + pos: -23.5,-9.5 + parent: 2 + - uid: 3080 components: - type: Transform - pos: 6.5676575,15.313446 - parent: 5384 -- proto: FoamCutlass - entities: - - uid: 5892 + pos: -24.5,-9.5 + parent: 2 + - uid: 3081 components: - type: Transform - pos: -3.4474792,-2.5195618 - parent: 5384 -- proto: FoamedIronMetal - entities: - - uid: 5893 + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 3082 components: - type: Transform - pos: -6.5,-3.5 - parent: 5384 - - uid: 5894 + pos: -2.5,16.5 + parent: 2 + - uid: 3083 components: - type: Transform - pos: -7.5,-3.5 - parent: 5384 - - uid: 5895 + pos: -3.5,16.5 + parent: 2 + - uid: 3084 components: - type: Transform - pos: -5.5,-3.5 - parent: 5384 - - uid: 5896 + rot: 3.141592653589793 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 3085 components: - type: Transform - pos: -6.5,-4.5 - parent: 5384 - - uid: 5897 + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 2 + - uid: 3086 components: - type: Transform - pos: -5.5,-4.5 - parent: 5384 - - uid: 5898 + pos: 12.5,2.5 + parent: 2 + - uid: 3087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 5384 - - uid: 5899 + pos: 20.5,-8.5 + parent: 2 + - uid: 3088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 5384 - - uid: 5900 + pos: 18.5,-8.5 + parent: 2 + - uid: 3089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 5384 -- proto: FoodBoxDonkpocketTeriyaki - entities: - - uid: 2426 + pos: 3.5,-5.5 + parent: 2 + - uid: 3090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.618376,-5.4970956 + pos: 5.5,-5.5 parent: 2 -- proto: FoodBreadMimana - entities: - - uid: 2427 + - uid: 3091 components: - type: Transform - pos: -18.514608,-0.3739791 + pos: 3.5,6.5 parent: 2 -- proto: FoodCartCold - entities: - - uid: 2185 + - uid: 3092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,15.5 + pos: 5.5,6.5 parent: 2 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 2193 - - 2195 - - 2190 - - 2194 - - 2191 - - 2192 - - 2188 - - 2187 - - 2189 - - 2186 - - type: Storage - storedItems: - 2193: - position: 0,0 - _rotation: South - 2195: - position: 1,0 - _rotation: South - 2190: - position: 2,0 - _rotation: South - 2194: - position: 3,0 - _rotation: South - 2191: - position: 4,0 - _rotation: South - 2192: - position: 5,0 - _rotation: South - 2188: - position: 6,0 - _rotation: South - 2187: - position: 7,0 - _rotation: South - 2189: - position: 0,2 - _rotation: South - 2186: - position: 1,2 - _rotation: South - - uid: 5812 + - uid: 3093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 5384 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 5816 - - 5817 - - 5818 - - 5819 - - 5820 - - 5821 - - 5822 - - 5823 - - 5815 - - 5814 - - 5813 - - type: Storage - storedItems: - 5816: - position: 0,0 - _rotation: South - 5817: - position: 2,0 - _rotation: South - 5818: - position: 4,0 - _rotation: South - 5819: - position: 5,0 - _rotation: South - 5820: - position: 6,0 - _rotation: South - 5821: - position: 7,0 - _rotation: South - 5822: - position: 0,2 - _rotation: South - 5823: - position: 1,2 - _rotation: South - 5815: - position: 2,2 - _rotation: South - 5814: - position: 3,2 - _rotation: South - 5813: - position: 5,2 - _rotation: South -- proto: FoodChevre - entities: - - uid: 2428 + pos: 12.5,-1.5 + parent: 2 + - uid: 3094 components: - - type: MetaData - desc: Последний наивкуснейший сырок во вселенной. Надеемся что скоро гуманоиды научатся его производить вновь. - name: сырок - type: Transform - pos: -13.502503,-1.6144849 + pos: 8.5,10.5 parent: 2 -- proto: FoodDonutMeat - entities: - - uid: 5901 + - uid: 3095 components: - type: Transform - pos: 8.471405,-10.322275 - parent: 5384 -- proto: FoodFrozenPopsicleBerry - entities: - - uid: 2190 + pos: 8.5,6.5 + parent: 2 + - uid: 3096 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: FoodFrozenPopsicleJumbo - entities: - - uid: 2191 + pos: 10.5,15.5 + parent: 2 + - uid: 3097 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: FoodFrozenPopsicleOrange - entities: - - uid: 2192 + pos: 12.5,15.5 + parent: 2 + - uid: 3098 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: FoodFrozenPopsicleTrash - entities: - - uid: 5902 + pos: 12.5,-3.5 + parent: 2 + - uid: 3099 components: - - type: MetaData - desc: Кажется она утеряла свою страшную силу... - name: волшебная палочка - type: Transform - pos: 4.1941924,-0.761803 - parent: 5384 -- proto: FoodFrozenSandwich - entities: - - uid: 2193 + pos: 19.5,-8.5 + parent: 2 + - uid: 3100 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: FoodFrozenSandwichStrawberry - entities: - - uid: 2194 + pos: 7.5,-8.5 + parent: 2 + - uid: 3101 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: FoodFrozenSundae - entities: - - uid: 2195 + pos: 8.5,-11.5 + parent: 2 + - uid: 3102 components: - type: Transform - parent: 2185 - - type: Physics - canCollide: False -- proto: FoodKebabSkewer - entities: - - uid: 2429 + pos: 7.5,-11.5 + parent: 2 + - uid: 3103 components: - type: Transform - pos: -22.505842,-4.494341 + pos: 10.5,-11.5 parent: 2 - - uid: 2430 + - uid: 3104 components: - type: Transform - pos: -27.570175,-0.42250896 + pos: -0.5,3.5 parent: 2 - - uid: 2431 + - uid: 3105 components: - type: Transform - pos: 25.38586,-25.260622 + pos: 0.5,3.5 parent: 2 - - uid: 2432 + - uid: 3106 components: - type: Transform - pos: -2.5440254,-2.3007455 + pos: 1.5,3.5 parent: 2 - - uid: 2433 + - uid: 3107 components: - type: Transform - pos: 25.54434,-25.260622 + pos: 2.5,3.5 parent: 2 - - uid: 2434 + - uid: 3108 components: - type: Transform - pos: 25.531134,-25.432255 + pos: -9.5,5.5 parent: 2 -- proto: FoodMeatMeatball - entities: - - uid: 5904 + - uid: 3109 components: - type: Transform - parent: 5903 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatWheat - entities: - - uid: 5905 + pos: -7.5,5.5 + parent: 2 + - uid: 3110 components: - type: Transform - pos: 8.721405,-10.266719 - parent: 5384 - - uid: 5906 + pos: 23.5,5.5 + parent: 2 + - uid: 3111 components: - type: Transform - pos: 0.6918235,-10.724166 - parent: 5384 - - uid: 5907 + pos: 23.5,4.5 + parent: 2 + - uid: 3112 components: - type: Transform - pos: 13.748808,-6.2607083 - parent: 5384 - - uid: 5908 + pos: 23.5,3.5 + parent: 2 + - uid: 3113 components: - type: Transform - pos: -4.3498435,-7.6825004 - parent: 5384 - - uid: 5909 + pos: 22.5,3.5 + parent: 2 + - uid: 3114 components: - type: Transform - pos: 5.413028,-2.497959 - parent: 5384 - - uid: 5910 + pos: 24.5,3.5 + parent: 2 + - uid: 3115 components: - type: Transform - pos: 1.9408052,2.9048193 - parent: 5384 - - uid: 5911 + pos: -25.5,8.5 + parent: 2 + - uid: 3116 components: - type: Transform - pos: -0.46118033,-2.622959 - parent: 5384 - - uid: 5912 + pos: 30.5,3.5 + parent: 2 + - uid: 3117 components: - type: Transform - pos: 2.747153,-0.38684744 - parent: 5384 -- proto: FoodMimana - entities: - - uid: 2435 + pos: 12.5,18.5 + parent: 2 + - uid: 3118 components: - type: Transform - pos: -17.762913,-0.31614935 + pos: -26.5,7.5 parent: 2 - - uid: 2436 + - uid: 3119 components: - type: Transform - pos: -17.669163,-0.51927435 + pos: 19.5,16.5 parent: 2 -- proto: FoodPieBananaCream - entities: - - uid: 2437 + - uid: 3120 components: - type: Transform - pos: -17.540585,6.6822104 + pos: 5.5,-11.5 parent: 2 -- proto: FoodTinMRETrash - entities: - - uid: 2438 + - uid: 3121 components: - type: Transform - pos: -20.133705,10.270635 + rot: 3.141592653589793 rad + pos: 25.5,-12.5 parent: 2 -- proto: FoodTinPeachesTrash - entities: - - uid: 2439 + - uid: 3122 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.695131,8.423355 + pos: 16.5,18.5 parent: 2 -- proto: ForkPlastic - entities: - - uid: 2440 + - uid: 3123 components: - type: Transform - pos: -21.374422,15.488436 + rot: 1.5707963267948966 rad + pos: 15.5,18.5 parent: 2 -- proto: FuelDispenser - entities: - - uid: 2441 + - uid: 3124 components: - type: Transform - pos: 23.5,-3.5 + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 parent: 2 -- proto: GasCanisterBrokenBase - entities: - - uid: 5913 + - uid: 3125 components: - type: Transform - pos: 9.5,8.5 - parent: 5384 -- proto: GasMinerNitrogenStation - entities: - - uid: 2442 + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - uid: 3126 components: - type: Transform - pos: 22.5,5.5 + rot: 1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 -- proto: GasMinerOxygenStation - entities: - - uid: 2443 + - uid: 3127 components: - type: Transform - pos: 24.5,5.5 + pos: 9.5,-19.5 parent: 2 -- proto: GasMixer - entities: - - uid: 2444 + - uid: 3128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,2.5 + rot: 1.5707963267948966 rad + pos: 21.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPassiveVent - entities: - - uid: 2445 + - uid: 3129 components: - type: Transform - pos: 22.5,4.5 + rot: 1.5707963267948966 rad + pos: 23.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2446 + - uid: 3130 components: - type: Transform - pos: 24.5,4.5 + rot: 1.5707963267948966 rad + pos: 24.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2447 + - uid: 3131 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-12.5 + pos: 25.5,-14.5 parent: 2 - - uid: 2448 + - uid: 3132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-7.5 + pos: 11.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2449 + - uid: 3133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-12.5 + pos: 12.5,-19.5 parent: 2 - - uid: 2450 + - uid: 3134 components: - type: Transform - pos: -4.5,17.5 + rot: -1.5707963267948966 rad + pos: 19.5,17.5 parent: 2 - - uid: 2451 + - uid: 3135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 + pos: 11.5,18.5 parent: 2 -- proto: GasPipeBend - entities: - - uid: 2452 + - uid: 3136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,15.5 + rot: 1.5707963267948966 rad + pos: 29.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2453 + - uid: 3137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,10.5 + rot: 1.5707963267948966 rad + pos: 31.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2454 + - uid: 3138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,1.5 + pos: 31.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2455 + - uid: 3139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,0.5 + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2456 + - uid: 3140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,2.5 + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2457 + - uid: 3141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,1.5 + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2458 + - uid: 3142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,1.5 + pos: -29.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2459 + - uid: 3143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,11.5 + pos: 26.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2460 + - uid: 3144 components: - type: Transform - pos: 3.5,14.5 + pos: 26.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2461 + - uid: 3145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-9.5 + pos: 26.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2462 + - uid: 3146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 + pos: 26.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2463 + - uid: 3147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,4.5 + pos: 25.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2464 + - uid: 3148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: 26.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2465 + - uid: 3149 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-0.5 + pos: 26.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2466 + - uid: 3150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + pos: -29.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2467 + - uid: 3151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,0.5 + pos: -29.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2468 + - uid: 3152 components: - type: Transform - pos: 18.5,1.5 + pos: 25.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2469 + - uid: 3153 components: - type: Transform - pos: 27.5,0.5 + rot: 3.141592653589793 rad + pos: 10.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2470 + - uid: 3154 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,10.5 + pos: 27.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2471 + - uid: 3155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 + pos: -5.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2472 + - uid: 3156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,3.5 + pos: -6.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2473 + - uid: 3157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,12.5 + pos: -6.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2474 + - uid: 3158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,10.5 + pos: -5.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2475 + - uid: 3159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,4.5 + pos: -21.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2476 + - uid: 3160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,4.5 + pos: -22.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2477 + - uid: 5974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2478 + pos: 3.5,5.5 + parent: 5438 + - uid: 5975 components: - type: Transform - pos: 23.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2479 + pos: 3.5,4.5 + parent: 5438 + - uid: 5976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2480 + pos: 4.5,5.5 + parent: 5438 + - uid: 5977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2481 + pos: 4.5,4.5 + parent: 5438 + - uid: 5978 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2482 + pos: 5.5,5.5 + parent: 5438 + - uid: 5979 components: - type: Transform - pos: 34.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2483 + pos: 5.5,4.5 + parent: 5438 + - uid: 7491 components: - type: Transform - pos: -7.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2484 + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 7020 + - uid: 7492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2485 + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 7020 + - uid: 7493 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeFourway - entities: - - uid: 2486 + pos: -7.5,16.5 + parent: 7020 + - uid: 7494 components: - type: Transform - pos: 19.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2487 + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 7020 + - uid: 7495 components: - type: Transform - pos: 7.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2488 + pos: -10.5,24.5 + parent: 7020 + - uid: 7496 components: - type: Transform - pos: -12.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2489 + pos: -10.5,23.5 + parent: 7020 + - uid: 7497 components: - type: Transform - pos: 10.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2490 + pos: -5.5,25.5 + parent: 7020 + - uid: 7498 components: - type: Transform - pos: -18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2491 + pos: -7.5,22.5 + parent: 7020 + - uid: 7499 components: - type: Transform - pos: -6.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2492 + pos: -6.5,22.5 + parent: 7020 + - uid: 7500 components: - type: Transform - pos: -15.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2493 + pos: -7.5,19.5 + parent: 7020 + - uid: 7501 components: - type: Transform - pos: -15.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2494 + pos: -6.5,19.5 + parent: 7020 + - uid: 7502 components: - type: Transform - pos: 11.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2495 + pos: -5.5,19.5 + parent: 7020 + - uid: 7503 + components: + - type: Transform + pos: -4.5,19.5 + parent: 7020 + - uid: 7504 + components: + - type: Transform + pos: -8.5,19.5 + parent: 7020 + - uid: 7505 + components: + - type: Transform + pos: -9.5,19.5 + parent: 7020 + - uid: 7506 + components: + - type: Transform + pos: 0.5,21.5 + parent: 7020 + - uid: 7507 + components: + - type: Transform + pos: 3.5,24.5 + parent: 7020 + - uid: 7508 components: - type: Transform - pos: -4.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2496 + pos: 7.5,21.5 + parent: 7020 + - uid: 7509 components: - type: Transform - pos: -4.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2497 + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 7020 + - uid: 7510 components: - type: Transform - pos: -14.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight - entities: - - uid: 2498 + rot: -1.5707963267948966 rad + pos: -4.5,30.5 + parent: 7020 + - uid: 7511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 2 - - uid: 2499 + rot: -1.5707963267948966 rad + pos: -3.5,29.5 + parent: 7020 + - uid: 8316 components: - type: Transform - pos: 7.5,18.5 + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 8267 +- proto: GrilleDiagonal + entities: + - uid: 3161 + components: + - type: Transform + pos: -27.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2500 + - uid: 3162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 + pos: -25.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2501 + - uid: 3163 components: - type: Transform - pos: 7.5,17.5 + pos: -26.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2502 + - uid: 3164 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,16.5 + pos: -25.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2503 + - uid: 3165 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,18.5 + pos: -24.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2504 + - uid: 3166 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,14.5 + pos: -26.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2505 + - uid: 3167 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,13.5 + pos: 13.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2506 + - uid: 3168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,15.5 + pos: 12.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2507 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 + rot: -1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2508 + - uid: 3170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: 18.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2509 +- proto: GunSafe + entities: + - uid: 3171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 + pos: -11.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2510 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3173 + - 3174 + - 3175 + - 3177 + - 3176 + - 3172 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3178 components: - type: Transform - pos: 12.5,11.5 + pos: -12.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2511 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14676 + moles: + - 1.7450964 + - 6.564886 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3184 + - 3185 + - 3186 + - 3182 + - 3188 + - 3187 + - 3183 + - 3179 + - 3180 + - 3181 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Gyroscope + entities: + - uid: 6854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,3.5 + pos: 0.5,-2.5 + parent: 6685 + - uid: 8317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 8267 +- proto: Handcuffs + entities: + - uid: 3189 + components: + - type: Transform + pos: -14.70005,17.305351 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2512 +- proto: HandheldGPSBasic + entities: + - uid: 3190 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,3.5 + pos: -27.291122,-7.349379 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2513 + - uid: 3191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,2.5 + pos: -20.330486,5.4659357 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2514 +- proto: HandheldStationMap + entities: + - uid: 3192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,2.5 + pos: -8.525855,17.510986 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2515 + - uid: 3193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,2.5 + pos: 19.556929,-7.4072747 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2516 + - uid: 3194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 + pos: 16.365698,3.4011426 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2517 + - uid: 3195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,2.5 + pos: 20.492981,13.592439 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2518 + - uid: 3196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 + pos: 13.501758,13.461455 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2519 +- proto: HandheldStationMapUnpowered + entities: + - uid: 3197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,2.5 + pos: 4.8959923,-0.42878568 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2520 +- proto: HappyHonk + entities: + - uid: 7071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2521 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HappyHonkMime + entities: + - uid: 7072 components: - type: Transform - pos: 19.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2522 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HappyHonkNukieSnacks + entities: + - uid: 7073 components: - type: Transform - pos: 10.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2523 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8312 components: - type: Transform - pos: 10.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2524 + parent: 8308 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HarmonicaInstrument + entities: + - uid: 3198 components: - type: Transform - pos: 10.5,6.5 + pos: -13.450414,6.480726 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2525 +- proto: HeadArachnid + entities: + - uid: 3199 components: - type: Transform - pos: 10.5,7.5 + pos: -24.346115,-6.842174 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2526 +- proto: HeadBorgService + entities: + - uid: 231 components: - type: Transform - pos: 10.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2527 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HeadHuman + entities: + - uid: 7512 components: - type: Transform - pos: 10.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2528 + pos: -8.682831,20.847256 + parent: 7020 +- proto: HeadSkeleton + entities: + - uid: 3200 components: - type: Transform - pos: 10.5,10.5 + pos: 27.557854,-6.3152537 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2529 + - uid: 7513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2530 + pos: -5.039917,20.925781 + parent: 7020 + - uid: 7514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2531 + pos: -13.475739,32.559296 + parent: 7020 +- proto: HeadVulpkanin + entities: + - uid: 7515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2532 + pos: -5.478821,14.510056 + parent: 7020 +- proto: HighSecArmoryLocked + entities: + - uid: 3201 components: - type: Transform - pos: 7.5,10.5 + pos: -10.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2533 +- proto: HighSecCommandLocked + entities: + - uid: 3202 components: - type: Transform - pos: 7.5,9.5 + pos: 3.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2534 + - uid: 3203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 + pos: -1.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2535 +- proto: HighSecDoor + entities: + - uid: 5980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 + pos: 12.5,4.5 + parent: 5438 +- proto: HospitalCurtains + entities: + - uid: 3204 + components: + - type: Transform + pos: -13.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2536 + - uid: 3205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 + rot: 3.141592653589793 rad + pos: -17.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2537 +- proto: HospitalCurtainsOpen + entities: + - uid: 3206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,11.5 + rot: -1.5707963267948966 rad + pos: 5.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2538 + - uid: 3207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,11.5 + pos: -17.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2539 + - uid: 3208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 + pos: -26.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2540 + - uid: 6855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 + pos: 2.5,6.5 + parent: 6685 + - uid: 6856 + components: + - type: Transform + pos: 2.5,7.5 + parent: 6685 +- proto: hydroponicsSoil + entities: + - uid: 3209 + components: + - type: Transform + pos: 1.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2541 + - uid: 3210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 + pos: 5.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2542 + - uid: 3211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,11.5 + pos: -4.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2543 + - uid: 3212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,11.5 + rot: 3.141592653589793 rad + pos: -3.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2544 + - uid: 3213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,11.5 + pos: 16.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2545 + - uid: 3214 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,10.5 + pos: -4.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2546 + - uid: 3215 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,9.5 + pos: -3.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2547 + - uid: 3216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,11.5 + rot: 1.5707963267948966 rad + pos: 15.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2548 + - uid: 3217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,12.5 + rot: 1.5707963267948966 rad + pos: 15.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2549 + - uid: 3218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,13.5 + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2550 + - uid: 3219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2551 + - uid: 3220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,15.5 + pos: 10.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2552 +- proto: HydroponicsToolClippers + entities: + - uid: 3221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 + pos: 10.370858,22.661793 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2553 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 3222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 + rot: 1.5707963267948966 rad + pos: 5.541392,7.4578896 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2554 + - uid: 3223 components: - type: Transform - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: -3.748776,18.655527 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2555 +- proto: HydroponicsToolSpade + entities: + - uid: 3224 components: - type: Transform - pos: 4.5,10.5 + rot: 1.5707963267948966 rad + pos: -3.780026,18.702402 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2556 +- proto: hydroponicsTray + entities: + - uid: 3225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,13.5 + pos: 5.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2557 + - uid: 3226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 + pos: 8.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2558 + - uid: 3227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + pos: 8.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2559 + - uid: 3228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 + pos: 9.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2560 + - uid: 3229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: 10.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2561 + - uid: 3230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: 10.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2562 + - uid: 3231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,4.5 + pos: 9.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2563 +- proto: IngotGold + entities: + - uid: 3232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + pos: 6.5403113,1.6150239 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2564 + - uid: 3233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 + pos: 6.526422,1.4761351 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2565 + - uid: 3234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 + pos: 6.512534,1.2955792 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2566 +- proto: IngotGold1 + entities: + - uid: 5981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2567 + pos: 14.984589,2.380127 + parent: 5438 + - uid: 5982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2568 + pos: 15.093964,2.598877 + parent: 5438 + - uid: 5983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2569 + pos: 15.187714,2.348877 + parent: 5438 + - uid: 5984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2570 + pos: 15.265839,2.536377 + parent: 5438 +- proto: IngotSilver + entities: + - uid: 3235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 + pos: 6.4847555,1.0872458 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2571 +- proto: IntercomCommon + entities: + - uid: 5985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2572 + pos: 11.5,-8.5 + parent: 5438 + - uid: 5986 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2573 + pos: -7.5,-2.5 + parent: 5438 + - uid: 5987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2574 + pos: 2.5,-6.5 + parent: 5438 + - uid: 5988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2575 + pos: 13.5,-0.5 + parent: 5438 + - uid: 5989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2576 + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 5438 + - uid: 5990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2577 + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 5438 + - uid: 5991 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2578 + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 5438 +- proto: JanitorialTrolley + entities: + - uid: 3236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + rot: -1.5707963267948966 rad + pos: -20.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2579 +- proto: JetpackBlueFilled + entities: + - uid: 235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2580 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: JetpackMiniFilled + entities: + - uid: 3237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 + pos: 6.625484,-16.35479 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2581 + - uid: 3238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,8.5 + pos: 6.4484005,-16.531874 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2582 + - uid: 3239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,9.5 + pos: 5.355577,-16.521458 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2583 + - uid: 3240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,10.5 + pos: 5.636827,-16.38604 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2584 + - uid: 3241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 + pos: 5.4076605,-16.19854 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2585 + - uid: 3242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,12.5 + pos: 6.355577,-16.188124 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2586 +- proto: Jug + entities: + - uid: 5992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2587 + rot: -1.5707963267948966 rad + pos: -0.7143289,-10.571857 + parent: 5438 +- proto: Katana + entities: + - uid: 5993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2588 + pos: 3.4217834,8.420563 + parent: 5438 + - type: Unremoveable + deleteOnDrop: False +- proto: KitchenElectricGrill + entities: + - uid: 3243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,11.5 + pos: 11.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2589 + - uid: 3244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,11.5 + pos: -20.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2590 +- proto: KitchenKnife + entities: + - uid: 3245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 + pos: -24.512781,-6.3005075 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2591 +- proto: KitchenMicrowave + entities: + - uid: 3246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,12.5 + pos: 10.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2592 + - uid: 3247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,13.5 + pos: -28.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2593 + - uid: 5994 components: - type: Transform - pos: -12.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2594 + pos: 8.5,-12.5 + parent: 5438 +- proto: KitchenReagentGrinder + entities: + - uid: 3248 components: - type: Transform - pos: -12.5,10.5 + pos: 0.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2595 + - uid: 3249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 + pos: 11.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2596 + - uid: 3250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,1.5 + pos: 16.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2597 +- proto: KitchenSpike + entities: + - uid: 3251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 + pos: -21.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2598 + - uid: 3252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 + pos: 15.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2599 + - uid: 7516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2600 + pos: -5.5,14.5 + parent: 7020 +- proto: KnifePlastic + entities: + - uid: 3253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 + pos: -21.593172,15.488436 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2601 +- proto: Lamp + entities: + - uid: 3254 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-3.5 + pos: -18.318367,11.803941 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2602 + - uid: 5995 + components: + - type: Transform + pos: 14.515275,-1.3625958 + parent: 5438 + - uid: 5996 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2603 + pos: 13.695831,-5.320929 + parent: 5438 +- proto: LampInterrogator + entities: + - uid: 3255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 + pos: -2.7239265,12.787921 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2604 +- proto: LandMineExplosive + entities: + - uid: 5997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2605 + pos: -5.749756,-4.7669067 + parent: 5438 + - uid: 5998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2606 + pos: 7.4789734,-8.667877 + parent: 5438 +- proto: LeftArmBorg + entities: + - uid: 7517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2607 + pos: -4.4939575,15.540569 + parent: 7020 +- proto: LeftArmHuman + entities: + - uid: 7518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2608 + rot: 3.141592653589793 rad + pos: -8.7883,20.774338 + parent: 7020 +- proto: LeftArmSkeleton + entities: + - uid: 7519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2609 + pos: -8.403809,27.393578 + parent: 7020 + - uid: 7520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2610 + pos: -8.577179,20.677567 + parent: 7020 +- proto: LeftArmVulpkanin + entities: + - uid: 7521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2611 + pos: -5.3672485,14.48922 + parent: 7020 +- proto: LeftHandArachnid + entities: + - uid: 3256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + pos: -24.9607,-6.967174 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2612 +- proto: LeftHandHuman + entities: + - uid: 7522 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2613 + pos: -8.892487,20.743088 + parent: 7020 +- proto: LeftHandSkeleton + entities: + - uid: 7523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2614 + pos: -8.278809,27.185242 + parent: 7020 + - uid: 7524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2615 + pos: -8.483429,20.604649 + parent: 7020 +- proto: LeftHandVulpkanin + entities: + - uid: 7525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2616 + pos: -5.315155,14.36422 + parent: 7020 +- proto: LeftLegBorg + entities: + - uid: 7526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2617 + pos: -4.421051,15.248905 + parent: 7020 +- proto: LegionnaireBonfire + entities: + - uid: 3257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-7.5 + pos: -27.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2618 + - uid: 3258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 + pos: -22.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2619 + - uid: 7527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2620 + pos: -7.5,27.5 + parent: 7020 +- proto: LightBulbBroken + entities: + - uid: 3259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-9.5 + pos: -17.326775,13.508975 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2621 +- proto: Lighter + entities: + - uid: 3260 components: - type: Transform - pos: 9.5,-10.5 + pos: -14.753683,13.963531 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2622 +- proto: LightHeadBorg + entities: + - uid: 7528 components: - type: Transform - pos: 9.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2623 + pos: -8.705902,27.82066 + parent: 7020 + - uid: 7529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2624 + pos: -4.254364,15.884319 + parent: 7020 +- proto: LightTree01 + entities: + - uid: 7530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2625 + pos: -17.556915,29.723293 + parent: 7020 + - uid: 7531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2626 + pos: -2.9482117,10.171717 + parent: 7020 + - uid: 7532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2627 + rot: -1.5707963267948966 rad + pos: 10.104767,13.683304 + parent: 7020 +- proto: LightTree02 + entities: + - uid: 7533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2628 + pos: -19.629822,17.26828 + parent: 7020 + - uid: 7534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2629 + pos: -13.796722,13.784386 + parent: 7020 + - uid: 7535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2630 + rot: -1.5707963267948966 rad + pos: 3.6509094,12.303059 + parent: 7020 +- proto: LightTree04 + entities: + - uid: 7536 components: - type: Transform - pos: 2.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2631 + pos: -16.753296,15.592915 + parent: 7020 +- proto: LightTree05 + entities: + - uid: 7537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2632 + pos: 2.640503,8.945761 + parent: 7020 + - uid: 7538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2633 + rot: -1.5707963267948966 rad + pos: 9.433746,14.041855 + parent: 7020 +- proto: LightTree06 + entities: + - uid: 7539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2634 + pos: -17.806915,19.95974 + parent: 7020 + - uid: 7540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2635 + pos: -1.2136841,12.157227 + parent: 7020 +- proto: LockableButtonBrig + entities: + - uid: 3261 components: + - type: MetaData + name: кнопка казни - type: Transform - pos: 8.5,-4.5 + rot: 1.5707963267948966 rad + pos: -17.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2636 + - type: DeviceLinkSource + linkedPorts: + 5309: + - Pressed: DoorBolt + 241: + - Pressed: Toggle + 1923: + - Pressed: Forward + 1905: + - Pressed: Forward + - uid: 3262 components: + - type: MetaData + name: выключение конвеера - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-7.5 + pos: -17.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2637 + - type: DeviceLinkSource + linkedPorts: + 1923: + - Pressed: Off + 1905: + - Pressed: Off +- proto: LockableButtonCaptain + entities: + - uid: 3263 components: + - type: MetaData + name: вызов ОБР - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 + rot: 3.141592653589793 rad + pos: -3.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2638 + - type: WirelessNetworkConnection + range: 2000000 + - type: DeviceLinkSource + range: 300000 + linkedPorts: + 3526: + - Pressed: Toggle + 3468: + - Pressed: Toggle + 6714: + - Pressed: Toggle +- proto: LockableButtonHeadOfSecurity + entities: + - uid: 3264 components: + - type: MetaData + name: вызов ОБР - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 + pos: -13.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2639 + - type: WirelessNetworkConnection + range: 2000000 + - type: DeviceLinkSource + range: 300000 + linkedPorts: + 3527: + - Pressed: Toggle + 3481: + - Pressed: Toggle + 6713: + - Pressed: Toggle +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 + pos: 22.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2640 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3267 + - 3266 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 3268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 + pos: 2.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2641 +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 3269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 + pos: -2.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2642 +- proto: LockerChemistryFilled + entities: + - uid: 3270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-7.5 + pos: 2.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2643 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3271 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 3272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 + pos: 19.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2644 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 3273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 + pos: 1.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2645 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3274 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 3275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-7.5 + pos: -14.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2646 +- proto: LockerEngineerFilled + entities: + - uid: 3276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-7.5 + pos: 16.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2647 + - uid: 3277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-7.5 + pos: 14.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2648 + - uid: 3278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-7.5 + pos: 15.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2649 +- proto: LockerEvidence + entities: + - uid: 3279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 + pos: -4.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2650 + - uid: 3280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-7.5 + pos: -4.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2651 + - uid: 3281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 + pos: -7.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2652 +- proto: LockerFreezer + entities: + - uid: 229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-7.5 + pos: 4.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2653 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 238 + - 236 + - 231 + - 234 + - 233 + - 240 + - 232 + - 237 + - 239 + - 230 + - 235 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 + pos: 12.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2654 +- proto: LockerFreezerBase + entities: + - uid: 5957 components: - type: Transform - pos: 0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2655 + pos: 10.5,-12.5 + parent: 5438 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5958 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 3283 components: - type: Transform - pos: 0.5,-5.5 + pos: 8.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2656 +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 3 components: - type: Transform - pos: -18.5,-6.5 + pos: -12.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2657 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17 + - 4 + - 8 + - 10 + - 16 + - 12 + - 14 + - 18 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 3284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,2.5 + pos: 8.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2658 +- proto: LockerMedicine + entities: + - uid: 3285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 + pos: 4.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2659 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3286 + - 3287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicineFilled + entities: + - uid: 3288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 + pos: 7.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2660 +- proto: LockerParamedicFilled + entities: + - uid: 3289 components: - type: Transform - pos: -6.5,-2.5 + pos: 6.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2661 +- proto: LockerQuarterMasterFilled + entities: + - uid: 3290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + pos: 17.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2662 +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 3291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-4.5 + pos: 18.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2663 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 3292 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 + pos: 21.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2664 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3293 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 + pos: 22.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2665 + - uid: 3295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 + pos: 23.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2666 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3296 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: + - uid: 3297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 + pos: -6.509331,10.5003 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2667 + - uid: 3298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,3.5 + pos: -8.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2668 + - uid: 3299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,3.5 + pos: -7.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2669 +- proto: LockerSyndicate + entities: + - uid: 5883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2670 + pos: 15.5,6.5 + parent: 5438 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14694 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5884 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSyndicatePersonal + entities: + - uid: 3300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,3.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2671 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerWallMedicalFilled + entities: + - uid: 3301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,3.5 + pos: 0.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2672 + - uid: 3302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,3.5 + pos: -11.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2673 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 3303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 + pos: -7.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2674 +- proto: Log + entities: + - uid: 3304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,1.5 + pos: -10.685649,24.775383 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2675 + - uid: 3305 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,2.5 + pos: -10.591899,24.884758 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2676 +- proto: LogicGateOr + entities: + - uid: 6857 components: - type: Transform - pos: -17.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2677 + anchored: True + pos: 0.5,-2.5 + parent: 6685 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 6896: + - Output: Trigger + - type: Physics + canCollide: False + bodyType: Static +- proto: LootSpawnerContraband + entities: + - uid: 3306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2678 + - uid: 3307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2679 + - uid: 5999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2680 + pos: 13.5,2.5 + parent: 5438 + - uid: 6000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2681 + pos: 13.5,2.5 + parent: 5438 + - uid: 6001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2682 + pos: 14.5,2.5 + parent: 5438 +- proto: LootSpawnerContrabandHigh + entities: + - uid: 6002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2683 + pos: 1.5,-0.5 + parent: 5438 +- proto: LootSpawnerContrabandLow + entities: + - uid: 3308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,16.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2684 + - uid: 3309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,17.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2685 + - uid: 3310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-11.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2686 + - uid: 3311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2687 + - uid: 3312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 + pos: -18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2688 +- proto: LootSpawnerIndustrial + entities: + - uid: 7541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2689 + pos: -4.5,20.5 + parent: 7020 +- proto: LuxuryPen + entities: + - uid: 7542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2690 + rot: -1.5707963267948966 rad + pos: 6.717804,17.533295 + parent: 7020 +- proto: Machete + entities: + - uid: 6003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: 13.133443,-6.2867575 + parent: 5438 +- proto: MachineAnomalyGenerator + entities: + - uid: 3313 + components: + - type: Transform + pos: 25.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2691 +- proto: MachineAPE + entities: + - uid: 6004 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 + pos: 3.5,-2.5 + parent: 5438 +- proto: MachineArtifactAnalyzer + entities: + - uid: 3314 + components: + - type: Transform + pos: 22.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2692 + - uid: 3315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-8.5 + pos: 27.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2693 +- proto: MachineCentrifuge + entities: + - uid: 3316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-7.5 + pos: 0.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2694 +- proto: MachineElectrolysisUnit + entities: + - uid: 3317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 + pos: 0.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2695 +- proto: MachineFrame + entities: + - uid: 3318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-10.5 + pos: -53.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2696 + - uid: 3319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: 3.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2697 + - uid: 3320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 + pos: 24.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2698 + - uid: 3321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 + pos: 26.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2699 + - uid: 6005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2700 + pos: 13.5,6.5 + parent: 5438 +- proto: MagazineBoxAntiMateriel + entities: + - uid: 270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2701 + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifle + entities: + - uid: 271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2702 + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxMagnum + entities: + - uid: 238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2703 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxRifleBig + entities: + - uid: 272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2704 + parent: 264 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagicDiceBag + entities: + - uid: 3322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 + pos: -23.265886,8.286411 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2705 +- proto: MaintenancePlantSpawner + entities: + - uid: 7543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2706 + pos: -19.5,30.5 + parent: 7020 + - uid: 7544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2707 + pos: -19.5,29.5 + parent: 7020 + - uid: 7545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2708 + pos: -18.5,30.5 + parent: 7020 + - uid: 7546 components: - type: Transform - pos: 1.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2709 + pos: -17.5,31.5 + parent: 7020 + - uid: 7547 components: - type: Transform - pos: 1.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2710 + pos: 11.5,18.5 + parent: 7020 + - uid: 7548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2711 + pos: 10.5,12.5 + parent: 7020 + - uid: 7549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2712 + pos: 2.5,13.5 + parent: 7020 + - uid: 7550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2713 + pos: -2.5,8.5 + parent: 7020 +- proto: MaintenanceToolSpawner + entities: + - uid: 3323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -26.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2714 + - uid: 7551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2715 + pos: -19.5,23.5 + parent: 7020 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 7552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2716 + pos: -16.5,13.5 + parent: 7020 +- proto: Mannequin + entities: + - uid: 7285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2717 + pos: -4.906494,14.913387 + parent: 7020 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7289 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7288 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7287 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7286 + - uid: 7290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2718 + pos: -6.041931,15.736301 + parent: 7020 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7292 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7291 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 7293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2719 + pos: -6.843994,14.725887 + parent: 7020 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7296 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7295 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7294 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 7297 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2720 + pos: -3.3070984,31.581753 + parent: 7020 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7300 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7299 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7298 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 7301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2721 + rot: -1.5707963267948966 rad + pos: -1.6508484,31.331753 + parent: 7020 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7305 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7304 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7303 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7302 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null +- proto: Matchbox + entities: + - uid: 3324 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-6.5 + pos: 8.464988,0.5438111 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2722 + - uid: 3325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 + pos: -18.430662,10.280693 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2723 +- proto: MatchstickSpent + entities: + - uid: 3326 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-6.5 + pos: -17.596636,10.978224 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2724 + - uid: 3327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-6.5 + pos: -17.775648,10.1881 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2725 + - uid: 3328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 + pos: -17.271889,10.192923 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2726 + - uid: 3329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 + pos: -17.892933,10.996742 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2727 + - uid: 3330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 + rot: -1.5707963267948966 rad + pos: -17.467007,10.7992115 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2728 + - uid: 3331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + rot: 3.141592653589793 rad + pos: -17.553427,10.626372 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2729 + - uid: 6006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2730 + pos: 11.52695,-1.3079708 + parent: 5438 + - uid: 6007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2731 + rot: -1.5707963267948966 rad + pos: 11.721395,-1.1829708 + parent: 5438 + - uid: 6008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2732 + rot: -1.5707963267948966 rad + pos: 11.749172,-1.391304 + parent: 5438 + - uid: 6009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2733 + rot: 3.141592653589793 rad + pos: 11.318616,-1.1135261 + parent: 5438 + - uid: 6010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2734 + rot: 3.141592653589793 rad + pos: 11.860283,-1.6690814 + parent: 5438 + - uid: 6011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2735 + pos: 11.5547285,-1.0024147 + parent: 5438 + - uid: 6012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2736 + rot: -1.5707963267948966 rad + pos: 5.2217517,10.737076 + parent: 5438 +- proto: MaterialCloth + entities: + - uid: 3332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-6.5 + pos: 3.4550014,-4.480694 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2737 +- proto: MaterialDurathread + entities: + - uid: 3333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 + pos: 3.2464519,-4.6204143 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2738 +- proto: MaterialWoodPlank1 + entities: + - uid: 3334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + rot: -1.5707963267948966 rad + pos: -10.684543,24.964888 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2739 +- proto: MaterialWoodPlank10 + entities: + - uid: 6013 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2740 + pos: 13.510738,-1.5615497 + parent: 5438 +- proto: Mattress + entities: + - uid: 3335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 + pos: 1.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2741 + - uid: 3336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-6.5 + pos: 0.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2742 +- proto: MedicalBed + entities: + - uid: 3337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-5.5 + pos: 1.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2743 + - uid: 3338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 + pos: 5.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2744 + - uid: 3339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 + pos: 0.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2745 + - uid: 6858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2746 + pos: 2.5,7.5 + parent: 6685 + - uid: 6859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2747 + pos: 2.5,6.5 + parent: 6685 +- proto: MedicalTechFab + entities: + - uid: 3340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,0.5 + pos: 3.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2748 +- proto: Medkit + entities: + - uid: 7553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2749 + pos: -0.5229492,22.707638 + parent: 7020 +- proto: MedkitAdvancedFilled + entities: + - uid: 3341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,0.5 + pos: 2.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2750 + - uid: 3342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,0.5 + pos: 5.494531,16.413988 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2751 + - uid: 6860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2752 + pos: 1.3056641,5.3525753 + parent: 6685 + - uid: 6861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2753 + pos: 1.5869141,5.6025753 + parent: 6685 +- proto: MedkitBruteFilled + entities: + - uid: 3343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,0.5 + pos: 5.2653646,16.809822 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2754 +- proto: MedkitBurnFilled + entities: + - uid: 3344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,0.5 + pos: 5.7549477,16.841072 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2755 +- proto: MedkitCombatFilled + entities: + - uid: 6862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2756 + pos: -0.75683594,5.2588253 + parent: 6685 +- proto: MedkitFilled + entities: + - uid: 3293 components: - type: Transform - pos: 27.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2757 + parent: 3292 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3296 components: - type: Transform - pos: 27.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2758 + parent: 3295 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3345 components: - type: Transform - pos: 27.5,-2.5 + pos: 13.765365,13.757738 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2759 + - uid: 3346 components: - type: Transform - pos: 27.5,-3.5 + pos: 13.367858,13.757323 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2760 + - uid: 6863 components: - type: Transform - pos: 27.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2761 + pos: -0.31933594,5.6494503 + parent: 6685 +- proto: MedkitRadiationFilled + entities: + - uid: 1771 components: - type: Transform - pos: 11.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2762 + parent: 1770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3347 components: - type: Transform - pos: 11.5,2.5 + pos: 5.7861977,16.632738 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2763 +- proto: MedkitToxinFilled + entities: + - uid: 3348 components: - type: Transform - pos: 11.5,3.5 + pos: 5.2861977,16.622322 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2764 +- proto: MetalFoamGrenade + entities: + - uid: 7554 components: - type: Transform - pos: 11.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2765 + pos: -13.572144,32.48455 + parent: 7020 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger +- proto: MeteorRock + entities: + - uid: 7555 components: - type: Transform - pos: 11.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2766 + pos: 9.5,8.5 + parent: 7020 + - uid: 7556 components: - type: Transform - pos: 11.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2767 + pos: 3.5,5.5 + parent: 7020 + - uid: 7557 components: - type: Transform - pos: 11.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2768 + pos: 3.5,6.5 + parent: 7020 + - uid: 7558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2769 + pos: 3.5,7.5 + parent: 7020 + - uid: 7559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2770 + pos: 4.5,6.5 + parent: 7020 + - uid: 7560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2771 + pos: 4.5,7.5 + parent: 7020 + - uid: 7561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2772 + pos: 5.5,5.5 + parent: 7020 + - uid: 7562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2773 + pos: 5.5,6.5 + parent: 7020 + - uid: 7563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2774 + pos: 4.5,5.5 + parent: 7020 + - uid: 7564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2775 + pos: 5.5,7.5 + parent: 7020 + - uid: 7565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2776 + pos: 6.5,5.5 + parent: 7020 + - uid: 7566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2777 + pos: 6.5,7.5 + parent: 7020 + - uid: 7567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2778 + pos: 6.5,6.5 + parent: 7020 + - uid: 7568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2779 + pos: 7.5,6.5 + parent: 7020 + - uid: 7569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2780 + pos: 7.5,7.5 + parent: 7020 + - uid: 7570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2781 + pos: 5.5,8.5 + parent: 7020 + - uid: 7571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2782 + pos: 6.5,8.5 + parent: 7020 + - uid: 7572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2783 + pos: 7.5,8.5 + parent: 7020 + - uid: 7573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2784 + pos: 8.5,8.5 + parent: 7020 + - uid: 7574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2785 + pos: 8.5,7.5 + parent: 7020 + - uid: 7575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2786 + pos: 10.5,8.5 + parent: 7020 + - uid: 7576 components: - type: Transform - pos: 12.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2787 + pos: 11.5,8.5 + parent: 7020 + - uid: 7577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2788 + pos: 6.5,10.5 + parent: 7020 + - uid: 7578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2789 + pos: 7.5,10.5 + parent: 7020 + - uid: 7579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2790 + pos: 7.5,9.5 + parent: 7020 + - uid: 7580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2791 + pos: 8.5,10.5 + parent: 7020 + - uid: 7581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2792 + pos: 8.5,9.5 + parent: 7020 + - uid: 7582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2793 + pos: 9.5,10.5 + parent: 7020 + - uid: 7583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2794 + pos: 6.5,9.5 + parent: 7020 + - uid: 7584 components: - type: Transform - pos: 5.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2795 + pos: 10.5,10.5 + parent: 7020 + - uid: 7585 components: - type: Transform - pos: 5.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2796 + pos: 10.5,9.5 + parent: 7020 + - uid: 7586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2797 + pos: 11.5,10.5 + parent: 7020 + - uid: 7587 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2798 + pos: 11.5,9.5 + parent: 7020 + - uid: 7588 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2799 + pos: 12.5,10.5 + parent: 7020 + - uid: 7589 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2800 + pos: 12.5,9.5 + parent: 7020 + - uid: 7590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2801 + pos: 7.5,11.5 + parent: 7020 + - uid: 7591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2802 + pos: 8.5,11.5 + parent: 7020 + - uid: 7592 components: - type: Transform - pos: -5.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2803 + pos: 9.5,11.5 + parent: 7020 + - uid: 7593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2804 + pos: 10.5,11.5 + parent: 7020 + - uid: 7594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2805 + pos: 11.5,11.5 + parent: 7020 + - uid: 7595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2806 + pos: 12.5,11.5 + parent: 7020 + - uid: 7596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2807 + pos: 13.5,11.5 + parent: 7020 + - uid: 7597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2808 + pos: 13.5,12.5 + parent: 7020 + - uid: 7598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2809 + pos: 12.5,12.5 + parent: 7020 + - uid: 7599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2810 + pos: 11.5,12.5 + parent: 7020 + - uid: 7600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2811 + pos: 11.5,13.5 + parent: 7020 + - uid: 7601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2812 + pos: 11.5,15.5 + parent: 7020 + - uid: 7602 components: - type: Transform - pos: -9.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2813 + pos: 12.5,13.5 + parent: 7020 + - uid: 7603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2814 + pos: 12.5,14.5 + parent: 7020 + - uid: 7604 components: - type: Transform - pos: -7.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2815 + pos: 12.5,15.5 + parent: 7020 + - uid: 7605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2816 + pos: 11.5,14.5 + parent: 7020 + - uid: 7606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2817 + pos: 13.5,15.5 + parent: 7020 + - uid: 7607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2818 + pos: 13.5,16.5 + parent: 7020 + - uid: 7608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2819 + pos: 12.5,16.5 + parent: 7020 + - uid: 7609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2820 + pos: 12.5,17.5 + parent: 7020 + - uid: 7610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2821 + pos: 12.5,18.5 + parent: 7020 + - uid: 7611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2822 + pos: 12.5,19.5 + parent: 7020 + - uid: 7612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2823 + pos: 12.5,20.5 + parent: 7020 + - uid: 7613 components: - type: Transform - pos: -14.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2824 + pos: 12.5,21.5 + parent: 7020 + - uid: 7614 components: - type: Transform - pos: -14.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2825 + pos: 12.5,22.5 + parent: 7020 + - uid: 7615 components: - type: Transform - pos: -14.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2826 + pos: 12.5,23.5 + parent: 7020 + - uid: 7616 + components: + - type: Transform + pos: 12.5,24.5 + parent: 7020 + - uid: 7617 components: - type: Transform - pos: -14.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2827 + pos: 12.5,25.5 + parent: 7020 + - uid: 7618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2828 + pos: 13.5,17.5 + parent: 7020 + - uid: 7619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2829 + pos: 12.5,26.5 + parent: 7020 + - uid: 7620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2830 + pos: 13.5,18.5 + parent: 7020 + - uid: 7621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2831 + pos: 13.5,19.5 + parent: 7020 + - uid: 7622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2832 + pos: 13.5,20.5 + parent: 7020 + - uid: 7623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2833 + pos: 13.5,21.5 + parent: 7020 + - uid: 7624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2834 + pos: 13.5,22.5 + parent: 7020 + - uid: 7625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2835 + pos: 13.5,23.5 + parent: 7020 + - uid: 7626 components: - type: Transform - pos: -13.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2836 + pos: 13.5,24.5 + parent: 7020 + - uid: 7627 components: - type: Transform - pos: -15.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2837 + pos: 13.5,26.5 + parent: 7020 + - uid: 7628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2838 + pos: 14.5,17.5 + parent: 7020 + - uid: 7629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2839 + pos: 14.5,19.5 + parent: 7020 + - uid: 7630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2840 + pos: 14.5,18.5 + parent: 7020 + - uid: 7631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2841 + pos: 14.5,20.5 + parent: 7020 + - uid: 7632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2842 + pos: 14.5,21.5 + parent: 7020 + - uid: 7633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2843 + pos: 14.5,22.5 + parent: 7020 + - uid: 7634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2844 + pos: 14.5,23.5 + parent: 7020 + - uid: 7635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2845 + pos: 14.5,24.5 + parent: 7020 + - uid: 7636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2846 + pos: 14.5,25.5 + parent: 7020 + - uid: 7637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2847 + pos: 14.5,26.5 + parent: 7020 + - uid: 7638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2848 + pos: 15.5,24.5 + parent: 7020 + - uid: 7639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2849 + pos: 15.5,22.5 + parent: 7020 + - uid: 7640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2850 + pos: 15.5,21.5 + parent: 7020 + - uid: 7641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2851 + pos: 15.5,20.5 + parent: 7020 + - uid: 7642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2852 + pos: 15.5,23.5 + parent: 7020 + - uid: 7643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2853 + pos: 11.5,24.5 + parent: 7020 + - uid: 7644 components: - type: Transform - pos: 19.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2854 + pos: 11.5,25.5 + parent: 7020 + - uid: 7645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2855 + pos: 11.5,26.5 + parent: 7020 + - uid: 7646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2856 + pos: 11.5,27.5 + parent: 7020 + - uid: 7647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2857 + pos: 11.5,28.5 + parent: 7020 + - uid: 7648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2858 + pos: 12.5,28.5 + parent: 7020 + - uid: 7649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2859 + pos: 12.5,27.5 + parent: 7020 + - uid: 7650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2860 + pos: 13.5,28.5 + parent: 7020 + - uid: 7651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2861 + pos: 13.5,27.5 + parent: 7020 + - uid: 7652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2862 + pos: 11.5,29.5 + parent: 7020 + - uid: 7653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2863 + pos: 10.5,29.5 + parent: 7020 + - uid: 7654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2864 + pos: 10.5,30.5 + parent: 7020 + - uid: 7655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2865 + pos: 9.5,29.5 + parent: 7020 + - uid: 7656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2866 + pos: 9.5,30.5 + parent: 7020 + - uid: 7657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2867 + pos: 8.5,29.5 + parent: 7020 + - uid: 7658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-11.5 - parent: 2 - - uid: 2868 + pos: 8.5,30.5 + parent: 7020 + - uid: 7659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2869 + pos: 7.5,29.5 + parent: 7020 + - uid: 7660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2870 + pos: 6.5,29.5 + parent: 7020 + - uid: 7661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2871 + pos: 6.5,28.5 + parent: 7020 + - uid: 7662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2872 + pos: 0.5,29.5 + parent: 7020 + - uid: 7663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2873 + pos: 0.5,28.5 + parent: 7020 + - uid: 7664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2874 + pos: 0.5,30.5 + parent: 7020 + - uid: 7665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2875 + pos: 0.5,31.5 + parent: 7020 + - uid: 7666 components: - type: Transform - pos: -1.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2876 + pos: 3.5,32.5 + parent: 7020 + - uid: 7667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 2 - - uid: 2877 + pos: 2.5,32.5 + parent: 7020 + - uid: 7668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2878 + pos: 2.5,33.5 + parent: 7020 + - uid: 7669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2879 + pos: 1.5,32.5 + parent: 7020 + - uid: 7670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2880 + pos: 1.5,33.5 + parent: 7020 + - uid: 7671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2881 + pos: 0.5,32.5 + parent: 7020 + - uid: 7672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeTJunction - entities: - - uid: 2882 + pos: 0.5,33.5 + parent: 7020 + - uid: 7673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2883 + pos: 1.5,34.5 + parent: 7020 + - uid: 7674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2884 + pos: 0.5,34.5 + parent: 7020 + - uid: 7675 components: - type: Transform - pos: -18.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2885 + pos: -0.5,33.5 + parent: 7020 + - uid: 7676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2886 + pos: -0.5,34.5 + parent: 7020 + - uid: 7677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2887 + pos: -0.5,35.5 + parent: 7020 + - uid: 7678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2888 + pos: -0.5,36.5 + parent: 7020 + - uid: 7679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2889 + pos: -0.5,37.5 + parent: 7020 + - uid: 7680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2890 + pos: -1.5,33.5 + parent: 7020 + - uid: 7681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2891 + pos: -1.5,34.5 + parent: 7020 + - uid: 7682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2892 + pos: -1.5,35.5 + parent: 7020 + - uid: 7683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2893 + pos: -1.5,36.5 + parent: 7020 + - uid: 7684 components: - type: Transform - pos: 21.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2894 + pos: -1.5,37.5 + parent: 7020 + - uid: 7685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2895 + pos: -2.5,33.5 + parent: 7020 + - uid: 7686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2896 + pos: -2.5,34.5 + parent: 7020 + - uid: 7687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2897 + pos: -2.5,35.5 + parent: 7020 + - uid: 7688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2898 + pos: -2.5,36.5 + parent: 7020 + - uid: 7689 components: - type: Transform - pos: 10.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2899 + pos: -2.5,37.5 + parent: 7020 + - uid: 7690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2900 + pos: -3.5,33.5 + parent: 7020 + - uid: 7691 components: - type: Transform - pos: 16.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2901 + pos: -3.5,34.5 + parent: 7020 + - uid: 7692 components: - type: Transform - pos: 4.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2902 + pos: -3.5,35.5 + parent: 7020 + - uid: 7693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2903 + pos: -3.5,36.5 + parent: 7020 + - uid: 7694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2904 + pos: -3.5,37.5 + parent: 7020 + - uid: 7695 components: - type: Transform - pos: 4.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2905 + pos: -4.5,33.5 + parent: 7020 + - uid: 7696 components: - type: Transform - pos: 0.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2906 + pos: -4.5,34.5 + parent: 7020 + - uid: 7697 components: - type: Transform - pos: -2.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2907 + pos: -4.5,35.5 + parent: 7020 + - uid: 7698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2908 + pos: -4.5,36.5 + parent: 7020 + - uid: 7699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2909 + pos: -4.5,37.5 + parent: 7020 + - uid: 7700 components: - type: Transform - pos: -5.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2910 + pos: -5.5,33.5 + parent: 7020 + - uid: 7701 + components: + - type: Transform + pos: -5.5,34.5 + parent: 7020 + - uid: 7702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2911 + pos: -5.5,35.5 + parent: 7020 + - uid: 7703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2912 + pos: -5.5,36.5 + parent: 7020 + - uid: 7704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2913 + pos: -5.5,37.5 + parent: 7020 + - uid: 7705 components: - type: Transform - pos: 20.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2914 + pos: -6.5,33.5 + parent: 7020 + - uid: 7706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2915 + pos: -6.5,34.5 + parent: 7020 + - uid: 7707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2916 + pos: -6.5,35.5 + parent: 7020 + - uid: 7708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2917 + pos: -6.5,36.5 + parent: 7020 + - uid: 7709 components: - type: Transform - pos: 11.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2918 + pos: -6.5,37.5 + parent: 7020 + - uid: 7710 components: - type: Transform - pos: 9.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2919 + pos: -4.5,38.5 + parent: 7020 + - uid: 7711 components: - type: Transform - pos: 3.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2920 + pos: -3.5,38.5 + parent: 7020 + - uid: 7712 components: - type: Transform - pos: 2.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2921 + pos: -2.5,38.5 + parent: 7020 + - uid: 7713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2922 + pos: -7.5,36.5 + parent: 7020 + - uid: 7714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2923 + pos: -8.5,35.5 + parent: 7020 + - uid: 7715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2924 + pos: -8.5,34.5 + parent: 7020 + - uid: 7716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2925 + pos: -7.5,35.5 + parent: 7020 + - uid: 7717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2926 + pos: -7.5,34.5 + parent: 7020 + - uid: 7718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2927 + pos: -7.5,33.5 + parent: 7020 + - uid: 7719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2928 + pos: -8.5,33.5 + parent: 7020 + - uid: 7720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2929 + pos: -9.5,33.5 + parent: 7020 + - uid: 7721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2930 + pos: -10.5,33.5 + parent: 7020 + - uid: 7722 components: - type: Transform - pos: 4.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2931 + pos: -10.5,34.5 + parent: 7020 + - uid: 7723 components: - type: Transform - pos: 6.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2932 + pos: -9.5,34.5 + parent: 7020 + - uid: 7724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2933 + pos: -11.5,34.5 + parent: 7020 + - uid: 7725 components: - type: Transform - pos: 5.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2934 + pos: -13.5,34.5 + parent: 7020 + - uid: 7726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2935 + pos: -14.5,33.5 + parent: 7020 + - uid: 7727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2936 + pos: -14.5,34.5 + parent: 7020 + - uid: 7728 components: - type: Transform - pos: 1.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2937 + pos: -12.5,34.5 + parent: 7020 + - uid: 7729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2938 + pos: -13.5,33.5 + parent: 7020 + - uid: 7730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2939 + pos: -12.5,35.5 + parent: 7020 + - uid: 7731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2940 + pos: -11.5,35.5 + parent: 7020 + - uid: 7732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2941 + pos: -12.5,31.5 + parent: 7020 + - uid: 7733 components: - type: Transform - pos: 11.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2942 + pos: -14.5,32.5 + parent: 7020 + - uid: 7734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2943 + pos: -14.5,31.5 + parent: 7020 + - uid: 7735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2944 + pos: -15.5,32.5 + parent: 7020 + - uid: 7736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2945 + pos: -15.5,31.5 + parent: 7020 + - uid: 7737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2946 + pos: -16.5,32.5 + parent: 7020 + - uid: 7738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2947 + pos: -16.5,31.5 + parent: 7020 + - uid: 7739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2948 + pos: -16.5,30.5 + parent: 7020 + - uid: 7740 components: - type: Transform - pos: -2.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2949 + pos: -15.5,33.5 + parent: 7020 + - uid: 7741 components: - type: Transform - pos: -13.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2950 + pos: -16.5,33.5 + parent: 7020 + - uid: 7742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2951 + pos: -17.5,34.5 + parent: 7020 + - uid: 7743 components: - type: Transform - pos: 14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2952 + pos: -17.5,33.5 + parent: 7020 + - uid: 7744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2953 + pos: -17.5,32.5 + parent: 7020 + - uid: 7745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2954 + pos: -18.5,34.5 + parent: 7020 + - uid: 7746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPort - entities: - - uid: 2955 + pos: -18.5,33.5 + parent: 7020 + - uid: 7747 components: - type: Transform - pos: 22.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2956 + pos: -18.5,32.5 + parent: 7020 + - uid: 7748 components: - type: Transform - pos: 27.5,-9.5 - parent: 2 - - uid: 2957 + pos: -19.5,33.5 + parent: 7020 + - uid: 7749 components: - type: Transform - pos: 26.5,-9.5 - parent: 2 -- proto: GasPressurePump - entities: - - uid: 2958 + pos: -20.5,33.5 + parent: 7020 + - uid: 7750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,2.5 - parent: 2 - - type: GasPressurePump - targetPressure: 300 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2959 + pos: -20.5,32.5 + parent: 7020 + - uid: 7751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,1.5 - parent: 2 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2960 + pos: -19.5,32.5 + parent: 7020 + - uid: 7752 components: - type: Transform - pos: 27.5,-10.5 - parent: 2 - - uid: 2961 + pos: -20.5,31.5 + parent: 7020 + - uid: 7753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-10.5 - parent: 2 -- proto: GasVentPump - entities: - - uid: 2962 + pos: -20.5,30.5 + parent: 7020 + - uid: 7754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2963 + pos: -20.5,29.5 + parent: 7020 + - uid: 7755 components: - type: Transform - pos: 19.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2964 + pos: -20.5,28.5 + parent: 7020 + - uid: 7756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2965 + pos: -20.5,26.5 + parent: 7020 + - uid: 7757 components: - type: Transform - pos: 14.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2966 + pos: -20.5,25.5 + parent: 7020 + - uid: 7758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2967 + pos: -20.5,24.5 + parent: 7020 + - uid: 7759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2968 + pos: -20.5,23.5 + parent: 7020 + - uid: 7760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2969 + pos: -20.5,22.5 + parent: 7020 + - uid: 7761 components: - type: Transform - pos: 11.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2970 + pos: -21.5,31.5 + parent: 7020 + - uid: 7762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2971 + pos: -21.5,30.5 + parent: 7020 + - uid: 7763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2972 + pos: -21.5,29.5 + parent: 7020 + - uid: 7764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2973 + pos: -21.5,28.5 + parent: 7020 + - uid: 7765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2974 + pos: -21.5,27.5 + parent: 7020 + - uid: 7766 components: - type: Transform - pos: -3.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2975 + pos: -21.5,26.5 + parent: 7020 + - uid: 7767 components: - type: Transform - pos: -8.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2976 + pos: -21.5,25.5 + parent: 7020 + - uid: 7768 components: - type: Transform - pos: -12.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2977 + pos: -21.5,24.5 + parent: 7020 + - uid: 7769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2978 + pos: -21.5,23.5 + parent: 7020 + - uid: 7770 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2979 + pos: -21.5,22.5 + parent: 7020 + - uid: 7771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2980 + pos: -19.5,24.5 + parent: 7020 + - uid: 7772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2981 + pos: -19.5,25.5 + parent: 7020 + - uid: 7773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2982 + pos: -19.5,27.5 + parent: 7020 + - uid: 7774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2983 + pos: -19.5,26.5 + parent: 7020 + - uid: 7775 components: - type: Transform - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2984 + pos: -22.5,30.5 + parent: 7020 + - uid: 7776 components: - type: Transform - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2985 + pos: -22.5,29.5 + parent: 7020 + - uid: 7777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2986 + pos: -22.5,28.5 + parent: 7020 + - uid: 7778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2987 + pos: -22.5,27.5 + parent: 7020 + - uid: 7779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2988 + pos: -22.5,26.5 + parent: 7020 + - uid: 7780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2989 + pos: -22.5,25.5 + parent: 7020 + - uid: 7781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2990 + pos: -22.5,23.5 + parent: 7020 + - uid: 7782 components: - type: Transform - pos: 4.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2991 + pos: -22.5,22.5 + parent: 7020 + - uid: 7783 components: - type: Transform - pos: 8.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2992 + pos: -23.5,22.5 + parent: 7020 + - uid: 7784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2993 + pos: -23.5,23.5 + parent: 7020 + - uid: 7785 components: - type: Transform - pos: 0.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2994 + pos: -23.5,24.5 + parent: 7020 + - uid: 7786 + components: + - type: Transform + pos: -23.5,25.5 + parent: 7020 + - uid: 7787 + components: + - type: Transform + pos: -23.5,26.5 + parent: 7020 + - uid: 7788 components: - type: Transform - pos: -18.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2995 + pos: -22.5,21.5 + parent: 7020 + - uid: 7789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2996 + pos: -22.5,20.5 + parent: 7020 + - uid: 7790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2997 + pos: -22.5,19.5 + parent: 7020 + - uid: 7791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2998 + pos: -22.5,17.5 + parent: 7020 + - uid: 7792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2999 + pos: -22.5,18.5 + parent: 7020 + - uid: 7793 components: - type: Transform - pos: -17.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3000 + pos: -22.5,16.5 + parent: 7020 + - uid: 7794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3001 + pos: -22.5,15.5 + parent: 7020 + - uid: 7795 components: - type: Transform - pos: -15.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3002 + pos: -21.5,21.5 + parent: 7020 + - uid: 7796 components: - type: Transform - pos: -10.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3003 + pos: -21.5,20.5 + parent: 7020 + - uid: 7797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3004 + pos: -21.5,19.5 + parent: 7020 + - uid: 7798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3005 + pos: -21.5,18.5 + parent: 7020 + - uid: 7799 components: - type: Transform - pos: 14.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3006 + pos: -21.5,17.5 + parent: 7020 + - uid: 7800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 3007 + pos: -21.5,16.5 + parent: 7020 + - uid: 7801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3008 + pos: -21.5,15.5 + parent: 7020 + - uid: 7802 components: - type: Transform - pos: 8.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3009 + pos: -23.5,18.5 + parent: 7020 + - uid: 7803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3010 + pos: -23.5,17.5 + parent: 7020 + - uid: 7804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3011 + pos: -23.5,16.5 + parent: 7020 + - uid: 7805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3012 + pos: -20.5,15.5 + parent: 7020 + - uid: 7806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3013 + pos: -21.5,14.5 + parent: 7020 + - uid: 7807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3014 + pos: -20.5,14.5 + parent: 7020 + - uid: 7808 components: - type: Transform - pos: 8.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3015 + pos: -19.5,14.5 + parent: 7020 + - uid: 7809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3016 + pos: -20.5,13.5 + parent: 7020 + - uid: 7810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3017 + pos: -18.5,13.5 + parent: 7020 + - uid: 7811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3018 + pos: -17.5,13.5 + parent: 7020 + - uid: 7812 components: - type: Transform - pos: 5.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3019 + pos: -19.5,13.5 + parent: 7020 + - uid: 7813 components: - type: Transform - pos: 2.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3020 + pos: -19.5,12.5 + parent: 7020 + - uid: 7814 components: - type: Transform - pos: -3.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3021 + pos: -16.5,12.5 + parent: 7020 + - uid: 7815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3022 + pos: -17.5,12.5 + parent: 7020 + - uid: 7816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3023 + pos: -15.5,12.5 + parent: 7020 + - uid: 7817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3024 + pos: -14.5,12.5 + parent: 7020 + - uid: 7818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3025 + pos: -13.5,12.5 + parent: 7020 + - uid: 7819 components: - type: Transform - pos: 12.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3026 + pos: -12.5,12.5 + parent: 7020 + - uid: 7820 components: - type: Transform - pos: 5.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3027 + pos: -11.5,12.5 + parent: 7020 + - uid: 7821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3028 + pos: -18.5,12.5 + parent: 7020 + - uid: 7822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3029 + pos: -17.5,11.5 + parent: 7020 + - uid: 7823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3030 + pos: -16.5,11.5 + parent: 7020 + - uid: 7824 components: - type: Transform - pos: -8.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3031 + pos: -15.5,11.5 + parent: 7020 + - uid: 7825 components: - type: Transform - pos: -4.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3032 + pos: -14.5,11.5 + parent: 7020 + - uid: 7826 components: - type: Transform - pos: -9.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3033 + pos: -13.5,11.5 + parent: 7020 + - uid: 7827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3034 + pos: -11.5,11.5 + parent: 7020 + - uid: 7828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3035 + pos: -10.5,11.5 + parent: 7020 + - uid: 7829 components: - type: Transform - pos: -14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3036 + pos: -9.5,11.5 + parent: 7020 + - uid: 7830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3037 + pos: -8.5,11.5 + parent: 7020 + - uid: 7831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3038 + pos: -7.5,11.5 + parent: 7020 + - uid: 7832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3039 + pos: -8.5,10.5 + parent: 7020 + - uid: 7833 components: - type: Transform - pos: 14.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3040 + pos: -7.5,10.5 + parent: 7020 + - uid: 7834 components: - type: Transform - pos: 24.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3041 + pos: -9.5,10.5 + parent: 7020 + - uid: 7835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3042 + pos: -6.5,11.5 + parent: 7020 + - uid: 7836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3043 + pos: -6.5,10.5 + parent: 7020 + - uid: 7837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3044 + pos: -5.5,10.5 + parent: 7020 + - uid: 7838 components: - type: Transform - pos: 19.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3045 + pos: -6.5,9.5 + parent: 7020 + - uid: 7839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 28 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3046 + pos: -5.5,9.5 + parent: 7020 + - uid: 7840 components: - type: Transform - pos: -8.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 24 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3047 + pos: -4.5,9.5 + parent: 7020 + - uid: 7841 components: - type: Transform - pos: 0.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3048 + pos: -5.5,8.5 + parent: 7020 + - uid: 7842 components: - type: Transform - pos: 1.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 25 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasVolumePump - entities: - - uid: 3049 + pos: -5.5,7.5 + parent: 7020 + - uid: 7843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GeneratorBasic - entities: - - uid: 3050 + pos: -4.5,8.5 + parent: 7020 + - uid: 7844 components: - type: Transform - pos: -23.5,24.5 - parent: 2 - - uid: 3051 + pos: -4.5,7.5 + parent: 7020 + - uid: 7845 components: - type: Transform - pos: 11.5,43.5 - parent: 2 - - uid: 3052 + pos: -3.5,7.5 + parent: 7020 + - uid: 7846 components: - type: Transform - pos: -49.5,22.5 - parent: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 6797 + pos: -2.5,7.5 + parent: 7020 + - uid: 7847 components: - type: Transform - pos: 1.5,-1.5 - parent: 6631 - - uid: 6798 + pos: -2.5,6.5 + parent: 7020 + - uid: 7848 components: - type: Transform - pos: 1.5,-2.5 - parent: 6631 -- proto: GeneratorRTGDamaged - entities: - - uid: 3053 + pos: -1.5,6.5 + parent: 7020 + - uid: 7849 components: - type: Transform - pos: 29.5,-3.5 - parent: 2 -- proto: GeneratorWallmountAPU - entities: - - uid: 5914 + pos: -1.5,7.5 + parent: 7020 + - uid: 7850 components: - type: Transform - pos: -4.5,7.5 - parent: 5384 - - uid: 5915 + pos: 2.5,14.5 + parent: 7020 + - uid: 7851 components: - type: Transform - pos: -3.5,7.5 - parent: 5384 -- proto: GoatCube - entities: - - uid: 3054 + pos: 3.5,14.5 + parent: 7020 + - uid: 7852 components: - - type: MetaData - desc: Кажется пока строили эту станцию она совсем засохла... - type: Transform - pos: 6.224681,-14.758822 - parent: 2 -- proto: GoldOre - entities: - - uid: 5916 + pos: 3.5,15.5 + parent: 7020 + - uid: 7853 components: - type: Transform - pos: 5.0553036,-0.5256923 - parent: 5384 - - uid: 5917 + pos: 3.5,16.5 + parent: 7020 + - uid: 7854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.166415,-0.60902566 - parent: 5384 - - uid: 5918 + pos: 4.5,15.5 + parent: 7020 + - uid: 7855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.041415,-0.72013634 - parent: 5384 -- proto: GoldOre1 - entities: - - uid: 3055 + pos: 5.5,15.5 + parent: 7020 + - uid: 7856 components: - type: Transform - pos: 27.762573,19.492306 - parent: 2 - - uid: 3056 + pos: -2.5,14.5 + parent: 7020 + - uid: 7857 components: - type: Transform - pos: 27.387573,19.63293 - parent: 2 - - uid: 3057 + pos: -1.5,14.5 + parent: 7020 + - uid: 7858 components: - type: Transform - pos: 28.262573,19.60168 - parent: 2 - - uid: 3058 + pos: -2.5,13.5 + parent: 7020 + - uid: 7859 components: - type: Transform - pos: 28.684448,19.28918 - parent: 2 - - uid: 3059 + pos: -11.5,15.5 + parent: 7020 + - uid: 7860 components: - type: Transform - pos: 27.996948,19.367306 - parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 3060 + pos: -9.5,15.5 + parent: 7020 + - uid: 7861 components: - - type: MetaData - desc: Не стоит её трогать - name: гравитационная аномалия - type: Transform - pos: 19.5,-19.5 - parent: 2 - - type: ApcPowerReceiver - needsPower: False - - type: Physics - canCollide: False - - type: Stealth - lastVisibility: -1 - - type: Godmode - missingComponents: - - Destructible - - PointLight - - LightningTarget - - Anchorable - - uid: 5919 + pos: -10.5,15.5 + parent: 7020 + - uid: 7862 + components: + - type: Transform + pos: -9.5,14.5 + parent: 7020 + - uid: 7863 + components: + - type: Transform + pos: -14.5,17.5 + parent: 7020 + - uid: 7864 components: - type: Transform - pos: 17.5,0.5 - parent: 5384 - - type: ApcPowerReceiver - needsPower: False - - type: Stealth - lastVisibility: 0 - missingComponents: - - Destructible - - Anchorable - - uid: 6799 + pos: -14.5,18.5 + parent: 7020 + - uid: 7865 components: - type: Transform - pos: 0.5,-1.5 - parent: 6631 -- proto: Grille - entities: - - uid: 3061 + pos: -14.5,19.5 + parent: 7020 + - uid: 7866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 2 - - uid: 3062 + pos: -14.5,20.5 + parent: 7020 + - uid: 7867 components: - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 3063 + pos: -16.5,20.5 + parent: 7020 + - uid: 7868 components: - type: Transform - pos: -3.5,16.5 - parent: 2 - - uid: 3064 + pos: -15.5,20.5 + parent: 7020 + - uid: 7869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 2 - - uid: 3065 + pos: -15.5,19.5 + parent: 7020 + - uid: 7870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 2 - - uid: 3066 + pos: -19.5,31.5 + parent: 7020 + - uid: 7871 components: - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 3067 + pos: -18.5,31.5 + parent: 7020 +- proto: MiningWindow + entities: + - uid: 6014 components: - type: Transform - pos: 20.5,-8.5 - parent: 2 - - uid: 3068 + pos: 5.5,5.5 + parent: 5438 + - uid: 6015 components: - type: Transform - pos: 18.5,-8.5 - parent: 2 - - uid: 3069 + pos: 3.5,4.5 + parent: 5438 + - uid: 6016 components: - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 3070 + pos: 4.5,5.5 + parent: 5438 + - uid: 6017 components: - type: Transform - pos: 5.5,-5.5 - parent: 2 - - uid: 3071 + pos: 4.5,4.5 + parent: 5438 + - uid: 6018 components: - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 3072 + pos: 3.5,5.5 + parent: 5438 + - uid: 6019 components: - type: Transform - pos: 5.5,6.5 - parent: 2 - - uid: 3073 + pos: 5.5,4.5 + parent: 5438 +- proto: Mirror + entities: + - uid: 3349 components: - type: Transform - pos: 12.5,-1.5 + rot: 1.5707963267948966 rad + pos: -12.5,6.5 parent: 2 - - uid: 3074 + - uid: 6020 components: - type: Transform - pos: 8.5,10.5 - parent: 2 - - uid: 3075 + pos: 7.5,-5.5 + parent: 5438 +- proto: ModularGrenade + entities: + - uid: 6021 components: - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 3076 + pos: 15.106596,-1.3672802 + parent: 5438 +- proto: MopItem + entities: + - uid: 3350 components: - type: Transform - pos: 10.5,15.5 + pos: -20.5,3.5 parent: 2 - - uid: 3077 +- proto: Multitool + entities: + - uid: 3351 components: - type: Transform - pos: 12.5,15.5 + pos: 20.714445,-7.4805245 parent: 2 - - uid: 3078 +- proto: Nettle + entities: + - uid: 3352 components: + - type: MetaData + name: банный веник - type: Transform - pos: 12.5,-3.5 + rot: -1.5707963267948966 rad + pos: 6.6022873,38.413044 parent: 2 - - uid: 3079 + missingComponents: + - MeleeWeapon + - uid: 3353 components: + - type: MetaData + name: банный веник - type: Transform - pos: 19.5,-8.5 + pos: 6.4373045,38.612595 parent: 2 - - uid: 3080 + missingComponents: + - MeleeWeapon +- proto: NitrogenCanister + entities: + - uid: 3354 components: - type: Transform - pos: 7.5,-8.5 + pos: 24.5,0.5 parent: 2 - - uid: 3081 +- proto: NitrogenTankFilled + entities: + - uid: 5804 components: - type: Transform - pos: 8.5,-11.5 - parent: 2 - - uid: 3082 + parent: 5801 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NodeScanner + entities: + - uid: 3355 components: - type: Transform - pos: 7.5,-11.5 + pos: 23.427187,-6.6154575 parent: 2 - - uid: 3083 + - uid: 3356 components: - type: Transform - pos: 10.5,-11.5 + pos: 23.678116,-6.4702315 parent: 2 - - uid: 3084 +- proto: NuclearBomb + entities: + - uid: 3357 components: - type: Transform - pos: -0.5,3.5 + pos: 5.5,2.5 parent: 2 - - uid: 3085 +- proto: Omnitool + entities: + - uid: 3358 components: - type: Transform - pos: 0.5,3.5 + pos: 4.5,-0.5 parent: 2 - - uid: 3086 +- proto: OmnizineChemistryBottle + entities: + - uid: 3359 components: + - type: MetaData + name: смазка для дротиков - type: Transform - pos: 1.5,3.5 + pos: -14.179216,17.357433 parent: 2 - - uid: 3087 +- proto: OreBox + entities: + - uid: 3360 components: - type: Transform - pos: 2.5,3.5 + rot: 1.5707963267948966 rad + pos: 27.5,9.5 parent: 2 - - uid: 3088 + - uid: 3361 components: - type: Transform - pos: -9.5,5.5 + rot: 1.5707963267948966 rad + pos: 27.5,8.5 parent: 2 - - uid: 3089 +- proto: OreProcessor + entities: + - uid: 3362 components: - type: Transform - pos: -7.5,5.5 + pos: 19.5,20.5 parent: 2 - - uid: 3090 +- proto: OxygenCanister + entities: + - uid: 3363 components: - type: Transform - pos: 23.5,5.5 + pos: 23.5,0.5 parent: 2 - - uid: 3091 + - uid: 3364 components: - type: Transform - pos: 23.5,4.5 + pos: -29.5,7.5 parent: 2 - - uid: 3092 +- proto: OxygenTankFilled + entities: + - uid: 5805 components: - type: Transform - pos: 23.5,3.5 - parent: 2 - - uid: 3093 + parent: 5801 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PackPaperRollingFilters + entities: + - uid: 3365 components: - type: Transform - pos: 22.5,3.5 + pos: 2.9983497,19.626749 parent: 2 - - uid: 3094 +- proto: PaintingSadClown + entities: + - uid: 3366 components: - type: Transform - pos: 24.5,3.5 + rot: 3.141592653589793 rad + pos: -19.5,6.5 parent: 2 - - uid: 3095 +- proto: PaintingSkeletonBoof + entities: + - uid: 3367 components: - type: Transform - pos: -25.5,8.5 + pos: 6.5,2.5 parent: 2 - - uid: 3096 +- proto: Paper + entities: + - uid: 3274 components: - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 3097 + parent: 3273 + - type: Paper + stampState: paper_stamp-deny + stampedBy: + - stampedColor: '#A23E3EFF' + stampedName: stamp-component-stamped-name-denied + content: >- + │█║▌▌│█║▌▌▌│║█│▌ + + + Билет на перевозку домашнего животного + + + ▌▌▌│║█││█║▌▌│║▌▌▌ + + + Вид животного: Felis catus + + + Кличка: Рантайм + + + Возраст: 2 года + + + │║█││█║▌▌▌▌│█║▌▌ + + + Дата перевозки: 06.03.3024 + + + + + + + Причина отказа: Отсутствие прививки от зомби вируса. + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3368 components: - type: Transform - pos: 12.5,18.5 + rot: 3.141592653589793 rad + pos: -30.347021,29.549524 parent: 2 - - uid: 3098 + - uid: 3369 components: - type: Transform - pos: -26.5,7.5 + rot: 3.141592653589793 rad + pos: -30.513687,29.612024 parent: 2 - - uid: 3099 + - uid: 3370 components: - type: Transform - pos: 19.5,16.5 + pos: 0.8010769,15.100104 parent: 2 - - uid: 3100 + - type: Paper + stampState: paper_stamp-approve + stampedBy: + - stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + │█║▌▌│█║▌▌▌│║█│▌ + + + Билет на перевозку домашнего животного + + + ▌▌▌│║█││█║▌▌│║▌▌▌ + + + Вид животного: Felis catus + + + Кличка: Рантайм + + + Возраст: 2 года, 1 месяц и 3 дня + + + │║█││█║▌▌▌▌│█║▌▌ + + + Дата перевозки: 09.04.3024 + - uid: 3371 components: - type: Transform - pos: 5.5,-11.5 + pos: -18.860891,11.549556 parent: 2 - - uid: 3101 + - type: Paper + content: >- + [color=#B50F1D] ███░██████░███[/color] + + [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] + + [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] + + [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Silly ██-███ ███[/bold] + + [color=#B50F1D] ███░██████░███[/color] + + ============================================= + ОТЧЁТ О ПРОСЛУШКЕ + ============================================= + + Дата: 07.12.3023 + + Позывной Агента: Оператор Абу + + + Я задрался слушать этот бред, какого чёрта меня вообще сюда усадили!? Служба безопасности не передаёт по своим каналам связи ничего полезного. У меня уже уши вянут от подкатов к смотрителю со стороны этого ███████ кадета! + + + Меня от службы безопасности разделяет одна стена, мне даже нельзя громко ходить, потому что по чертежам станции тут нету помещения! Меня могут раскрыть в любой момент! К тому же здесь не проведена вентиляция, запах из толчка убьёт меня быстрее чем дым от сигарет. Приходится открывать вход в укрытие на пару секунд, дабы проветрить этот свинарник. + + + К тому же, как я должен помогать заключённым? Да, с помощью утилизационного блока я могу делать подачки тем, кто сейчас под стражей в камере, но чёрт, вещи вылезают прям из параши! Смотритель должен быть совсем слепым, чтобы этого не увидеть! + + + Вчера технический ассистент проверял куда ведёт НВ кабель и нашёл проход сюда, пришлось заколоть его лазерной ручкой и выкинуть со стороны солнечных панелей. Это слишком, ████ ███, очевидное место! + + + Заберите меня уже █████ отсюда! + + ============================================= + - uid: 3372 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-12.5 + pos: -27.709478,-7.3866467 parent: 2 - - uid: 3102 + - type: Paper + content: >2 + + [head=1]ОПОВЕЩЕНИЕ СОТРУДНИКАМ[/head] + + + На объекте со сканнера массы находится особо опасный объект, однако в его камере содержания имеются телекристаллы, также контрабанда в стенах самой постройки. Координаты объекта в момент написания бумаги: + + + [head=1]-265 503[/head] + + + Используйте эту информацию с умом. + - uid: 3373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,18.5 + pos: -20.689861,5.4503107 parent: 2 - - uid: 3103 + - type: Paper + content: >2 + + [head=1]ОПОВЕЩЕНИЕ СОТРУДНИКАМ[/head] + + + На объекте со сканнера массы находится особо опасный объект, однако в его камере содержания имеются телекристаллы, также контрабанда в стенах самой постройки. Координаты объекта в момент написания бумаги: + + + [head=1]-265 503[/head] + + + Используйте эту информацию с умом. + - uid: 3374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,18.5 + pos: 10.290568,22.278557 parent: 2 - - uid: 3104 + - type: Paper + stampState: paper_stamp-approve + stampedBy: + - stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + Правила кладбища: + + + Когда кого-то хороните, кладите на могилу цветы. + + Провожайте людей с почестью. + + Следить за растущем маком. + + Не хроните людей которых ещё можно спасти. + + Проявляйте уважение к мёртвым. + + Для избежания неприятного запаха хороните в мешках. + - uid: 3375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 + pos: -54.361942,20.586702 parent: 2 - - uid: 3105 + - type: Paper + content: >- + [color=darkred] [head=3] Парк Синдиленда [/head] [/color] + + [color=darkred]____________Приветстсвуем Экипаж станции Silly!!!__________ [/color] + + Мы рады пригласить вас на незабываемое приключение в Парк Ужасов Синделенда! Этот уникальный парк подарит вам море эмоций, адреналина и незабываемых впечатлений. + + + Мы также хотим извиниться за небольшое уничтожение одного из небольших домиков, но к сожелению это требуемые жертвы во имя веселья! + + + Пожалуйста, обращайте особое внимание на сохранность предоставленного шаттла, который доставит вас в парк и обратно. Мы рассчитываем на вашу осторожность и внимательность, чтобы все прошло гладко и без происшествий. + + Иначе с вам будет взят штраф! + + + Ждем вас с нетерпением и готовы подарить вам ночь, полную ужасов и потрясающих приключений! + + + + [italic]С уважением, Команда Диспетчеров Синделенда [/italick] + - uid: 3376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,1.5 + rot: -1.5707963267948966 rad + pos: 12.507388,8.646318 parent: 2 - - uid: 3106 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД-СНБ[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + + Бюррократический Процесс Оформления Заказа + + ============================================= + + Время от начала смены и дата: + + Составитель документа: + + Должность составителя: + + + Перечень товаров для заказа: + + + Место доставки товара: + + + Причина: + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 3377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 + rot: -1.5707963267948966 rad + pos: 12.413638,8.510901 parent: 2 - - uid: 3107 + - type: Paper + content: >2- + + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД-СНБ[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + + Бюррократический Процесс Оформления Заказа + + ============================================= + + Время от начала смены и дата: + + Составитель документа: + + Должность составителя: + + + Перечень товаров для заказа: + + + Место доставки товара: + + + Причина: + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 6022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.465185,-2.3026602 + parent: 5438 + - type: Paper + content: >2 + + [head=1]НЕ ХОЧУ УМИРАТЬ ВОТ ТАК! Я ДАЖЕ НЕ МОГУ ПОДОРВАТЬ СВОЮ БОШКУ, ВЫРОНИЛ ТРИГГЕР, КОГДА ЭТОГО КУРИЛЬЩИКА НА МЯСО РАЗНЕСЛО, БЛЯТЬ! Я СТАНУ ТАКИМ ЖЕ, МЕНЯ ЖДЁТ ТАКАЯ ЖЕ СУДЬБА! ПОЖАЛУЙСТА, БОЖЕ, ДАРУЙ МНЕ БЫСТРУЮ СМЕРТЬ! НЕ ХОЧУ ТАК![/head] + - uid: 6023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.548519,-2.149882 + parent: 5438 + - type: Paper + content: >2 + + [head=1]Я РАБОТАЮ НА ДРУГУЮ КОРПОРАЦИЮ, Я НЕ ХОЧУ БЫТЬ ЗДЕСЬ, Я НЕ ХОЧУ УМИРАТЬ! Я РАЗМЕСТИЛ ПРЕДМЕТЫ В ПУСТОТНЫХ УЧАСТКАХ, ДОЛЖЕН БЫЛ УЖЕ УЛЕТЕТЬ, НО ЭТА МРАЗЬ, КОТОРУЮ ТУТ ИССЛЕДУЮТ, ПУСТИЛА ЧТО-ТО ЧЕРЕЗ ТРУБУ И ВЕДУЩЕГО УЧЁНОГО РАЗОРВАЛО, А ЕГО ОШМЁТКИ СОБРАЛИСЬ В СТРАШНУЮ ТВАРЬ! ГОСПОДИ, ДАРУЙ МНЕ СПАСАНИЕ! МНЕ ТАК ЖАЛЬ! МНЕ ТАК ЖАЛЬ! МНЕ ТАК ЖАЛЬ! МНЕ ТАК ЖАЛЬ![/head] + - uid: 6024 components: - type: Transform - pos: 9.5,-19.5 - parent: 2 - - uid: 3108 + pos: 13.333535,-5.473741 + parent: 5438 + - type: Paper + content: >2 + + [head=1]НЕ ДАМСЯ ЭТИМ СУКИНЫМ ДЕТЯМ! ПОКА САМ НЕ СТАНУ КУЧЕЙ ПЛОТИ - УБЬЮ КАК МОЖНО БОЛЬШЕ! ГОРЕТЬ ИМ ВСЕМ В АДУ![/head] + - uid: 6025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 2 - - uid: 3109 + rot: -1.5707963267948966 rad + pos: 7.425038,-7.368792 + parent: 5438 + - type: Paper + content: >2 + + [head=1]Я НЕ УМРУ В ТУАЛЕТЕ![/head] + - uid: 7872 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,17.5 - parent: 2 - - uid: 3110 + pos: -9.560669,24.03645 + parent: 7020 + - type: Paper + content: >2- + Инструкция по Работе + + Кнопка 1 - Открытие входных ставней + + Кнопка 2 - Открытие выходных ставней + + Кнопка 3 - Активация ужаса! + + + [italic] Перед входом участников, переключить кнопку ужаса в состояние выключено [/italic] + - uid: 7873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.9148254,24.578117 + parent: 7020 + - type: Paper + content: >2- + Инструкция по Работе + + Кнопка 1 - Открытие входных ставней + + Кнопка 2 - Открытие выходных ставней + + Кнопка 3 - Активация ужаса! + + Кнопка 4 - Дым испуга! + + + [italic] Перед входом участников, переключить кнопку ужаса в состояние выключено [/italic] + - uid: 7874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,17.5 - parent: 2 - - uid: 3111 + pos: -4.925232,23.203117 + parent: 7020 + - type: Paper + content: >2- + Инструкция по Работе + + Кнопка 1 - Открытие входных ставней + + Кнопка 2 - Открытие выходных ставней + + Кнопка 3 - Активация ужаса! + + Кнопка 4 - Дым и Пули испуга! + + + [italic] Перед входом участников, переключить кнопку ужаса в состояние выключено [/italic] + - uid: 7875 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-14.5 - parent: 2 - - uid: 3112 + pos: 6.499054,17.55413 + parent: 7020 + - type: Paper + content: >- + Дорогй смотритель парка + + + В ваши задачи входит контролировать парк, а также их переходы от комнаты в комнату. Просим вас следовать инструкциям, а также здравой логике! + + + Пусть каждый уйдёт счастливый и с подарком +- proto: PaperBin10 + entities: + - uid: 3378 components: - type: Transform - pos: 11.5,-19.5 + pos: 14.5,7.5 parent: 2 - - uid: 3113 + - uid: 3379 components: - type: Transform - pos: 12.5,-19.5 + pos: 16.5,3.5 parent: 2 - - uid: 3114 + - uid: 3380 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,17.5 + pos: 1.5,-0.5 parent: 2 - - uid: 3115 + - uid: 6026 components: - type: Transform - pos: 11.5,18.5 - parent: 2 - - uid: 3116 + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 5438 + - uid: 6027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,3.5 - parent: 2 - - uid: 3117 + pos: 6.5,10.5 + parent: 5438 + - uid: 7876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 2 - - uid: 3118 + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 7020 +- proto: PaperBin20 + entities: + - uid: 3381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,0.5 + pos: -7.5,20.5 parent: 2 - - uid: 3119 + - uid: 3382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-3.5 + pos: -11.5,8.5 parent: 2 - - uid: 3120 +- proto: PartRodMetal + entities: + - uid: 3383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 + pos: -21.374474,-0.5497774 parent: 2 - - uid: 3121 + - uid: 3384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-4.5 + pos: 34.62356,-1.5370318 parent: 2 - - uid: 3122 + - uid: 3385 components: - type: Transform - pos: -29.5,-1.5 + pos: 15.596955,2.9288425 parent: 2 - - uid: 3123 + - uid: 3386 components: - type: Transform - pos: 26.5,11.5 + pos: 15.451121,2.9288425 parent: 2 - - uid: 3124 +- proto: Pen + entities: + - uid: 3387 components: - type: Transform - pos: 26.5,8.5 + rot: 1.5707963267948966 rad + pos: -30.169937,29.549524 parent: 2 - - uid: 3125 + - uid: 3388 components: - type: Transform - pos: 26.5,7.5 + rot: -1.5707963267948966 rad + pos: 10.577741,-18.345917 parent: 2 - - uid: 3126 + - uid: 3389 components: - type: Transform - pos: 26.5,9.5 + pos: -19.442478,24.350758 parent: 2 - - uid: 3127 + - uid: 3390 components: - type: Transform - pos: 25.5,16.5 + pos: -19.379978,24.569508 parent: 2 - - uid: 3128 + - uid: 6028 components: - type: Transform - pos: 26.5,13.5 - parent: 2 - - uid: 3129 + pos: 15.543053,-1.7514844 + parent: 5438 + - uid: 6029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 2 - - uid: 3130 + pos: 6.0770383,10.561055 + parent: 5438 + - uid: 6030 components: - type: Transform - pos: -29.5,-0.5 - parent: 2 - - uid: 3131 + rot: -1.5707963267948966 rad + pos: 1.9107733,-6.297143 + parent: 5438 + - uid: 6031 components: - type: Transform - pos: -29.5,-2.5 - parent: 2 - - uid: 3132 + pos: 13.548119,-5.5936885 + parent: 5438 + - uid: 6032 components: - type: Transform - pos: 25.5,15.5 - parent: 2 - - uid: 3133 + pos: 7.503281,-7.487985 + parent: 5438 +- proto: PetCarrier + entities: + - uid: 3391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: 0.5,14.5 parent: 2 - - uid: 3134 +- proto: PhoneInstrument + entities: + - uid: 3392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-11.5 + pos: 1.9156165,-0.58775055 parent: 2 - - uid: 3135 +- proto: PhoneInstrumentSyndicate + entities: + - uid: 3393 components: - type: Transform - pos: -5.5,19.5 + pos: -18.615028,11.75876 parent: 2 - - uid: 3136 +- proto: PianoInstrument + entities: + - uid: 3394 components: - type: Transform - pos: -6.5,18.5 + rot: 3.141592653589793 rad + pos: -25.5,32.5 parent: 2 - - uid: 3137 +- proto: Pickaxe + entities: + - uid: 3395 components: - type: Transform - pos: -6.5,19.5 + pos: 27.640188,14.465828 parent: 2 - - uid: 3138 + - uid: 3396 components: - type: Transform - pos: -5.5,18.5 + rot: 1.5707963267948966 rad + pos: 27.468313,14.481453 parent: 2 - - uid: 5920 - components: - - type: Transform - pos: 3.5,5.5 - parent: 5384 - - uid: 5921 + - uid: 7877 components: - type: Transform - pos: 3.5,4.5 - parent: 5384 - - uid: 5922 + pos: -10.965424,32.18402 + parent: 7020 +- proto: PinpointerNuclear + entities: + - uid: 3397 components: - type: Transform - pos: 4.5,5.5 - parent: 5384 - - uid: 5923 + pos: 5.5,-0.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 3398 components: - type: Transform - pos: 4.5,4.5 - parent: 5384 - - uid: 5924 + pos: 27.5,-9.5 + parent: 2 +- proto: PlasmaOre1 + entities: + - uid: 3399 components: - type: Transform - pos: 5.5,5.5 - parent: 5384 - - uid: 5925 + pos: 27.231323,19.38293 + parent: 2 + - uid: 3400 components: - type: Transform - pos: 5.5,4.5 - parent: 5384 -- proto: GrilleDiagonal + pos: 28.621948,19.461056 + parent: 2 +- proto: PlasmaTankFilled entities: - - uid: 3139 + - uid: 3401 components: - type: Transform - pos: -27.5,7.5 + pos: 28.67103,-4.6311526 parent: 2 - - uid: 3140 + - uid: 3402 components: - type: Transform - pos: -25.5,9.5 + rot: -1.5707963267948966 rad + pos: 28.23353,-4.0374026 parent: 2 - - uid: 3141 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 3403 components: - type: Transform - pos: -26.5,8.5 + pos: 22.5,17.5 parent: 2 - - uid: 3142 + - uid: 3404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,7.5 + pos: -29.5,-3.5 parent: 2 - - uid: 3143 +- proto: PlastitaniumWindow + entities: + - uid: 7878 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,8.5 - parent: 2 - - uid: 3144 + pos: 7.5,21.5 + parent: 7020 + - uid: 7879 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,6.5 - parent: 2 - - uid: 3145 + pos: 3.5,24.5 + parent: 7020 + - uid: 7880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 2 - - uid: 3146 + pos: -7.5,22.5 + parent: 7020 + - uid: 7881 components: - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 3147 + pos: -6.5,22.5 + parent: 7020 + - uid: 7882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 2 - - uid: 3148 + pos: 0.5,21.5 + parent: 7020 + - uid: 7883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 -- proto: GunSafe - entities: - - uid: 3149 + pos: -10.5,24.5 + parent: 7020 + - uid: 7884 components: - type: Transform - pos: -11.5,18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3151 - - 3152 - - 3153 - - 3155 - - 3154 - - 3150 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3156 + pos: -10.5,23.5 + parent: 7020 + - uid: 7885 components: - type: Transform - pos: -12.5,18.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14676 - moles: - - 1.7450964 - - 6.564886 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3162 - - 3163 - - 3164 - - 3160 - - 3166 - - 3165 - - 3161 - - 3157 - - 3158 - - 3159 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Gyroscope - entities: - - uid: 6800 + pos: -5.5,25.5 + parent: 7020 + - uid: 8318 components: - type: Transform - pos: 0.5,-2.5 - parent: 6631 -- proto: Handcuffs + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 8267 +- proto: PlushieNuke entities: - - uid: 3167 + - uid: 7886 components: - type: Transform - pos: -14.70005,17.305351 - parent: 2 -- proto: HandheldGPSBasic - entities: - - uid: 3168 + pos: 3.447998,20.25776 + parent: 7020 + - uid: 7887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.291122,-7.349379 - parent: 2 - - uid: 3169 + pos: 4.541748,21.247345 + parent: 7020 +- proto: PlushieSharkBlue + entities: + - uid: 3405 components: - type: Transform - pos: -20.330486,5.4659357 + pos: -42.704338,16.285648 parent: 2 -- proto: HandheldStationMap +- proto: PlushieSlime entities: - - uid: 3170 + - uid: 3406 components: + - type: MetaData + desc: Он похож на какого-то Оскарда в молодости... - type: Transform - pos: -8.525855,17.510986 + pos: -43.423088,16.629398 parent: 2 - - uid: 3171 +- proto: PoppySeeds + entities: + - uid: 3407 components: - type: Transform - pos: 19.556929,-7.4072747 + pos: 10.855233,22.161793 parent: 2 - - uid: 3172 + - uid: 3408 components: - type: Transform - pos: 15.99298,3.1692467 + pos: 10.864254,22.408901 parent: 2 - - uid: 3173 +- proto: PortableGeneratorJrPacman + entities: + - uid: 3409 components: - type: Transform - pos: 20.492981,13.592439 + pos: -23.5,11.5 parent: 2 - - uid: 3174 +- proto: PortableGeneratorJrPacmanMachineCircuitboard + entities: + - uid: 3410 components: - type: Transform - pos: 13.501758,13.461455 + pos: 26.516403,3.7152495 parent: 2 -- proto: HandheldStationMapUnpowered +- proto: PortableGeneratorPacman entities: - - uid: 3175 + - uid: 3411 components: - type: Transform - pos: 4.8959923,-0.42878568 + pos: -23.5,10.5 parent: 2 -- proto: HarmonicaInstrument +- proto: PortableGeneratorPacmanMachineCircuitboard entities: - - uid: 3176 + - uid: 3412 components: - type: Transform - pos: -13.450414,6.480726 + pos: 26.516403,3.5763607 parent: 2 -- proto: HighSecArmoryLocked +- proto: PortableGeneratorSuperPacmanMachineCircuitboard entities: - - uid: 3177 + - uid: 3413 components: - type: Transform - pos: -10.5,17.5 + pos: 26.516403,3.4374719 parent: 2 -- proto: HighSecCommandLocked +- proto: PortableScrubber entities: - - uid: 3178 + - uid: 3414 components: - type: Transform - pos: 3.5,0.5 + pos: 19.5,0.5 parent: 2 - - uid: 3179 + - uid: 3415 components: - type: Transform - pos: -1.5,-3.5 + pos: 20.5,0.5 parent: 2 -- proto: HighSecDoor - entities: - - uid: 5926 - components: - - type: Transform - pos: 12.5,4.5 - parent: 5384 -- proto: HospitalCurtains +- proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 3180 + - uid: 3416 components: - type: Transform - pos: -13.5,-1.5 + rot: -1.5707963267948966 rad + pos: 8.5,-16.5 parent: 2 - - uid: 3181 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 3417 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,9.5 + pos: 8.5,41.5 parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 3182 + - uid: 6033 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,13.5 - parent: 2 - - uid: 3183 - components: - - type: Transform - pos: -17.5,12.5 - parent: 2 - - uid: 3184 + pos: 14.5,-5.5 + parent: 5438 +- proto: PosterContrabandClown + entities: + - uid: 3418 components: - type: Transform - pos: -26.5,-7.5 + rot: -1.5707963267948966 rad + pos: -17.5,7.5 parent: 2 - - uid: 6801 - components: - - type: Transform - pos: 2.5,6.5 - parent: 6631 - - uid: 6802 - components: - - type: Transform - pos: 2.5,7.5 - parent: 6631 -- proto: hydroponicsSoil +- proto: PosterContrabandDonutCorp entities: - - uid: 3185 + - uid: 3419 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,18.5 + pos: -8.5,9.5 parent: 2 - - uid: 3186 +- proto: PosterContrabandFreeDrone + entities: + - uid: 6034 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 2 - - uid: 3187 + pos: -5.5,7.5 + parent: 5438 +- proto: PosterContrabandGreyTide + entities: + - uid: 7888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,19.5 - parent: 2 - - uid: 3188 + pos: -8.5,14.5 + parent: 7020 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 6035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,19.5 - parent: 2 - - uid: 3189 + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 5438 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 6036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 5438 +- proto: PosterContrabandPunchShit + entities: + - uid: 6037 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-14.5 - parent: 2 - - uid: 3190 + pos: 14.5,-7.5 + parent: 5438 +- proto: PosterContrabandShamblersJuice + entities: + - uid: 6038 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 2 - - uid: 3191 + pos: 12.5,-9.5 + parent: 5438 +- proto: PosterContrabandTools + entities: + - uid: 3420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-13.5 + rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 2 - - uid: 3192 +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 6039 components: + - type: MetaData + desc: '"Проводить слежку сугубо по камерам"-.. Дальнейшие буквы покрыты кровью, не разобрать.' + name: объявление о безопасности - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 2 - - uid: 3193 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 5438 +- proto: PosterLegitHighClassMartini + entities: + - uid: 3421 components: - type: Transform - pos: 10.5,22.5 + pos: 1.5,-14.5 parent: 2 - - uid: 3194 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 7889 components: - type: Transform - pos: -51.5,17.5 - parent: 2 - - uid: 3195 + pos: -3.5,21.5 + parent: 7020 +- proto: PosterLegitMime + entities: + - uid: 3422 components: - type: Transform - pos: -50.5,17.5 + rot: -1.5707963267948966 rad + pos: -19.5,0.5 parent: 2 -- proto: HydroponicsToolClippers +- proto: PosterLegitNanotrasenLogo entities: - - uid: 3196 + - uid: 3423 components: - type: Transform - pos: 10.370858,22.661793 + rot: 3.141592653589793 rad + pos: -1.5,1.5 parent: 2 - - uid: 3197 +- proto: PosterLegitScience + entities: + - uid: 6040 components: - type: Transform - pos: -51.017036,17.349709 - parent: 2 -- proto: HydroponicsToolMiniHoe + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 5438 +- proto: PottedPlant14 entities: - - uid: 3198 + - uid: 3424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.541392,7.4578896 + pos: 11.5,-6.5 parent: 2 - - uid: 3199 +- proto: PottedPlant21 + entities: + - uid: 3425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.748776,18.655527 + pos: 1.5,-8.5 parent: 2 - - uid: 3200 +- proto: PottedPlant22 + entities: + - uid: 3426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.017036,17.433043 + pos: 7.5,3.5 parent: 2 -- proto: HydroponicsToolSpade +- proto: PottedPlant24 entities: - - uid: 3201 + - uid: 3427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.780026,18.702402 + pos: -2.5,3.5 parent: 2 -- proto: hydroponicsTray +- proto: PottedPlantAlt7 entities: - - uid: 3202 + - uid: 3428 components: - type: Transform - pos: 5.5,7.5 + pos: 13.5,17.5 parent: 2 - - uid: 3203 +- proto: PottedPlantRandom + entities: + - uid: 3429 components: - type: Transform - pos: 8.5,-14.5 + pos: -21.5,24.5 parent: 2 - - uid: 3204 + - uid: 3430 components: - type: Transform - pos: 8.5,-13.5 + pos: 13.5,14.5 parent: 2 - - uid: 3205 + - uid: 3431 components: - type: Transform - pos: 9.5,-13.5 + pos: 5.5,17.5 parent: 2 - - uid: 3206 + - uid: 3432 components: - type: Transform - pos: 10.5,-13.5 + pos: 21.5,8.5 parent: 2 - - uid: 3207 + - uid: 3433 components: - type: Transform - pos: 10.5,-14.5 + pos: 18.5,13.5 parent: 2 - - uid: 3208 + - uid: 7890 components: - type: Transform - pos: 9.5,-14.5 - parent: 2 -- proto: IngotGold + pos: -14.5,29.5 + parent: 7020 + - uid: 7891 + components: + - type: Transform + pos: 5.5,19.5 + parent: 7020 + - uid: 7892 + components: + - type: Transform + pos: -12.5,17.5 + parent: 7020 +- proto: PottedPlantRandomPlastic entities: - - uid: 3209 + - uid: 6864 components: - type: Transform - pos: 6.5403113,1.6150239 - parent: 2 - - uid: 3210 + pos: 2.5,1.5 + parent: 6685 + - uid: 6865 components: - type: Transform - pos: 6.526422,1.4761351 - parent: 2 - - uid: 3211 + pos: -1.5,2.5 + parent: 6685 +- proto: PottedPlantRD + entities: + - uid: 6041 components: + - type: MetaData + desc: Кажется он устал. + name: задохлик - type: Transform - pos: 6.512534,1.2955792 - parent: 2 -- proto: IngotGold1 + pos: 12.495246,-7.14176 + parent: 5438 +- proto: PowerCellRecharger entities: - - uid: 3212 + - uid: 3434 components: - type: Transform - pos: -23.412937,6.588306 + rot: 3.141592653589793 rad + pos: 12.5,-2.5 parent: 2 - - uid: 3213 + - uid: 3435 components: - type: Transform - pos: -23.432516,6.6830416 + pos: 8.5,8.5 parent: 2 - - uid: 5927 + - uid: 3436 components: - type: Transform - pos: 14.984589,2.380127 - parent: 5384 - - uid: 5928 + pos: 13.5,5.5 + parent: 2 + - uid: 3437 components: - type: Transform - pos: 15.093964,2.598877 - parent: 5384 - - uid: 5929 + pos: -15.5,0.5 + parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 3438 components: - type: Transform - pos: 15.187714,2.348877 - parent: 5384 - - uid: 5930 + pos: -18.5,-2.5 + parent: 2 + - uid: 3439 components: - type: Transform - pos: 15.265839,2.536377 - parent: 5384 -- proto: IngotSilver - entities: - - uid: 3214 + pos: -26.5,2.5 + parent: 2 + - uid: 3440 components: - type: Transform - pos: 6.4847555,1.0872458 + pos: -11.5,-3.5 parent: 2 -- proto: IntercomCommon +- proto: Poweredlight entities: - - uid: 5931 + - uid: 3441 components: - type: Transform - pos: 11.5,-8.5 - parent: 5384 - - uid: 5932 + pos: 10.5,-8.5 + parent: 2 + - uid: 3442 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 5384 - - uid: 5933 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 5384 - - uid: 5934 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 5384 - - uid: 5935 + pos: 12.5,-10.5 + parent: 2 + - uid: 3443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 5384 - - uid: 5936 + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + - uid: 3444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 5384 - - uid: 5937 + pos: 23.5,-4.5 + parent: 2 + - uid: 3445 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 5384 -- proto: JanitorialTrolley - entities: - - uid: 3215 + pos: -10.5,12.5 + parent: 2 + - uid: 3446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 + rot: 3.141592653589793 rad + pos: 6.5,-14.5 parent: 2 -- proto: JetpackBlackFilled - entities: - - uid: 3216 + - uid: 3447 components: - type: Transform - pos: -27.548237,-5.354735 + pos: 25.5,2.5 parent: 2 -- proto: JetpackBlueFilled - entities: - - uid: 222 + - uid: 3448 components: - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: JetpackMiniFilled - entities: - - uid: 3217 + pos: 21.5,2.5 + parent: 2 + - uid: 3449 components: - type: Transform - pos: 5.323476,-16.144377 + pos: 20.5,6.5 parent: 2 - - uid: 3218 + - uid: 3450 components: - type: Transform - pos: 6.427643,-16.144377 + pos: 15.5,5.5 parent: 2 - - uid: 3219 + - uid: 3451 components: - type: Transform - pos: 5.396393,-16.585276 + rot: 3.141592653589793 rad + pos: 15.5,0.5 parent: 2 - - uid: 3220 + - uid: 3452 components: - type: Transform - pos: 5.5630593,-16.366526 + rot: 3.141592653589793 rad + pos: 3.5,-14.5 parent: 2 - - uid: 3221 + - uid: 3453 components: - type: Transform - pos: 6.3443093,-16.60611 + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 parent: 2 - - uid: 3222 + - uid: 3454 components: - type: Transform - pos: 6.6255593,-16.366526 + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 parent: 2 -- proto: Jug - entities: - - uid: 5938 + - uid: 3455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.7143289,-10.571857 - parent: 5384 -- proto: Katana - entities: - - uid: 5939 + rot: 1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 2 + - uid: 3456 components: - type: Transform - pos: 3.4217834,8.420563 - parent: 5384 -- proto: KitchenElectricGrill - entities: - - uid: 3223 + pos: 22.5,-1.5 + parent: 2 + - uid: 3457 components: - type: Transform - pos: 11.5,-10.5 + pos: 19.5,-1.5 parent: 2 - - uid: 3224 + - uid: 3458 components: - type: Transform - pos: -20.5,14.5 + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 parent: 2 -- proto: KitchenKnife - entities: - - uid: 3225 + - uid: 3459 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.49681,20.5742 + pos: 16.5,-4.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 3226 + - uid: 3460 components: - type: Transform - pos: 10.5,-8.5 + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 parent: 2 - - uid: 3227 + - uid: 3461 components: - type: Transform - pos: -28.5,-6.5 + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 parent: 2 - - uid: 3228 + - uid: 3462 components: - type: Transform - pos: -49.5,20.5 + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 parent: 2 - - uid: 5940 + - uid: 3463 components: - type: Transform - pos: 8.5,-12.5 - parent: 5384 -- proto: KitchenReagentGrinder - entities: - - uid: 3229 + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + - uid: 3464 components: - type: Transform - pos: 0.5,9.5 + rot: 3.141592653589793 rad + pos: -1.5,4.5 parent: 2 - - uid: 3230 + - uid: 3465 components: - type: Transform - pos: 11.5,-8.5 + rot: 3.141592653589793 rad + pos: -12.5,3.5 parent: 2 - - uid: 3231 + - uid: 3466 components: - type: Transform - pos: 16.5,-3.5 + rot: 3.141592653589793 rad + pos: -7.5,3.5 parent: 2 -- proto: KitchenSpike - entities: - - uid: 3232 + - uid: 3467 components: - type: Transform - pos: 15.5,-10.5 + rot: 3.141592653589793 rad + pos: -14.5,0.5 parent: 2 -- proto: KnifePlastic - entities: - - uid: 3233 + - uid: 3468 components: - type: Transform - pos: -21.593172,15.488436 + rot: 1.5707963267948966 rad + pos: -3.5,0.5 parent: 2 -- proto: Lamp - entities: - - uid: 3234 + - uid: 3469 components: - type: Transform - pos: 13.5,5.5 + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 parent: 2 - - uid: 3235 + - uid: 3470 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.318367,11.803941 + pos: 2.5,-0.5 parent: 2 - - uid: 5941 + - uid: 3471 components: - type: Transform - pos: 14.515275,-1.3625958 - parent: 5384 - - uid: 5942 + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 3473 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.695831,-5.320929 - parent: 5384 -- proto: LampInterrogator - entities: - - uid: 3236 + pos: 0.5,-0.5 + parent: 2 + - uid: 3474 components: - type: Transform - pos: -2.7239265,12.787921 + pos: 0.5,-2.5 parent: 2 -- proto: LandMineExplosive - entities: - - uid: 5943 + - uid: 3475 components: - type: Transform - pos: -5.749756,-4.7669067 - parent: 5384 - - uid: 5944 + pos: 4.5,-2.5 + parent: 2 + - uid: 3476 components: - type: Transform - pos: 7.4789734,-8.667877 - parent: 5384 -- proto: LightBulbBroken - entities: - - uid: 3237 + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 3477 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.326775,13.508975 + pos: -5.5,-1.5 parent: 2 -- proto: Lighter - entities: - - uid: 3238 + - uid: 3478 components: - type: Transform - pos: -14.753683,13.963531 + pos: -14.5,7.5 parent: 2 -- proto: LockableButtonBrig - entities: - - uid: 3239 + - uid: 3479 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 3480 components: - - type: MetaData - name: кнопка казни - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,18.5 + pos: -15.5,10.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5252: - - Pressed: DoorBolt - 228: - - Pressed: Toggle - 1913: - - Pressed: Forward - 1895: - - Pressed: Forward - - uid: 3240 + - uid: 3481 components: - - type: MetaData - name: выключение конвеера - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,18.5 + pos: -13.5,14.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1913: - - Pressed: Off - 1895: - - Pressed: Off -- proto: LockableButtonCaptain - entities: - - uid: 3241 + - uid: 3482 components: - - type: MetaData - name: вызов ОБР - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-1.5 + pos: -6.5,10.5 parent: 2 - - type: WirelessNetworkConnection - range: 2000000 - - type: DeviceLinkSource - range: 300000 - linkedPorts: - 3498: - - Pressed: Toggle - 3440: - - Pressed: Toggle - 6660: - - Pressed: Toggle -- proto: LockableButtonHeadOfSecurity - entities: - - uid: 3242 + - uid: 3483 components: - - type: MetaData - name: вызов ОБР - type: Transform - pos: -13.5,15.5 + rot: 3.141592653589793 rad + pos: -7.5,18.5 parent: 2 - - type: WirelessNetworkConnection - range: 2000000 - - type: DeviceLinkSource - range: 300000 - linkedPorts: - 3499: - - Pressed: Toggle - 3453: - - Pressed: Toggle - 6659: - - Pressed: Toggle -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 3243 + - uid: 3484 components: - type: Transform - pos: 22.5,0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3245 - - 3244 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBoozeFilled - entities: - - uid: 3246 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - uid: 3485 components: - type: Transform - pos: 2.5,-14.5 + rot: 1.5707963267948966 rad + pos: 0.5,11.5 parent: 2 -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 3247 + - uid: 3486 components: - type: Transform - pos: -2.5,-0.5 + pos: 0.5,15.5 parent: 2 -- proto: LockerChemistryFilled - entities: - - uid: 3248 + - uid: 3487 components: - type: Transform - pos: 2.5,9.5 + pos: 3.5,15.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3249 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 3250 + - uid: 3488 components: - type: Transform - pos: 19.5,5.5 + pos: 4.5,13.5 parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 3251 + - uid: 3489 components: - type: Transform - pos: 1.5,15.5 + rot: 3.141592653589793 rad + pos: 6.5,11.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3252 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetectiveFilled - entities: - - uid: 3253 + - uid: 3490 components: - type: Transform - pos: -14.5,9.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 -- proto: LockerEngineerFilled - entities: - - uid: 3254 + - uid: 3491 components: - type: Transform - pos: 16.5,0.5 + rot: -1.5707963267948966 rad + pos: 8.5,8.5 parent: 2 - - uid: 3255 + - uid: 3492 components: - type: Transform - pos: 14.5,0.5 + pos: 5.5,17.5 parent: 2 - - uid: 3256 + - uid: 3493 components: - type: Transform - pos: 15.5,0.5 + pos: 8.5,17.5 parent: 2 -- proto: LockerEvidence - entities: - - uid: 3257 + - uid: 3494 components: - type: Transform - pos: -4.5,8.5 + pos: 11.5,17.5 parent: 2 - - uid: 3258 + - uid: 3495 components: - type: Transform - pos: -4.5,7.5 + rot: 3.141592653589793 rad + pos: 13.5,16.5 parent: 2 - - uid: 3259 + - uid: 3496 components: - type: Transform - pos: -7.5,16.5 + rot: 1.5707963267948966 rad + pos: 10.5,6.5 parent: 2 -- proto: LockerFreezer - entities: - - uid: 217 + - uid: 3497 components: - type: Transform - pos: 4.5,2.5 + rot: -1.5707963267948966 rad + pos: 14.5,8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1478 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 223 - - 219 - - 221 - - 227 - - 220 - - 224 - - 225 - - 226 - - 218 - - 222 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3260 + - uid: 3498 components: - type: Transform - pos: 12.5,-10.5 + pos: 14.5,11.5 parent: 2 -- proto: LockerFreezerBase - entities: - - uid: 5903 + - uid: 3499 components: - type: Transform - pos: 10.5,-12.5 - parent: 5384 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5904 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 3261 + pos: 16.5,13.5 + parent: 2 + - uid: 3500 components: - type: Transform - pos: 8.5,-1.5 + pos: 20.5,13.5 parent: 2 -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 3 + - uid: 3501 components: - type: Transform - pos: -12.5,14.5 + pos: 23.5,13.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17 - - 4 - - 8 - - 10 - - 16 - - 12 - - 14 - - 18 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicalFilled - entities: - - uid: 3262 + - uid: 3502 components: - type: Transform - pos: 8.5,17.5 + rot: -1.5707963267948966 rad + pos: 25.5,13.5 parent: 2 -- proto: LockerMedicine - entities: - - uid: 3263 + - uid: 3503 components: - type: Transform - pos: 4.5,13.5 + rot: -1.5707963267948966 rad + pos: 25.5,9.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3264 - - 3265 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicineFilled - entities: - - uid: 3266 + - uid: 3504 components: - type: Transform - pos: 7.5,17.5 + rot: 3.141592653589793 rad + pos: 25.5,7.5 parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 3267 + - uid: 3505 components: - type: Transform - pos: 6.5,17.5 + rot: 3.141592653589793 rad + pos: 20.5,8.5 parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 3268 + - uid: 3506 components: - type: Transform - pos: 17.5,8.5 + rot: -1.5707963267948966 rad + pos: 17.5,7.5 parent: 2 -- proto: LockerResearchDirectorFilledHardsuit - entities: - - uid: 3269 + - uid: 3507 components: - type: Transform - pos: 18.5,-2.5 + rot: 3.141592653589793 rad + pos: 22.5,0.5 parent: 2 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 3270 + - uid: 3508 components: - type: Transform - pos: 21.5,13.5 + rot: 3.141592653589793 rad + pos: 20.5,15.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3271 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3272 + - uid: 3509 components: - type: Transform - pos: 22.5,13.5 + pos: 24.5,16.5 parent: 2 - - uid: 3273 + - uid: 3510 components: - type: Transform - pos: 23.5,13.5 + pos: 6.5,-16.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3274 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSecurityFilled - entities: - - uid: 3275 + - uid: 3511 components: - type: Transform - pos: -6.509331,10.5003 + pos: 10.5,-16.5 parent: 2 - - uid: 3276 + - uid: 3512 components: - type: Transform - pos: -8.5,10.5 + rot: -1.5707963267948966 rad + pos: -1.5,12.5 parent: 2 - - uid: 3277 + - uid: 3513 components: - type: Transform - pos: -7.5,10.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 2 -- proto: LockerSyndicate - entities: - - uid: 5829 + - uid: 3514 components: - type: Transform - pos: 15.5,6.5 - parent: 5384 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14694 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5830 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSyndicatePersonal - entities: - - uid: 3278 + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 3515 components: - type: Transform - pos: -18.5,13.5 + pos: -15.5,18.5 parent: 2 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.48 - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - mask: - - Impassable - - TableLayer - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 75 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: LockerWallMedicalFilled - entities: - - uid: 3279 + - uid: 3516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,16.5 + parent: 2 + - uid: 3519 components: - type: Transform - pos: 0.5,13.5 + pos: 28.5,2.5 parent: 2 - - uid: 3280 + - uid: 3520 components: - type: Transform - pos: -11.5,-0.5 + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 parent: 2 -- proto: LockerWardenFilledHardsuit - entities: - - uid: 3281 + - uid: 3521 components: - type: Transform - pos: -7.5,21.5 + pos: -12.5,21.5 parent: 2 -- proto: Log - entities: - - uid: 3282 + - uid: 3522 components: - type: Transform - pos: -10.685649,24.775383 + pos: -5.5,15.5 parent: 2 - - uid: 3283 + - uid: 3523 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.591899,24.884758 + pos: 0.5,8.5 parent: 2 -- proto: LogicGateOr - entities: - - uid: 6803 + - uid: 3524 components: - type: Transform - anchored: True - pos: 0.5,-2.5 - parent: 6631 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 6842: - - Output: Trigger - - type: Physics - canCollide: False - bodyType: Static -- proto: LootSpawnerContraband - entities: - - uid: 3284 + pos: -11.5,9.5 + parent: 2 + - uid: 3525 components: - type: Transform - pos: -18.5,13.5 + rot: 3.141592653589793 rad + pos: 12.5,13.5 parent: 2 - - uid: 3285 + - uid: 3526 components: - type: Transform - pos: -18.5,13.5 + rot: 1.5707963267948966 rad + pos: -3.5,0.5 parent: 2 - - uid: 5945 + - type: PointLight + color: '#FF0303FF' + - type: PoweredLight + on: False + - uid: 3527 components: - type: Transform - pos: 13.5,2.5 - parent: 5384 - - uid: 5946 + pos: -13.5,14.5 + parent: 2 + - type: PointLight + color: '#FF0303FF' + - type: PoweredLight + on: False +- proto: PoweredlightOrange + entities: + - uid: 3528 components: - type: Transform - pos: 13.5,2.5 - parent: 5384 - - uid: 5947 + rot: 1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 2 + - uid: 6042 components: - type: Transform - pos: 14.5,2.5 - parent: 5384 -- proto: LootSpawnerContrabandHigh - entities: - - uid: 5948 + pos: 9.5,-9.5 + parent: 5438 + - uid: 6043 components: - type: Transform - pos: 1.5,-0.5 - parent: 5384 -- proto: LootSpawnerContrabandLow + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 5438 + - uid: 6044 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 5438 + - uid: 6045 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 5438 + - uid: 6046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 5438 + - uid: 6047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 5438 + - uid: 6048 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 5438 + - uid: 6049 + components: + - type: Transform + pos: -10.5,0.5 + parent: 5438 + - uid: 6050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 5438 +- proto: PoweredLightPostSmall entities: - - uid: 3286 + - uid: 3529 components: - type: Transform - pos: -18.5,13.5 + rot: 1.5707963267948966 rad + pos: 21.5,27.5 parent: 2 - - uid: 3287 + - uid: 3530 components: - type: Transform - pos: -18.5,13.5 + rot: 1.5707963267948966 rad + pos: 35.5,11.5 parent: 2 - - uid: 3288 + - uid: 3531 components: - type: Transform - pos: -18.5,13.5 + pos: -14.5,-24.5 parent: 2 - - uid: 3289 + - uid: 3532 components: - type: Transform - pos: -18.5,13.5 + rot: 1.5707963267948966 rad + pos: -24.5,11.5 parent: 2 - - uid: 3290 + - uid: 3533 components: - type: Transform - pos: -18.5,13.5 + pos: -1.5,-24.5 parent: 2 -- proto: Machete - entities: - - uid: 5949 + - uid: 3534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.133443,-6.2867575 - parent: 5384 -- proto: MachineAnomalyGenerator - entities: - - uid: 3291 + pos: -11.5,-24.5 + parent: 2 + - uid: 3535 components: - type: Transform - pos: 25.5,-2.5 + pos: 1.5,-24.5 parent: 2 -- proto: MachineAPE - entities: - - uid: 5950 + - uid: 3536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 5384 -- proto: MachineArtifactAnalyzer - entities: - - uid: 3292 + pos: -1.5,-14.5 + parent: 2 + - uid: 3537 components: - type: Transform - pos: 22.5,-1.5 + pos: -1.5,-8.5 parent: 2 - - uid: 3293 + - uid: 3538 components: - type: Transform - pos: 27.5,-13.5 + pos: -28.5,11.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 3294 + - uid: 3539 components: - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: 19.5,23.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 3295 + - uid: 3540 components: - type: Transform - pos: 0.5,8.5 + pos: 34.5,-0.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 3296 + - uid: 3541 components: - type: Transform - pos: 3.5,7.5 + pos: 34.5,5.5 parent: 2 - - uid: 3297 + - uid: 3542 components: - type: Transform - pos: 24.5,-3.5 + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 parent: 2 - - uid: 3298 + - uid: 3543 components: - type: Transform - pos: 26.5,-4.5 + pos: -11.5,-8.5 parent: 2 - - uid: 5951 + - uid: 3544 components: - type: Transform - pos: 13.5,6.5 - parent: 5384 -- proto: MagazineBoxAntiMateriel - entities: - - uid: 255 + pos: -11.5,-14.5 + parent: 2 + - uid: 3545 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxLightRifle - entities: - - uid: 256 + pos: 30.5,20.5 + parent: 2 + - uid: 3546 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxMagnum + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 2 +- proto: PoweredlightRed entities: - - uid: 223 + - uid: 7893 components: - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineBoxRifleBig + pos: -8.5,21.5 + parent: 7020 + - uid: 7894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 7020 + - uid: 7895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,31.5 + parent: 7020 + - uid: 7896 + components: + - type: Transform + pos: -1.5,31.5 + parent: 7020 + - uid: 7897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,24.5 + parent: 7020 + - uid: 7898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 7020 + - uid: 7899 + components: + - type: Transform + pos: -12.5,26.5 + parent: 7020 + - uid: 8319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 8267 + - uid: 8320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 8267 + - uid: 8321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 8267 +- proto: PoweredlightSodium entities: - - uid: 257 + - uid: 6051 components: - type: Transform - parent: 249 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MaintenanceToolSpawner + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 5438 + - uid: 6052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 5438 + - uid: 6053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 5438 +- proto: PoweredSmallLight entities: - - uid: 3299 + - uid: 3547 components: - type: Transform - pos: -26.5,-2.5 + pos: -9.5,1.5 parent: 2 -- proto: Matchbox - entities: - - uid: 3300 + - uid: 3548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.464988,0.5438111 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 parent: 2 - - uid: 3301 + - uid: 3549 components: - type: Transform - pos: -18.430662,10.280693 + rot: -1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 -- proto: MatchstickSpent - entities: - - uid: 3302 + - uid: 3550 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.596636,10.978224 + pos: -18.5,5.5 parent: 2 - - uid: 3303 + - uid: 3551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.775648,10.1881 + pos: -11.5,6.5 parent: 2 - - uid: 3304 + - uid: 3552 components: - type: Transform - pos: -17.271889,10.192923 + pos: -20.5,3.5 parent: 2 - - uid: 3305 + - uid: 3553 components: - type: Transform - pos: -17.892933,10.996742 + pos: -23.5,8.5 parent: 2 - - uid: 3306 + - uid: 3554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.467007,10.7992115 + rot: 1.5707963267948966 rad + pos: 8.5,1.5 parent: 2 - - uid: 3307 + - uid: 3555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.553427,10.626372 + pos: 8.5,-5.5 parent: 2 - - uid: 5952 + - uid: 3556 components: - type: Transform - pos: 11.52695,-1.3079708 - parent: 5384 - - uid: 5953 + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 + - uid: 3557 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.721395,-1.1829708 - parent: 5384 - - uid: 5954 + pos: -17.5,2.5 + parent: 2 + - uid: 3558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.749172,-1.391304 - parent: 5384 - - uid: 5955 + pos: -26.5,-6.5 + parent: 2 + - uid: 3559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.318616,-1.1135261 - parent: 5384 - - uid: 5956 + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 2 + - uid: 3560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.860283,-1.6690814 - parent: 5384 - - uid: 5957 + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 3561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5547285,-1.0024147 - parent: 5384 - - uid: 5958 + pos: -47.5,20.5 + parent: 2 + - uid: 3562 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.2217517,10.737076 - parent: 5384 -- proto: MaterialCloth - entities: - - uid: 3308 + pos: 6.5,41.5 + parent: 2 + - uid: 3563 components: - type: Transform - pos: 3.4550014,-4.480694 + rot: 1.5707963267948966 rad + pos: 8.5,39.5 parent: 2 -- proto: MaterialDurathread - entities: - - uid: 3309 + - uid: 3564 components: - type: Transform - pos: 3.2464519,-4.6204143 + pos: -21.5,26.5 parent: 2 -- proto: MaterialWoodPlank1 - entities: - - uid: 3310 + - uid: 3565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.684543,24.964888 + pos: -17.5,23.5 parent: 2 -- proto: MaterialWoodPlank10 - entities: - - uid: 5959 + - uid: 6054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.510738,-1.5615497 - parent: 5384 -- proto: Mattress - entities: - - uid: 3311 + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 5438 + - uid: 6055 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 5438 + - uid: 6056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 5438 + - uid: 7900 components: - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,17.5 - parent: 2 - - uid: 3312 + parent: 7020 + - uid: 7901 components: - type: Transform - pos: 0.5,17.5 - parent: 2 -- proto: MedicalBed - entities: - - uid: 3313 + pos: 5.5,19.5 + parent: 7020 + - uid: 7902 components: - type: Transform - pos: 1.5,11.5 - parent: 2 - - uid: 3314 + pos: 10.5,16.5 + parent: 7020 + - uid: 7903 components: - type: Transform - pos: 5.5,13.5 - parent: 2 - - uid: 3315 + rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 7020 + - uid: 7904 components: - type: Transform - pos: 0.5,11.5 - parent: 2 - - uid: 6804 + pos: -13.5,29.5 + parent: 7020 + - uid: 7905 components: - type: Transform - pos: 2.5,7.5 - parent: 6631 - - uid: 6805 + pos: 2.5,26.5 + parent: 7020 + - uid: 7906 components: - type: Transform - pos: 2.5,6.5 - parent: 6631 -- proto: MedicalTechFab - entities: - - uid: 3316 + rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 7020 + - uid: 7907 components: - type: Transform - pos: 3.5,15.5 - parent: 2 -- proto: MedkitAdvancedFilled - entities: - - uid: 3317 + pos: 10.5,22.5 + parent: 7020 + - uid: 7908 components: - type: Transform - pos: 2.5,2.5 - parent: 2 - - uid: 3318 + rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 7020 + - uid: 7909 components: - type: Transform - pos: 5.494531,16.413988 - parent: 2 - - uid: 6806 + pos: -4.5,24.5 + parent: 7020 + - uid: 7910 components: - type: Transform - pos: 1.3056641,5.3525753 - parent: 6631 - - uid: 6807 + pos: 0.5,23.5 + parent: 7020 + - uid: 7911 components: - type: Transform - pos: 1.5869141,5.6025753 - parent: 6631 -- proto: MedkitBruteFilled + pos: 1.5,12.5 + parent: 7020 + - uid: 7912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 7020 + - uid: 7913 + components: + - type: Transform + pos: 3.5,30.5 + parent: 7020 + - uid: 7914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 7020 +- proto: PoweredSmallLightEmpty entities: - - uid: 3319 + - uid: 3566 components: - type: Transform - pos: 5.2653646,16.809822 + pos: -17.5,13.5 parent: 2 -- proto: MedkitBurnFilled +- proto: PresentRandomAsh entities: - - uid: 3320 + - uid: 7915 components: - type: Transform - pos: 5.7549477,16.841072 + pos: -5.2807617,31.456985 + parent: 7020 +- proto: PresentRandomCash + entities: + - uid: 7916 + components: + - type: Transform + pos: 10.6405945,22.276398 + parent: 7020 +- proto: PrinterDoc + entities: + - uid: 3567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 parent: 2 -- proto: MedkitCombatFilled +- proto: Protolathe entities: - - uid: 6808 + - uid: 3568 components: - type: Transform - pos: -0.75683594,5.2588253 - parent: 6631 -- proto: MedkitFilled + pos: 17.5,5.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 +- proto: PsychBed entities: - - uid: 3271 + - uid: 3570 components: + - type: MetaData + desc: удобные доски для лежания в бане. + name: полати - type: Transform - parent: 3270 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3274 + pos: 5.5,43.5 + parent: 2 + - uid: 3571 components: - type: Transform - parent: 3273 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3321 + pos: -11.5,-1.5 + parent: 2 +- proto: PumpkinLantern + entities: + - uid: 3572 components: - type: Transform - pos: 13.765365,13.757738 + pos: 10.873154,21.33291 parent: 2 - - uid: 3322 + - uid: 3573 components: - type: Transform - pos: 13.367858,13.757323 + pos: 2.5721498,-8.230395 parent: 2 - - uid: 6809 + - uid: 7917 components: - type: Transform - pos: -0.31933594,5.6494503 - parent: 6631 -- proto: MedkitRadiationFilled - entities: - - uid: 1786 + pos: 1.4736023,12.706646 + parent: 7020 + - uid: 7918 components: - type: Transform - parent: 1785 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3323 + pos: -0.3388977,12.727478 + parent: 7020 +- proto: PumpkinLanternSmall + entities: + - uid: 3574 components: - type: Transform - pos: 5.7861977,16.632738 + pos: -30.409521,31.830774 parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 3324 + - uid: 3575 components: - type: Transform - pos: 5.2861977,16.622322 + rot: 3.141592653589793 rad + pos: -10.518815,25.904888 parent: 2 -- proto: MiningWindow +- proto: PumpkinSeeds entities: - - uid: 5960 + - uid: 3576 components: - type: Transform - pos: 5.5,5.5 - parent: 5384 - - uid: 5961 + pos: 16.466358,-14.146853 + parent: 2 + - uid: 3577 components: - type: Transform - pos: 3.5,4.5 - parent: 5384 - - uid: 5962 + pos: 15.070525,-15.053103 + parent: 2 + - uid: 3578 components: - type: Transform - pos: 4.5,5.5 - parent: 5384 - - uid: 5963 + pos: 15.799692,-15.8447695 + parent: 2 +- proto: Rack + entities: + - uid: 3579 components: - type: Transform - pos: 4.5,4.5 - parent: 5384 - - uid: 5964 + pos: 6.5,-16.5 + parent: 2 + - uid: 3580 components: - type: Transform - pos: 3.5,5.5 - parent: 5384 - - uid: 5965 + pos: 7.5,-16.5 + parent: 2 + - uid: 3581 components: - type: Transform - pos: 5.5,4.5 - parent: 5384 -- proto: Mirror - entities: - - uid: 3325 + pos: 26.5,-3.5 + parent: 2 + - uid: 3582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,6.5 + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 - - uid: 5966 + - uid: 3583 components: - type: Transform - pos: 7.5,-5.5 - parent: 5384 -- proto: ModularGrenade - entities: - - uid: 5967 + pos: -12.5,21.5 + parent: 2 + - uid: 3584 components: - type: Transform - pos: 15.106596,-1.3672802 - parent: 5384 -- proto: MopItem - entities: - - uid: 3326 + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - uid: 3585 components: - type: Transform - pos: -20.5,3.5 + pos: -13.5,6.5 parent: 2 -- proto: Multitool - entities: - - uid: 3327 + - uid: 3586 components: - type: Transform - pos: 20.714445,-7.4805245 + rot: 3.141592653589793 rad + pos: -20.5,1.5 parent: 2 -- proto: Nettle - entities: - - uid: 3328 + - uid: 3587 components: - - type: MetaData - name: банный веник - type: Transform rot: -1.5707963267948966 rad - pos: 6.6022873,38.413044 + pos: -23.5,8.5 parent: 2 - missingComponents: - - MeleeWeapon - - uid: 3329 + - uid: 3588 components: - - type: MetaData - name: банный веник - type: Transform - pos: 6.4373045,38.612595 + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 parent: 2 - missingComponents: - - MeleeWeapon -- proto: NitrogenCanister - entities: - - uid: 3330 + - uid: 3589 components: - type: Transform - pos: 24.5,0.5 + rot: 3.141592653589793 rad + pos: -14.5,17.5 parent: 2 -- proto: NitrogenTankFilled - entities: - - uid: 5750 - components: - - type: Transform - parent: 5747 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NodeScanner - entities: - - uid: 3331 + - uid: 3590 components: - type: Transform - pos: 23.427187,-6.6154575 + pos: -11.5,21.5 parent: 2 - - uid: 3332 + - uid: 3591 components: - type: Transform - pos: 23.678116,-6.4702315 + rot: 3.141592653589793 rad + pos: -26.5,-2.5 parent: 2 -- proto: NuclearBomb - entities: - - uid: 3333 + - uid: 3592 components: - type: Transform - pos: 5.5,2.5 + rot: -1.5707963267948966 rad + pos: 6.5,38.5 parent: 2 -- proto: Omnitool - entities: - - uid: 3334 + - uid: 3593 components: - type: Transform - pos: 4.5,-0.5 + rot: 1.5707963267948966 rad + pos: 27.5,14.5 parent: 2 -- proto: OmnizineChemistryBottle - entities: - - uid: 3335 + - uid: 3594 components: - - type: MetaData - name: смазка для дротиков - type: Transform - pos: -14.179216,17.357433 + rot: 1.5707963267948966 rad + pos: 27.5,19.5 parent: 2 -- proto: OreBox - entities: - - uid: 3336 + - uid: 3595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,9.5 + pos: 28.5,19.5 parent: 2 - - uid: 3337 + - uid: 3596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,8.5 + pos: 5.5,-16.5 parent: 2 -- proto: OreProcessor - entities: - - uid: 3338 + - uid: 6057 components: - type: Transform - pos: 19.5,20.5 - parent: 2 -- proto: OxygenCanister - entities: - - uid: 3339 + pos: 13.5,2.5 + parent: 5438 + - uid: 6058 components: - type: Transform - pos: 23.5,0.5 - parent: 2 - - uid: 3340 + pos: 15.5,2.5 + parent: 5438 + - uid: 6059 components: - type: Transform - pos: -29.5,7.5 - parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 5751 + pos: 14.5,2.5 + parent: 5438 + - uid: 6060 components: - type: Transform - parent: 5747 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PackPaperRollingFilters - entities: - - uid: 3341 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 5438 + - uid: 6866 components: - type: Transform - pos: 2.9983497,19.626749 - parent: 2 -- proto: PaintingSadClown - entities: - - uid: 3342 + pos: 3.5,4.5 + parent: 6685 + - uid: 6867 + components: + - type: Transform + pos: 1.5,10.5 + parent: 6685 + - uid: 6868 + components: + - type: Transform + pos: -2.5,4.5 + parent: 6685 + - uid: 6869 + components: + - type: Transform + pos: 4.5,1.5 + parent: 6685 + - uid: 7919 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,6.5 - parent: 2 -- proto: Paper - entities: - - uid: 3252 + pos: 5.5,17.5 + parent: 7020 + - uid: 7920 components: - type: Transform - parent: 3251 - - type: Paper - stampState: paper_stamp-deny - stampedBy: - - stampedColor: '#A23E3EFF' - stampedName: stamp-component-stamped-name-denied - content: >- - │█║▌▌│█║▌▌▌│║█│▌ - - - Билет на перевозку домашнего животного - - - ▌▌▌│║█││█║▌▌│║▌▌▌ - - - Вид животного: Felis catus - - - Кличка: Рантайм - - - Возраст: 2 года - - - │║█││█║▌▌▌▌│█║▌▌ - - - Дата перевозки: 06.03.3024 - - - - - - - Причина отказа: Отсутствие прививки от зомби вируса. - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3343 + rot: -1.5707963267948966 rad + pos: -7.5,15.5 + parent: 7020 + - uid: 7921 components: - type: Transform - pos: 0.8010769,15.100104 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 7020 + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 7020 + - uid: 7923 + components: + - type: Transform + pos: -16.5,13.5 + parent: 7020 + - uid: 7924 + components: + - type: Transform + pos: -19.5,23.5 + parent: 7020 +- proto: RadiationCollectorFullTank + entities: + - uid: 3597 + components: + - type: Transform + pos: 29.5,-2.5 parent: 2 - - type: Paper - stampState: paper_stamp-approve - stampedBy: - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >- - │█║▌▌│█║▌▌▌│║█│▌ - - - Билет на перевозку домашнего животного - - - ▌▌▌│║█││█║▌▌│║▌▌▌ - - - Вид животного: Felis catus - - - Кличка: Рантайм - - - Возраст: 2 года, 1 месяц и 3 дня - - - │║█││█║▌▌▌▌│█║▌▌ - - - Дата перевозки: 09.04.3024 - - uid: 3344 + - uid: 3598 components: - type: Transform - pos: -18.860891,11.549556 + pos: 29.5,-4.5 parent: 2 - - type: Paper - content: >- - [color=#B50F1D] ███░██████░███[/color] - - [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - - [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - - [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Silly ██-███ ███[/bold] - - [color=#B50F1D] ███░██████░███[/color] - - ============================================= - ОТЧЁТ О ПРОСЛУШКЕ - ============================================= - - Дата: 07.12.3023 - - Позывной Агента: Оператор Абу - - - Я задрался слушать этот бред, какого чёрта меня вообще сюда усадили!? Служба безопасности не передаёт по своим каналам связи ничего полезного. У меня уже уши вянут от подкатов к смотрителю со стороны этого ███████ кадета! - - - Меня от службы безопасности разделяет одна стена, мне даже нельзя громко ходить, потому что по чертежам станции тут нету помещения! Меня могут раскрыть в любой момент! К тому же здесь не проведена вентиляция, запах из толчка убьёт меня быстрее чем дым от сигарет. Приходится открывать вход в укрытие на пару секунд, дабы проветрить этот свинарник. - - - К тому же, как я должен помогать заключённым? Да, с помощью утилизационного блока я могу делать подачки тем, кто сейчас под стражей в камере, но чёрт, вещи вылезают прям из параши! Смотритель должен быть совсем слепым, чтобы этого не увидеть! - - - Вчера технический ассистент проверял куда ведёт НВ кабель и нашёл проход сюда, пришлось заколоть его лазерной ручкой и выкинуть со стороны солнечных панелей. Это слишком, ████ ███, очевидное место! - - - Заберите меня уже █████ отсюда! - - ============================================= - - uid: 3345 + - uid: 3599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.709478,-7.3866467 + pos: 30.5,-4.5 parent: 2 - - type: Paper - content: >2 - - [head=1]ОПОВЕЩЕНИЕ СОТРУДНИКАМ[/head] - - - На объекте со сканнера массы находится особо опасный объект, однако в его камере содержания имеются телекристаллы, также контрабанда в стенах самой постройки. Координаты объекта в момент написания бумаги: - - - [head=1]-265 503[/head] - - - Используйте эту информацию с умом. - - uid: 3346 + - uid: 3600 components: - type: Transform - pos: -20.689861,5.4503107 + pos: 30.5,-2.5 parent: 2 - - type: Paper - content: >2 - - [head=1]ОПОВЕЩЕНИЕ СОТРУДНИКАМ[/head] - - - На объекте со сканнера массы находится особо опасный объект, однако в его камере содержания имеются телекристаллы, также контрабанда в стенах самой постройки. Координаты объекта в момент написания бумаги: - - - [head=1]-265 503[/head] - - - Используйте эту информацию с умом. - - uid: 3347 + - uid: 3601 components: - type: Transform - pos: -24.18637,-7.62025 + pos: 30.5,-3.5 parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Killy_Island Station СБ[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ - ============================================= - - Центральное Командованием, разрешается ношение оружия Священником, до тех пор, пока оно используется по назначению. В случае нарушения разрешение аннулируется, оружие изымается Службой Безопасности. - - Оружие: - - Костяное копьё - - - Способ получения оружия: - - Выдано в начале смены - - - Причина выдачи разрешения: - - Для защиты церкви - - - ============================================= - [italic]Место для печатей[/italic] - - uid: 3348 +- proto: Railing + entities: + - uid: 3602 components: - type: Transform - pos: 10.290568,22.278557 + pos: -54.5,19.5 parent: 2 - - type: Paper - stampState: paper_stamp-approve - stampedBy: - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >- - Правила кладбища: - - - Когда кого-то хороните, кладите на могилу цветы. - - Провожайте людей с почестью. - - Следить за растущем маком. - - Не хроните людей которых ещё можно спасти. - - Проявляйте уважение к мёртвым. - - Для избежания неприятного запаха хороните в мешках. - - uid: 5968 + - uid: 3603 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.465185,-2.3026602 - parent: 5384 - - type: Paper - content: >2 - - [head=1]НЕ ХОЧУ УМИРАТЬ ВОТ ТАК! Я ДАЖЕ НЕ МОГУ ПОДОРВАТЬ СВОЮ БОШКУ, ВЫРОНИЛ ТРИГГЕР, КОГДА ЭТОГО КУРИЛЬЩИКА НА МЯСО РАЗНЕСЛО, БЛЯТЬ! Я СТАНУ ТАКИМ ЖЕ, МЕНЯ ЖДЁТ ТАКАЯ ЖЕ СУДЬБА! ПОЖАЛУЙСТА, БОЖЕ, ДАРУЙ МНЕ БЫСТРУЮ СМЕРТЬ! НЕ ХОЧУ ТАК![/head] - - uid: 5969 + pos: -52.5,22.5 + parent: 2 + - uid: 3604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.548519,-2.149882 - parent: 5384 - - type: Paper - content: >2 - - [head=1]Я РАБОТАЮ НА ДРУГУЮ КОРПОРАЦИЮ, Я НЕ ХОЧУ БЫТЬ ЗДЕСЬ, Я НЕ ХОЧУ УМИРАТЬ! Я РАЗМЕСТИЛ ПРЕДМЕТЫ В ПУСТОТНЫХ УЧАСТКАХ, ДОЛЖЕН БЫЛ УЖЕ УЛЕТЕТЬ, НО ЭТА МРАЗЬ, КОТОРУЮ ТУТ ИССЛЕДУЮТ, ПУСТИЛА ЧТО-ТО ЧЕРЕЗ ТРУБУ И ВЕДУЩЕГО УЧЁНОГО РАЗОРВАЛО, А ЕГО ОШМЁТКИ СОБРАЛИСЬ В СТРАШНУЮ ТВАРЬ! ГОСПОДИ, ДАРУЙ МНЕ СПАСАНИЕ! МНЕ ТАК ЖАЛЬ! МНЕ ТАК ЖАЛЬ! МНЕ ТАК ЖАЛЬ! МНЕ ТАК ЖАЛЬ![/head] - - uid: 5970 + pos: -53.5,19.5 + parent: 2 + - uid: 3605 components: - type: Transform - pos: 13.333535,-5.473741 - parent: 5384 - - type: Paper - content: >2 - - [head=1]НЕ ДАМСЯ ЭТИМ СУКИНЫМ ДЕТЯМ! ПОКА САМ НЕ СТАНУ КУЧЕЙ ПЛОТИ - УБЬЮ КАК МОЖНО БОЛЬШЕ! ГОРЕТЬ ИМ ВСЕМ В АДУ![/head] - - uid: 5971 + rot: 3.141592653589793 rad + pos: -53.5,21.5 + parent: 2 + - uid: 3606 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.425038,-7.368792 - parent: 5384 - - type: Paper - content: >2 - - [head=1]Я НЕ УМРУ В ТУАЛЕТЕ![/head] -- proto: PaperBin10 - entities: - - uid: 3349 + pos: -14.5,-15.5 + parent: 2 + - uid: 3607 components: - type: Transform - pos: 14.5,7.5 + rot: 3.141592653589793 rad + pos: -40.5,21.5 parent: 2 - - uid: 3350 + - uid: 3608 components: - type: Transform - pos: 16.5,3.5 + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 parent: 2 - - uid: 3351 + - uid: 3609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 parent: 2 - - uid: 5972 + - uid: 3610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 5384 - - uid: 5973 + rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 2 + - uid: 3611 components: - type: Transform - pos: 6.5,10.5 - parent: 5384 -- proto: PaperBin20 - entities: - - uid: 3352 + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 2 + - uid: 3612 components: - type: Transform - pos: -7.5,20.5 + rot: 1.5707963267948966 rad + pos: -11.5,-19.5 parent: 2 - - uid: 3353 + - uid: 3613 components: - type: Transform - pos: -11.5,8.5 + rot: 1.5707963267948966 rad + pos: -11.5,-18.5 parent: 2 -- proto: PartRodMetal - entities: - - uid: 3354 + - uid: 3614 components: - type: Transform - pos: 16.503736,2.5825348 + pos: -40.5,19.5 parent: 2 - - uid: 3355 + - uid: 3615 components: - type: Transform - pos: 16.503736,2.5825348 + pos: -38.5,19.5 parent: 2 - - uid: 3356 + - uid: 3616 components: - type: Transform - pos: -21.374474,-0.5497774 + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 parent: 2 - - uid: 3357 + - uid: 3617 components: - type: Transform - pos: 34.62356,-1.5370318 + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 parent: 2 -- proto: Pen - entities: - - uid: 3358 + - uid: 3618 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.577741,-18.345917 + pos: -14.5,-16.5 parent: 2 - - uid: 3359 + - uid: 3619 components: - type: Transform - pos: -19.442478,24.350758 + rot: -1.5707963267948966 rad + pos: -14.5,-19.5 parent: 2 - - uid: 3360 + - uid: 3620 components: - type: Transform - pos: -19.379978,24.569508 + rot: -1.5707963267948966 rad + pos: -14.5,-20.5 parent: 2 - - uid: 5974 - components: - - type: Transform - pos: 15.543053,-1.7514844 - parent: 5384 - - uid: 5975 + - uid: 3621 components: - type: Transform - pos: 6.0770383,10.561055 - parent: 5384 - - uid: 5976 + rot: -1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 2 + - uid: 3622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.9107733,-6.297143 - parent: 5384 - - uid: 5977 + pos: -14.5,-22.5 + parent: 2 + - uid: 3623 components: - type: Transform - pos: 13.548119,-5.5936885 - parent: 5384 - - uid: 5978 + pos: -10.5,-8.5 + parent: 2 + - uid: 3624 components: - type: Transform - pos: 7.503281,-7.487985 - parent: 5384 -- proto: PetCarrier - entities: - - uid: 3361 + rot: 3.141592653589793 rad + pos: -35.5,21.5 + parent: 2 + - uid: 3625 components: - type: Transform - pos: 0.5,14.5 + pos: -36.5,19.5 parent: 2 -- proto: PhoneInstrument - entities: - - uid: 3362 + - uid: 3626 components: - type: Transform - pos: 1.9156165,-0.58775055 + pos: -37.5,19.5 parent: 2 -- proto: PhoneInstrumentSyndicate - entities: - - uid: 3363 + - uid: 3627 components: - type: Transform - pos: -18.615028,11.75876 + rot: 1.5707963267948966 rad + pos: -29.5,29.5 parent: 2 -- proto: PianoInstrument - entities: - - uid: 3364 + - uid: 3628 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,32.5 + pos: -36.5,21.5 parent: 2 -- proto: Pickaxe - entities: - - uid: 3365 + - uid: 3629 components: - type: Transform - pos: 27.640188,14.465828 + rot: 3.141592653589793 rad + pos: -39.5,21.5 parent: 2 - - uid: 3366 + - uid: 3630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.468313,14.481453 + rot: 3.141592653589793 rad + pos: -38.5,21.5 parent: 2 -- proto: PinpointerNuclear - entities: - - uid: 3367 + - uid: 3631 components: - type: Transform - pos: 5.5,-0.5 + rot: 1.5707963267948966 rad + pos: 35.5,11.5 parent: 2 -- proto: PlasmaCanister - entities: - - uid: 3368 + - uid: 3632 components: - type: Transform - pos: 27.5,-9.5 + pos: 6.5,-13.5 parent: 2 -- proto: PlasmaOre1 - entities: - - uid: 3369 + - uid: 3633 components: - type: Transform - pos: 27.231323,19.38293 + pos: -4.5,20.5 parent: 2 - - uid: 3370 + - uid: 3634 components: - type: Transform - pos: 28.621948,19.461056 + pos: -2.5,-8.5 parent: 2 -- proto: PlasmaTankFilled - entities: - - uid: 3371 + - uid: 3635 components: - type: Transform - pos: 28.67103,-4.6311526 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 parent: 2 - - uid: 3372 + - uid: 3636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.23353,-4.0374026 + pos: -8.5,-8.5 parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 3373 + - uid: 3637 components: - type: Transform - pos: 22.5,17.5 + pos: -9.5,-8.5 parent: 2 - - uid: 3374 + - uid: 3638 components: - type: Transform - pos: -29.5,-3.5 + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 parent: 2 -- proto: PlushieRatvar - entities: - - uid: 3375 + - uid: 3639 components: - type: Transform - pos: -23.943043,-6.43275 + pos: -5.5,-8.5 parent: 2 -- proto: PlushieSharkBlue - entities: - - uid: 3376 + - uid: 3640 components: - type: Transform - pos: -42.704338,16.285648 + pos: -4.5,-8.5 parent: 2 -- proto: PlushieSlime - entities: - - uid: 3377 + - uid: 3641 components: - - type: MetaData - desc: Он похож на какого-то Оскарда в молодости... - type: Transform - pos: -43.423088,16.629398 + pos: -39.5,19.5 parent: 2 -- proto: PoppySeeds - entities: - - uid: 3378 + - uid: 3642 components: - type: Transform - pos: 10.855233,22.161793 + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 parent: 2 - - uid: 3379 + - uid: 3643 components: - type: Transform - pos: 10.864254,22.408901 + pos: -6.5,-8.5 parent: 2 -- proto: PortableGeneratorJrPacman - entities: - - uid: 3380 + - uid: 3644 components: - type: Transform - pos: -23.5,11.5 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 parent: 2 -- proto: PortableGeneratorJrPacmanMachineCircuitboard - entities: - - uid: 3381 + - uid: 3645 components: - type: Transform - pos: 26.516403,3.7152495 + pos: -13.5,-24.5 parent: 2 -- proto: PortableGeneratorPacman - entities: - - uid: 3382 + - uid: 3646 components: - type: Transform - pos: -23.5,10.5 + rot: -1.5707963267948966 rad + pos: -1.5,-23.5 parent: 2 -- proto: PortableGeneratorPacmanMachineCircuitboard - entities: - - uid: 3383 + - uid: 3647 components: - type: Transform - pos: 26.516403,3.5763607 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 parent: 2 -- proto: PortableGeneratorSuperPacmanMachineCircuitboard - entities: - - uid: 3384 + - uid: 3648 components: - type: Transform - pos: 26.516403,3.4374719 + pos: -0.5,-24.5 parent: 2 -- proto: PortableScrubber - entities: - - uid: 3385 + - uid: 3649 components: - type: Transform - pos: 19.5,0.5 + rot: 1.5707963267948966 rad + pos: 33.5,7.5 parent: 2 - - uid: 3386 + - uid: 3650 components: - type: Transform - pos: 20.5,0.5 + rot: 1.5707963267948966 rad + pos: 33.5,6.5 parent: 2 -- proto: PosterContrabandAmbrosiaVulgaris - entities: - - uid: 3387 + - uid: 3651 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-16.5 + pos: -14.5,-12.5 parent: 2 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 3388 + - uid: 3652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,41.5 + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 parent: 2 - - uid: 5979 + - uid: 3653 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 5384 -- proto: PosterContrabandClown - entities: - - uid: 3389 + pos: -14.5,-11.5 + parent: 2 + - uid: 3654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,7.5 + pos: -35.5,19.5 parent: 2 -- proto: PosterContrabandDonutCorp - entities: - - uid: 3390 + - uid: 3655 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,9.5 + pos: -24.5,11.5 parent: 2 -- proto: PosterContrabandFreeDrone - entities: - - uid: 5980 + - uid: 3656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 - parent: 5384 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 5981 + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 + - uid: 3657 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 5384 -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 3391 + pos: -29.5,9.5 + parent: 2 + - uid: 3658 components: - type: Transform - pos: 6.5,2.5 + rot: -1.5707963267948966 rad + pos: -29.5,8.5 parent: 2 - - uid: 5982 + - uid: 3659 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,4.5 - parent: 5384 -- proto: PosterContrabandPunchShit - entities: - - uid: 5983 + pos: -29.5,7.5 + parent: 2 + - uid: 3660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 5384 -- proto: PosterContrabandShamblersJuice - entities: - - uid: 5984 + pos: 0.5,-24.5 + parent: 2 + - uid: 3661 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 5384 -- proto: PosterContrabandTools - entities: - - uid: 3392 + pos: 1.5,-23.5 + parent: 2 + - uid: 3662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 parent: 2 -- proto: PosterContrabandUnreadableAnnouncement - entities: - - uid: 5985 + - uid: 3663 components: - - type: MetaData - desc: '"Проводить слежку сугубо по камерам"-.. Дальнейшие буквы покрыты кровью, не разобрать.' - name: объявление о безопасности - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 5384 -- proto: PosterLegitHighClassMartini - entities: - - uid: 3393 + pos: -1.5,-12.5 + parent: 2 + - uid: 3664 components: - type: Transform - pos: 1.5,-14.5 + pos: -15.5,-9.5 parent: 2 -- proto: PosterLegitMime - entities: - - uid: 3394 + - uid: 3665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,0.5 + pos: -3.5,-8.5 parent: 2 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 3395 + - uid: 3666 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,1.5 + pos: -37.5,21.5 parent: 2 -- proto: PosterLegitScience - entities: - - uid: 5986 + - uid: 3667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 2 + - uid: 3668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 5384 -- proto: PottedPlant14 - entities: - - uid: 3396 + pos: -14.5,-23.5 + parent: 2 + - uid: 3669 components: - type: Transform - pos: 11.5,-6.5 + rot: -1.5707963267948966 rad + pos: 7.5,-14.5 parent: 2 -- proto: PottedPlant21 - entities: - - uid: 3397 + - uid: 3670 components: - type: Transform - pos: 1.5,-8.5 + pos: -1.5,20.5 parent: 2 -- proto: PottedPlant22 - entities: - - uid: 3398 + - uid: 3671 components: - type: Transform - pos: 7.5,3.5 + pos: 2.5,20.5 parent: 2 -- proto: PottedPlant24 - entities: - - uid: 3399 + - uid: 3672 components: - type: Transform - pos: -2.5,3.5 + pos: 0.5,20.5 parent: 2 -- proto: PottedPlantAlt7 - entities: - - uid: 3400 + - uid: 3673 components: - type: Transform - pos: 13.5,17.5 + pos: -17.5,-9.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 3401 + - uid: 3674 components: - type: Transform - pos: -21.5,24.5 + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 parent: 2 - - uid: 3402 + - uid: 3675 components: - type: Transform - pos: 13.5,14.5 + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 parent: 2 - - uid: 3403 + - uid: 3676 components: - type: Transform - pos: 5.5,17.5 + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 parent: 2 - - uid: 3404 + - uid: 3677 components: - type: Transform - pos: 21.5,8.5 + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 parent: 2 - - uid: 3405 + - uid: 3678 components: - type: Transform - pos: 18.5,13.5 + pos: -18.5,-9.5 parent: 2 -- proto: PottedPlantRandomPlastic - entities: - - uid: 6810 + - uid: 3679 components: - type: Transform - pos: 2.5,1.5 - parent: 6631 - - uid: 6811 + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - uid: 3680 components: - type: Transform - pos: -1.5,2.5 - parent: 6631 -- proto: PottedPlantRD - entities: - - uid: 5987 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 3681 components: - - type: MetaData - desc: Кажется он устал. - name: задохлик - type: Transform - pos: 12.495246,-7.14176 - parent: 5384 -- proto: PowerCellRecharger - entities: - - uid: 3406 + pos: -16.5,-9.5 + parent: 2 + - uid: 3682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-2.5 + pos: -19.5,-9.5 parent: 2 - - uid: 3407 + - uid: 3683 components: - type: Transform - pos: 8.5,8.5 + pos: -12.5,-24.5 parent: 2 - - uid: 3408 + - uid: 3684 components: - type: Transform - pos: 17.5,0.5 + pos: -2.5,20.5 parent: 2 - - uid: 3409 + - uid: 3685 components: - type: Transform - pos: -15.5,0.5 + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 parent: 2 -- proto: PoweredLEDLightPostSmall - entities: - - uid: 3410 + - uid: 3686 components: - type: Transform - pos: -18.5,-2.5 + rot: -1.5707963267948966 rad + pos: -14.5,-17.5 parent: 2 - - uid: 3411 + - uid: 3687 components: - type: Transform - pos: -26.5,2.5 + pos: 1.5,20.5 parent: 2 - - uid: 3412 + - uid: 3688 components: - type: Transform - pos: -11.5,-3.5 + pos: -7.5,-8.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 3413 + - uid: 3689 components: - type: Transform - pos: 10.5,-8.5 + pos: -0.5,20.5 parent: 2 - - uid: 3414 + - uid: 3690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-10.5 + pos: -3.5,20.5 parent: 2 - - uid: 3415 + - uid: 3691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 parent: 2 - - uid: 3416 + - uid: 3692 components: - type: Transform - pos: 23.5,-4.5 + pos: 3.5,20.5 parent: 2 - - uid: 3417 + - uid: 3693 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,12.5 + pos: -11.5,-11.5 parent: 2 - - uid: 3418 + - uid: 3694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 3695 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-14.5 + pos: -23.5,11.5 parent: 2 - - uid: 3419 + - uid: 3696 components: - type: Transform - pos: 25.5,2.5 + rot: 1.5707963267948966 rad + pos: -11.5,-10.5 parent: 2 - - uid: 3420 + - uid: 3697 components: - type: Transform - pos: 21.5,2.5 + rot: 1.5707963267948966 rad + pos: 22.5,24.5 parent: 2 - - uid: 3421 + - uid: 3698 components: - type: Transform - pos: 20.5,6.5 + rot: 1.5707963267948966 rad + pos: 22.5,25.5 parent: 2 - - uid: 3422 + - uid: 3699 components: - type: Transform - pos: 15.5,5.5 + rot: -1.5707963267948966 rad + pos: 20.5,25.5 parent: 2 - - uid: 3423 + - uid: 3700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 + rot: -1.5707963267948966 rad + pos: 20.5,26.5 parent: 2 - - uid: 3424 + - uid: 3701 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-14.5 + pos: 21.5,27.5 parent: 2 - - uid: 3425 + - uid: 3702 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-8.5 + pos: 30.5,19.5 parent: 2 - - uid: 3426 + - uid: 3703 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-3.5 + pos: 30.5,20.5 parent: 2 - - uid: 3427 + - uid: 3704 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-4.5 + pos: 30.5,18.5 parent: 2 - - uid: 3428 + - uid: 3705 components: - type: Transform - pos: 22.5,-1.5 + pos: 3.5,-18.5 parent: 2 - - uid: 3429 + - uid: 3706 components: - type: Transform - pos: 19.5,-1.5 + pos: 2.5,-18.5 parent: 2 - - uid: 3430 + - uid: 3707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-2.5 + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 parent: 2 - - uid: 3431 + - uid: 3708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-4.5 + pos: 18.5,19.5 parent: 2 - - uid: 3432 + - uid: 3709 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-4.5 + pos: 7.5,30.5 parent: 2 - - uid: 3433 + - uid: 3710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-4.5 + rot: -1.5707963267948966 rad + pos: 7.5,29.5 parent: 2 - - uid: 3434 + - uid: 3711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 7.5,31.5 parent: 2 - - uid: 3435 + - uid: 3712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,4.5 + rot: -1.5707963267948966 rad + pos: 7.5,32.5 parent: 2 - - uid: 3436 + - uid: 3713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: 7.5,33.5 parent: 2 - - uid: 3437 + - uid: 3714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,3.5 + rot: -1.5707963267948966 rad + pos: 7.5,34.5 parent: 2 - - uid: 3438 + - uid: 3715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 + rot: 1.5707963267948966 rad + pos: 9.5,34.5 parent: 2 - - uid: 3439 + - uid: 3716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,0.5 + rot: 1.5707963267948966 rad + pos: 9.5,33.5 parent: 2 - - uid: 3440 + - uid: 3717 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,0.5 + pos: 9.5,32.5 parent: 2 - - uid: 3441 + - uid: 3718 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-3.5 + pos: 9.5,31.5 parent: 2 - - uid: 3442 + - uid: 3719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 + rot: 1.5707963267948966 rad + pos: 9.5,30.5 parent: 2 - - uid: 3443 + - uid: 3720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 + rot: 1.5707963267948966 rad + pos: 9.5,29.5 parent: 2 - - uid: 3444 + - uid: 3721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 + rot: 1.5707963267948966 rad + pos: 22.5,23.5 parent: 2 - - uid: 3445 + - uid: 3722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 + rot: 1.5707963267948966 rad + pos: 22.5,22.5 parent: 2 - - uid: 3446 + - uid: 3723 components: - type: Transform - pos: 0.5,-2.5 + rot: 1.5707963267948966 rad + pos: 9.5,28.5 parent: 2 - - uid: 3447 + - uid: 3724 components: - type: Transform - pos: 4.5,-2.5 + rot: -1.5707963267948966 rad + pos: 20.5,24.5 parent: 2 - - uid: 3448 + - uid: 3725 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-2.5 + pos: 5.5,40.5 parent: 2 - - uid: 3449 + - uid: 3726 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-1.5 + pos: 5.5,41.5 parent: 2 - - uid: 3450 + - uid: 3727 components: - type: Transform - pos: -14.5,7.5 + pos: 4.5,42.5 parent: 2 - - uid: 3451 + - uid: 3728 components: - type: Transform - pos: -8.5,8.5 + rot: 1.5707963267948966 rad + pos: 35.5,3.5 parent: 2 - - uid: 3452 + - uid: 3729 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,10.5 + pos: 35.5,2.5 parent: 2 - - uid: 3453 + - uid: 3730 components: - type: Transform - pos: -13.5,14.5 + rot: 1.5707963267948966 rad + pos: 35.5,1.5 parent: 2 - - uid: 3454 + - uid: 3731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,10.5 + rot: -1.5707963267948966 rad + pos: -30.5,29.5 parent: 2 - - uid: 3455 + - uid: 3732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,18.5 + pos: -53.5,23.5 parent: 2 - - uid: 3456 + - uid: 6061 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 2 - - uid: 3457 + pos: -5.5,-1.5 + parent: 5438 + - uid: 6062 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,11.5 - parent: 2 - - uid: 3458 + pos: -5.5,0.5 + parent: 5438 + - uid: 6063 components: - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 3459 + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 5438 + - uid: 6064 components: - type: Transform - pos: 3.5,15.5 - parent: 2 - - uid: 3460 + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 5438 + - uid: 6065 components: - type: Transform - pos: 4.5,13.5 - parent: 2 - - uid: 3461 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 5438 + - uid: 6066 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 2 - - uid: 3462 + pos: 5.5,7.5 + parent: 5438 + - uid: 6067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 2 - - uid: 3463 + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 5438 + - uid: 6068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 2 - - uid: 3464 + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 5438 + - uid: 6069 components: - type: Transform - pos: 5.5,17.5 - parent: 2 - - uid: 3465 + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 5438 + - uid: 6070 components: - type: Transform - pos: 8.5,17.5 - parent: 2 - - uid: 3466 + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 5438 + - uid: 6071 components: - type: Transform - pos: 11.5,17.5 - parent: 2 - - uid: 3467 + pos: -13.5,-1.5 + parent: 5438 + - uid: 6072 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,16.5 - parent: 2 - - uid: 3468 + pos: -15.5,0.5 + parent: 5438 + - uid: 6073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,6.5 - parent: 2 - - uid: 3469 + pos: -14.5,-1.5 + parent: 5438 + - uid: 6074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 2 - - uid: 3470 + rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 5438 + - uid: 6075 components: - type: Transform - pos: 14.5,11.5 - parent: 2 - - uid: 3471 + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 5438 + - uid: 6076 components: - type: Transform - pos: 16.5,13.5 - parent: 2 - - uid: 3472 + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 5438 + - uid: 6077 components: - type: Transform - pos: 20.5,13.5 - parent: 2 - - uid: 3473 + pos: -15.5,-1.5 + parent: 5438 + - uid: 6078 components: - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 3474 + pos: -16.5,-1.5 + parent: 5438 + - uid: 6870 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 2 - - uid: 3475 + pos: 3.5,7.5 + parent: 6685 + - uid: 6871 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - uid: 3476 + pos: 2.5,10.5 + parent: 6685 + - uid: 6872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,7.5 - parent: 2 - - uid: 3477 + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 6685 + - uid: 6873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,8.5 - parent: 2 - - uid: 3478 + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 6685 + - uid: 6874 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,7.5 - parent: 2 - - uid: 3479 + pos: -3.5,4.5 + parent: 6685 + - uid: 6875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 2 - - uid: 3480 + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 6685 + - uid: 6876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 2 - - uid: 3481 + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 6685 + - uid: 6877 components: - type: Transform - pos: 24.5,16.5 - parent: 2 - - uid: 3482 + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 6685 + - uid: 6878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 2 - - uid: 3483 + rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 6685 + - uid: 6879 components: - type: Transform - pos: 10.5,-16.5 - parent: 2 - - uid: 3484 + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 6685 + - uid: 6880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 2 - - uid: 3485 + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 6685 + - uid: 6881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,8.5 - parent: 2 - - uid: 3486 + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 6685 + - uid: 6882 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 2 - - uid: 3487 + pos: 1.5,13.5 + parent: 6685 + - uid: 6883 components: - type: Transform - pos: -15.5,18.5 - parent: 2 - - uid: 3488 + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 6685 + - uid: 6884 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 2 - - uid: 3489 + pos: -0.5,13.5 + parent: 6685 + - uid: 6885 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 2 - - uid: 3490 + pos: -0.5,14.5 + parent: 6685 + - uid: 6886 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,16.5 - parent: 2 - - uid: 3491 + pos: -0.5,14.5 + parent: 6685 + - uid: 6887 components: - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 3492 + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 6685 + - uid: 6888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 6685 + - uid: 6889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 6685 + - uid: 6890 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 2 - - uid: 3493 + pos: -0.5,13.5 + parent: 6685 + - uid: 6891 components: - type: Transform - pos: -12.5,21.5 - parent: 2 - - uid: 3494 + pos: 0.5,14.5 + parent: 6685 + - uid: 7925 components: - type: Transform - pos: -5.5,15.5 - parent: 2 - - uid: 3495 + rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 7020 + - uid: 7926 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,8.5 - parent: 2 - - uid: 3496 + pos: 1.5,11.5 + parent: 7020 + - uid: 7927 components: - type: Transform - pos: -11.5,9.5 - parent: 2 - - uid: 3497 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 7020 + - uid: 7928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 2 - - uid: 3498 + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 7020 + - uid: 7929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 2 - - type: PointLight - color: '#FF0303FF' - - type: PoweredLight - on: False - - uid: 3499 + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 7020 + - uid: 7930 components: - type: Transform - pos: -13.5,14.5 - parent: 2 - - type: PointLight - color: '#FF0303FF' - - type: PoweredLight - on: False -- proto: PoweredlightOrange - entities: - - uid: 3500 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 7020 + - uid: 7931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-3.5 - parent: 2 - - uid: 5988 + pos: 5.5,13.5 + parent: 7020 + - uid: 7932 components: - type: Transform - pos: 9.5,-9.5 - parent: 5384 - - uid: 5989 + pos: 6.5,14.5 + parent: 7020 + - uid: 7933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 5384 - - uid: 5990 + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 7020 + - uid: 8322 components: - type: Transform - pos: 15.5,-1.5 - parent: 5384 - - uid: 5991 + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 8267 + - uid: 8323 components: - type: Transform - pos: 13.5,-5.5 - parent: 5384 - - uid: 5992 + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 8267 + - uid: 8324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,4.5 - parent: 5384 - - uid: 5993 + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 8267 + - uid: 8325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,10.5 - parent: 5384 - - uid: 5994 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 8267 + - uid: 8326 components: - type: Transform - pos: -0.5,-6.5 - parent: 5384 - - uid: 5995 + pos: -5.5,-1.5 + parent: 8267 + - uid: 8327 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 8267 + - uid: 8328 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 8267 + - uid: 8329 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 8267 +- proto: RailingCorner + entities: + - uid: 3733 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,14.5 + parent: 2 + - uid: 3736 components: - type: Transform - pos: -10.5,0.5 - parent: 5384 - - uid: 5996 + rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - uid: 3737 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,8.5 - parent: 5384 -- proto: PoweredLightPostSmall - entities: - - uid: 3501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,27.5 + pos: 18.5,22.5 parent: 2 - - uid: 3502 + - uid: 3738 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,11.5 + pos: 35.5,4.5 parent: 2 - - uid: 3503 + - uid: 3739 components: - type: Transform - pos: -14.5,-24.5 + rot: 3.141592653589793 rad + pos: -29.5,10.5 parent: 2 - - uid: 3504 + - uid: 3740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,11.5 + rot: 3.141592653589793 rad + pos: -28.5,11.5 parent: 2 - - uid: 3505 + - uid: 3741 components: - type: Transform - pos: -1.5,-24.5 + pos: 35.5,9.5 parent: 2 - - uid: 3506 + - uid: 3742 components: - type: Transform - pos: -11.5,-24.5 + rot: -1.5707963267948966 rad + pos: -14.5,-24.5 parent: 2 - - uid: 3507 + - uid: 3743 components: - type: Transform - pos: 1.5,-24.5 + rot: 1.5707963267948966 rad + pos: 32.5,16.5 parent: 2 - - uid: 3508 + - uid: 3744 components: - type: Transform - pos: -1.5,-14.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 3509 + - uid: 3745 components: - type: Transform - pos: -1.5,-8.5 + pos: -11.5,-24.5 parent: 2 - - uid: 3510 + - uid: 3746 components: - type: Transform - pos: -28.5,11.5 + pos: 1.5,-24.5 parent: 2 - - uid: 3511 + - uid: 3747 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,23.5 + pos: 33.5,15.5 parent: 2 - - uid: 3512 + - uid: 3748 components: - type: Transform - pos: 34.5,-0.5 + rot: 1.5707963267948966 rad + pos: 22.5,27.5 parent: 2 - - uid: 3513 + - uid: 3749 components: - type: Transform - pos: 34.5,5.5 + rot: 3.141592653589793 rad + pos: 20.5,27.5 parent: 2 - - uid: 3514 + - uid: 3750 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-15.5 + pos: 35.5,13.5 parent: 2 - - uid: 3515 + - uid: 3751 components: - type: Transform - pos: -11.5,-8.5 + rot: 3.141592653589793 rad + pos: 19.5,23.5 parent: 2 - - uid: 3516 + - uid: 3752 components: - type: Transform - pos: -11.5,-14.5 + rot: 1.5707963267948966 rad + pos: 31.5,17.5 parent: 2 - - uid: 3517 + - uid: 3753 components: - type: Transform - pos: 30.5,20.5 + pos: 35.5,0.5 parent: 2 - - uid: 3518 + - uid: 3754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,17.5 + pos: 34.5,-0.5 parent: 2 -- proto: PoweredlightSodium - entities: - - uid: 5997 + - uid: 3755 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 5384 - - uid: 5998 + pos: -52.5,21.5 + parent: 2 + - uid: 7934 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 5384 - - uid: 5999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 5384 -- proto: PoweredSmallLight + pos: 5.5,10.5 + parent: 7020 +- proto: RailingCornerSmall entities: - - uid: 3519 + - uid: 3756 components: - type: Transform - pos: -9.5,1.5 + rot: -1.5707963267948966 rad + pos: -54.5,21.5 parent: 2 - - uid: 3520 + - uid: 3757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 + rot: 3.141592653589793 rad + pos: -55.5,19.5 parent: 2 - - uid: 3521 + - uid: 3758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,0.5 + pos: -30.5,28.5 parent: 2 - - uid: 3522 + - uid: 3759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,5.5 + pos: 18.5,19.5 parent: 2 - - uid: 3523 + - uid: 3760 components: - type: Transform - pos: -11.5,6.5 + rot: 3.141592653589793 rad + pos: -41.5,19.5 parent: 2 - - uid: 3524 + - uid: 3761 components: - type: Transform - pos: -20.5,3.5 + rot: 1.5707963267948966 rad + pos: 18.5,22.5 parent: 2 - - uid: 3525 + - uid: 3762 components: - type: Transform - pos: -23.5,8.5 + pos: -34.5,18.5 parent: 2 - - uid: 3526 + - uid: 3763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,1.5 + pos: -34.5,22.5 parent: 2 - - uid: 3527 + - uid: 3764 components: - type: Transform - pos: 8.5,-5.5 + rot: 1.5707963267948966 rad + pos: -34.5,19.5 parent: 2 - - uid: 3528 + - uid: 3765 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,18.5 + pos: -41.5,22.5 parent: 2 - - uid: 3529 + - uid: 3766 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,2.5 + pos: -41.5,18.5 parent: 2 - - uid: 3530 + - uid: 3767 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-6.5 + pos: -41.5,21.5 parent: 2 - - uid: 3531 + - uid: 3768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 + pos: -34.5,21.5 parent: 2 - - uid: 3532 + - uid: 3769 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,5.5 + pos: -29.5,28.5 parent: 2 - - uid: 3533 + - uid: 3770 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,19.5 + pos: -31.5,28.5 parent: 2 - - uid: 3534 + - uid: 3771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,20.5 + rot: -1.5707963267948966 rad + pos: -26.5,11.5 parent: 2 - - uid: 3535 + - uid: 3772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,7.5 + parent: 2 + - uid: 3773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,41.5 + pos: -30.5,6.5 parent: 2 - - uid: 3536 + - uid: 3774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,39.5 + rot: 3.141592653589793 rad + pos: -29.5,30.5 parent: 2 - - uid: 3537 + - uid: 3775 components: - type: Transform - pos: -21.5,26.5 + rot: -1.5707963267948966 rad + pos: -28.5,11.5 parent: 2 - - uid: 3538 + - uid: 3776 components: - type: Transform - pos: -17.5,23.5 + rot: 1.5707963267948966 rad + pos: 18.5,20.5 parent: 2 - - uid: 6000 + - uid: 3777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 5384 - - uid: 6001 + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 + - uid: 3778 components: - type: Transform - pos: 4.5,-9.5 - parent: 5384 - - uid: 6002 + pos: 19.5,22.5 + parent: 2 + - uid: 3779 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 5384 -- proto: PoweredSmallLightEmpty - entities: - - uid: 3539 + pos: 1.5,-21.5 + parent: 2 + - uid: 3780 components: - type: Transform - pos: -17.5,13.5 + rot: -1.5707963267948966 rad + pos: 17.5,19.5 parent: 2 -- proto: PrinterDoc - entities: - - uid: 3540 + - uid: 3781 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-5.5 + pos: 17.5,20.5 parent: 2 -- proto: Protolathe - entities: - - uid: 3541 + - uid: 3782 components: - type: Transform - pos: 17.5,5.5 + rot: 1.5707963267948966 rad + pos: -27.5,12.5 parent: 2 - - uid: 3542 + - uid: 3783 components: - type: Transform - pos: 15.5,-6.5 + rot: -1.5707963267948966 rad + pos: 17.5,21.5 parent: 2 -- proto: PsychBed - entities: - - uid: 3543 + - uid: 3784 components: - - type: MetaData - desc: удобные доски для лежания в бане. - name: полати - type: Transform - pos: 5.5,43.5 + pos: -27.5,11.5 parent: 2 - - uid: 3544 + - uid: 3785 components: - type: Transform - pos: -11.5,-1.5 + rot: 3.141592653589793 rad + pos: 34.5,0.5 parent: 2 -- proto: Rack - entities: - - uid: 3545 + - uid: 3786 components: - type: Transform - pos: 7.5,-18.5 + pos: -28.5,10.5 parent: 2 - - uid: 3546 + - uid: 3787 components: - type: Transform - pos: 26.5,-3.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2 - - uid: 3547 + - uid: 3788 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-0.5 + pos: 34.5,4.5 parent: 2 - - uid: 3548 + - uid: 3789 components: - type: Transform - pos: -12.5,21.5 + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 parent: 2 - - uid: 3549 + - uid: 3790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 parent: 2 - - uid: 3550 + - uid: 3791 components: - type: Transform - pos: -13.5,6.5 + rot: 3.141592653589793 rad + pos: 1.5,-22.5 parent: 2 - - uid: 3551 + - uid: 3792 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,1.5 + pos: 33.5,-0.5 parent: 2 - - uid: 3552 + - uid: 3793 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,8.5 + pos: 33.5,-1.5 parent: 2 - - uid: 3553 + - uid: 3794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 + pos: 34.5,-1.5 parent: 2 - - uid: 3554 + - uid: 3795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,17.5 + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 2 - - uid: 3555 + - uid: 3796 components: - type: Transform - pos: -11.5,21.5 + pos: 32.5,-1.5 parent: 2 - - uid: 3556 + - uid: 3797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-2.5 + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 parent: 2 - - uid: 3557 + - uid: 3798 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,38.5 + pos: 34.5,13.5 parent: 2 - - uid: 3558 + - uid: 3799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,14.5 + rot: -1.5707963267948966 rad + pos: 31.5,16.5 parent: 2 - - uid: 3559 + - uid: 3800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,19.5 + pos: 18.5,21.5 parent: 2 - - uid: 3560 + - uid: 3801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 + rot: -1.5707963267948966 rad + pos: 33.5,14.5 parent: 2 - - uid: 3561 + - uid: 3802 components: - type: Transform - pos: 6.5,-16.5 + rot: -1.5707963267948966 rad + pos: 33.5,5.5 parent: 2 - - uid: 3562 + - uid: 3803 components: - type: Transform - pos: 5.5,-16.5 + rot: 3.141592653589793 rad + pos: 33.5,8.5 parent: 2 - - uid: 6003 - components: - - type: Transform - pos: 13.5,2.5 - parent: 5384 - - uid: 6004 - components: - - type: Transform - pos: 15.5,2.5 - parent: 5384 - - uid: 6005 + - uid: 3804 components: - type: Transform - pos: 14.5,2.5 - parent: 5384 - - uid: 6006 + rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 2 + - uid: 3805 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 5384 - - uid: 6812 + pos: 32.5,15.5 + parent: 2 + - uid: 3806 components: - type: Transform - pos: 3.5,4.5 - parent: 6631 - - uid: 6813 + pos: -29.5,6.5 + parent: 2 + - uid: 3807 components: - type: Transform - pos: 1.5,10.5 - parent: 6631 - - uid: 6814 + rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 2 + - uid: 3808 components: - type: Transform - pos: -2.5,4.5 - parent: 6631 - - uid: 6815 + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 3809 components: - type: Transform - pos: 4.5,1.5 - parent: 6631 -- proto: RadiationCollectorFullTank - entities: - - uid: 3563 + pos: -25.5,11.5 + parent: 2 + - uid: 3810 components: - type: Transform - pos: 29.5,-2.5 + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 parent: 2 - - uid: 3564 + - uid: 3811 components: - type: Transform - pos: 29.5,-4.5 + rot: 1.5707963267948966 rad + pos: -25.5,12.5 parent: 2 - - uid: 3565 + - uid: 3812 components: - type: Transform - pos: 30.5,-4.5 + rot: 3.141592653589793 rad + pos: -26.5,12.5 parent: 2 - - uid: 3566 + - uid: 3813 components: - type: Transform - pos: 30.5,-2.5 + rot: -1.5707963267948966 rad + pos: 6.5,28.5 parent: 2 - - uid: 3567 + - uid: 3814 components: - type: Transform - pos: 30.5,-3.5 + pos: 7.5,28.5 parent: 2 -- proto: Railing - entities: - - uid: 3568 + - uid: 3815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,16.5 + pos: 20.5,23.5 parent: 2 - - uid: 3569 + - uid: 3816 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-15.5 + pos: 9.5,27.5 parent: 2 - - uid: 3570 + - uid: 3817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,16.5 + pos: 10.5,27.5 parent: 2 - - uid: 3571 + - uid: 3818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,21.5 + rot: 1.5707963267948966 rad + pos: 5.5,42.5 parent: 2 - - uid: 3572 + - uid: 3819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 + rot: -1.5707963267948966 rad + pos: 30.5,17.5 parent: 2 - - uid: 3573 + - uid: 3820 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-21.5 + pos: 35.5,0.5 parent: 2 - - uid: 3574 + - uid: 3821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-23.5 + rot: -1.5707963267948966 rad + pos: 35.5,1.5 parent: 2 - - uid: 3575 + - uid: 3822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 + rot: 3.141592653589793 rad + pos: 35.5,3.5 parent: 2 - - uid: 3576 + - uid: 3823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 + rot: -1.5707963267948966 rad + pos: 33.5,6.5 parent: 2 - - uid: 3577 + - uid: 3824 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-18.5 + pos: 34.5,8.5 parent: 2 - - uid: 3578 + - uid: 3825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,11.5 + parent: 2 + - uid: 3826 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,17.5 + pos: 34.5,14.5 parent: 2 - - uid: 3579 + - uid: 3827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,16.5 + rot: -1.5707963267948966 rad + pos: 32.5,16.5 parent: 2 - - uid: 3580 + - uid: 3828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,17.5 + rot: 3.141592653589793 rad + pos: 32.5,16.5 parent: 2 - - uid: 3581 + - uid: 3829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,25.5 + rot: 3.141592653589793 rad + pos: 30.5,18.5 parent: 2 - - uid: 3582 + - uid: 3830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,24.5 + rot: 3.141592653589793 rad + pos: 30.5,20.5 parent: 2 - - uid: 3583 + - uid: 3831 components: - type: Transform - pos: -40.5,19.5 + rot: 3.141592653589793 rad + pos: 33.5,15.5 parent: 2 - - uid: 3584 + - uid: 3832 components: - type: Transform - pos: -38.5,19.5 + rot: 1.5707963267948966 rad + pos: -29.5,7.5 parent: 2 - - uid: 3585 + - uid: 3833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 + pos: -12.5,18.5 parent: 2 - - uid: 3586 + - uid: 3834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-16.5 + pos: -12.5,21.5 parent: 2 - - uid: 3587 + - uid: 3835 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + pos: 33.5,-8.5 parent: 2 - - uid: 3588 + - uid: 3836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 + rot: 1.5707963267948966 rad + pos: -52.5,23.5 parent: 2 - - uid: 3589 + - uid: 3837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + pos: -28.5,28.5 parent: 2 - - uid: 3590 + - uid: 3838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 + rot: 1.5707963267948966 rad + pos: -30.5,30.5 parent: 2 - - uid: 3591 + - uid: 3839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 + rot: 3.141592653589793 rad + pos: 33.5,-6.5 parent: 2 - - uid: 3592 + - uid: 6079 components: - type: Transform - pos: -10.5,-8.5 - parent: 2 - - uid: 3593 + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 5438 + - uid: 6080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,20.5 - parent: 2 - - uid: 3594 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 5438 + - uid: 6081 components: - type: Transform - pos: -25.5,26.5 - parent: 2 - - uid: 3595 + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 5438 + - uid: 6082 components: - type: Transform - pos: -29.5,26.5 - parent: 2 - - uid: 3596 + pos: 10.5,4.5 + parent: 5438 + - uid: 6083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,18.5 - parent: 2 - - uid: 3597 + pos: 10.5,3.5 + parent: 5438 + - uid: 6084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,22.5 - parent: 2 - - uid: 3598 + pos: 10.5,4.5 + parent: 5438 + - uid: 6085 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,18.5 - parent: 2 - - uid: 3599 + pos: 16.5,3.5 + parent: 5438 + - uid: 6086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,24.5 - parent: 2 - - uid: 3600 + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 5438 + - uid: 6087 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,22.5 - parent: 2 - - uid: 3601 + pos: -1.5,-6.5 + parent: 5438 + - uid: 6088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,25.5 - parent: 2 - - uid: 3602 + pos: 0.5,-6.5 + parent: 5438 + - uid: 6089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,21.5 - parent: 2 - - uid: 3603 + pos: -4.5,-0.5 + parent: 5438 + - uid: 6090 components: - type: Transform - pos: -36.5,19.5 - parent: 2 - - uid: 3604 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 5438 + - uid: 6892 components: - type: Transform - pos: -37.5,19.5 - parent: 2 - - uid: 3605 + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 6685 + - uid: 6893 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,16.5 - parent: 2 - - uid: 3606 + pos: -0.5,14.5 + parent: 6685 + - uid: 6894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 6685 + - uid: 6895 + components: + - type: Transform + pos: -0.5,14.5 + parent: 6685 + - uid: 7935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,19.5 - parent: 2 - - uid: 3607 + pos: -0.5,9.5 + parent: 7020 + - uid: 7936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,20.5 - parent: 2 - - uid: 3608 + pos: -0.5,11.5 + parent: 7020 + - uid: 7937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 2 - - uid: 3609 + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 7020 + - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,21.5 - parent: 2 - - uid: 3610 + pos: 1.5,9.5 + parent: 7020 + - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,23.5 - parent: 2 - - uid: 3611 + pos: 1.5,7.5 + parent: 7020 + - uid: 7940 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,21.5 - parent: 2 - - uid: 3612 + pos: 5.5,14.5 + parent: 7020 + - uid: 7941 components: - type: Transform - pos: -26.5,26.5 - parent: 2 - - uid: 3613 + pos: 5.5,9.5 + parent: 7020 + - uid: 8330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,21.5 - parent: 2 - - uid: 3614 + pos: -1.5,-1.5 + parent: 8267 + - uid: 8331 components: - type: Transform - pos: -28.5,26.5 + pos: -1.5,0.5 + parent: 8267 +- proto: RandomArtifactSpawner + entities: + - uid: 3840 + components: + - type: Transform + pos: 22.5,-1.5 parent: 2 - - uid: 3615 + - uid: 3841 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,21.5 + pos: 27.5,-13.5 parent: 2 - - uid: 3616 + - uid: 3842 components: + - type: MetaData + name: спавнер хлебака - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,23.5 + pos: 2.5,-13.5 parent: 2 - - uid: 3617 + - type: RandomSpawner + prototypes: + - MobBreadDog + - uid: 3843 components: + - type: MetaData + name: спавнер корт - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,19.5 + pos: 7.5,-13.5 parent: 2 - - uid: 3618 + - type: RandomSpawner + prototypes: + - MobCatCake +- proto: RandomFoodMeal + entities: + - uid: 3844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,11.5 + pos: 16.5,17.5 parent: 2 - - uid: 3619 + - uid: 3845 components: - type: Transform - pos: 6.5,-13.5 + pos: -27.5,29.5 parent: 2 - - uid: 3620 +- proto: RandomFoodSingle + entities: + - uid: 3846 components: - type: Transform - pos: -4.5,20.5 + pos: 17.5,17.5 parent: 2 - - uid: 3621 +- proto: RandomInstruments + entities: + - uid: 7942 components: - type: Transform - pos: -2.5,-8.5 - parent: 2 - - uid: 3622 + pos: -16.5,29.5 + parent: 7020 + - uid: 7943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 + pos: 10.5,21.5 + parent: 7020 +- proto: RandomMeat + entities: + - uid: 3847 + components: + - type: Transform + pos: -22.962145,-6.821341 parent: 2 - - uid: 3623 + - uid: 3848 components: - type: Transform - pos: -8.5,-8.5 + pos: -21.628813,-8.2067585 parent: 2 - - uid: 3624 + - uid: 3849 components: - type: Transform - pos: -9.5,-8.5 + pos: -28.486563,23.49868 parent: 2 - - uid: 3625 + - uid: 3850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 + pos: -24.191313,-8.529675 parent: 2 - - uid: 3626 +- proto: RandomPainting + entities: + - uid: 3851 components: - type: Transform - pos: -5.5,-8.5 + pos: 0.5,-1.5 parent: 2 - - uid: 3627 + - uid: 3852 components: - type: Transform - pos: -4.5,-8.5 + pos: 6.5,-3.5 parent: 2 - - uid: 3628 +- proto: RandomPosterAny + entities: + - uid: 3853 components: - type: Transform - pos: -39.5,19.5 + rot: 3.141592653589793 rad + pos: 4.5,-19.5 parent: 2 - - uid: 3629 + - uid: 3854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 + rot: 3.141592653589793 rad + pos: 9.5,8.5 parent: 2 - - uid: 3630 + - uid: 3855 components: - type: Transform - pos: -6.5,-8.5 + rot: 3.141592653589793 rad + pos: 25.5,3.5 parent: 2 - - uid: 3631 + - uid: 3856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 + rot: 3.141592653589793 rad + pos: 15.5,6.5 parent: 2 - - uid: 3632 + - uid: 3857 components: - type: Transform - pos: -13.5,-24.5 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 parent: 2 - - uid: 3633 + - uid: 3858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-23.5 + rot: 3.141592653589793 rad + pos: 5.5,-14.5 parent: 2 - - uid: 3634 + - uid: 3859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-16.5 + rot: 3.141592653589793 rad + pos: -17.5,24.5 parent: 2 - - uid: 3635 +- proto: RandomPosterContraband + entities: + - uid: 3860 components: - type: Transform - pos: -0.5,-24.5 + rot: 3.141592653589793 rad + pos: -21.5,6.5 parent: 2 - - uid: 3636 + - uid: 3861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,7.5 + rot: 3.141592653589793 rad + pos: -18.5,12.5 parent: 2 - - uid: 3637 + - uid: 7944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,6.5 - parent: 2 - - uid: 3638 + pos: 2.5,21.5 + parent: 7020 +- proto: RandomPosterLegit + entities: + - uid: 3862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-12.5 + rot: 3.141592653589793 rad + pos: -11.5,10.5 parent: 2 - - uid: 3639 + - uid: 3863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 + rot: 3.141592653589793 rad + pos: -6.5,17.5 parent: 2 - - uid: 3640 + - uid: 7945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 2 - - uid: 3641 + pos: -1.5,19.5 + parent: 7020 + - uid: 7946 components: - type: Transform - pos: -35.5,19.5 - parent: 2 - - uid: 3642 + rot: 1.5707963267948966 rad + pos: -13.5,18.5 + parent: 7020 + - uid: 7947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,11.5 - parent: 2 - - uid: 3643 + pos: 7.5,27.5 + parent: 7020 + - uid: 7948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 2 - - uid: 3644 + pos: -14.5,30.5 + parent: 7020 + - uid: 7949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 2 - - uid: 3645 + pos: 11.5,22.5 + parent: 7020 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 6091 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,8.5 - parent: 2 - - uid: 3646 + pos: 7.5,-6.5 + parent: 5438 + - uid: 6092 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 2 - - uid: 3647 + pos: 2.5,-2.5 + parent: 5438 +- proto: RandomSnacks + entities: + - uid: 3864 components: - type: Transform - pos: 0.5,-24.5 + pos: 21.5,9.5 parent: 2 - - uid: 3648 +- proto: RandomSpawner + entities: + - uid: 3865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-23.5 + pos: -15.5,3.5 parent: 2 - - uid: 3649 + - uid: 3866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 6.5,-10.5 parent: 2 - - uid: 3650 + - uid: 3867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 + pos: 11.5,-14.5 parent: 2 - - uid: 3651 + - uid: 3868 components: - type: Transform - pos: -15.5,-9.5 + pos: 2.5,-9.5 parent: 2 - - uid: 3652 + - uid: 3869 components: - type: Transform - pos: -3.5,-8.5 + pos: -22.5,6.5 parent: 2 - - uid: 3653 + - uid: 3870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,21.5 + pos: -24.5,5.5 parent: 2 - - uid: 3654 + - uid: 7950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 2 - - uid: 3655 + pos: -15.5,23.5 + parent: 7020 + - uid: 7951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 2 - - uid: 3656 + pos: -17.5,25.5 + parent: 7020 + - uid: 7952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 2 - - uid: 3657 + pos: -11.5,24.5 + parent: 7020 + - uid: 7953 components: - type: Transform - pos: -1.5,20.5 - parent: 2 - - uid: 3658 + pos: -12.5,22.5 + parent: 7020 + - uid: 7954 components: - type: Transform - pos: 2.5,20.5 - parent: 2 - - uid: 3659 + pos: 7.5,18.5 + parent: 7020 + - uid: 7955 components: - type: Transform - pos: 0.5,20.5 - parent: 2 - - uid: 3660 + pos: 1.5,22.5 + parent: 7020 + - uid: 7956 components: - type: Transform - pos: -17.5,-9.5 - parent: 2 - - uid: 3661 + pos: 2.5,6.5 + parent: 7020 + - uid: 7957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 2 - - uid: 3662 + pos: -8.5,24.5 + parent: 7020 + - uid: 7958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 2 - - uid: 3663 + pos: 11.5,16.5 + parent: 7020 +- proto: RandomVending + entities: + - uid: 3871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 + pos: 11.5,17.5 parent: 2 - - uid: 3664 + - uid: 3872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 + pos: 18.5,12.5 parent: 2 - - uid: 3665 +- proto: RandomVendingDrinks + entities: + - uid: 3873 components: - type: Transform - pos: -18.5,-9.5 + pos: 15.5,15.5 parent: 2 - - uid: 3666 + - uid: 3874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 + pos: -10.5,14.5 parent: 2 - - uid: 3667 + - uid: 3875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-13.5 + pos: 9.5,2.5 parent: 2 - - uid: 3668 + - uid: 3876 components: - type: Transform - pos: -16.5,-9.5 + pos: -9.5,7.5 parent: 2 - - uid: 3669 + - uid: 3877 components: - type: Transform - pos: -19.5,-9.5 + pos: 0.5,-2.5 parent: 2 - - uid: 3670 + - uid: 3878 components: - type: Transform - pos: -12.5,-24.5 + pos: 3.5,-16.5 parent: 2 - - uid: 3671 + - uid: 7959 components: - type: Transform - pos: -2.5,20.5 - parent: 2 - - uid: 3672 + pos: 8.5,27.5 + parent: 7020 + - uid: 7960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - - uid: 3673 + pos: -16.5,19.5 + parent: 7020 +- proto: RandomVendingSnacks + entities: + - uid: 3879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-17.5 + pos: -14.5,-6.5 parent: 2 - - uid: 3674 + - uid: 3880 components: - type: Transform - pos: 1.5,20.5 + pos: -10.5,13.5 parent: 2 - - uid: 3675 + - uid: 3881 components: - type: Transform - pos: -7.5,-8.5 + pos: 1.5,-2.5 parent: 2 - - uid: 3676 + - uid: 3882 components: - type: Transform - pos: -0.5,20.5 + pos: 8.5,2.5 parent: 2 - - uid: 3677 + - uid: 3883 components: - type: Transform - pos: -3.5,20.5 + pos: 15.5,16.5 parent: 2 - - uid: 3678 + - uid: 7961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 2 - - uid: 3679 + pos: 9.5,27.5 + parent: 7020 + - uid: 7962 components: - type: Transform - pos: 3.5,20.5 - parent: 2 - - uid: 3680 + pos: 4.5,14.5 + parent: 7020 +- proto: RCDAmmo + entities: + - uid: 7963 + components: + - type: Transform + pos: 13.526886,25.513763 + parent: 7020 +- proto: RCDEmpty + entities: + - uid: 7964 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 2 - - uid: 3681 + pos: -17.57666,30.918736 + parent: 7020 +- proto: Recycler + entities: + - uid: 3884 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,19.5 + pos: -28.5,-3.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 3885 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 parent: 2 - - uid: 3682 + - uid: 3887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 + rot: 1.5707963267948966 rad + pos: 31.5,1.5 parent: 2 - - uid: 3683 + - uid: 3888 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-10.5 + pos: 31.5,0.5 parent: 2 - - uid: 3684 + - uid: 3889 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,24.5 + pos: 31.5,-0.5 parent: 2 - - uid: 3685 + - uid: 3890 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,25.5 + pos: 31.5,-2.5 parent: 2 - - uid: 3686 + - uid: 3891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,25.5 + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 parent: 2 - - uid: 3687 + - uid: 3892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,26.5 + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 parent: 2 - - uid: 3688 +- proto: ReinforcedWindow + entities: + - uid: 3893 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,27.5 + pos: -26.5,7.5 parent: 2 - - uid: 3689 + - uid: 3894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,19.5 + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 parent: 2 - - uid: 3690 + - uid: 3895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,20.5 + pos: 17.5,18.5 parent: 2 - - uid: 3691 + - uid: 3896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,18.5 + pos: 19.5,16.5 parent: 2 - - uid: 3692 + - uid: 3897 components: - type: Transform - pos: 3.5,-18.5 + rot: 3.141592653589793 rad + pos: -25.5,8.5 parent: 2 - - uid: 3693 + - uid: 3898 components: - type: Transform - pos: 2.5,-18.5 + rot: 1.5707963267948966 rad + pos: 16.5,18.5 parent: 2 - - uid: 3694 + - uid: 3899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-19.5 + pos: 15.5,18.5 parent: 2 - - uid: 3695 + - uid: 3900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,19.5 + rot: 3.141592653589793 rad + pos: 23.5,-8.5 parent: 2 - - uid: 3696 + - uid: 3901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,30.5 + pos: 19.5,17.5 parent: 2 - - uid: 3697 + - uid: 3902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,29.5 + rot: 3.141592653589793 rad + pos: 24.5,-8.5 parent: 2 - - uid: 3698 + - uid: 3903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,31.5 + rot: 1.5707963267948966 rad + pos: 24.5,17.5 parent: 2 - - uid: 3699 + - uid: 3904 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,32.5 + pos: 10.5,-19.5 parent: 2 - - uid: 3700 + - uid: 3905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,33.5 + pos: 2.5,3.5 parent: 2 - - uid: 3701 + - uid: 3906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,34.5 + pos: 1.5,3.5 parent: 2 - - uid: 3702 + - uid: 3907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,34.5 + pos: 0.5,3.5 parent: 2 - - uid: 3703 + - uid: 3908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,33.5 + pos: -0.5,3.5 parent: 2 - - uid: 3704 + - uid: 3909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,32.5 + pos: 5.5,6.5 parent: 2 - - uid: 3705 + - uid: 3910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,31.5 + pos: 3.5,6.5 parent: 2 - - uid: 3706 + - uid: 3911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,30.5 + pos: 12.5,-1.5 parent: 2 - - uid: 3707 + - uid: 3912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,29.5 + pos: -9.5,5.5 parent: 2 - - uid: 3708 + - uid: 3913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,23.5 + pos: -7.5,5.5 parent: 2 - - uid: 3709 + - uid: 3914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,22.5 + pos: 26.5,8.5 parent: 2 - - uid: 3710 + - uid: 3915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,28.5 + pos: 19.5,-8.5 parent: 2 - - uid: 3711 + - uid: 3916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,24.5 + pos: 3.5,-5.5 parent: 2 - - uid: 3712 + - uid: 3917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,40.5 + pos: 5.5,-5.5 parent: 2 - - uid: 3713 + - uid: 3918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,41.5 + pos: 12.5,-3.5 parent: 2 - - uid: 3714 + - uid: 3919 components: - type: Transform - pos: 4.5,42.5 + pos: 8.5,10.5 parent: 2 - - uid: 3715 + - uid: 3920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,3.5 + pos: 8.5,6.5 parent: 2 - - uid: 3716 + - uid: 3921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 + pos: 26.5,9.5 parent: 2 - - uid: 3717 + - uid: 3922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,1.5 + pos: 12.5,2.5 parent: 2 - - uid: 6007 + - uid: 3923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 5384 - - uid: 6008 + pos: 7.5,-8.5 + parent: 2 + - uid: 3924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 5384 - - uid: 6009 + pos: 10.5,-11.5 + parent: 2 + - uid: 3925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 5384 - - uid: 6010 + pos: 8.5,-11.5 + parent: 2 + - uid: 3926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-6.5 - parent: 5384 - - uid: 6011 + pos: 22.5,3.5 + parent: 2 + - uid: 3927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 5384 - - uid: 6012 + pos: 23.5,3.5 + parent: 2 + - uid: 3928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 5384 - - uid: 6013 + pos: 24.5,3.5 + parent: 2 + - uid: 3929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 5384 - - uid: 6014 + pos: 23.5,4.5 + parent: 2 + - uid: 3930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,7.5 - parent: 5384 - - uid: 6015 + pos: 23.5,5.5 + parent: 2 + - uid: 3931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 5384 - - uid: 6016 + pos: 18.5,-8.5 + parent: 2 + - uid: 3932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 5384 - - uid: 6017 + pos: 5.5,-11.5 + parent: 2 + - uid: 3933 components: - type: Transform - pos: -13.5,-1.5 - parent: 5384 - - uid: 6018 + pos: 12.5,18.5 + parent: 2 + - uid: 3934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,0.5 - parent: 5384 - - uid: 6019 + pos: 7.5,-11.5 + parent: 2 + - uid: 3935 components: - type: Transform - pos: -14.5,-1.5 - parent: 5384 - - uid: 6020 + rot: 1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - uid: 3936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 5384 - - uid: 6021 + pos: -5.5,19.5 + parent: 2 + - uid: 3937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 5384 - - uid: 6022 + pos: -6.5,18.5 + parent: 2 + - uid: 3938 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 5384 - - uid: 6023 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 5384 - - uid: 6024 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 5384 - - uid: 6816 + pos: 20.5,-8.5 + parent: 2 + - uid: 3939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 6631 - - uid: 6817 + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - uid: 3940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 6631 - - uid: 6818 + pos: -6.5,19.5 + parent: 2 + - uid: 3941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 6631 - - uid: 6819 + pos: 12.5,-19.5 + parent: 2 + - uid: 3942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 6631 - - uid: 6820 + rot: 1.5707963267948966 rad + pos: 23.5,17.5 + parent: 2 + - uid: 3943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 6631 - - uid: 6821 + pos: 9.5,-19.5 + parent: 2 + - uid: 3944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,4.5 - parent: 6631 - - uid: 6822 + pos: -29.5,-2.5 + parent: 2 + - uid: 3945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 6631 - - uid: 6823 + pos: -29.5,-1.5 + parent: 2 + - uid: 3946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 6631 - - uid: 6824 + pos: 25.5,16.5 + parent: 2 + - uid: 3947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,10.5 - parent: 6631 - - uid: 6825 + pos: -7.5,-5.5 + parent: 2 + - uid: 3948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 6631 - - uid: 6826 + pos: 26.5,7.5 + parent: 2 + - uid: 3949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 6631 - - uid: 6827 + pos: -5.5,18.5 + parent: 2 + - uid: 3950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,4.5 - parent: 6631 - - uid: 6828 + pos: 11.5,18.5 + parent: 2 + - uid: 3951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,13.5 - parent: 6631 - - uid: 6829 + pos: -29.5,-0.5 + parent: 2 + - uid: 3952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 6631 - - uid: 6830 + pos: 26.5,11.5 + parent: 2 + - uid: 3953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 6631 - - uid: 6831 + pos: 25.5,15.5 + parent: 2 + - uid: 3954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 6631 - - uid: 6832 + pos: 26.5,13.5 + parent: 2 + - uid: 3955 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 6631 - - uid: 6833 + pos: 10.5,12.5 + parent: 2 + - uid: 3956 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 6631 - - uid: 6834 + pos: 25.5,-12.5 + parent: 2 + - uid: 3957 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 6631 - - uid: 6835 + pos: 26.5,-11.5 + parent: 2 + - uid: 3958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 6631 - - uid: 6836 + rot: 3.141592653589793 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 3959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 6631 - - uid: 6837 + pos: -2.5,16.5 + parent: 2 + - uid: 3960 components: - type: Transform - pos: 0.5,14.5 - parent: 6631 -- proto: RailingCorner - entities: - - uid: 3718 + pos: -3.5,16.5 + parent: 2 + - uid: 7965 components: - type: Transform - pos: 34.5,8.5 - parent: 2 - - uid: 3719 + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 7020 + - uid: 7966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,14.5 - parent: 2 - - uid: 3720 + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 7020 + - uid: 7967 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 2 - - uid: 3721 + pos: -5.5,16.5 + parent: 7020 + - uid: 7968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,22.5 - parent: 2 - - uid: 3722 + rot: -1.5707963267948966 rad + pos: -7.5,16.5 + parent: 7020 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 3961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 + pos: -27.5,7.5 parent: 2 - - uid: 3723 + - uid: 3962 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,10.5 + pos: -25.5,7.5 parent: 2 - - uid: 3724 + - uid: 3963 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,11.5 + pos: -24.5,8.5 parent: 2 - - uid: 3725 + - uid: 3964 components: - type: Transform - pos: 35.5,9.5 + rot: -1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 - - uid: 3726 + - uid: 3965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 + pos: -26.5,8.5 parent: 2 - - uid: 3727 + - uid: 3966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,16.5 + rot: 3.141592653589793 rad + pos: -26.5,6.5 parent: 2 - - uid: 3728 + - uid: 3967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + pos: -25.5,9.5 parent: 2 - - uid: 3729 + - uid: 3968 components: - type: Transform - pos: -11.5,-24.5 + rot: 1.5707963267948966 rad + pos: 18.5,17.5 parent: 2 - - uid: 3730 + - uid: 3969 components: - type: Transform - pos: 1.5,-24.5 + pos: 12.5,-18.5 parent: 2 - - uid: 3731 + - uid: 3970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,15.5 + rot: 3.141592653589793 rad + pos: 13.5,-19.5 parent: 2 - - uid: 3732 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 3971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,27.5 + pos: 18.5,-4.5 parent: 2 - - uid: 3733 +- proto: RevolverCapGun + entities: + - uid: 7074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,27.5 - parent: 2 - - uid: 3734 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RightArmBorg + entities: + - uid: 7969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,13.5 - parent: 2 - - uid: 3735 + pos: -4.117157,15.521755 + parent: 7020 +- proto: RightArmSkeleton + entities: + - uid: 3972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,23.5 + pos: -24.533615,-6.883841 parent: 2 - - uid: 3736 + - uid: 7970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,17.5 - parent: 2 - - uid: 3737 + pos: -8.924652,27.47691 + parent: 7020 +- proto: RightArmVulpkanin + entities: + - uid: 7971 components: - type: Transform - pos: 35.5,0.5 - parent: 2 - - uid: 3738 + pos: -5.5859985,14.468388 + parent: 7020 +- proto: RightFootArachnid + entities: + - uid: 3973 components: - type: Transform - pos: 34.5,-0.5 + pos: -24.544031,-7.0505075 parent: 2 -- proto: RailingCornerSmall +- proto: RightFootHuman entities: - - uid: 3739 + - uid: 7972 components: - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 3740 + pos: -8.892487,20.67017 + parent: 7020 +- proto: RightFootSkeleton + entities: + - uid: 7973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,19.5 - parent: 2 - - uid: 3741 + pos: -8.893402,27.028992 + parent: 7020 +- proto: RightHandSkeleton + entities: + - uid: 7974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,22.5 - parent: 2 - - uid: 3742 + pos: -9.195465,27.32066 + parent: 7020 +- proto: RightHandVulpkanin + entities: + - uid: 7975 components: - type: Transform - pos: -24.5,16.5 - parent: 2 - - uid: 3743 + pos: -5.5755615,14.42672 + parent: 7020 +- proto: RightLegArachnid + entities: + - uid: 3974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,22.5 + pos: -24.533615,-6.9567575 parent: 2 - - uid: 3744 +- proto: RightLegBorg + entities: + - uid: 7976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,20.5 - parent: 2 - - uid: 3745 + pos: -4.0963135,15.244514 + parent: 7020 +- proto: RightLegSkeleton + entities: + - uid: 7977 components: - type: Transform - pos: -34.5,18.5 - parent: 2 - - uid: 3746 + pos: -8.810059,27.174828 + parent: 7020 + - uid: 7978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,22.5 - parent: 2 - - uid: 3747 + pos: -8.816772,20.698399 + parent: 7020 +- proto: RiotBulletShield + entities: + - uid: 3975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,19.5 + rot: 3.141592653589793 rad + pos: -11.366207,21.737194 parent: 2 - - uid: 3748 + - uid: 3976 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,22.5 + pos: -11.220373,21.487194 parent: 2 - - uid: 3749 +- proto: RiotLaserShield + entities: + - uid: 3977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,18.5 + pos: -12.363872,21.667002 parent: 2 - - uid: 3750 + - uid: 3978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,21.5 + pos: -12.197205,21.39617 parent: 2 - - uid: 3751 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 3979 components: - type: Transform - pos: -34.5,21.5 + pos: 7.7908025,-14.50687 parent: 2 - - uid: 3752 + - uid: 3980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,26.5 + pos: 7.7908025,-14.395759 parent: 2 - - uid: 3753 + - uid: 3981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,16.5 + pos: 7.7908025,-14.242981 parent: 2 - - uid: 3754 +- proto: RollerBedSpawnFolded + entities: + - uid: 3286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,16.5 - parent: 2 - - uid: 3755 + parent: 3285 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,26.5 - parent: 2 - - uid: 3756 + parent: 3285 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RubberStampApproved + entities: + - uid: 3982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,26.5 + pos: 14.272758,7.9912057 parent: 2 - - uid: 3757 + - uid: 3983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 + pos: 7.337105,-1.5472101 parent: 2 - - uid: 3758 +- proto: RubberStampDenied + entities: + - uid: 3984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,26.5 + pos: 14.675535,7.9912057 parent: 2 - - uid: 3759 + - uid: 3985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,25.5 + pos: 7.6471786,-1.5472101 parent: 2 - - uid: 3760 +- proto: RubberStampSyndicate + entities: + - uid: 3986 components: - type: Transform - pos: -24.5,20.5 + pos: -19.208584,11.879914 parent: 2 - - uid: 3761 +- proto: SalvageFleshSpawner + entities: + - uid: 6093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,20.5 - parent: 2 - - uid: 3762 + pos: -6.5,-0.5 + parent: 5438 + - uid: 6094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,22.5 - parent: 2 - - uid: 3763 + pos: 0.5,-8.5 + parent: 5438 + - uid: 6095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 2 - - uid: 3764 + pos: 0.5,-10.5 + parent: 5438 + - uid: 6096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 2 - - uid: 3765 + pos: 6.5,-7.5 + parent: 5438 + - uid: 6097 components: - type: Transform - pos: -29.5,20.5 - parent: 2 - - uid: 3766 + pos: -3.5,-2.5 + parent: 5438 + - uid: 6098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,7.5 - parent: 2 - - uid: 3767 + pos: 1.5,0.5 + parent: 5438 + - uid: 6099 components: - type: Transform - pos: -26.5,16.5 - parent: 2 - - uid: 3768 + pos: 3.5,-1.5 + parent: 5438 + - uid: 6100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,26.5 - parent: 2 - - uid: 3769 + pos: -3.5,5.5 + parent: 5438 + - uid: 6101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,22.5 - parent: 2 - - uid: 3770 + pos: 3.5,1.5 + parent: 5438 + - uid: 6102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,22.5 - parent: 2 - - uid: 3771 + pos: 5.5,-0.5 + parent: 5438 + - uid: 6103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,6.5 - parent: 2 - - uid: 3772 + pos: 1.5,-1.5 + parent: 5438 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 6104 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,16.5 - parent: 2 - - uid: 3773 + pos: 9.5,10.5 + parent: 5438 +- proto: SalvageMagnet + entities: + - uid: 3987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,11.5 + pos: 20.5,22.5 parent: 2 - - uid: 3774 +- proto: Screwdriver + entities: + - uid: 6105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 2 - - uid: 3775 + pos: 15.791827,-2.3056262 + parent: 5438 +- proto: SecurityTechFab + entities: + - uid: 3988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,22.5 + pos: -10.5,21.5 parent: 2 - - uid: 3776 +- proto: SeedExtractor + entities: + - uid: 3989 components: - type: Transform - pos: 19.5,22.5 + pos: 14.5,-12.5 parent: 2 - - uid: 3777 +- proto: ShardCrystalCyan + entities: + - uid: 6106 components: + - type: MetaData + desc: Кажется он не работает без палочки. + name: отколотый волшебный камень - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 2 - - uid: 3778 + rot: 3.141592653589793 rad + pos: 4.180303,-0.5256923 + parent: 5438 +- proto: ShardCrystalRed + entities: + - uid: 6107 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,19.5 - parent: 2 - - uid: 3779 + pos: 0.68513703,-3.3667705 + parent: 5438 + - uid: 6108 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 2 - - uid: 3780 + pos: 4.6573586,-2.3667705 + parent: 5438 + - uid: 6109 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,12.5 - parent: 2 - - uid: 3781 + pos: 1.2268038,1.3276739 + parent: 5438 + - uid: 6110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.795529,2.5460513 + parent: 5438 + - uid: 6111 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,21.5 - parent: 2 - - uid: 3782 + pos: 2.5690918,-3.105957 + parent: 5438 +- proto: ShardGlass + entities: + - uid: 3990 components: - type: Transform - pos: -27.5,11.5 + rot: 1.5707963267948966 rad + pos: 3.2066197,7.2743163 parent: 2 - - uid: 3783 + - uid: 3991 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,0.5 + pos: -20.310213,11.132079 parent: 2 - - uid: 3784 +- proto: SheetGlass + entities: + - uid: 3992 components: - type: Transform - pos: -28.5,10.5 + pos: 16.367788,2.762176 parent: 2 - - uid: 3785 + - uid: 3993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,20.5 + pos: -15.465573,1.872766 parent: 2 - - uid: 3786 + - uid: 3994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 + pos: 16.524984,-1.5124708 parent: 2 - - uid: 3787 + - uid: 3995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 + pos: 16.524984,-1.5124708 parent: 2 - - uid: 3788 + - uid: 3996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-8.5 + pos: -20.65014,-0.43519402 parent: 2 - - uid: 3789 + - uid: 3997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-22.5 + pos: 16.524038,2.762176 parent: 2 - - uid: 3790 + - uid: 6112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-0.5 - parent: 2 - - uid: 3791 + pos: 15.749573,2.364502 + parent: 5438 +- proto: SheetPaper + entities: + - uid: 3998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-1.5 + pos: 6.7473125,-5.4191527 parent: 2 - - uid: 3792 +- proto: SheetPGlass1 + entities: + - uid: 3999 components: - type: Transform - pos: 34.5,-1.5 + pos: 26.66915,-3.35111 parent: 2 - - uid: 3793 + - type: Stack + count: 10 +- proto: SheetPlasma + entities: + - uid: 4000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 + pos: 16.524984,-2.3874707 parent: 2 - - uid: 3794 +- proto: SheetPlasteel + entities: + - uid: 4001 components: - type: Transform - pos: 32.5,-1.5 + pos: 15.680288,2.5538425 parent: 2 - - uid: 3795 + - uid: 4002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 + pos: 15.555288,2.564259 parent: 2 - - uid: 3796 + - uid: 4003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,13.5 + pos: -15.507241,2.560266 parent: 2 - - uid: 3797 +- proto: SheetPlastic + entities: + - uid: 4004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,16.5 + pos: 16.524984,-1.4916373 parent: 2 - - uid: 3798 + - uid: 4005 components: - type: Transform - pos: 18.5,21.5 + pos: 16.524984,-1.4916373 parent: 2 - - uid: 3799 +- proto: SheetPlastic10 + entities: + - uid: 4006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,14.5 + pos: -20.300823,-0.560194 parent: 2 - - uid: 3800 +- proto: SheetSteel + entities: + - uid: 4007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,5.5 + pos: 15.909455,2.637176 parent: 2 - - uid: 3801 + - uid: 4008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,8.5 + pos: 15.982372,2.637176 parent: 2 - - uid: 3802 + - uid: 4009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 + pos: -15.496823,2.3206825 parent: 2 - - uid: 3803 + - uid: 4010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + pos: 16.514568,-1.5228873 parent: 2 - - uid: 3804 + - uid: 4011 components: - type: Transform - pos: -29.5,6.5 + pos: 16.514568,-1.5228873 parent: 2 - - uid: 3805 + - uid: 4012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,12.5 + pos: -15.496823,2.154016 parent: 2 - - uid: 3806 +- proto: SheetSteel1 + entities: + - uid: 4013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-18.5 + pos: 3.8472447,7.2118163 parent: 2 - - uid: 3807 +- proto: SheetSteel10 + entities: + - uid: 4014 components: - type: Transform - pos: -25.5,11.5 + pos: -21.589046,-0.40394402 parent: 2 - - uid: 3808 + - uid: 4015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 + pos: -10.452378,21.630438 parent: 2 - - uid: 3809 +- proto: Shovel + entities: + - uid: 4016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,12.5 + pos: 12.431193,19.466057 parent: 2 - - uid: 3810 +- proto: ShuttersNormal + entities: + - uid: 4017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,12.5 + pos: -21.5,-9.5 parent: 2 - - uid: 3811 + - uid: 4018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,28.5 + pos: -23.5,-9.5 parent: 2 - - uid: 3812 + - uid: 4019 components: - type: Transform - pos: 7.5,28.5 + pos: -24.5,-9.5 parent: 2 - - uid: 3813 + - uid: 4020 components: - type: Transform - pos: 20.5,23.5 + pos: -22.5,-9.5 parent: 2 - - uid: 3814 + - uid: 7979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,27.5 - parent: 2 - - uid: 3815 + pos: -10.5,17.5 + parent: 7020 + - uid: 7980 components: - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 3816 + pos: -11.5,21.5 + parent: 7020 + - uid: 7981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,42.5 - parent: 2 - - uid: 3817 + pos: -11.5,29.5 + parent: 7020 + - uid: 7982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 2 - - uid: 3818 + pos: -14.5,27.5 + parent: 7020 + - uid: 7983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,0.5 - parent: 2 - - uid: 3819 + pos: -11.5,28.5 + parent: 7020 + - uid: 7984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,1.5 - parent: 2 - - uid: 3820 + pos: -13.5,27.5 + parent: 7020 + - uid: 7985 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,3.5 - parent: 2 - - uid: 3821 + pos: -12.5,21.5 + parent: 7020 + - uid: 7986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 2 - - uid: 3822 + pos: -10.5,18.5 + parent: 7020 + - uid: 7987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 2 - - uid: 3823 + pos: -2.5,17.5 + parent: 7020 + - uid: 7988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 - parent: 2 - - uid: 3824 + pos: -2.5,18.5 + parent: 7020 + - uid: 7989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,14.5 - parent: 2 - - uid: 3825 + pos: 8.5,23.5 + parent: 7020 + - uid: 7990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,16.5 - parent: 2 - - uid: 3826 + pos: 9.5,23.5 + parent: 7020 + - uid: 7991 + components: + - type: Transform + pos: -0.5,26.5 + parent: 7020 + - uid: 7992 + components: + - type: Transform + pos: 9.5,20.5 + parent: 7020 +- proto: ShuttersNormalOpen + entities: + - uid: 7993 + components: + - type: Transform + pos: -5.5,16.5 + parent: 7020 + - uid: 7994 + components: + - type: Transform + pos: -6.5,16.5 + parent: 7020 + - uid: 7995 + components: + - type: Transform + pos: -7.5,16.5 + parent: 7020 + - uid: 7996 + components: + - type: Transform + pos: -4.5,16.5 + parent: 7020 +- proto: ShuttersRadiation + entities: + - uid: 4021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 + pos: 28.5,-1.5 parent: 2 - - uid: 3827 +- proto: ShuttleWindow + entities: + - uid: 7997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 2 - - uid: 3828 + pos: -5.5,19.5 + parent: 7020 + - uid: 7998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,20.5 - parent: 2 - - uid: 3829 + pos: -4.5,19.5 + parent: 7020 + - uid: 7999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 2 - - uid: 3830 + pos: -9.5,19.5 + parent: 7020 + - uid: 8000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,7.5 - parent: 2 - - uid: 3831 + pos: -8.5,19.5 + parent: 7020 + - uid: 8001 components: - type: Transform - pos: -12.5,18.5 - parent: 2 - - uid: 3832 + pos: -7.5,19.5 + parent: 7020 + - uid: 8002 + components: + - type: Transform + pos: -6.5,19.5 + parent: 7020 +- proto: SignalButton + entities: + - uid: 4022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,21.5 + pos: 27.5,-0.5 parent: 2 - - uid: 6025 + - type: DeviceLinkSource + linkedPorts: + 4021: + - Pressed: Toggle + - uid: 4023 components: + - type: MetaData + name: затворы окна - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 5384 - - uid: 6026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 5384 - - uid: 6027 + pos: -7.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 246: + - Pressed: Toggle + 247: + - Pressed: Toggle + 249: + - Pressed: Toggle + 248: + - Pressed: Toggle + - uid: 6113 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 5384 - - uid: 6028 + pos: 12.5,-1.5 + parent: 5438 + - type: DeviceLinkSource + linkedPorts: + 5442: + - Pressed: DoorBolt + - uid: 6114 components: - type: Transform - pos: 10.5,4.5 - parent: 5384 - - uid: 6029 + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 5438 + - type: DeviceLinkSource + linkedPorts: + 5441: + - Pressed: DoorBolt + - uid: 6115 components: - type: Transform - pos: 10.5,3.5 - parent: 5384 - - uid: 6030 + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 5438 + - type: DeviceLinkSource + linkedPorts: + 5440: + - Pressed: DoorBolt + - uid: 8003 components: + - type: MetaData + name: кнопка 2 - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 5384 - - uid: 6031 + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7984: + - Pressed: Toggle + 7982: + - Pressed: Toggle + - uid: 8004 components: + - type: MetaData + name: кнопка 1 - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 5384 - - uid: 6032 + pos: -9.5,23.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7980: + - Pressed: Toggle + 7985: + - Pressed: Toggle + - uid: 8005 components: + - type: MetaData + name: кнопка 1 - type: Transform rot: 3.141592653589793 rad - pos: 16.5,5.5 - parent: 5384 - - uid: 6033 + pos: -5.5,24.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7983: + - Pressed: Toggle + 7981: + - Pressed: Toggle + - uid: 8006 components: + - type: MetaData + name: кнопка 2 - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 5384 - - uid: 6034 + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7991: + - Pressed: Toggle + - uid: 8007 components: + - type: MetaData + name: кнопка 3 - type: Transform - pos: 0.5,-6.5 - parent: 5384 - - uid: 6035 + rot: 1.5707963267948966 rad + pos: -10.019989,24.025375 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7898: + - Pressed: Toggle + 7897: + - Pressed: Toggle + 7899: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 4024 components: - type: Transform - pos: -4.5,-0.5 - parent: 5384 - - uid: 6036 + pos: -21.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4017: + - Pressed: Toggle + 4020: + - Pressed: Toggle + 4018: + - Pressed: Toggle + 4019: + - Pressed: Toggle + - uid: 4025 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 5384 - - uid: 6838 + pos: -1.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 245: + - Pressed: Toggle + 244: + - Pressed: Toggle + 243: + - Pressed: Toggle + 242: + - Pressed: Toggle + - uid: 6116 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 6631 - - uid: 6839 + pos: 2.5,6.5 + parent: 5438 + - type: DeviceLinkSource + linkedPorts: + 5473: + - Pressed: Toggle + 5474: + - Pressed: Toggle + 5476: + - Pressed: Toggle + 5475: + - Pressed: Toggle + 5478: + - Pressed: Toggle + 5477: + - Pressed: Toggle + - uid: 8008 components: + - type: MetaData + name: кнопка 1 - type: Transform rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 6631 - - uid: 6840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 6631 - - uid: 6841 + pos: -5.5,22.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7986: + - Pressed: Toggle + 7979: + - Pressed: Toggle + - uid: 8009 components: + - type: MetaData + name: кнопка 3 - type: Transform - pos: -0.5,14.5 - parent: 6631 -- proto: RandomArtifactSpawner - entities: - - uid: 3833 + pos: -6.5,25.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7896: + - Pressed: Toggle + 7895: + - Pressed: Toggle + - uid: 8010 components: + - type: MetaData + name: кнопка 2 - type: Transform - pos: 22.5,-1.5 - parent: 2 - - uid: 3834 + rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7988: + - Pressed: Toggle + 7987: + - Pressed: Toggle + - uid: 8011 components: + - type: MetaData + name: кнопка 2 - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-13.5 - parent: 2 - - uid: 3835 + pos: 7.5,23.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7992: + - Pressed: Toggle + - uid: 8012 components: - type: MetaData - name: спавнер хлебака + name: кнопка 1 - type: Transform - pos: 2.5,-13.5 - parent: 2 - - type: RandomSpawner - prototypes: - - MobBreadDog - - uid: 3836 + pos: 6.5,24.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7989: + - Pressed: Toggle + 7990: + - Pressed: Toggle + - uid: 8013 components: - type: MetaData - name: спавнер корт + name: кнопка 3 - type: Transform - pos: 7.5,-13.5 - parent: 2 - - type: RandomSpawner - prototypes: - - MobCatCake -- proto: RandomFoodMeal - entities: - - uid: 3837 + rot: 3.141592653589793 rad + pos: -3.5,22.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7912: + - Pressed: Toggle + 7893: + - Pressed: Toggle + 7894: + - Pressed: Toggle + - uid: 8014 components: - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 3838 + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7032: + - Pressed: DoorBolt + 7031: + - Pressed: DoorBolt + - uid: 8015 components: + - type: MetaData + name: кнопка 4 - type: Transform - pos: -27.5,29.5 - parent: 2 -- proto: RandomFoodSingle - entities: - - uid: 3839 + pos: -3.5,24.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 8021: + - Pressed: Trigger + 7554: + - Pressed: Trigger + - uid: 8016 components: + - type: MetaData + name: кнопка 4 - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 3840 + rot: 1.5707963267948966 rad + pos: -9.614868,24.012264 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 7079: + - Pressed: Trigger + 7081: + - Pressed: Trigger + - uid: 8017 components: + - type: MetaData + name: кнопка 4 - type: Transform - pos: 27.5,-6.5 - parent: 2 -- proto: RandomPainting + rot: 3.141592653589793 rad + pos: -2.5,22.5 + parent: 7020 + - type: DeviceLinkSource + linkedPorts: + 8020: + - Pressed: Trigger + 7284: + - Pressed: Trigger + 7489: + - Pressed: Trigger + 7490: + - Pressed: Trigger + 7995: + - Pressed: Toggle + 7994: + - Pressed: Toggle + 7993: + - Pressed: Toggle + 7996: + - Pressed: Toggle +- proto: SignalTimer entities: - - uid: 3841 + - uid: 6896 components: - type: Transform - pos: 0.5,-1.5 - parent: 2 - - uid: 3842 + pos: -2.5,-1.5 + parent: 6685 + - type: SignalTimer + delay: 1200 + - type: DeviceLinkSource + linkedPorts: + 6850: + - Timer: Trigger + 6849: + - Timer: Trigger + 6848: + - Timer: Trigger + - type: DeviceLinkSink + invokeCounter: 1 +- proto: SignArmory + entities: + - uid: 6117 components: - type: Transform - pos: 6.5,-3.5 - parent: 2 -- proto: RandomPosterAny + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 5438 +- proto: SignBar entities: - - uid: 3843 + - uid: 4026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 parent: 2 - - uid: 3844 +- proto: SignBridge + entities: + - uid: 4027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 parent: 2 - - uid: 3845 +- proto: SignCargoDock + entities: + - uid: 4028 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,3.5 + pos: 9.5,6.5 parent: 2 - - uid: 3846 +- proto: SignChem + entities: + - uid: 4029 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,6.5 + pos: 6.5,10.5 parent: 2 - - uid: 3847 +- proto: SignCryogenicsMed + entities: + - uid: 4030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 + pos: -7.5,-5.5 parent: 2 - - uid: 3848 + - uid: 4031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-14.5 + pos: 8.5,18.5 parent: 2 - - uid: 3849 +- proto: SignDangerMed + entities: + - uid: 4032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,24.5 + rot: -1.5707963267948966 rad + pos: 4.5,19.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 3850 + - uid: 6118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 2 - - uid: 3851 + pos: 2.5,7.5 + parent: 5438 +- proto: SignDirectionalEvac + entities: + - uid: 4033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,12.5 + pos: -14.5,-9.5 parent: 2 -- proto: RandomPosterLegit +- proto: SignDirectionalLibrary entities: - - uid: 3852 + - uid: 4034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,10.5 + rot: -1.5707963267948966 rad + pos: -14.5,24.5 parent: 2 - - uid: 3853 +- proto: SignDisposalSpace + entities: + - uid: 4035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,17.5 + pos: -29.5,0.5 parent: 2 -- proto: RandomScienceCorpseSpawner +- proto: SignElectricalMed entities: - - uid: 6037 + - uid: 4036 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 5384 - - uid: 6038 + pos: -3.5,20.5 + parent: 2 + - uid: 4037 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 5384 -- proto: RandomSnacks + pos: 2.5,20.5 + parent: 2 +- proto: SignEngineering entities: - - uid: 3854 + - uid: 4038 components: - type: Transform - pos: 17.5,13.5 + rot: 1.5707963267948966 rad + pos: 12.5,0.5 parent: 2 - - uid: 3855 + - uid: 6119 components: - type: Transform - pos: 21.5,9.5 - parent: 2 -- proto: RandomSpawner + pos: -5.5,1.5 + parent: 5438 +- proto: SignEVA entities: - - uid: 3856 + - uid: 4039 components: - type: Transform - pos: -15.5,3.5 + pos: 4.5,-16.5 parent: 2 - - uid: 3857 +- proto: SignFlammableMed + entities: + - uid: 4040 components: - type: Transform - pos: 6.5,-10.5 + pos: 25.5,-9.5 parent: 2 - - uid: 3858 +- proto: SignHead + entities: + - uid: 4041 components: - type: Transform - pos: 11.5,-14.5 + rot: 1.5707963267948966 rad + pos: -11.5,12.5 parent: 2 - - uid: 3859 + - uid: 4042 components: - type: Transform - pos: 2.5,-9.5 + rot: 1.5707963267948966 rad + pos: 2.5,15.5 parent: 2 -- proto: RandomVending - entities: - - uid: 3860 + - uid: 4043 components: - type: Transform - pos: 11.5,17.5 + rot: 1.5707963267948966 rad + pos: 17.5,9.5 parent: 2 - - uid: 3861 + - uid: 4044 components: - type: Transform - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: 19.5,4.5 parent: 2 -- proto: RandomVendingDrinks - entities: - - uid: 3862 + - uid: 4045 components: - type: Transform - pos: 15.5,15.5 + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 - - uid: 3863 +- proto: SignLibrary + entities: + - uid: 4046 components: - type: Transform - pos: -10.5,14.5 + pos: -22.5,23.5 parent: 2 - - uid: 3864 +- proto: SignMedical + entities: + - uid: 4047 components: - type: Transform - pos: 9.5,2.5 + rot: 3.141592653589793 rad + pos: 6.5,6.5 parent: 2 - - uid: 3865 +- proto: SignMorgue + entities: + - uid: 4048 components: - type: Transform - pos: -9.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - - uid: 3866 +- proto: SignPsychology + entities: + - uid: 4049 components: - type: Transform - pos: 0.5,-2.5 + rot: 3.141592653589793 rad + pos: -7.5,-0.5 parent: 2 - - uid: 3867 +- proto: SignRadiationMed + entities: + - uid: 4050 components: - type: Transform - pos: 3.5,-16.5 + rot: 3.141592653589793 rad + pos: 29.5,-1.5 parent: 2 -- proto: RandomVendingSnacks +- proto: SignScience entities: - - uid: 3868 + - uid: 4051 components: - type: Transform - pos: -14.5,-6.5 + rot: 3.141592653589793 rad + pos: 12.5,-6.5 parent: 2 - - uid: 3869 +- proto: SignSecureMed + entities: + - uid: 4052 components: - type: Transform - pos: -10.5,13.5 + rot: -1.5707963267948966 rad + pos: -0.5,20.5 parent: 2 - - uid: 3870 + - uid: 6120 components: - type: Transform - pos: 1.5,-2.5 - parent: 2 - - uid: 3871 + pos: 8.5,8.5 + parent: 5438 + - uid: 6121 components: - type: Transform - pos: 8.5,2.5 - parent: 2 - - uid: 3872 + pos: -12.5,-1.5 + parent: 5438 + - uid: 6122 components: - type: Transform - pos: 15.5,16.5 - parent: 2 -- proto: Recycler + pos: -12.5,0.5 + parent: 5438 +- proto: SignTelecomms entities: - - uid: 3873 + - uid: 4053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-3.5 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 parent: 2 -- proto: ReinforcedPlasmaWindow +- proto: SilverOre entities: - - uid: 3874 + - uid: 6123 + components: + - type: Transform + pos: 0.15753031,1.2937524 + parent: 5438 + - uid: 6124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.379753,1.4187524 + parent: 5438 + - uid: 6125 components: - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 3875 + rot: 3.141592653589793 rad + pos: 0.43530893,1.2381971 + parent: 5438 +- proto: Sink + entities: + - uid: 4054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,3.5 + rot: -1.5707963267948966 rad + pos: -22.5,4.5 parent: 2 - - uid: 3876 + - uid: 6126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,1.5 - parent: 2 - - uid: 3877 + pos: 7.5,-6.5 + parent: 5438 +- proto: SinkStemlessWater + entities: + - uid: 4055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,0.5 + rot: -1.5707963267948966 rad + pos: -17.5,10.5 parent: 2 - - uid: 3878 + - uid: 4056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-0.5 + pos: -12.5,4.5 parent: 2 - - uid: 3879 + - uid: 4057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 parent: 2 - - uid: 3880 + - uid: 4058 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-3.5 + pos: -4.5,18.5 parent: 2 - - uid: 3881 +- proto: SinkWide + entities: + - uid: 4059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-4.5 + rot: -1.5707963267948966 rad + pos: 25.5,-5.5 parent: 2 -- proto: ReinforcedWindow - entities: - - uid: 3882 + - uid: 4060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,7.5 + pos: 9.5,-9.5 parent: 2 - - uid: 3883 +- proto: SmartFridge + entities: + - uid: 4061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + pos: 4.5,10.5 parent: 2 - - uid: 3884 +- proto: SMESBasic + entities: + - uid: 4062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 + pos: 30.5,0.5 parent: 2 - - uid: 3885 + - uid: 4063 components: - type: Transform - pos: 19.5,16.5 + pos: 30.5,-0.5 parent: 2 - - uid: 3886 + - uid: 6897 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,8.5 - parent: 2 - - uid: 3887 + pos: -0.5,-2.5 + parent: 6685 + - uid: 8018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,18.5 - parent: 2 - - uid: 3888 + pos: 4.5,30.5 + parent: 7020 +- proto: SmokeGrenade + entities: + - uid: 6127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,18.5 - parent: 2 - - uid: 3889 + pos: 15.5,2.5 + parent: 5438 + - uid: 7079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 2 - - uid: 3890 + parent: 7078 + - type: Physics + canCollide: False + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + - uid: 7081 components: - type: Transform - pos: 19.5,17.5 - parent: 2 - - uid: 3891 + parent: 7080 + - type: Physics + canCollide: False + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + - uid: 7284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 2 - - uid: 3892 + parent: 7281 + - type: Physics + canCollide: False + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + - type: InsideEntityStorage + - uid: 8020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,17.5 - parent: 2 - - uid: 3893 + parent: 8019 + - type: Physics + canCollide: False + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + - uid: 8021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 2 - - uid: 3894 + pos: -13.819244,32.348515 + parent: 7020 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger +- proto: SnapPopBox + entities: + - uid: 232 components: - type: Transform - pos: 2.5,3.5 - parent: 2 - - uid: 3895 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SoapSyndie + entities: + - uid: 4064 components: - type: Transform - pos: 1.5,3.5 + pos: -17.499945,9.240566 parent: 2 - - uid: 3896 +- proto: SodaDispenser + entities: + - uid: 4065 components: - type: Transform - pos: 0.5,3.5 + rot: 3.141592653589793 rad + pos: 4.5,-14.5 parent: 2 - - uid: 3897 +- proto: SolidSecretDoor + entities: + - uid: 4066 components: - type: Transform - pos: -0.5,3.5 + pos: -26.5,-4.5 parent: 2 - - uid: 3898 + - uid: 4067 components: - type: Transform - pos: 5.5,6.5 + rot: -1.5707963267948966 rad + pos: -22.5,12.5 parent: 2 - - uid: 3899 +- proto: SpaceCash1000 + entities: + - uid: 230 components: - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 3900 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceHeater + entities: + - uid: 4068 components: - type: Transform - pos: 12.5,-1.5 + pos: 27.5,0.5 parent: 2 - - uid: 3901 +- proto: SpaceHeaterEnabled + entities: + - uid: 4069 components: - type: Transform - pos: -9.5,5.5 + pos: 4.5,42.5 parent: 2 - - uid: 3902 + - type: GasThermoMachine + targetTemperature: 308.15 +- proto: SpaceHeaterMachineCircuitBoard + entities: + - uid: 3266 components: - type: Transform - pos: -7.5,5.5 - parent: 2 - - uid: 3903 + parent: 3265 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpawnMobAlexander + entities: + - uid: 4070 components: - type: Transform - pos: 26.5,8.5 + pos: 8.5,-10.5 parent: 2 - - uid: 3904 +- proto: SpawnMobBandito + entities: + - uid: 4071 components: - type: Transform - pos: 19.5,-8.5 + pos: 11.5,-13.5 parent: 2 - - uid: 3905 +- proto: SpawnMobButterfly + entities: + - uid: 4072 components: - type: Transform - pos: 3.5,-5.5 + pos: -16.5,-3.5 parent: 2 - - uid: 3906 + - uid: 4073 components: - type: Transform - pos: 5.5,-5.5 + pos: -22.5,15.5 parent: 2 - - uid: 3907 + - uid: 4074 components: - type: Transform - pos: 12.5,-3.5 + pos: -30.5,2.5 parent: 2 - - uid: 3908 + - uid: 4075 components: - type: Transform - pos: 8.5,10.5 + pos: 3.5,-20.5 parent: 2 - - uid: 3909 + - uid: 4076 components: - type: Transform - pos: 8.5,6.5 + pos: 15.5,-20.5 parent: 2 - - uid: 3910 + - uid: 4077 components: - type: Transform - pos: 26.5,9.5 + pos: 19.5,-18.5 parent: 2 - - uid: 3911 + - uid: 4078 components: - type: Transform - pos: 12.5,2.5 + pos: 26.5,-17.5 parent: 2 - - uid: 3912 + - uid: 4079 components: - type: Transform - pos: 7.5,-8.5 + pos: 19.5,-10.5 parent: 2 - - uid: 3913 + - uid: 4080 components: - type: Transform - pos: 10.5,-11.5 + pos: 14.5,-13.5 parent: 2 - - uid: 3914 +- proto: SpawnMobCat + entities: + - uid: 4081 components: - type: Transform - pos: 8.5,-11.5 + pos: 0.5,24.5 parent: 2 - - uid: 3915 +- proto: SpawnMobCatBingus + entities: + - uid: 4082 components: - type: Transform - pos: 22.5,3.5 + pos: 17.5,15.5 parent: 2 - - uid: 3916 +- proto: SpawnMobCatKitten + entities: + - uid: 4083 components: - type: Transform - pos: 23.5,3.5 + pos: 1.5,24.5 parent: 2 - - uid: 3917 +- proto: SpawnMobCatRuntime + entities: + - uid: 4084 components: - type: Transform - pos: 24.5,3.5 + pos: 1.5,14.5 parent: 2 - - uid: 3918 +- proto: SpawnMobCorgi + entities: + - uid: 4085 components: - type: Transform - pos: 23.5,4.5 + pos: 4.5,-2.5 parent: 2 - - uid: 3919 +- proto: SpawnMobCrab + entities: + - uid: 4086 components: - type: Transform - pos: 23.5,5.5 + pos: -23.5,16.5 parent: 2 - - uid: 3920 + - uid: 4087 components: - type: Transform - pos: 18.5,-8.5 + pos: -6.5,26.5 parent: 2 - - uid: 3921 + - uid: 4088 components: - type: Transform - pos: 5.5,-11.5 + pos: -45.5,18.5 parent: 2 - - uid: 3922 +- proto: SpawnMobCrabAtmos + entities: + - uid: 4089 components: - type: Transform - pos: 12.5,18.5 + pos: 18.5,-10.5 parent: 2 - - uid: 3923 +- proto: SpawnMobFoxRenault + entities: + - uid: 4090 components: - type: Transform - pos: 7.5,-11.5 + pos: -2.5,0.5 parent: 2 - - uid: 3924 +- proto: SpawnMobLizard + entities: + - uid: 4091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 + pos: -21.5,-4.5 parent: 2 - - uid: 3925 + - uid: 4092 components: - type: Transform - pos: -5.5,19.5 + pos: 13.5,-14.5 parent: 2 - - uid: 3926 +- proto: SpawnMobMcGriff + entities: + - uid: 4093 components: - type: Transform - pos: -6.5,18.5 + pos: -9.5,21.5 parent: 2 - - uid: 3927 +- proto: SpawnMobMedibot + entities: + - uid: 6898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 2 - - uid: 3928 + pos: 1.5,6.5 + parent: 6685 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 4094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-14.5 + pos: 4.5,-13.5 parent: 2 - - uid: 3929 +- proto: SpawnMobPossumMorty + entities: + - uid: 4095 components: - type: Transform - pos: -6.5,19.5 + pos: -17.5,22.5 parent: 2 - - uid: 3930 +- proto: SpawnMobShiva + entities: + - uid: 4096 components: - type: Transform - pos: 12.5,-19.5 + pos: -10.5,15.5 parent: 2 - - uid: 3931 +- proto: SpawnMobSmile + entities: + - uid: 4097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,17.5 + pos: 19.5,-4.5 parent: 2 - - uid: 3932 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 8022 components: - type: Transform - pos: 9.5,-19.5 - parent: 2 - - uid: 3933 + pos: -9.5,21.5 + parent: 7020 + - uid: 8023 components: - type: Transform - pos: -29.5,-2.5 - parent: 2 - - uid: 3934 + pos: -6.5,20.5 + parent: 7020 +- proto: SpawnMobSyndicateFootSoldier + entities: + - uid: 6128 components: - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 3935 + pos: 3.5,9.5 + parent: 5438 + - uid: 6129 components: - type: Transform - pos: 25.5,16.5 - parent: 2 - - uid: 3936 + pos: 3.5,8.5 + parent: 5438 + - uid: 6130 components: - type: Transform - pos: -7.5,-5.5 - parent: 2 - - uid: 3937 + pos: 13.5,-6.5 + parent: 5438 + - uid: 6131 components: - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 3938 + pos: 14.5,6.5 + parent: 5438 +- proto: SpawnMobWalter + entities: + - uid: 4098 components: - type: Transform - pos: -5.5,18.5 + pos: 1.5,9.5 parent: 2 - - uid: 3939 +- proto: SpawnPointAtmos + entities: + - uid: 4099 components: - type: Transform - pos: 11.5,18.5 + pos: 23.5,1.5 parent: 2 - - uid: 3940 +- proto: SpawnPointBartender + entities: + - uid: 4100 components: - type: Transform - pos: -29.5,-0.5 + pos: 3.5,-13.5 parent: 2 - - uid: 3941 +- proto: SpawnPointBorg + entities: + - uid: 4101 components: - type: Transform - pos: 26.5,11.5 + pos: 20.5,-5.5 parent: 2 - - uid: 3942 +- proto: SpawnPointBotanist + entities: + - uid: 4102 components: - type: Transform - pos: 25.5,15.5 + pos: 9.5,-12.5 parent: 2 - - uid: 3943 +- proto: SpawnPointCaptain + entities: + - uid: 4103 components: - type: Transform - pos: 26.5,13.5 + pos: -3.5,0.5 parent: 2 - - uid: 3944 +- proto: SpawnPointCargoTechnician + entities: + - uid: 4104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: 19.5,9.5 parent: 2 - - uid: 3945 + - uid: 4105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-12.5 + pos: 29.5,16.5 parent: 2 - - uid: 3946 + - uid: 4106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 + pos: 30.5,11.5 parent: 2 - - uid: 3947 + - uid: 4107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-11.5 + pos: 29.5,6.5 parent: 2 - - uid: 3948 +- proto: SpawnPointChaplain + entities: + - uid: 5436 components: - type: Transform - pos: -2.5,16.5 + pos: -28.5,24.5 parent: 2 - - uid: 3949 + - uid: 5437 components: - type: Transform - pos: -3.5,16.5 + pos: -30.5,30.5 parent: 2 -- proto: ReinforcedWindowDiagonal +- proto: SpawnPointChef entities: - - uid: 3950 + - uid: 4108 components: - type: Transform - pos: -27.5,7.5 + pos: 10.5,-9.5 parent: 2 - - uid: 3951 +- proto: SpawnPointChemist + entities: + - uid: 4109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,7.5 + pos: 4.5,8.5 parent: 2 - - uid: 3952 +- proto: SpawnPointChiefEngineer + entities: + - uid: 4110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,8.5 + pos: 20.5,5.5 parent: 2 - - uid: 3953 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 4111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 + pos: 1.5,14.5 parent: 2 - - uid: 3954 +- proto: SpawnPointClown + entities: + - uid: 4112 components: - type: Transform - pos: -26.5,8.5 + pos: -18.5,5.5 parent: 2 - - uid: 3955 +- proto: SpawnPointDetective + entities: + - uid: 4113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,6.5 + pos: -14.5,10.5 parent: 2 - - uid: 3956 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 4114 components: - type: Transform - pos: -25.5,9.5 + pos: 8.5,-2.5 parent: 2 - - uid: 3957 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 4115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,17.5 + pos: -13.5,13.5 parent: 2 - - uid: 3958 +- proto: SpawnPointJanitor + entities: + - uid: 4116 components: - type: Transform - pos: 12.5,-18.5 + pos: -19.5,2.5 parent: 2 - - uid: 3959 +- proto: SpawnPointLawyer + entities: + - uid: 4117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-19.5 + pos: -12.5,9.5 parent: 2 -- proto: ResearchAndDevelopmentServer +- proto: SpawnPointLibrarian entities: - - uid: 3960 + - uid: 4118 components: - type: Transform - pos: 18.5,-4.5 + pos: -21.5,26.5 parent: 2 -- proto: RevolverCapGun +- proto: SpawnPointMedicalDoctor entities: - - uid: 3961 + - uid: 4119 components: - type: Transform - pos: -23.487305,8.623594 + pos: 1.5,12.5 parent: 2 -- proto: RiotBulletShield - entities: - - uid: 3962 + - uid: 4120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.366207,21.737194 + pos: 6.5,16.5 parent: 2 - - uid: 3963 +- proto: SpawnPointMedicalIntern + entities: + - uid: 4121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.220373,21.487194 + pos: 11.5,22.5 parent: 2 -- proto: RiotLaserShield +- proto: SpawnPointMime entities: - - uid: 3964 + - uid: 4122 components: - type: Transform - pos: -12.363872,21.667002 + pos: -18.5,0.5 parent: 2 - - uid: 3965 +- proto: SpawnPointMusician + entities: + - uid: 4123 components: - type: Transform - pos: -12.197205,21.39617 + pos: -15.5,6.5 parent: 2 -- proto: RobustHarvestChemistryBottle +- proto: SpawnPointObserver entities: - - uid: 3966 + - uid: 4124 components: - type: Transform - pos: 7.7908025,-14.50687 + pos: 1.5,0.5 parent: 2 - - uid: 3967 +- proto: SpawnPointParamedic + entities: + - uid: 4125 components: - type: Transform - pos: 7.7908025,-14.395759 + pos: 6.5,15.5 parent: 2 - - uid: 3968 +- proto: SpawnPointPassenger + entities: + - uid: 4126 components: - type: Transform - pos: 7.7908025,-14.242981 + pos: 8.5,1.5 parent: 2 -- proto: RollerBedSpawnFolded - entities: - - uid: 3264 + - uid: 4127 components: - type: Transform - parent: 3263 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3265 + pos: -14.5,1.5 + parent: 2 + - uid: 4128 components: - type: Transform - parent: 3263 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RollingPin + pos: 5.5,41.5 + parent: 2 +- proto: SpawnPointPsychologist entities: - - uid: 3969 + - uid: 4129 components: - type: Transform - pos: -50.512436,20.5742 + pos: 12.5,16.5 parent: 2 -- proto: RubberStampApproved +- proto: SpawnPointQuartermaster entities: - - uid: 3970 + - uid: 4130 components: - type: Transform - pos: 14.272758,7.9912057 + pos: 16.5,8.5 parent: 2 - - uid: 3971 +- proto: SpawnPointReporter + entities: + - uid: 4131 components: - type: Transform - pos: 7.337105,-1.5472101 + pos: -9.5,0.5 parent: 2 -- proto: RubberStampDenied +- proto: SpawnPointResearchAssistant entities: - - uid: 3972 + - uid: 4132 components: - type: Transform - pos: 14.675535,7.9912057 + pos: 14.5,-4.5 parent: 2 - - uid: 3973 + - uid: 4133 components: - type: Transform - pos: 7.6471786,-1.5472101 + pos: 14.5,-3.5 parent: 2 -- proto: RubberStampSyndicate +- proto: SpawnPointResearchDirector entities: - - uid: 3974 + - uid: 4134 components: - type: Transform - pos: -19.208584,11.879914 + pos: 19.5,-2.5 parent: 2 -- proto: SalvageFleshSpawner +- proto: SpawnPointSalvageSpecialist entities: - - uid: 6039 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 5384 - - uid: 6040 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 5384 - - uid: 6041 + - uid: 4135 components: - type: Transform - pos: 0.5,-10.5 - parent: 5384 - - uid: 6042 + pos: 16.5,16.5 + parent: 2 + - uid: 4136 components: - type: Transform - pos: 6.5,-7.5 - parent: 5384 - - uid: 6043 + pos: 21.5,26.5 + parent: 2 + - uid: 4137 components: - type: Transform - pos: -3.5,-2.5 - parent: 5384 - - uid: 6044 + pos: 23.5,15.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 4138 components: - type: Transform - pos: 1.5,0.5 - parent: 5384 - - uid: 6045 + pos: 16.5,-4.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 4139 components: - type: Transform - pos: 3.5,-1.5 - parent: 5384 - - uid: 6046 + pos: -4.5,17.5 + parent: 2 + - uid: 4140 components: - type: Transform - pos: -3.5,5.5 - parent: 5384 - - uid: 6047 + pos: -17.5,17.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 4141 components: - type: Transform - pos: 3.5,1.5 - parent: 5384 - - uid: 6048 + pos: -9.5,12.5 + parent: 2 + - uid: 4142 components: - type: Transform - pos: 5.5,-0.5 - parent: 5384 - - uid: 6049 + pos: -7.5,12.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 4143 components: - type: Transform - pos: 1.5,-1.5 - parent: 5384 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 6050 + pos: -25.5,-0.5 + parent: 2 + - uid: 4144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 5384 -- proto: SalvageMagnet + pos: -11.5,6.5 + parent: 2 +- proto: SpawnPointStationEngineer entities: - - uid: 3975 + - uid: 4145 components: - type: Transform - pos: 20.5,22.5 + pos: 15.5,1.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 6051 + - uid: 4146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.791827,-2.3056262 - parent: 5384 -- proto: SecurityTechFab + pos: 16.5,1.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant entities: - - uid: 3976 + - uid: 4147 components: - type: Transform - pos: -10.5,21.5 + pos: 16.5,4.5 parent: 2 -- proto: SeedExtractor - entities: - - uid: 3977 + - uid: 4148 components: - type: Transform - pos: 14.5,-12.5 + pos: 15.5,4.5 parent: 2 -- proto: ShardCrystalCyan +- proto: SpawnPointWarden entities: - - uid: 6052 + - uid: 4149 components: - - type: MetaData - desc: Кажется он не работает без палочки. - name: отколотый волшебный камень - type: Transform - rot: 3.141592653589793 rad - pos: 4.180303,-0.5256923 - parent: 5384 -- proto: ShardCrystalRed + pos: -8.5,19.5 + parent: 2 +- proto: SpiderWeb entities: - - uid: 6053 + - uid: 4150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.68513703,-3.3667705 - parent: 5384 - - uid: 6054 + pos: -28.5,17.5 + parent: 2 + - uid: 4151 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.6573586,-2.3667705 - parent: 5384 - - uid: 6055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.2268038,1.3276739 - parent: 5384 - - uid: 6056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.795529,2.5460513 - parent: 5384 - - uid: 6057 + pos: -26.5,5.5 + parent: 2 + - uid: 4152 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5690918,-3.105957 - parent: 5384 -- proto: ShardGlass - entities: - - uid: 3978 + pos: -22.5,4.5 + parent: 2 + - uid: 4153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.2066197,7.2743163 + pos: -32.5,23.5 parent: 2 - - uid: 3979 + - uid: 4154 components: - type: Transform - pos: -20.310213,11.132079 + pos: -29.5,20.5 parent: 2 -- proto: SheetBrass10 - entities: - - uid: 3980 + - uid: 4155 components: - type: Transform - pos: -23.318043,-6.510875 + pos: -28.5,18.5 parent: 2 -- proto: SheetGlass - entities: - - uid: 3981 + - uid: 4156 components: - type: Transform - pos: 15.670403,2.7492013 + pos: -18.5,21.5 parent: 2 - - uid: 3982 + - uid: 4157 components: - type: Transform - pos: 15.670403,2.7492013 + pos: -15.5,22.5 parent: 2 - - uid: 3983 + - uid: 4158 components: - type: Transform - pos: -15.465573,1.872766 + pos: 2.5,22.5 parent: 2 - - uid: 3984 + - uid: 4159 components: - type: Transform - pos: 16.524984,-1.5124708 + pos: -21.5,24.5 parent: 2 - - uid: 3985 + - uid: 4160 components: - type: Transform - pos: 16.524984,-1.5124708 + rot: -1.5707963267948966 rad + pos: -28.5,21.5 parent: 2 - - uid: 3986 + - uid: 4161 components: - type: Transform - pos: -20.65014,-0.43519402 + rot: -1.5707963267948966 rad + pos: -26.5,19.5 parent: 2 - - uid: 6058 + - uid: 4162 components: - type: Transform - pos: 15.749573,2.364502 - parent: 5384 -- proto: SheetPaper - entities: - - uid: 3987 + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 + - uid: 4163 components: - type: Transform - pos: 6.7473125,-5.4191527 + pos: -3.5,24.5 parent: 2 -- proto: SheetPGlass1 - entities: - - uid: 3988 + - uid: 4164 components: - type: Transform - pos: 26.66915,-3.35111 + pos: -2.5,25.5 parent: 2 - - type: Stack - count: 10 -- proto: SheetPlasma - entities: - - uid: 3989 + - uid: 4165 components: - type: Transform - pos: 16.524984,-2.3874707 + rot: 3.141592653589793 rad + pos: 3.5,21.5 parent: 2 -- proto: SheetPlasteel - entities: - - uid: 3990 + - uid: 4166 components: - type: Transform - pos: -15.507241,2.560266 + rot: 3.141592653589793 rad + pos: 4.5,21.5 parent: 2 - - uid: 3991 + - uid: 8024 components: - type: Transform - pos: 15.406513,2.693646 - parent: 2 - - uid: 3992 + pos: -4.5,21.5 + parent: 7020 + - uid: 8025 components: - type: Transform - pos: 15.406513,2.693646 - parent: 2 -- proto: SheetPlastic + pos: -4.5,20.5 + parent: 7020 + - uid: 8026 + components: + - type: Transform + pos: -7.5,21.5 + parent: 7020 +- proto: SpoonPlastic entities: - - uid: 3993 + - uid: 4167 components: - type: Transform - pos: 15.920403,2.5408678 + pos: -21.202547,15.472811 parent: 2 - - uid: 3994 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 4168 components: - type: Transform - pos: 15.920403,2.5408678 + pos: -20.5,1.5 parent: 2 - - uid: 3995 + - uid: 4169 components: - type: Transform - pos: 16.524984,-1.4916373 + pos: -20.5,1.5 parent: 2 - - uid: 3996 + - uid: 4170 components: - type: Transform - pos: 16.524984,-1.4916373 + pos: -20.5,1.5 parent: 2 -- proto: SheetPlastic10 - entities: - - uid: 3997 + - uid: 4171 components: - type: Transform - pos: -20.300823,-0.560194 + pos: -20.5,1.5 parent: 2 -- proto: SheetRGlass - entities: - - uid: 3998 + - uid: 4172 components: - type: Transform - pos: 16.128736,2.7075348 + pos: -20.5,1.5 parent: 2 - - uid: 3999 + - uid: 4173 components: - type: Transform - pos: 16.128736,2.7075348 + pos: -20.5,1.5 parent: 2 -- proto: SheetSteel +- proto: StairWood entities: - - uid: 4000 + - uid: 4174 components: - type: Transform - pos: -15.496823,2.3206825 + rot: 3.141592653589793 rad + pos: 4.5,39.5 parent: 2 - - uid: 4001 + - uid: 6899 components: - type: Transform - pos: 16.514568,-1.5228873 - parent: 2 - - uid: 4002 + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 6685 + - uid: 6900 components: - type: Transform - pos: 16.514568,-1.5228873 - parent: 2 - - uid: 4003 + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 6685 + - uid: 6901 components: - type: Transform - pos: 15.503736,2.5825348 - parent: 2 - - uid: 4004 + pos: 0.5,10.5 + parent: 6685 +- proto: StasisBed + entities: + - uid: 4175 components: - type: Transform - pos: 15.503736,2.5825348 + pos: 8.5,13.5 parent: 2 - - uid: 4005 + - uid: 4176 components: - type: Transform - pos: -15.496823,2.154016 + pos: 8.5,12.5 parent: 2 -- proto: SheetSteel1 +- proto: StationAnchorIndestructible entities: - - uid: 4006 + - uid: 4177 components: + - type: MetaData + desc: Не стоит её трогать + name: гравитационная аномалия - type: Transform - pos: 3.8472447,7.2118163 + pos: 21.5,-17.5 parent: 2 -- proto: SheetSteel10 + - type: Physics + canCollide: False + - type: Stealth + lastVisibility: -1 + - uid: 8027 + components: + - type: MetaData + desc: вероятно это просто перепад температур, ничего необычного + name: странная аномалия + - type: Transform + pos: -18.5,29.5 + parent: 7020 + - type: Physics + sleepingAllowed: False + - type: Stealth + lastVisibility: -1 +- proto: StationMap entities: - - uid: 4007 + - uid: 4178 components: - type: Transform - pos: -21.589046,-0.40394402 + pos: -10.5,-5.5 parent: 2 - - uid: 4008 + - uid: 4179 components: - type: Transform - pos: -10.452378,21.630438 + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 parent: 2 -- proto: Shovel - entities: - - uid: 4009 + - uid: 4180 components: - type: Transform - pos: 12.431193,19.466057 + pos: -3.5,6.5 parent: 2 -- proto: ShuttersRadiation - entities: - - uid: 4010 + - uid: 4181 components: - type: Transform - pos: 28.5,-1.5 + pos: -16.5,4.5 parent: 2 -- proto: SignalButton - entities: - - uid: 4011 + - uid: 8028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4010: - - Pressed: Toggle - - uid: 4012 + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 7020 +- proto: StationMapAssembly + entities: + - uid: 6132 components: - - type: MetaData - name: затворы окна - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,19.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 233: - - Pressed: Toggle - 234: - - Pressed: Toggle - 236: - - Pressed: Toggle - 235: - - Pressed: Toggle - - uid: 6059 + pos: 8.5,-3.5 + parent: 5438 + - uid: 6133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 5384 - - type: DeviceLinkSource - linkedPorts: - 5388: - - Pressed: DoorBolt - - uid: 6060 + pos: 5.5,11.5 + parent: 5438 +- proto: StationMapBroken + entities: + - uid: 6134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 5384 - - type: DeviceLinkSource - linkedPorts: - 5387: - - Pressed: DoorBolt - - uid: 6061 + pos: -4.5,0.5 + parent: 5438 + - uid: 6135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 5384 - - type: DeviceLinkSource - linkedPorts: - 5386: - - Pressed: DoorBolt -- proto: SignalButtonDirectional + pos: 8.5,-8.5 + parent: 5438 +- proto: SteelBench entities: - - uid: 4013 + - uid: 4182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 + pos: 25.5,-23.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 232: - - Pressed: Toggle - 231: - - Pressed: Toggle - 230: - - Pressed: Toggle - 229: - - Pressed: Toggle - - uid: 6062 + - uid: 4183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 5384 - - type: DeviceLinkSource - linkedPorts: - 5419: - - Pressed: Toggle - 5420: - - Pressed: Toggle - 5422: - - Pressed: Toggle - 5421: - - Pressed: Toggle - 5424: - - Pressed: Toggle - 5423: - - Pressed: Toggle -- proto: SignalTimer - entities: - - uid: 6842 + pos: 24.5,-23.5 + parent: 2 + - uid: 4184 components: - type: Transform - pos: -2.5,-1.5 - parent: 6631 - - type: SignalTimer - delay: 1200 - - type: DeviceLinkSource - linkedPorts: - 6796: - - Timer: Trigger - 6795: - - Timer: Trigger - 6794: - - Timer: Trigger - - type: DeviceLinkSink - invokeCounter: 1 -- proto: SignArmory + pos: 23.5,-23.5 + parent: 2 +- proto: SteelOre entities: - - uid: 6063 + - uid: 6136 + components: + - type: Transform + pos: 4.202737,-3.3733876 + parent: 5438 + - uid: 6137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 5384 -- proto: SignBar - entities: - - uid: 4014 + pos: 4.216626,-3.290054 + parent: 5438 + - uid: 6138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 2 -- proto: SignBridge + rot: 3.141592653589793 rad + pos: 4.466626,-3.1789434 + parent: 5438 +- proto: SteelOre1 entities: - - uid: 4015 + - uid: 4185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 + pos: 28.528198,19.41418 parent: 2 -- proto: SignCargoDock - entities: - - uid: 4016 + - uid: 4186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,6.5 + pos: 27.465698,19.367306 parent: 2 -- proto: SignChem - entities: - - uid: 4017 + - uid: 4187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 + pos: 27.543823,19.679806 parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 4018 + - uid: 4188 components: - type: Transform - pos: -7.5,-5.5 + pos: 28.231323,19.41418 parent: 2 - - uid: 4019 + - uid: 4189 components: - type: Transform - pos: 8.5,18.5 + pos: 28.746948,19.711056 parent: 2 -- proto: SignDangerMed +- proto: StoolBar entities: - - uid: 4020 + - uid: 4190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 + pos: -19.5,-4.5 parent: 2 - - uid: 6064 + - uid: 4191 components: - type: Transform - pos: 2.5,7.5 - parent: 5384 -- proto: SignDirectionalEvac - entities: - - uid: 4021 + pos: -18.5,-4.5 + parent: 2 + - uid: 4192 components: - type: Transform - pos: -14.5,-9.5 + pos: 3.5,-10.5 parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 4022 + - uid: 4193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,24.5 + pos: 1.5,-9.5 parent: 2 -- proto: SignDisposalSpace - entities: - - uid: 4023 + - uid: 4194 components: - type: Transform - pos: -29.5,0.5 + pos: 4.5,-10.5 parent: 2 -- proto: SignElectricalMed - entities: - - uid: 4024 + - uid: 4195 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,20.5 + pos: 3.5,-8.5 parent: 2 - - uid: 4025 + - uid: 4196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 + pos: 2.5,-10.5 parent: 2 -- proto: SignEngineering +- proto: Stunbaton entities: - - uid: 4026 + - uid: 3179 + components: + - type: Transform + parent: 3178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3180 + components: + - type: Transform + parent: 3178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3181 + components: + - type: Transform + parent: 3178 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationBasic + entities: + - uid: 6139 + components: + - type: Transform + pos: -2.5,6.5 + parent: 5438 + - uid: 6902 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 6685 + - uid: 8029 + components: + - type: Transform + pos: 4.5,29.5 + parent: 7020 + - uid: 8332 + components: + - type: Transform + pos: -6.5,0.5 + parent: 8267 +- proto: SubstationWallBasic + entities: + - uid: 4197 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,0.5 + pos: -22.5,25.5 parent: 2 - - uid: 6065 + - uid: 4198 components: - type: Transform - pos: -5.5,1.5 - parent: 5384 -- proto: SignEVA - entities: - - uid: 4027 + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - uid: 4199 components: + - type: MetaData + name: настенная подстанци(Бриг) - type: Transform - pos: 4.5,-16.5 + pos: -9.5,22.5 parent: 2 -- proto: SignFlammableMed - entities: - - uid: 4028 + - uid: 4200 components: - type: Transform - pos: 25.5,-9.5 + pos: 13.5,-0.5 parent: 2 -- proto: SignHead - entities: - - uid: 4029 + - uid: 4201 components: + - type: MetaData + name: настенная подстанция (Мостик) - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,12.5 + pos: 3.5,1.5 parent: 2 - - uid: 4030 + - uid: 4202 components: + - type: MetaData + name: настенная подстанция (Инженерный Отдел) - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,15.5 + rot: -1.5707963267948966 rad + pos: 18.5,3.5 parent: 2 - - uid: 4031 + - uid: 4203 components: + - type: MetaData + name: настенная подстанция (Медицинский отдел) - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,9.5 + rot: 3.141592653589793 rad + pos: 6.5,14.5 parent: 2 - - uid: 4032 + - uid: 4204 components: + - type: MetaData + name: настенная подстанция (Отдел Снабжения) - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,4.5 + rot: 3.141592653589793 rad + pos: 24.5,6.5 parent: 2 - - uid: 4033 + - uid: 4205 components: + - type: MetaData + name: настенная подстанция (Кухня) - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-3.5 + pos: 13.5,-8.5 parent: 2 -- proto: SignLibrary - entities: - - uid: 4034 + - uid: 4206 components: + - type: MetaData + name: настенная подстанция (Научный Отдел) - type: Transform - pos: -22.5,23.5 + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 parent: 2 -- proto: SignMedical - entities: - - uid: 4035 + - uid: 4207 + components: + - type: MetaData + name: настенная подстанция (Технические Тоннели) + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 4209 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,6.5 + pos: -11.5,2.5 parent: 2 -- proto: SignMorgue +- proto: SuitStorageBase entities: - - uid: 4036 + - uid: 1738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + pos: -47.5,21.5 parent: 2 -- proto: SignPsychology + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1739 + - 1740 + - 1741 + - 1743 + - 1742 + - uid: 5801 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 5438 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5803 + - 5802 + - 5805 + - 5804 + - uid: 6140 + components: + - type: Transform + pos: -10.5,0.5 + parent: 5438 +- proto: SuitStorageEVA entities: - - uid: 4037 + - uid: 4210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-0.5 + pos: 5.5,-18.5 parent: 2 -- proto: SignRadiationMed - entities: - - uid: 4038 + - uid: 4211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-1.5 + pos: 6.5,-18.5 parent: 2 -- proto: SignScience +- proto: SurveillanceCameraGeneral entities: - - uid: 4039 + - uid: 4212 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Сервис [Бар-Ресторан] + - uid: 4213 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-6.5 + pos: -16.5,-7.5 parent: 2 -- proto: SignSecureMed - entities: - - uid: 4040 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Общий [Вход в церковь] + - uid: 4214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,20.5 + pos: -8.5,-1.5 parent: 2 - - uid: 6066 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Медицинский [Психолог] + - uid: 4215 components: - type: Transform - pos: 8.5,8.5 - parent: 5384 - - uid: 6067 + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Бриг [Приёмная] + - uid: 4216 components: - type: Transform - pos: -12.5,-1.5 - parent: 5384 - - uid: 6068 + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Медбей [Химия] + - uid: 4217 components: - type: Transform - pos: -12.5,0.5 - parent: 5384 -- proto: SignTelecomms - entities: - - uid: 4041 + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 + - type: SurveillanceCamera + id: Бриг [КПП] + - uid: 4218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 + rot: 3.141592653589793 rad + pos: -15.5,11.5 parent: 2 -- proto: SilverOre - entities: - - uid: 6069 + - type: SurveillanceCamera + id: Бриг [Каюта детектива] + - uid: 4219 components: - type: Transform - pos: 0.15753031,1.2937524 - parent: 5384 - - uid: 6070 + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - type: SurveillanceCamera + id: Бриг [Каюта АВД] + - uid: 4220 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.379753,1.4187524 - parent: 5384 - - uid: 6071 + pos: -15.5,7.5 + parent: 2 + - type: SurveillanceCamera + id: Сервис [Каюта музыканта] + - uid: 4221 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.43530893,1.2381971 - parent: 5384 -- proto: Sink - entities: - - uid: 4042 + pos: -18.5,6.5 + parent: 2 + - type: SurveillanceCamera + id: Сервис [Каюта клоуна] + - uid: 4222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,4.5 + rot: 3.141592653589793 rad + pos: -20.5,3.5 parent: 2 - - uid: 6072 + - type: SurveillanceCamera + id: Сервис [Каюта уборщика] + - uid: 4223 components: - type: Transform - pos: 7.5,-6.5 - parent: 5384 -- proto: SinkStemlessWater - entities: - - uid: 4043 + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 2 + - type: SurveillanceCamera + id: Сервис [Каюта мима] + - uid: 4224 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,10.5 + pos: -15.5,1.5 parent: 2 - - uid: 4044 + - type: SurveillanceCamera + id: Сервис [Общая мастерская] + - uid: 4225 components: - type: Transform - pos: -12.5,4.5 + rot: 3.141592653589793 rad + pos: -9.5,1.5 parent: 2 - - uid: 4045 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Сервис [Репортёр] + - uid: 4226 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-5.5 + pos: -3.5,-2.5 parent: 2 - - uid: 4046 + - type: SurveillanceCamera + id: Мостик [Серверная] + - uid: 4227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,18.5 + rot: 3.141592653589793 rad + pos: -3.5,1.5 parent: 2 -- proto: SinkWide - entities: - - uid: 4047 + - type: SurveillanceCamera + id: Мостик [Каюта капитана] + - uid: 4228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 + rot: 3.141592653589793 rad + pos: 7.5,-1.5 parent: 2 - - uid: 4048 + - type: SurveillanceCamera + id: Мостик [Каюта ГП] + - uid: 4229 components: - type: Transform - pos: 9.5,-9.5 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 parent: 2 - - uid: 4049 + - type: SurveillanceCamera + id: Мостик [Кабинет ГП] + - uid: 4230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,18.5 + rot: -1.5707963267948966 rad + pos: 4.5,1.5 parent: 2 -- proto: SmartFridge - entities: - - uid: 4050 + - type: SurveillanceCamera + id: Мостик [Хранилище] + - uid: 4231 components: - type: Transform - pos: 4.5,10.5 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 parent: 2 -- proto: SMESBasic - entities: - - uid: 4051 + - type: SurveillanceCamera + id: Мостик [Общий] + - uid: 4232 components: - type: Transform - pos: 30.5,0.5 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 parent: 2 - - uid: 4052 + - type: SurveillanceCamera + id: Мостик [Вход] + - uid: 4233 components: - type: Transform - pos: 30.5,-0.5 + rot: 3.141592653589793 rad + pos: 15.5,-8.5 parent: 2 - - uid: 6843 + - type: SurveillanceCamera + id: Сервис [Холодильник] + - uid: 4234 components: - type: Transform - pos: -0.5,-2.5 - parent: 6631 -- proto: SmokeGrenade - entities: - - uid: 6073 + rot: 1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Сервис [Кухня] + - uid: 4235 components: - type: Transform - pos: 15.5,2.5 - parent: 5384 -- proto: SnapPopBox - entities: - - uid: 224 + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Сервис [Гидропоника] + - uid: 4236 components: - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SoapSyndie - entities: - - uid: 4053 + pos: 3.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Сервис [Бар №1] + - uid: 4237 components: - type: Transform - pos: -17.499945,9.240566 + rot: 3.141592653589793 rad + pos: 15.5,-1.5 parent: 2 -- proto: SodaDispenser - entities: - - uid: 1322 + - type: SurveillanceCamera + id: Научный [Мастерская] + - uid: 4238 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-5.5 + pos: 18.5,-1.5 parent: 2 - - uid: 4054 + - type: SurveillanceCamera + id: Научный [Каюта НР] + - uid: 4239 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-14.5 + pos: 20.5,-4.5 parent: 2 -- proto: SolidSecretDoor - entities: - - uid: 4055 + - type: SurveillanceCamera + id: Научный [Исследовательская №1] + - uid: 4240 components: - type: Transform - pos: -26.5,-4.5 + rot: 3.141592653589793 rad + pos: 15.5,5.5 parent: 2 - - uid: 4056 + - type: SurveillanceCamera + id: Инженерный [Склад] + - uid: 4241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,12.5 + pos: 19.5,1.5 parent: 2 -- proto: SpaceCash1000 - entities: - - uid: 225 - components: - - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceCash500 - entities: - - uid: 4057 + - type: SurveillanceCamera + id: Инженерный [Атмос] + - uid: 4242 components: - type: Transform - pos: -23.399048,7.6021953 + rot: 3.141592653589793 rad + pos: 19.5,6.5 parent: 2 - - uid: 4058 + - type: SurveillanceCamera + id: Инженерный [Каюта СИ] + - uid: 4243 components: - type: Transform - pos: -23.510159,7.713306 + rot: -1.5707963267948966 rad + pos: 10.5,8.5 parent: 2 -- proto: SpaceHeater - entities: - - uid: 4059 + - type: SurveillanceCamera + id: Снабжение [Приёмная] + - uid: 4244 components: - type: Transform - pos: 27.5,0.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 2 -- proto: SpaceHeaterEnabled - entities: - - uid: 4060 + - type: SurveillanceCamera + id: Снабжение [Склад №1] + - uid: 4245 components: - type: Transform - pos: 4.5,42.5 + rot: 1.5707963267948966 rad + pos: 25.5,11.5 parent: 2 - - type: GasThermoMachine - targetTemperature: 308.15 -- proto: SpaceHeaterMachineCircuitBoard - entities: - - uid: 3244 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Снабжение [Склад №2] + - uid: 4246 components: - type: Transform - parent: 3243 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpawnMobAlexander - entities: - - uid: 4061 + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - type: SurveillanceCamera + id: Снабжение [Кабинет КМ] + - uid: 4247 components: - type: Transform - pos: 8.5,-10.5 + pos: 23.5,18.5 parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 4062 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Снабжение [Стыковка утилизаторов] + - type: ActiveUserInterface + - uid: 4248 components: - type: Transform - pos: 11.5,-13.5 + rot: -1.5707963267948966 rad + pos: 5.5,17.5 parent: 2 -- proto: SpawnMobButterfly - entities: - - uid: 4063 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Медбей [Склад] + - uid: 4249 components: - type: Transform - pos: -16.5,-3.5 + rot: 3.141592653589793 rad + pos: 11.5,17.5 parent: 2 - - uid: 4064 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Медбей [Комната отдыха] + - uid: 4250 components: - type: Transform - pos: -22.5,15.5 + rot: 1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 - - uid: 4065 + - type: SurveillanceCamera + id: Медицинский [Приёмная] + - uid: 4251 components: - type: Transform - pos: -30.5,2.5 + rot: -1.5707963267948966 rad + pos: 0.5,12.5 parent: 2 - - uid: 4066 + - type: SurveillanceCamera + id: Медбей [Палаты №1] + - uid: 4252 components: - type: Transform - pos: 3.5,-20.5 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 parent: 2 - - uid: 4067 + - type: SurveillanceCamera + id: Медбей [Ожидание] + - uid: 4253 components: - type: Transform - pos: 15.5,-20.5 + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 parent: 2 - - uid: 4068 + - type: SurveillanceCamera + id: Общий [Мусоросброс] + - uid: 4254 components: - type: Transform - pos: 19.5,-18.5 + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 parent: 2 - - uid: 4069 + - type: SurveillanceCamera + id: Общий [Отбытие] + - uid: 4255 components: - type: Transform - pos: 26.5,-17.5 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 parent: 2 - - uid: 4070 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Общий [Стойка ГП] + - type: ActiveUserInterface + - uid: 4256 components: - type: Transform - pos: 19.5,-10.5 + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 parent: 2 - - uid: 4071 + - type: SurveillanceCamera + id: Общий [Стойка РнД] + - uid: 4257 components: - type: Transform - pos: 14.5,-13.5 + rot: -1.5707963267948966 rad + pos: 8.5,1.5 parent: 2 -- proto: SpawnMobCat - entities: - - uid: 4072 + - type: SurveillanceCamera + id: Общий [Стойка инженерного] + - uid: 4258 components: - type: Transform - pos: 0.5,24.5 + pos: 4.5,4.5 parent: 2 -- proto: SpawnMobCatBingus - entities: - - uid: 4073 + - type: SurveillanceCamera + id: Общий [Стойка химии] + - uid: 4259 components: - type: Transform - pos: 17.5,15.5 + rot: 3.141592653589793 rad + pos: -4.5,5.5 parent: 2 -- proto: SpawnMobCatKitten - entities: - - uid: 4074 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: Общий [Вход в бриг] + - uid: 4260 components: - type: Transform - pos: 1.5,24.5 + rot: 3.141592653589793 rad + pos: -14.5,4.5 parent: 2 -- proto: SpawnMobCatRuntime - entities: - - uid: 4075 + - type: SurveillanceCamera + id: Общий [Дормы] + - uid: 4261 components: - type: Transform - pos: 1.5,14.5 + pos: 9.5,19.5 parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 4076 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Медбей [Кладбище] + - uid: 4262 components: - type: Transform - pos: 4.5,-2.5 + pos: -0.5,17.5 parent: 2 -- proto: SpawnMobCrab - entities: - - uid: 4077 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Бриг [Камера] + - uid: 6141 components: - type: Transform - pos: -23.5,16.5 - parent: 2 - - uid: 4078 + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 5438 + - uid: 6142 components: - type: Transform - pos: -6.5,26.5 - parent: 2 - - uid: 4079 + pos: 2.5,-3.5 + parent: 5438 + - uid: 6143 components: - type: Transform - pos: -45.5,18.5 - parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 4080 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 5438 + - uid: 6144 components: - type: Transform - pos: 18.5,-10.5 - parent: 2 -- proto: SpawnMobFoxRenault + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 5438 +- proto: SurveillanceCameraMedical entities: - - uid: 4081 + - uid: 4263 components: - type: Transform - pos: -2.5,0.5 + rot: 3.141592653589793 rad + pos: 0.5,9.5 parent: 2 -- proto: SpawnMobLizard + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: МЕД- ХимЛаб +- proto: SurveillanceCameraRouterGeneral entities: - - uid: 4082 + - uid: 4264 components: - type: Transform - pos: -21.5,-4.5 + pos: -2.5,-4.5 parent: 2 - - uid: 4083 + - uid: 6145 components: - type: Transform - pos: 13.5,-14.5 - parent: 2 -- proto: SpawnMobMcGriff + pos: 13.5,8.5 + parent: 5438 +- proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 4084 + - uid: 4265 components: - type: Transform - pos: -9.5,21.5 + pos: -3.5,-2.5 parent: 2 -- proto: SpawnMobMedibot +- proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 6844 + - uid: 4266 components: - type: Transform - pos: 1.5,6.5 - parent: 6631 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 4085 + pos: -8.5,1.5 + parent: 2 + - uid: 4267 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-13.5 + pos: -25.5,6.5 parent: 2 -- proto: SpawnMobPossumMorty +- proto: SyndicateJawsOfLife entities: - - uid: 4086 + - uid: 6146 components: - type: Transform - pos: -17.5,22.5 - parent: 2 -- proto: SpawnMobShiva + pos: 4.5,-5.5 + parent: 5438 +- proto: SyndieFlag entities: - - uid: 4087 + - uid: 4268 components: - type: Transform - pos: -10.5,15.5 + pos: -18.5,9.5 parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 4088 + - uid: 6147 components: - type: Transform - pos: 19.5,-4.5 - parent: 2 -- proto: SpawnMobSyndicateFootSoldier - entities: - - uid: 6074 + pos: 11.5,-0.5 + parent: 5438 + - uid: 6148 components: - type: Transform - pos: 3.5,9.5 - parent: 5384 - - uid: 6075 + pos: -2.5,-5.5 + parent: 5438 + - uid: 6149 components: - type: Transform - pos: 3.5,8.5 - parent: 5384 - - uid: 6076 + pos: 7.5,10.5 + parent: 5438 + - uid: 6150 components: - type: Transform - pos: 13.5,-6.5 - parent: 5384 - - uid: 6077 + pos: -9.5,0.5 + parent: 5438 +- proto: SyndieHandyFlag + entities: + - uid: 8030 components: - type: Transform - pos: 14.5,6.5 - parent: 5384 -- proto: SpawnMobWalter + pos: -20.46875,27.539043 + parent: 7020 +- proto: Table entities: - - uid: 4089 + - uid: 4269 components: - type: Transform - pos: 1.5,9.5 + rot: -1.5707963267948966 rad + pos: 19.5,-7.5 parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 4090 + - uid: 4270 components: - type: Transform - pos: 23.5,1.5 + rot: -1.5707963267948966 rad + pos: 14.5,7.5 parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 4091 + - uid: 4271 components: - type: Transform - pos: 3.5,-13.5 + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 4092 + - uid: 4272 components: - type: Transform - pos: 20.5,-5.5 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 4093 + - uid: 4273 components: - type: Transform - pos: 9.5,-12.5 + rot: -1.5707963267948966 rad + pos: 14.5,8.5 parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 4094 + - uid: 4274 components: - type: Transform - pos: -3.5,0.5 + pos: 13.5,2.5 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 4095 + - uid: 4275 components: - type: Transform - pos: 19.5,9.5 + rot: -1.5707963267948966 rad + pos: -7.5,8.5 parent: 2 - - uid: 4096 + - uid: 4276 components: - type: Transform - pos: 29.5,16.5 + rot: 3.141592653589793 rad + pos: -11.5,8.5 parent: 2 - - uid: 4097 + - uid: 4277 components: - type: Transform - pos: 30.5,11.5 + pos: -15.5,0.5 parent: 2 - - uid: 4098 + - uid: 4278 components: - type: Transform - pos: 29.5,6.5 + pos: -15.5,1.5 parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 4099 + - uid: 4279 components: - type: Transform - pos: -23.5,-7.5 + pos: -15.5,2.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 4100 + - uid: 4280 components: - type: Transform - pos: 10.5,-9.5 + pos: -26.5,4.5 parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 4101 + - uid: 4281 components: - type: Transform - pos: 4.5,8.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 4102 + - uid: 4282 components: - type: Transform - pos: 20.5,5.5 + pos: 20.5,-7.5 parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 4103 + - uid: 6151 components: - type: Transform - pos: 1.5,14.5 - parent: 2 -- proto: SpawnPointClown - entities: - - uid: 4104 + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 5438 + - uid: 6152 components: - type: Transform - pos: -18.5,5.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 4105 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 5438 + - uid: 6153 components: - type: Transform - pos: -14.5,10.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 4106 + pos: 8.5,-12.5 + parent: 5438 + - uid: 6154 components: - type: Transform - pos: 8.5,-2.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 4107 + pos: 9.5,-12.5 + parent: 5438 + - uid: 6155 components: - type: Transform - pos: -13.5,13.5 - parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 4108 + pos: 9.5,-10.5 + parent: 5438 + - uid: 6156 components: - type: Transform - pos: -19.5,2.5 - parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 4109 + pos: 8.5,-10.5 + parent: 5438 + - uid: 6157 components: - type: Transform - pos: -12.5,9.5 - parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 4110 + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 5438 + - uid: 6158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 5438 + - uid: 6159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 5438 + - uid: 6160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 5438 + - uid: 6161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 5438 + - uid: 6162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 5438 + - uid: 6163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 5438 + - uid: 6903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 6685 + - uid: 6904 components: - type: Transform - pos: -21.5,26.5 - parent: 2 -- proto: SpawnPointMedicalDoctor + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 6685 +- proto: TableCarpet entities: - - uid: 4111 + - uid: 4283 components: - type: Transform - pos: 1.5,12.5 + pos: 16.5,17.5 parent: 2 - - uid: 4112 + - uid: 4284 components: - type: Transform - pos: 6.5,16.5 + pos: 15.5,17.5 parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 4113 + - uid: 4285 components: - type: Transform - pos: 11.5,22.5 + pos: 17.5,17.5 parent: 2 -- proto: SpawnPointMime - entities: - - uid: 4114 + - uid: 4286 components: - type: Transform - pos: -18.5,0.5 + rot: 3.141592653589793 rad + pos: -10.5,1.5 parent: 2 -- proto: SpawnPointMusician +- proto: TableCounterMetal entities: - - uid: 4115 + - uid: 4287 components: - type: Transform - pos: -15.5,6.5 + pos: 25.5,-25.5 parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 4116 + - uid: 4288 components: - type: Transform - pos: 1.5,0.5 + pos: -13.5,24.5 parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 4117 + - uid: 4289 components: - type: Transform - pos: 6.5,15.5 + pos: -12.5,24.5 parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 4118 + - uid: 6905 components: - type: Transform - pos: -49.5,18.5 - parent: 2 - - uid: 4119 + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 6685 + - uid: 6906 components: - type: Transform - pos: 8.5,1.5 - parent: 2 - - uid: 4120 + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 6685 +- proto: TableCounterWood + entities: + - uid: 4290 components: - type: Transform - pos: -14.5,1.5 + pos: -18.5,24.5 parent: 2 - - uid: 4121 + - uid: 4291 components: - type: Transform - pos: -29.5,31.5 + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 parent: 2 - - uid: 4122 + - uid: 4292 components: - type: Transform - pos: 5.5,41.5 + pos: -19.5,24.5 parent: 2 -- proto: SpawnPointPsychologist - entities: - - uid: 4123 + - uid: 4293 components: - type: Transform - pos: 12.5,16.5 + rot: -1.5707963267948966 rad + pos: -21.5,10.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 4124 + - uid: 4294 components: - type: Transform - pos: 16.5,8.5 + pos: -21.5,24.5 parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 4125 + - uid: 4295 components: - type: Transform - pos: -9.5,0.5 + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 4126 + - uid: 4296 components: - type: Transform - pos: 14.5,-4.5 + pos: -29.5,29.5 parent: 2 - - uid: 4127 + - uid: 4297 components: - type: Transform - pos: 14.5,-3.5 + pos: -30.5,29.5 parent: 2 -- proto: SpawnPointResearchDirector +- proto: TableFancyBlack entities: - - uid: 4128 + - uid: 4298 components: - type: Transform - pos: 19.5,-2.5 + pos: -18.5,-5.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 4129 + - uid: 4299 components: - type: Transform - pos: 16.5,16.5 + pos: -13.5,-1.5 parent: 2 - - uid: 4130 + - uid: 4300 components: - type: Transform - pos: 21.5,26.5 + pos: -19.5,-5.5 parent: 2 - - uid: 4131 + - uid: 4301 components: - type: Transform - pos: 23.5,15.5 + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 4132 + - uid: 4302 components: - type: Transform - pos: 16.5,-4.5 + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 4133 + - uid: 4303 components: - type: Transform - pos: -4.5,17.5 + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 parent: 2 - - uid: 4134 + - uid: 4304 components: - type: Transform - pos: -17.5,17.5 + pos: 1.5,-12.5 parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 4135 + - uid: 4305 components: - type: Transform - pos: -9.5,12.5 + pos: 1.5,-13.5 parent: 2 - - uid: 4136 + - uid: 4306 components: - type: Transform - pos: -7.5,12.5 + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 parent: 2 -- proto: SpawnPointServiceWorker +- proto: TableFancyGreen entities: - - uid: 4137 + - uid: 4307 components: - type: Transform - pos: -25.5,-0.5 + pos: 11.5,-6.5 parent: 2 - - uid: 4138 + - uid: 4308 components: - type: Transform - pos: -11.5,6.5 + pos: 7.5,3.5 parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 4139 + - uid: 4309 components: - type: Transform - pos: 15.5,1.5 + pos: -2.5,3.5 parent: 2 - - uid: 4140 +- proto: TableFancyRed + entities: + - uid: 4310 components: - type: Transform - pos: 16.5,1.5 + rot: -1.5707963267948966 rad + pos: -24.5,-6.5 parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 4141 + - uid: 4311 components: - type: Transform - pos: 16.5,4.5 + rot: -1.5707963267948966 rad + pos: -24.5,-7.5 parent: 2 - - uid: 4142 + - uid: 4312 components: - type: Transform - pos: 15.5,4.5 + rot: 1.5707963267948966 rad + pos: -23.5,6.5 parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 4143 + - uid: 4313 components: - type: Transform - pos: -8.5,19.5 + rot: 1.5707963267948966 rad + pos: -23.5,7.5 parent: 2 -- proto: SpearBone - entities: - - uid: 4144 + - uid: 4314 components: - type: Transform - pos: -24.443043,-7.354625 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 parent: 2 -- proto: SpeedLoaderCap - entities: - - uid: 4145 + - uid: 4315 components: - type: Transform - pos: -23.256245,8.404844 + rot: 3.141592653589793 rad + pos: 1.5,-10.5 parent: 2 -- proto: SpiderWeb +- proto: TableGlass entities: - - uid: 4146 + - uid: 4316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,21.5 + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 parent: 2 - - uid: 4147 + - uid: 4317 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,21.5 + pos: -1.5,-19.5 parent: 2 - - uid: 4148 + - uid: 4318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,21.5 + rot: 3.141592653589793 rad + pos: -11.5,-11.5 parent: 2 - - uid: 4149 +- proto: TablePlasmaGlass + entities: + - uid: 4319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,21.5 + pos: -28.5,-5.5 parent: 2 - - uid: 4150 + - uid: 4320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,21.5 + pos: -28.5,-6.5 parent: 2 - - uid: 4151 +- proto: TableReinforced + entities: + - uid: 4321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,21.5 + pos: -54.5,20.5 parent: 2 - - uid: 4152 + - uid: 4322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,21.5 + pos: -53.5,20.5 parent: 2 - - uid: 4153 + - uid: 4323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,21.5 + pos: 21.5,9.5 parent: 2 - - uid: 4154 + - uid: 4324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,21.5 + pos: 21.5,8.5 parent: 2 -- proto: SpoonPlastic - entities: - - uid: 4155 + - uid: 4325 components: - type: Transform - pos: -21.202547,15.472811 + pos: -18.5,-0.5 parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 4156 + - uid: 4326 components: - type: Transform - pos: -20.5,1.5 + pos: 17.5,13.5 parent: 2 - - uid: 4157 + - uid: 4327 components: - type: Transform - pos: -20.5,1.5 + pos: 20.5,13.5 parent: 2 - - uid: 4158 + - uid: 4328 components: - type: Transform - pos: -20.5,1.5 + pos: 23.5,-7.5 parent: 2 - - uid: 4159 + - uid: 4329 components: - type: Transform - pos: -20.5,1.5 + rot: 1.5707963267948966 rad + pos: -17.5,18.5 parent: 2 - - uid: 4160 + - uid: 4330 components: - type: Transform - pos: -20.5,1.5 + rot: -1.5707963267948966 rad + pos: -7.5,20.5 parent: 2 - - uid: 4161 + - uid: 4331 components: - type: Transform - pos: -20.5,1.5 + rot: 3.141592653589793 rad + pos: 1.5,7.5 parent: 2 -- proto: StairWood - entities: - - uid: 4162 + - uid: 4332 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,39.5 + pos: 16.5,-2.5 parent: 2 - - uid: 6845 + - uid: 4333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 6631 - - uid: 6846 + rot: 3.141592653589793 rad + pos: 16.5,-3.5 + parent: 2 + - uid: 4334 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 6631 - - uid: 6847 + pos: -7.5,-3.5 + parent: 2 + - uid: 4335 components: - type: Transform - pos: 0.5,10.5 - parent: 6631 -- proto: StasisBed - entities: - - uid: 4163 + pos: 23.5,-6.5 + parent: 2 + - uid: 4336 components: - type: Transform - pos: 8.5,13.5 + rot: 3.141592653589793 rad + pos: 11.5,-8.5 parent: 2 - - uid: 4164 + - uid: 4337 components: - type: Transform - pos: 8.5,12.5 + pos: 12.5,-2.5 parent: 2 -- proto: StationAnchorIndestructible - entities: - - uid: 4165 + - uid: 4338 components: - - type: MetaData - desc: Не стоит её трогать - name: гравитационная аномалия - type: Transform - pos: 21.5,-17.5 + rot: 3.141592653589793 rad + pos: 12.5,9.5 parent: 2 - - type: Physics - canCollide: False - - type: Stealth - lastVisibility: -1 -- proto: StationMap - entities: - - uid: 4166 + - uid: 4339 components: - type: Transform - pos: -10.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,7.5 parent: 2 - - uid: 4167 + - uid: 4340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 + rot: 3.141592653589793 rad + pos: 12.5,8.5 parent: 2 - - uid: 4168 + - uid: 4341 components: - type: Transform - pos: -3.5,6.5 + rot: 1.5707963267948966 rad + pos: 13.5,13.5 parent: 2 - - uid: 4169 + - uid: 4342 components: - type: Transform - pos: -16.5,4.5 + rot: 1.5707963267948966 rad + pos: 13.5,14.5 parent: 2 -- proto: StationMapAssembly - entities: - - uid: 6078 + - uid: 4343 components: - type: Transform - pos: 8.5,-3.5 - parent: 5384 - - uid: 6079 + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 2 + - uid: 4344 components: - type: Transform - pos: 5.5,11.5 - parent: 5384 -- proto: StationMapBroken - entities: - - uid: 6080 + rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 4345 components: - type: Transform - pos: -4.5,0.5 - parent: 5384 - - uid: 6081 + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 2 + - uid: 4346 components: - type: Transform - pos: 8.5,-8.5 - parent: 5384 -- proto: SteelBench - entities: - - uid: 4170 + pos: 16.5,2.5 + parent: 2 + - uid: 4347 components: - type: Transform - pos: 25.5,-23.5 + pos: 15.5,2.5 parent: 2 - - uid: 4171 + - uid: 4348 components: - type: Transform - pos: 24.5,-23.5 + pos: 13.5,5.5 parent: 2 - - uid: 4172 + - uid: 4349 components: - type: Transform - pos: 23.5,-23.5 + pos: 15.5,3.5 parent: 2 -- proto: SteelOre - entities: - - uid: 6082 + - uid: 4350 components: - type: Transform - pos: 4.202737,-3.3733876 - parent: 5384 - - uid: 6083 + pos: 16.5,3.5 + parent: 2 + - uid: 4351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.216626,-3.290054 - parent: 5384 - - uid: 6084 + pos: 14.5,-10.5 + parent: 2 + - uid: 4352 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.466626,-3.1789434 - parent: 5384 -- proto: SteelOre1 - entities: - - uid: 4173 - components: - - type: Transform - pos: 28.528198,19.41418 + pos: 7.5,-9.5 parent: 2 - - uid: 4174 + - uid: 4353 components: - type: Transform - pos: 27.465698,19.367306 + rot: 3.141592653589793 rad + pos: 7.5,-10.5 parent: 2 - - uid: 4175 + - uid: 4354 components: - type: Transform - pos: 27.543823,19.679806 + rot: 3.141592653589793 rad + pos: 10.5,-8.5 parent: 2 - - uid: 4176 + - uid: 4355 components: - type: Transform - pos: 28.231323,19.41418 + pos: 7.5,-14.5 parent: 2 - - uid: 4177 + - uid: 4356 components: - type: Transform - pos: 28.746948,19.711056 + pos: 2.5,2.5 parent: 2 -- proto: StoolBar - entities: - - uid: 4178 + - uid: 4357 components: - type: Transform - pos: -19.5,-4.5 + pos: -0.5,2.5 parent: 2 - - uid: 4179 + - uid: 4358 components: - type: Transform - pos: -18.5,-4.5 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 parent: 2 - - uid: 4180 + - uid: 4359 components: - type: Transform - pos: 3.5,-10.5 + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 parent: 2 - - uid: 4181 + - uid: 4360 components: - type: Transform - pos: 1.5,-9.5 + pos: 7.5,-1.5 parent: 2 - - uid: 4182 + - uid: 4361 components: - type: Transform - pos: 4.5,-10.5 + pos: 6.5,0.5 parent: 2 - - uid: 4183 + - uid: 4362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 + pos: 6.5,1.5 parent: 2 - - uid: 4184 + - uid: 4363 components: - type: Transform - pos: 2.5,-10.5 + pos: 5.5,-0.5 parent: 2 -- proto: Stunbaton - entities: - - uid: 3157 + - uid: 4364 components: - type: Transform - parent: 3156 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3158 + pos: 4.5,-0.5 + parent: 2 + - uid: 4365 components: - type: Transform - parent: 3156 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3159 + rot: 3.141592653589793 rad + pos: -17.5,6.5 + parent: 2 + - uid: 4366 components: - type: Transform - parent: 3156 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SubstationBasic - entities: - - uid: 6085 + pos: 0.5,7.5 + parent: 2 + - uid: 4367 components: - type: Transform - pos: -2.5,6.5 - parent: 5384 - - uid: 6848 + pos: 0.5,9.5 + parent: 2 + - uid: 4368 components: - type: Transform - pos: -0.5,-1.5 - parent: 6631 -- proto: SubstationWallBasic - entities: - - uid: 4185 + pos: 0.5,8.5 + parent: 2 + - uid: 4369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,25.5 + rot: 3.141592653589793 rad + pos: 16.5,-1.5 parent: 2 - - uid: 4186 + - uid: 4370 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-9.5 + pos: -8.5,17.5 parent: 2 - - uid: 4187 + - uid: 4371 components: - - type: MetaData - name: настенная подстанци(Бриг) - type: Transform - pos: -9.5,22.5 + pos: -7.5,19.5 parent: 2 - - uid: 4188 + - uid: 4372 components: - type: Transform - pos: 13.5,-0.5 + pos: 12.5,19.5 parent: 2 - - uid: 4189 + - uid: 4373 components: - - type: MetaData - name: настенная подстанция (Мостик) - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 + pos: 5.5,8.5 parent: 2 - - uid: 4190 + - uid: 4374 components: - - type: MetaData - name: настенная подстанция (Инженерный Отдел) - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,3.5 + pos: -20.5,14.5 parent: 2 - - uid: 4191 + - uid: 4375 components: - - type: MetaData - name: настенная подстанция (Медицинский отдел) - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,14.5 + pos: -17.5,-0.5 parent: 2 - - uid: 4192 + - uid: 4376 components: - - type: MetaData - name: настенная подстанция (Отдел Снабжения) - type: Transform rot: 3.141592653589793 rad - pos: 24.5,6.5 + pos: -13.5,19.5 parent: 2 - - uid: 4193 + - uid: 4377 components: - - type: MetaData - name: настенная подстанция (Кухня) - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + pos: -13.5,20.5 parent: 2 - - uid: 4194 + - uid: 6164 components: - - type: MetaData - name: настенная подстанция (Научный Отдел) - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 2 - - uid: 4195 + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 5438 + - uid: 6165 components: - - type: MetaData - name: настенная подстанция (Технические Тоннели) - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 2 - - uid: 4196 + pos: 5.5,10.5 + parent: 5438 + - uid: 6166 components: - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 4197 + pos: 6.5,10.5 + parent: 5438 + - uid: 8031 components: - type: Transform - pos: 11.5,42.5 - parent: 2 - - uid: 4198 + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 7020 + - uid: 8032 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,2.5 - parent: 2 -- proto: SuitStorageBase - entities: - - uid: 1744 + pos: 7.5,17.5 + parent: 7020 + - uid: 8033 components: - type: Transform - pos: -47.5,21.5 - parent: 2 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1745 - - 1746 - - 1747 - - 1749 - - 1748 - - uid: 5747 + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 7020 + - uid: 8034 components: - type: Transform - pos: -10.5,-1.5 - parent: 5384 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5749 - - 5748 - - 5751 - - 5750 - - uid: 6086 + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 7020 + - uid: 8035 components: - type: Transform - pos: -10.5,0.5 - parent: 5384 -- proto: SurveillanceCameraGeneral - entities: - - uid: 4199 + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 7020 + - uid: 8036 components: - type: Transform - pos: -20.5,22.5 - parent: 2 - - type: SurveillanceCamera - id: Сервис [Библиотека] - - uid: 4200 + rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 7020 + - uid: 8037 components: - type: Transform - pos: 1.5,-10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Сервис [Бар-Ресторан] - - uid: 4201 + pos: -4.5,20.5 + parent: 7020 + - uid: 8038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общий [Вход в церковь] - - uid: 4203 + pos: 10.5,21.5 + parent: 7020 + - uid: 8039 components: - type: Transform - pos: -8.5,-1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Медицинский [Психолог] - - uid: 4204 + pos: 10.5,22.5 + parent: 7020 +- proto: TableReinforcedGlass + entities: + - uid: 4378 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: 8.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Бриг [Приёмная] - - uid: 4205 + - uid: 4379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,9.5 + pos: 5.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Медбей [Химия] - - uid: 4206 + - uid: 4380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,7.5 + rot: 3.141592653589793 rad + pos: 4.5,6.5 parent: 2 - - type: SurveillanceCamera - id: Бриг [КПП] - - uid: 4207 + - uid: 4381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,11.5 + pos: 4.5,-5.5 parent: 2 - - type: SurveillanceCamera - id: Бриг [Каюта детектива] - - uid: 4208 + - uid: 4382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,8.5 + pos: 13.5,17.5 parent: 2 - - type: SurveillanceCamera - id: Бриг [Каюта АВД] - - uid: 4209 + - uid: 4383 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,7.5 + pos: 5.5,16.5 parent: 2 - - type: SurveillanceCamera - id: Сервис [Каюта музыканта] - - uid: 4210 + - uid: 4384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,6.5 + rot: -1.5707963267948966 rad + pos: -8.5,5.5 parent: 2 - - type: SurveillanceCamera - id: Сервис [Каюта клоуна] - - uid: 4211 + - uid: 4385 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,3.5 + pos: 5.5,17.5 parent: 2 - - type: SurveillanceCamera - id: Сервис [Каюта уборщика] - - uid: 4212 +- proto: TableWood + entities: + - uid: 4386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,0.5 + pos: 10.5,-18.5 parent: 2 - - type: SurveillanceCamera - id: Сервис [Каюта мима] - - uid: 4213 + - uid: 4387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 + pos: -18.5,24.5 parent: 2 - - type: SurveillanceCamera - id: Сервис [Общая мастерская] - - uid: 4214 + - uid: 4388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 + pos: -21.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Сервис [Репортёр] - - uid: 4215 + - uid: 4389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 + pos: -19.5,24.5 parent: 2 - - type: SurveillanceCamera - id: Мостик [Серверная] - - uid: 4216 + - uid: 4390 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,1.5 + pos: 3.5,-14.5 parent: 2 - - type: SurveillanceCamera - id: Мостик [Каюта капитана] - - uid: 4217 + - uid: 4391 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-1.5 + pos: 4.5,-14.5 parent: 2 - - type: SurveillanceCamera - id: Мостик [Каюта ГП] - - uid: 4218 + - uid: 4392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 + rot: -1.5707963267948966 rad + pos: -14.5,14.5 parent: 2 - - type: SurveillanceCamera - id: Мостик [Кабинет ГП] - - uid: 4219 + - uid: 4393 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,1.5 + pos: -14.5,13.5 parent: 2 - - type: SurveillanceCamera - id: Мостик [Хранилище] - - uid: 4220 + - uid: 4394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,2.5 + pos: -18.5,11.5 parent: 2 - - type: SurveillanceCamera - id: Мостик [Общий] - - uid: 4221 + - uid: 4395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 + pos: -19.5,11.5 parent: 2 - - type: SurveillanceCamera - id: Мостик [Вход] - - uid: 4222 + - uid: 4396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 + pos: -2.5,12.5 parent: 2 - - type: SurveillanceCamera - id: Сервис [Холодильник] - - uid: 4223 + - uid: 4397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-10.5 + pos: -27.5,29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Сервис [Кухня] - - uid: 4224 + - uid: 4398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-12.5 + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Сервис [Гидропоника] - - uid: 4225 + - uid: 8040 components: - type: Transform - pos: 3.5,-14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Сервис [Бар №1] - - uid: 4226 + pos: -2.5,31.5 + parent: 7020 +- proto: TargetStrange + entities: + - uid: 4399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 + rot: -1.5707963267948966 rad + pos: -15.5,18.5 parent: 2 - - type: SurveillanceCamera - id: Научный [Мастерская] - - uid: 4227 +- proto: TargetSyndicate + entities: + - uid: 8041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-1.5 - parent: 2 - - type: SurveillanceCamera - id: Научный [Каюта НР] - - uid: 4228 + pos: 9.5,9.5 + parent: 7020 +- proto: TelecomServer + entities: + - uid: 6167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-4.5 + pos: 13.5,9.5 + parent: 5438 +- proto: TelecomServerFilled + entities: + - uid: 4400 + components: + - type: Transform + pos: -2.5,-2.5 parent: 2 - - type: SurveillanceCamera - id: Научный [Исследовательская №1] - - uid: 4229 +- proto: Telecrystal1 + entities: + - uid: 6168 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 2 - - type: SurveillanceCamera - id: Инженерный [Склад] - - uid: 4230 + pos: 1.3805131,1.3495817 + parent: 5438 + - uid: 6169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 2 - - type: SurveillanceCamera - id: Инженерный [Атмос] - - uid: 4231 + pos: 4.4777346,-2.4281964 + parent: 5438 + - uid: 6170 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: Инженерный [Каюта СИ] - - uid: 4232 + pos: 1.2416238,1.4468037 + parent: 5438 + - uid: 6171 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,8.5 - parent: 2 - - type: SurveillanceCamera - id: Снабжение [Приёмная] - - uid: 4233 + pos: 4.6721797,-2.4837518 + parent: 5438 + - uid: 6172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.9221797,1.2662483 + parent: 5438 + - uid: 6173 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 2 - - type: SurveillanceCamera - id: Снабжение [Склад №1] - - uid: 4234 + pos: 0.59798896,-3.4860127 + parent: 5438 + - uid: 6174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,11.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Снабжение [Склад №2] - - uid: 4235 + pos: 0.70909965,-3.541568 + parent: 5438 + - uid: 6175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,8.5 - parent: 2 - - type: SurveillanceCamera - id: Снабжение [Кабинет КМ] - - uid: 4236 + pos: 2.1535437,-3.6526787 + parent: 5438 + - uid: 6176 components: - type: Transform - pos: 23.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Снабжение [Стыковка утилизаторов] - - type: ActiveUserInterface - - uid: 4237 + pos: 5.597989,3.138988 + parent: 5438 + - uid: 6177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,17.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Медбей [Склад] - - uid: 4238 + pos: 5.792433,3.1112099 + parent: 5438 + - uid: 6178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Медбей [Комната отдыха] - - uid: 4239 + rot: -1.5707963267948966 rad + pos: 4.972989,2.4862099 + parent: 5438 + - uid: 6179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 2 - - type: SurveillanceCamera - id: Медицинский [Приёмная] - - uid: 4240 + pos: 2.9440918,-3.387207 + parent: 5438 +- proto: Telecrystal5 + entities: + - uid: 237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 2 - - type: SurveillanceCamera - id: Медбей [Палаты №1] - - uid: 4241 + parent: 229 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 3267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 2 - - type: SurveillanceCamera - id: Медбей [Ожидание] - - uid: 4242 + parent: 3265 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ThrowingKnife + entities: + - uid: 3172 + components: + - type: Transform + parent: 3171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ThrowingStar + entities: + - uid: 3173 + components: + - type: MetaData + desc: Предназначен для игры в ниндзю, сделан из острой стали + name: игрушечный сюрикэн + - type: Transform + parent: 3171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Thruster + entities: + - uid: 4401 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-1.5 + pos: -53.5,22.5 parent: 2 - - type: SurveillanceCamera - id: Общий [Мусоросброс] - - uid: 4243 + - uid: 6907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 2 - - type: SurveillanceCamera - id: Общий [Отбытие] - - uid: 4244 + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 6685 + - uid: 6908 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Общий [Стойка ГП] - - type: ActiveUserInterface - - uid: 4245 + pos: 1.5,-4.5 + parent: 6685 + - uid: 6909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 2 - - type: SurveillanceCamera - id: Общий [Стойка РнД] - - uid: 4246 + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 6685 + - uid: 6910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 2 - - type: SurveillanceCamera - id: Общий [Стойка инженерного] - - uid: 4247 + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 6685 + - uid: 6911 components: - type: Transform - pos: 4.5,4.5 - parent: 2 - - type: SurveillanceCamera - id: Общий [Стойка химии] - - uid: 4248 + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 6685 + - uid: 6912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - id: Общий [Вход в бриг] - - uid: 4249 + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 6685 + - uid: 6913 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 2 - - type: SurveillanceCamera - id: Общий [Дормы] - - uid: 4250 + pos: 4.5,-3.5 + parent: 6685 + - uid: 6914 components: - type: Transform - pos: 9.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Медбей [Кладбище] - - uid: 4251 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 6685 + - uid: 6915 components: - type: Transform - pos: -0.5,17.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Бриг [Камера] - - uid: 6087 + pos: 3.5,9.5 + parent: 6685 + - uid: 6916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 5384 - - uid: 6088 + pos: -2.5,9.5 + parent: 6685 + - uid: 6917 components: - type: Transform - pos: 2.5,-3.5 - parent: 5384 - - uid: 6089 + pos: -3.5,6.5 + parent: 6685 + - uid: 6918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 5384 - - uid: 6090 + pos: 4.5,6.5 + parent: 6685 + - uid: 6919 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 5384 -- proto: SurveillanceCameraMedical - entities: - - uid: 4252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: МЕД- ХимЛаб -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 4253 + pos: 5.5,3.5 + parent: 6685 + - uid: 6920 components: - type: Transform - pos: -2.5,-4.5 - parent: 2 - - uid: 6091 + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 6685 + - uid: 6921 components: - type: Transform - pos: 13.5,8.5 - parent: 5384 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 4254 + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 6685 + - uid: 6922 components: - type: Transform - pos: -3.5,-2.5 - parent: 2 -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 4255 + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 6685 + - uid: 8333 components: - type: Transform - pos: -8.5,1.5 - parent: 2 - - uid: 4256 + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 8267 + - uid: 8334 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 2 -- proto: SyndicateJawsOfLife - entities: - - uid: 6092 + pos: -9.5,1.5 + parent: 8267 + - uid: 8335 components: - type: Transform - pos: 4.5,-5.5 - parent: 5384 -- proto: SyndieFlag - entities: - - uid: 4257 + pos: -5.5,1.5 + parent: 8267 + - uid: 8336 components: - type: Transform - pos: -18.5,9.5 - parent: 2 - - uid: 6093 + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 8267 + - uid: 8337 components: - type: Transform - pos: 11.5,-0.5 - parent: 5384 - - uid: 6094 + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 8267 + - uid: 8338 components: - type: Transform - pos: -2.5,-5.5 - parent: 5384 - - uid: 6095 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 8267 +- proto: TimerTrigger + entities: + - uid: 6180 components: - type: Transform - pos: 7.5,10.5 - parent: 5384 - - uid: 6096 + pos: 11.627125,-2.8404005 + parent: 5438 +- proto: TintedWindow + entities: + - uid: 4402 components: - type: Transform - pos: -9.5,0.5 - parent: 5384 -- proto: Table - entities: - - uid: 4258 + pos: -24.5,-9.5 + parent: 2 + - uid: 4403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-7.5 + pos: -22.5,-9.5 parent: 2 - - uid: 4259 + - uid: 4404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,7.5 + pos: -21.5,-9.5 parent: 2 - - uid: 4260 + - uid: 4405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: -23.5,-9.5 parent: 2 - - uid: 4261 +- proto: TobaccoSeeds + entities: + - uid: 4406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 + pos: -4.4235253,18.642374 parent: 2 - - uid: 4262 +- proto: ToiletDirtyWater + entities: + - uid: 4407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 + rot: 3.141592653589793 rad + pos: -17.5,8.5 parent: 2 - - uid: 4263 + - uid: 4408 components: - type: Transform - pos: 13.5,2.5 + pos: -11.5,6.5 parent: 2 - - uid: 4264 + - uid: 4409 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,8.5 + pos: 3.5,19.5 parent: 2 - - uid: 4265 + - uid: 6181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,8.5 - parent: 2 - - uid: 4266 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 5438 +- proto: ToolboxElectricalFilled + entities: + - uid: 4410 components: - type: Transform - pos: -15.5,0.5 + pos: 19.490835,3.734476 parent: 2 - - uid: 4267 +- proto: ToolboxEmergency + entities: + - uid: 8019 components: - type: Transform - pos: -15.5,1.5 - parent: 2 - - uid: 4268 + pos: -7.586548,15.669857 + parent: 7020 + - type: Storage + storedItems: + 8020: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 8020 +- proto: ToolboxGoldFilled + entities: + - uid: 4411 components: - type: Transform - pos: -15.5,2.5 + pos: 6.4899254,0.60287684 parent: 2 - - uid: 4269 +- proto: ToolboxMechanicalFilled + entities: + - uid: 6182 components: - type: Transform - pos: -26.5,4.5 - parent: 2 - - uid: 4270 + pos: -7.5,2.5 + parent: 5438 + - uid: 8042 + components: + - type: Transform + pos: 5.461334,17.766308 + parent: 7020 +- proto: Torch + entities: + - uid: 4412 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,0.5 + pos: -10.607524,24.822258 parent: 2 - - uid: 4271 + - uid: 4413 components: - type: Transform - pos: 20.5,-7.5 + rot: 3.141592653589793 rad + pos: -10.623149,24.916008 parent: 2 - - uid: 6097 + - uid: 4414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 5384 - - uid: 6098 + rot: -1.5707963267948966 rad + pos: -10.795024,24.900383 + parent: 2 + - uid: 4415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 5384 - - uid: 6099 + pos: -10.701274,24.759758 + parent: 2 + - uid: 4416 components: - type: Transform - pos: 8.5,-12.5 - parent: 5384 - - uid: 6100 + pos: 5.51608,24.724052 + parent: 2 + - uid: 4417 components: - type: Transform - pos: 9.5,-12.5 - parent: 5384 - - uid: 6101 + pos: 17.03582,19.839497 + parent: 2 + - uid: 4418 components: - type: Transform - pos: 9.5,-10.5 - parent: 5384 - - uid: 6102 + pos: 25.545647,-23.613243 + parent: 2 + - uid: 4419 components: - type: Transform - pos: 8.5,-10.5 - parent: 5384 - - uid: 6103 + pos: 13.756612,-22.628868 + parent: 2 + - uid: 4420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 5384 - - uid: 6104 + pos: 2.524221,-20.535118 + parent: 2 +- proto: TorsoBorg + entities: + - uid: 8043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 5384 - - uid: 6105 + pos: -4.273407,15.588264 + parent: 7020 +- proto: TorsoSkeleton + entities: + - uid: 4421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 5384 - - uid: 6106 + pos: -24.408615,-6.904674 + parent: 2 + - uid: 8044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 5384 - - uid: 6107 + pos: -8.691772,20.740067 + parent: 7020 + - uid: 8045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 5384 - - uid: 6108 + pos: -8.601715,27.41441 + parent: 7020 +- proto: TorsoVulpkanin + entities: + - uid: 8046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 5384 - - uid: 6109 + pos: -5.471405,14.42672 + parent: 7020 +- proto: ToyDeathRipley + entities: + - uid: 7075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 5384 - - uid: 6849 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToyFigurineClown + entities: + - uid: 4422 components: + - type: MetaData + desc: Кажется это какая-то знаменитость. + name: фигурка Абубачира - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 6631 - - uid: 6850 + pos: -17.80621,6.5103354 + parent: 2 +- proto: ToyFigurineRatKing + entities: + - uid: 4423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 6631 -- proto: TableBrass + pos: -23.38047,7.0364113 + parent: 2 +- proto: ToyFigurineRatServant entities: - - uid: 4272 + - uid: 4424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-7.5 + pos: -23.297136,6.807245 parent: 2 - - uid: 4273 + - uid: 4425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-6.5 + pos: -23.620052,6.682245 parent: 2 - - uid: 4274 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 4426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-6.5 + pos: -23.620052,7.890578 parent: 2 -- proto: TableCarpet +- proto: ToyMauler entities: - - uid: 4275 + - uid: 7076 components: - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 4276 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToySkeleton + entities: + - uid: 4427 components: - type: Transform - pos: 15.5,17.5 + pos: -9.492339,18.785961 parent: 2 - - uid: 4277 +- proto: ToySword + entities: + - uid: 7077 components: - type: Transform - pos: -23.5,6.5 - parent: 2 - - uid: 4278 + parent: 7057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Truncheon + entities: + - uid: 3182 components: - type: Transform - pos: -23.5,7.5 - parent: 2 - - uid: 4279 + parent: 3178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3183 components: - type: Transform - pos: 17.5,17.5 + parent: 3178 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TwoWayLever + entities: + - uid: 4428 + components: + - type: Transform + pos: -28.5,-2.5 parent: 2 - - uid: 4280 + - type: DeviceLinkSource + linkedPorts: + 1914: + - Left: Forward + - Right: Reverse + - Middle: Off + 1917: + - Left: Forward + - Right: Reverse + - Middle: Off + 3884: + - Left: Forward + - Right: Reverse + - Middle: Off + 1915: + - Left: Forward + - Right: Reverse + - Middle: Off + 1916: + - Left: Forward + - Right: Reverse + - Middle: Off + 1927: + - Left: Forward + - Right: Reverse + - Middle: Off + 1928: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 4429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,1.5 + pos: 24.5,19.5 parent: 2 -- proto: TableCounterMetal + - type: DeviceLinkSource + linkedPorts: + 1913: + - Left: Forward + - Right: Reverse + - Middle: Off + 1912: + - Left: Forward + - Right: Reverse + - Middle: Off + 1924: + - Left: Forward + - Right: Reverse + - Middle: Off + 1907: + - Left: Forward + - Right: Reverse + - Middle: Off + 1911: + - Left: Forward + - Right: Reverse + - Middle: Off + 1906: + - Left: Forward + - Right: Reverse + - Middle: Off + 1910: + - Left: Forward + - Right: Reverse + - Middle: Off + 1920: + - Left: Forward + - Right: Reverse + - Middle: Off + 1919: + - Left: Forward + - Right: Reverse + - Middle: Off + 1918: + - Left: Forward + - Right: Reverse + - Middle: Off + 1926: + - Left: Forward + - Right: Reverse + - Middle: Off + 1909: + - Left: Forward + - Right: Reverse + - Middle: Off + 1922: + - Left: Forward + - Right: Reverse + - Middle: Off + 1921: + - Left: Forward + - Right: Reverse + - Middle: Off + 1925: + - Left: Forward + - Right: Reverse + - Middle: Off + 1930: + - Left: Forward + - Right: Reverse + - Middle: Off + 1908: + - Left: Forward + - Right: Reverse + - Middle: Off + 1929: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter entities: - - uid: 4281 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 2 - - uid: 4282 - components: - - type: Transform - pos: -13.5,24.5 - parent: 2 - - uid: 4283 + - uid: 4430 components: - type: Transform - pos: -12.5,24.5 + pos: 3.5,-4.5 parent: 2 - - uid: 6851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 6631 - - uid: 6852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 6631 -- proto: TableCounterWood +- proto: UniformShortsRed entities: - - uid: 4284 - components: - - type: Transform - pos: -18.5,24.5 - parent: 2 - - uid: 4285 + - uid: 1757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 2 - - uid: 4286 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1758 components: - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 4287 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,10.5 - parent: 2 - - uid: 4288 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1760 components: - type: Transform - pos: -21.5,24.5 - parent: 2 - - uid: 4289 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 2 -- proto: TableFancyBlack - entities: - - uid: 4290 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4431 components: - type: Transform - pos: -18.5,-5.5 + pos: -13.335099,24.694496 parent: 2 - - uid: 4291 + - uid: 4432 components: - type: Transform - pos: -13.5,-1.5 + pos: -13.335099,24.694496 parent: 2 - - uid: 4292 +- proto: UniformShortsRedWithTop + entities: + - uid: 1762 components: - type: Transform - pos: -19.5,-5.5 - parent: 2 - - uid: 4293 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 2 - - uid: 4294 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 2 - - uid: 4295 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 2 - - uid: 4296 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1766 components: - type: Transform - pos: 1.5,-12.5 - parent: 2 - - uid: 4297 + parent: 1756 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4433 components: - type: Transform - pos: 1.5,-13.5 + pos: -12.288224,24.366371 parent: 2 - - uid: 4420 + - uid: 4434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 + pos: -12.288224,24.366371 parent: 2 -- proto: TableFancyGreen +- proto: UprightPianoInstrument entities: - - uid: 4298 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 4299 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 4300 + - uid: 4435 components: - type: Transform - pos: -2.5,3.5 + rot: 3.141592653589793 rad + pos: -14.5,7.5 parent: 2 -- proto: TableFancyRed +- proto: UraniumOre entities: - - uid: 4301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 2 - - uid: 4302 + - uid: 6183 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 2 -- proto: TableGlass - entities: - - uid: 4303 + pos: 4.9229074,1.2381971 + parent: 5438 + - uid: 6184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 2 - - uid: 4304 + pos: 5.0617967,1.1548638 + parent: 5438 + - uid: 6185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 2 - - uid: 4305 + pos: 5.0340195,1.4187524 + parent: 5438 +- proto: UraniumOre1 + entities: + - uid: 4436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-11.5 + pos: 28.043823,19.648556 parent: 2 -- proto: TablePlasmaGlass - entities: - - uid: 4306 + - uid: 4437 components: - type: Transform - pos: -28.5,-5.5 + pos: 27.762573,19.38293 parent: 2 - - uid: 4307 + - uid: 4438 components: - type: Transform - pos: -28.5,-6.5 + pos: 28.356323,19.50793 parent: 2 -- proto: TableReinforced +- proto: VariantCubeBox entities: - - uid: 4308 + - uid: 4439 components: - type: Transform - pos: 21.5,9.5 + pos: 20.717873,-7.271177 parent: 2 - - uid: 4309 + - uid: 4440 components: - type: Transform - pos: 21.5,8.5 + pos: 14.5,-10.5 parent: 2 - - uid: 4310 +- proto: VendingBarDrobe + entities: + - uid: 4441 components: - type: Transform - pos: -18.5,-0.5 + pos: 12.5,-16.5 parent: 2 - - uid: 4311 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 4442 components: - type: Transform - pos: 17.5,13.5 + pos: 30.5,1.5 parent: 2 - - uid: 4312 +- proto: VendingMachineBooze + entities: + - uid: 4443 components: - type: Transform - pos: 20.5,13.5 + pos: 5.5,-13.5 parent: 2 - - uid: 4313 +- proto: VendingMachineCargoDrobe + entities: + - uid: 4444 components: - type: Transform - pos: 23.5,-7.5 + pos: 22.5,7.5 parent: 2 - - uid: 4314 +- proto: VendingMachineCart + entities: + - uid: 4445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,18.5 + pos: 3.5,-2.5 parent: 2 - - uid: 4315 +- proto: VendingMachineChefDrobe + entities: + - uid: 4446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,20.5 + pos: 9.5,-16.5 parent: 2 - - uid: 4316 +- proto: VendingMachineChefvend + entities: + - uid: 4447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,7.5 + pos: 16.5,-8.5 parent: 2 - - uid: 4317 +- proto: VendingMachineChemDrobe + entities: + - uid: 4448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-2.5 + pos: 10.5,13.5 parent: 2 - - uid: 4318 +- proto: VendingMachineChemicals + entities: + - uid: 4449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-3.5 + pos: 8.5,15.5 parent: 2 - - uid: 4319 + - uid: 6923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 2 - - uid: 4320 + pos: -1.5,6.5 + parent: 6685 +- proto: VendingMachineCigs + entities: + - uid: 4450 components: - type: Transform - pos: 23.5,-6.5 + pos: -4.5,5.5 parent: 2 - - uid: 4321 + - uid: 6186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 2 - - uid: 4322 + pos: 9.5,-2.5 + parent: 5438 + - uid: 8047 components: - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 4323 + pos: -1.5,13.5 + parent: 7020 +- proto: VendingMachineClothing + entities: + - uid: 4451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,9.5 + pos: -14.5,0.5 parent: 2 - - uid: 4324 + - uid: 4452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,7.5 + pos: 2.5,-16.5 parent: 2 - - uid: 4325 +- proto: VendingMachineCuraDrobe + entities: + - uid: 4453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,8.5 + pos: -20.5,26.5 parent: 2 - - uid: 4326 +- proto: VendingMachineDetDrobe + entities: + - uid: 4454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,13.5 + pos: -15.5,11.5 parent: 2 - - uid: 4327 +- proto: VendingMachineDinnerware + entities: + - uid: 4455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,14.5 + pos: 15.5,-8.5 parent: 2 - - uid: 4328 +- proto: VendingMachineDonut + entities: + - uid: 4456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 + pos: 23.5,-4.5 parent: 2 - - uid: 4329 + - uid: 4457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,13.5 + pos: -8.5,8.5 parent: 2 - - uid: 4330 +- proto: VendingMachineEngiDrobe + entities: + - uid: 4458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,3.5 + pos: 17.5,0.5 parent: 2 - - uid: 4331 +- proto: VendingMachineEngivend + entities: + - uid: 4459 components: - type: Transform - pos: 16.5,2.5 + pos: 14.5,5.5 parent: 2 - - uid: 4332 +- proto: VendingMachineGames + entities: + - uid: 4460 components: - type: Transform - pos: 15.5,2.5 + pos: -19.5,20.5 parent: 2 - - uid: 4333 + - uid: 4461 components: - type: Transform - pos: 13.5,5.5 + pos: -22.5,8.5 parent: 2 - - uid: 4334 +- proto: VendingMachineHydrobe + entities: + - uid: 4462 components: - type: Transform - pos: 15.5,3.5 + pos: 10.5,-16.5 parent: 2 - - uid: 4335 +- proto: VendingMachineJaniDrobe + entities: + - uid: 4463 components: - type: Transform - pos: 16.5,3.5 + pos: 9.5,-18.5 parent: 2 - - uid: 4336 +- proto: VendingMachineLawDrobe + entities: + - uid: 4464 components: - type: Transform - pos: 17.5,0.5 + pos: -10.5,9.5 parent: 2 - - uid: 4337 +- proto: VendingMachineMedical + entities: + - uid: 4465 components: - type: Transform - pos: 19.5,3.5 + pos: 5.5,15.5 parent: 2 - - uid: 4338 +- proto: VendingMachineMediDrobe + entities: + - uid: 4466 components: - type: Transform - pos: 14.5,-10.5 + pos: 10.5,14.5 parent: 2 - - uid: 4339 +- proto: VendingMachineNutri + entities: + - uid: 4467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-9.5 + pos: 12.5,-12.5 parent: 2 - - uid: 4340 +- proto: VendingMachineRestockChemVend + entities: + - uid: 3271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-10.5 - parent: 2 - - uid: 4341 + parent: 3270 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingMachineRobotics + entities: + - uid: 4468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 + pos: 14.5,-1.5 parent: 2 - - uid: 4342 +- proto: VendingMachineSalvage + entities: + - uid: 4469 components: - type: Transform - pos: 7.5,-14.5 + pos: 19.5,13.5 parent: 2 - - uid: 4343 +- proto: VendingMachineSciDrobe + entities: + - uid: 4470 components: - type: Transform - pos: 2.5,2.5 + pos: 21.5,-7.5 parent: 2 - - uid: 4344 +- proto: VendingMachineSec + entities: + - uid: 4471 components: - type: Transform - pos: -0.5,2.5 + pos: -6.5,16.5 parent: 2 - - uid: 4345 +- proto: VendingMachineSecDrobe + entities: + - uid: 4472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: -10.5,12.5 parent: 2 - - uid: 4346 +- proto: VendingMachineSeeds + entities: + - uid: 4473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + pos: 13.5,-12.5 parent: 2 - - uid: 4347 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 4474 components: - type: Transform - pos: 7.5,-1.5 + pos: -3.5,17.5 parent: 2 - - uid: 4348 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 4475 components: - type: Transform - pos: 6.5,0.5 + pos: 25.5,0.5 parent: 2 - - uid: 4349 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 4476 components: - type: Transform - pos: 6.5,1.5 + pos: 7.5,-18.5 parent: 2 - - uid: 4350 + - uid: 4477 components: - type: Transform - pos: 5.5,-0.5 + pos: 26.5,0.5 parent: 2 - - uid: 4351 + - uid: 4478 components: - type: Transform - pos: 4.5,-0.5 + pos: 21.5,16.5 parent: 2 - - uid: 4352 + - uid: 4479 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,6.5 + pos: 13.5,0.5 parent: 2 - - uid: 4353 + - uid: 6187 components: - type: Transform - pos: 0.5,7.5 - parent: 2 - - uid: 4354 + pos: -7.5,0.5 + parent: 5438 + - uid: 6924 components: - type: Transform - pos: 0.5,9.5 - parent: 2 - - uid: 4355 + pos: -3.5,1.5 + parent: 6685 +- proto: VendingMachineTheater + entities: + - uid: 4480 components: - type: Transform - pos: 0.5,8.5 + pos: -18.5,6.5 parent: 2 - - uid: 4356 +- proto: VendingMachineVendomat + entities: + - uid: 4481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-1.5 + pos: 15.5,-1.5 parent: 2 - - uid: 4357 +- proto: VendingMachineWallMedical + entities: + - uid: 4482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,17.5 - parent: 2 - - uid: 4358 - components: - - type: Transform - pos: -7.5,19.5 + pos: 9.5,12.5 parent: 2 - - uid: 4359 +- proto: VendingMachineYouTool + entities: + - uid: 4483 components: - type: Transform - pos: 12.5,19.5 + pos: 15.5,5.5 parent: 2 - - uid: 4360 + - uid: 4484 components: - type: Transform - pos: 5.5,8.5 + pos: -13.5,0.5 parent: 2 - - uid: 4361 +- proto: ViolaInstrument + entities: + - uid: 4485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,14.5 + pos: -13.796835,6.5871654 parent: 2 - - uid: 4362 +- proto: ViolinInstrument + entities: + - uid: 4486 components: - type: Transform - pos: -17.5,-0.5 + pos: -13.352391,6.4343877 parent: 2 - - uid: 4363 +- proto: WallCobblebrick + entities: + - uid: 4487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,19.5 + pos: -22.5,23.5 parent: 2 - - uid: 4364 + - uid: 4488 components: - type: Transform - pos: -13.5,20.5 + pos: -22.5,25.5 parent: 2 - - uid: 6110 + - uid: 4489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,5.5 - parent: 5384 - - uid: 6111 + pos: -23.5,25.5 + parent: 2 + - uid: 4490 components: - type: Transform - pos: 5.5,10.5 - parent: 5384 - - uid: 6112 + pos: -22.5,24.5 + parent: 2 + - uid: 4491 components: - type: Transform - pos: 6.5,10.5 - parent: 5384 -- proto: TableReinforcedGlass - entities: - - uid: 4365 + pos: -14.5,24.5 + parent: 2 + - uid: 4492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 + pos: -18.5,26.5 parent: 2 - - uid: 4366 + - uid: 4493 components: - type: Transform - pos: 5.5,10.5 + pos: -19.5,27.5 parent: 2 - - uid: 4367 + - uid: 4494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 + pos: -17.5,25.5 parent: 2 - - uid: 4368 + - uid: 4495 components: - type: Transform - pos: 4.5,-5.5 + pos: -20.5,21.5 parent: 2 - - uid: 4369 + - uid: 4496 components: - type: Transform - pos: 13.5,17.5 + pos: -23.5,26.5 parent: 2 - - uid: 4370 + - uid: 4497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,16.5 + pos: -23.5,27.5 parent: 2 - - uid: 4371 + - uid: 4498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,5.5 + pos: -19.5,26.5 parent: 2 - - uid: 4372 + - uid: 4499 components: - type: Transform - pos: 5.5,17.5 + pos: -14.5,23.5 parent: 2 -- proto: TableWood - entities: - - uid: 4373 + - uid: 4500 components: - type: Transform - pos: 10.5,-18.5 + pos: -18.5,25.5 parent: 2 - - uid: 4374 + - uid: 4501 components: - type: Transform - pos: -18.5,24.5 + pos: -16.5,24.5 parent: 2 - - uid: 4375 + - uid: 4502 components: - type: Transform - pos: -21.5,24.5 + pos: -21.5,23.5 parent: 2 - - uid: 4376 + - uid: 4503 components: - type: Transform - pos: -19.5,24.5 + pos: -22.5,27.5 parent: 2 - - uid: 4377 + - uid: 4504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 + pos: -20.5,20.5 parent: 2 - - uid: 4378 + - uid: 4505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-14.5 + pos: -21.5,21.5 parent: 2 - - uid: 4379 + - uid: 4506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,14.5 + pos: -21.5,27.5 parent: 2 - - uid: 4380 + - uid: 4507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 + pos: -17.5,24.5 parent: 2 - - uid: 4381 + - uid: 4508 components: - type: Transform - pos: -18.5,11.5 + rot: 1.5707963267948966 rad + pos: 13.5,22.5 parent: 2 - - uid: 4382 + - uid: 4509 components: - type: Transform - pos: -19.5,11.5 + pos: -20.5,27.5 parent: 2 - - uid: 4383 + - uid: 4510 components: - type: Transform - pos: -2.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,21.5 parent: 2 - - uid: 4384 + - uid: 4511 components: - type: Transform - pos: -27.5,29.5 + rot: 1.5707963267948966 rad + pos: 14.5,19.5 parent: 2 - - uid: 4385 + - uid: 4512 components: - type: Transform - pos: -50.5,20.5 + rot: 1.5707963267948966 rad + pos: 14.5,20.5 parent: 2 - - uid: 4386 + - uid: 4513 components: - type: Transform - pos: -49.5,20.5 + rot: 1.5707963267948966 rad + pos: 14.5,21.5 parent: 2 - - uid: 4387 +- proto: WallMeat + entities: + - uid: 4514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 + pos: -25.5,-9.5 parent: 2 -- proto: TargetStrange - entities: - - uid: 4388 + - uid: 4515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,18.5 + pos: -25.5,-8.5 parent: 2 -- proto: TelecomServer - entities: - - uid: 6113 + - uid: 4516 components: - type: Transform - pos: 13.5,9.5 - parent: 5384 -- proto: TelecomServerFilled - entities: - - uid: 4389 + pos: -20.5,-8.5 + parent: 2 + - uid: 4517 components: - type: Transform - pos: -2.5,-2.5 + pos: -20.5,-6.5 parent: 2 -- proto: Telecrystal1 - entities: - - uid: 6114 + - uid: 6188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.3805131,1.3495817 - parent: 5384 - - uid: 6115 + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 5438 + - uid: 6189 components: - type: Transform - pos: 4.4777346,-2.4281964 - parent: 5384 - - uid: 6116 + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 5438 + - uid: 6190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.2416238,1.4468037 - parent: 5384 - - uid: 6117 + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 5438 + - uid: 6191 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.6721797,-2.4837518 - parent: 5384 - - uid: 6118 + pos: -0.5,-11.5 + parent: 5438 + - uid: 6192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.9221797,1.2662483 - parent: 5384 - - uid: 6119 + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 5438 + - uid: 6193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.59798896,-3.4860127 - parent: 5384 - - uid: 6120 + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 5438 + - uid: 6194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.70909965,-3.541568 - parent: 5384 - - uid: 6121 + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 5438 + - uid: 6195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.1535437,-3.6526787 - parent: 5384 - - uid: 6122 + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 5438 + - uid: 6196 components: - type: Transform - pos: 5.597989,3.138988 - parent: 5384 - - uid: 6123 + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 5438 + - uid: 6197 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.792433,3.1112099 - parent: 5384 - - uid: 6124 + pos: 6.5,-12.5 + parent: 5438 + - uid: 6198 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.972989,2.4862099 - parent: 5384 - - uid: 6125 + pos: 7.5,-12.5 + parent: 5438 + - uid: 6199 components: - type: Transform - pos: 2.9440918,-3.387207 - parent: 5384 -- proto: Telecrystal5 - entities: - - uid: 226 + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 5438 + - uid: 6200 components: - type: Transform - parent: 217 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ThermomachineFreezerMachineCircuitBoard - entities: - - uid: 3245 + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 5438 + - uid: 6201 components: - type: Transform - parent: 3243 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ThrowingKnife - entities: - - uid: 3150 + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 5438 + - uid: 6202 components: - type: Transform - parent: 3149 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ThrowingStar - entities: - - uid: 3151 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 5438 + - uid: 6203 components: - - type: MetaData - desc: Предназначен для игры в ниндзю, сделан из острой стали - name: игрушечный сюрикэн - type: Transform - parent: 3149 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Thruster - entities: - - uid: 6853 + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 5438 + - uid: 6204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 6631 - - uid: 6854 + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 5438 + - uid: 6205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 6631 - - uid: 6855 + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 5438 + - uid: 6206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 6631 - - uid: 6856 + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 5438 + - uid: 6207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 6631 - - uid: 6857 + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 5438 + - uid: 6208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-3.5 - parent: 6631 - - uid: 6858 + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 5438 + - uid: 6209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 6631 - - uid: 6859 + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 5438 + - uid: 6210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 6631 - - uid: 6860 + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 5438 + - uid: 6211 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 6631 - - uid: 6861 + pos: 11.5,-11.5 + parent: 5438 +- proto: WallmountTelevision + entities: + - uid: 4518 components: - type: Transform - pos: 3.5,9.5 - parent: 6631 - - uid: 6862 + pos: -3.5,-5.5 + parent: 2 + - uid: 4519 components: - type: Transform - pos: -2.5,9.5 - parent: 6631 - - uid: 6863 + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 4520 components: - type: Transform - pos: -3.5,6.5 - parent: 6631 - - uid: 6864 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 +- proto: WallNecropolis + entities: + - uid: 8048 components: - type: Transform - pos: 4.5,6.5 - parent: 6631 - - uid: 6865 + rot: -1.5707963267948966 rad + pos: -11.5,27.5 + parent: 7020 + - uid: 8049 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 6631 - - uid: 6866 + pos: -0.5,28.5 + parent: 7020 + - uid: 8050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 6631 - - uid: 6867 + rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 7020 + - uid: 8051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 6631 - - uid: 6868 + rot: -1.5707963267948966 rad + pos: -0.5,27.5 + parent: 7020 + - uid: 8052 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 6631 -- proto: TimerTrigger - entities: - - uid: 6126 + pos: -8.5,25.5 + parent: 7020 + - uid: 8053 components: - type: Transform - pos: 11.627125,-2.8404005 - parent: 5384 -- proto: TobaccoSeeds - entities: - - uid: 4390 + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 7020 + - uid: 8054 components: - type: Transform - pos: -4.4235253,18.642374 - parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 4391 + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 7020 + - uid: 8055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 2 - - uid: 4392 + rot: -1.5707963267948966 rad + pos: -2.5,25.5 + parent: 7020 + - uid: 8056 components: - type: Transform - pos: -11.5,6.5 - parent: 2 - - uid: 4393 + rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 7020 + - uid: 8057 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 2 - - uid: 6127 + pos: -3.5,25.5 + parent: 7020 + - uid: 8058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 5384 -- proto: ToolboxGoldFilled - entities: - - uid: 4394 + rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 7020 + - uid: 8059 components: - type: Transform - pos: 6.4899254,0.60287684 - parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 6128 + rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 7020 + - uid: 8060 components: - type: Transform - pos: -7.5,2.5 - parent: 5384 -- proto: Torch - entities: - - uid: 4395 + rot: -1.5707963267948966 rad + pos: -6.5,32.5 + parent: 7020 + - uid: 8061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.607524,24.822258 - parent: 2 - - uid: 4396 + rot: -1.5707963267948966 rad + pos: -11.5,30.5 + parent: 7020 + - uid: 8062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.623149,24.916008 - parent: 2 - - uid: 4397 + rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 7020 + - uid: 8063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.795024,24.900383 - parent: 2 - - uid: 4398 + pos: -6.5,25.5 + parent: 7020 + - uid: 8064 components: - type: Transform - pos: -10.701274,24.759758 - parent: 2 - - uid: 4399 + rot: -1.5707963267948966 rad + pos: -4.5,25.5 + parent: 7020 +- proto: WallPlastitanium + entities: + - uid: 6212 components: - type: Transform - pos: 5.51608,24.724052 - parent: 2 - - uid: 4400 + rot: 3.141592653589793 rad + pos: 11.5,-13.5 + parent: 5438 + - uid: 6213 components: - type: Transform - pos: 17.03582,19.839497 - parent: 2 - - uid: 4401 + rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 5438 + - uid: 6214 components: - type: Transform - pos: 25.545647,-23.613243 - parent: 2 - - uid: 4402 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 5438 + - uid: 6215 components: - type: Transform - pos: 13.756612,-22.628868 - parent: 2 - - uid: 4403 + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 5438 + - uid: 6216 components: - type: Transform - pos: 2.524221,-20.535118 - parent: 2 -- proto: ToyFigurineClown - entities: - - uid: 4404 + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 5438 + - uid: 6217 components: - - type: MetaData - desc: Кажется это какая-то знаменитость. - name: фигурка Абубачира - type: Transform - pos: -17.80621,6.5103354 - parent: 2 -- proto: Truncheon - entities: - - uid: 3160 + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 5438 + - uid: 6218 components: - type: Transform - parent: 3156 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3161 + rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 5438 + - uid: 6219 components: - type: Transform - parent: 3156 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TwoWayLever - entities: - - uid: 4405 + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 5438 + - uid: 6220 components: - type: Transform - pos: -28.5,-2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1904: - - Left: Forward - - Right: Reverse - - Middle: Off - 1907: - - Left: Forward - - Right: Reverse - - Middle: Off - 3873: - - Left: Forward - - Right: Reverse - - Middle: Off - 1905: - - Left: Forward - - Right: Reverse - - Middle: Off - 1906: - - Left: Forward - - Right: Reverse - - Middle: Off - 1917: - - Left: Forward - - Right: Reverse - - Middle: Off - 1918: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 4406 + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 5438 + - uid: 6221 components: - type: Transform - pos: 24.5,19.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1903: - - Left: Forward - - Right: Reverse - - Middle: Off - 1902: - - Left: Forward - - Right: Reverse - - Middle: Off - 1914: - - Left: Forward - - Right: Reverse - - Middle: Off - 1897: - - Left: Forward - - Right: Reverse - - Middle: Off - 1901: - - Left: Forward - - Right: Reverse - - Middle: Off - 1896: - - Left: Forward - - Right: Reverse - - Middle: Off - 1900: - - Left: Forward - - Right: Reverse - - Middle: Off - 1910: - - Left: Forward - - Right: Reverse - - Middle: Off - 1909: - - Left: Forward - - Right: Reverse - - Middle: Off - 1908: - - Left: Forward - - Right: Reverse - - Middle: Off - 1916: - - Left: Forward - - Right: Reverse - - Middle: Off - 1899: - - Left: Forward - - Right: Reverse - - Middle: Off - 1912: - - Left: Forward - - Right: Reverse - - Middle: Off - 1911: - - Left: Forward - - Right: Reverse - - Middle: Off - 1915: - - Left: Forward - - Right: Reverse - - Middle: Off - 1920: - - Left: Forward - - Right: Reverse - - Middle: Off - 1898: - - Left: Forward - - Right: Reverse - - Middle: Off - 1919: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UniformPrinter - entities: - - uid: 4407 + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 5438 + - uid: 6222 components: - type: Transform - pos: 3.5,-4.5 - parent: 2 -- proto: UniformShortsRed - entities: - - uid: 1772 + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 5438 + - uid: 6223 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1773 + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 5438 + - uid: 6224 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1774 + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 5438 + - uid: 6225 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1775 + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 5438 + - uid: 6226 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1776 + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 5438 + - uid: 6227 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4408 + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 5438 + - uid: 6228 components: - type: Transform - pos: -13.335099,24.694496 - parent: 2 - - uid: 4409 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 5438 + - uid: 6229 components: - type: Transform - pos: -13.335099,24.694496 - parent: 2 -- proto: UniformShortsRedWithTop - entities: - - uid: 1777 + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 5438 + - uid: 6230 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1778 + rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 5438 + - uid: 6231 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1779 + rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 5438 + - uid: 6232 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1780 + rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 5438 + - uid: 6233 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1781 + rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 5438 + - uid: 6234 components: - type: Transform - parent: 1771 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4410 + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 5438 + - uid: 6235 components: - type: Transform - pos: -12.288224,24.366371 - parent: 2 - - uid: 4411 + rot: 3.141592653589793 rad + pos: -2.5,-12.5 + parent: 5438 + - uid: 6236 components: - type: Transform - pos: -12.288224,24.366371 - parent: 2 -- proto: UprightPianoInstrument - entities: - - uid: 4412 + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 5438 + - uid: 6237 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 2 -- proto: UraniumOre - entities: - - uid: 6129 + pos: -0.5,-14.5 + parent: 5438 + - uid: 6238 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.9229074,1.2381971 - parent: 5384 - - uid: 6130 + pos: 0.5,-14.5 + parent: 5438 + - uid: 6239 components: - type: Transform - pos: 5.0617967,1.1548638 - parent: 5384 - - uid: 6131 + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 5438 + - uid: 6240 components: - type: Transform - pos: 5.0340195,1.4187524 - parent: 5384 -- proto: UraniumOre1 - entities: - - uid: 4413 + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 5438 + - uid: 6241 components: - type: Transform - pos: 28.043823,19.648556 - parent: 2 - - uid: 4414 + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 5438 + - uid: 6242 components: - type: Transform - pos: 27.762573,19.38293 - parent: 2 - - uid: 4415 + rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 5438 + - uid: 6243 components: - type: Transform - pos: 28.356323,19.50793 - parent: 2 -- proto: VariantCubeBox - entities: - - uid: 4416 + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 5438 + - uid: 6244 components: - type: Transform - pos: 20.717873,-7.271177 - parent: 2 - - uid: 4417 + rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 5438 + - uid: 6245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-10.5 + parent: 5438 + - uid: 6246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 5438 + - uid: 6247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 5438 + - uid: 6248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 5438 + - uid: 6249 components: - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-10.5 - parent: 2 -- proto: VendingBarDrobe - entities: - - uid: 4418 + parent: 5438 + - uid: 6250 components: - type: Transform - pos: 12.5,-16.5 - parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 4419 + rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 5438 + - uid: 6251 components: - type: Transform - pos: 5.5,-13.5 - parent: 2 -- proto: VendingMachineCargoDrobe - entities: - - uid: 4421 + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 5438 + - uid: 6252 components: - type: Transform - pos: 22.5,7.5 - parent: 2 -- proto: VendingMachineCart - entities: - - uid: 4422 + rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 5438 + - uid: 6253 components: - type: Transform - pos: 3.5,-2.5 - parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 4423 + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 5438 + - uid: 6254 components: - type: Transform - pos: -21.5,-6.5 - parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 4424 + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 5438 + - uid: 6255 components: - type: Transform - pos: 9.5,-16.5 - parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 4425 + rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 5438 + - uid: 6256 components: - type: Transform - pos: 16.5,-8.5 - parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 4426 + rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 5438 + - uid: 6257 components: - type: Transform - pos: 10.5,13.5 - parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 4427 + rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 5438 + - uid: 6258 components: - type: Transform - pos: 8.5,15.5 - parent: 2 - - uid: 6869 + rot: 3.141592653589793 rad + pos: 18.5,1.5 + parent: 5438 + - uid: 6259 components: - type: Transform - pos: -1.5,6.5 - parent: 6631 -- proto: VendingMachineCigs - entities: - - uid: 4428 + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 5438 + - uid: 6260 components: - type: Transform - pos: -4.5,5.5 - parent: 2 - - uid: 6132 + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 5438 + - uid: 6261 components: - type: Transform - pos: 9.5,-2.5 - parent: 5384 -- proto: VendingMachineClothing - entities: - - uid: 4429 + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 5438 + - uid: 6262 components: - type: Transform - pos: -14.5,0.5 - parent: 2 - - uid: 4430 + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 5438 + - uid: 6263 components: - type: Transform - pos: 2.5,-16.5 - parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 4431 + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 5438 + - uid: 6264 components: - type: Transform - pos: -20.5,26.5 - parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 4432 + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 5438 + - uid: 6265 components: - type: Transform - pos: -15.5,11.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 4433 + rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 5438 + - uid: 6266 components: - type: Transform - pos: 15.5,-8.5 - parent: 2 -- proto: VendingMachineDonut - entities: - - uid: 4434 + rot: 3.141592653589793 rad + pos: 15.5,11.5 + parent: 5438 + - uid: 6267 components: - type: Transform - pos: 23.5,-4.5 - parent: 2 - - uid: 4435 + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 5438 + - uid: 6268 components: - type: Transform - pos: -8.5,8.5 - parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 4436 + rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 5438 + - uid: 6269 components: - type: Transform - pos: 30.5,1.5 - parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 4437 + rot: 3.141592653589793 rad + pos: 13.5,12.5 + parent: 5438 + - uid: 6270 components: - type: Transform - pos: 14.5,5.5 - parent: 2 -- proto: VendingMachineGames - entities: - - uid: 4438 + rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 5438 + - uid: 6271 components: - type: Transform - pos: -19.5,20.5 - parent: 2 - - uid: 4439 + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 5438 + - uid: 6272 components: - type: Transform - pos: -22.5,8.5 - parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 4440 + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 5438 + - uid: 6273 components: - type: Transform - pos: 10.5,-16.5 - parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 4441 + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 5438 + - uid: 6274 components: - type: Transform - pos: 9.5,-18.5 - parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 4442 + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 5438 + - uid: 6275 components: - type: Transform - pos: -10.5,9.5 - parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 4443 + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 5438 + - uid: 6276 components: - type: Transform - pos: 5.5,15.5 - parent: 2 -- proto: VendingMachineMediDrobe - entities: - - uid: 4444 + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 5438 + - uid: 6277 components: - type: Transform - pos: 10.5,14.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 4445 + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 5438 + - uid: 6278 components: - type: Transform - pos: 12.5,-12.5 - parent: 2 -- proto: VendingMachineRestockChemVend - entities: - - uid: 3249 + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 5438 + - uid: 6279 components: - type: Transform - parent: 3248 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: VendingMachineRobotics - entities: - - uid: 4446 + rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 5438 + - uid: 6280 components: - type: Transform - pos: 14.5,-1.5 - parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 4447 + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 5438 + - uid: 6281 components: - type: Transform - pos: 19.5,13.5 - parent: 2 -- proto: VendingMachineSciDrobe - entities: - - uid: 4448 + rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 5438 + - uid: 6282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 5438 + - uid: 6283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 5438 + - uid: 6284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-11.5 + parent: 5438 + - uid: 6285 components: - type: Transform - pos: 21.5,-7.5 - parent: 2 -- proto: VendingMachineSec - entities: - - uid: 4449 + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 5438 + - uid: 6286 components: - type: Transform - pos: -6.5,16.5 - parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 4450 + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 5438 + - uid: 6287 components: - type: Transform - pos: -10.5,12.5 - parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 4451 + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 5438 + - uid: 6288 components: - type: Transform - pos: 13.5,-12.5 - parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 4452 + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 5438 + - uid: 6289 components: - type: Transform - pos: -3.5,17.5 - parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 4453 + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 5438 + - uid: 6290 components: - type: Transform - pos: 25.5,0.5 - parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 4454 + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 5438 + - uid: 6291 components: - type: Transform - pos: 7.5,-16.5 - parent: 2 - - uid: 4455 + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 5438 + - uid: 6292 components: - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 4456 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 5438 + - uid: 6293 components: - type: Transform - pos: 21.5,16.5 - parent: 2 - - uid: 4457 + rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 5438 + - uid: 6294 components: - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 6133 + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 5438 + - uid: 6295 components: - type: Transform - pos: -7.5,0.5 - parent: 5384 - - uid: 6870 + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 5438 + - uid: 6296 components: - type: Transform - pos: -3.5,1.5 - parent: 6631 -- proto: VendingMachineTheater - entities: - - uid: 4458 + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 5438 + - uid: 6297 components: - type: Transform - pos: -18.5,6.5 - parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 4459 + rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 5438 + - uid: 6298 components: - type: Transform - pos: 15.5,-1.5 - parent: 2 -- proto: VendingMachineWallMedical - entities: - - uid: 4460 + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 5438 + - uid: 6299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 4461 + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 5438 + - uid: 6300 components: - type: Transform - pos: 15.5,5.5 - parent: 2 - - uid: 4462 + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 5438 + - uid: 6301 components: - type: Transform - pos: -13.5,0.5 - parent: 2 -- proto: ViolaInstrument - entities: - - uid: 4463 + rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 5438 + - uid: 6302 components: - type: Transform - pos: -13.796835,6.5871654 - parent: 2 -- proto: ViolinInstrument - entities: - - uid: 4464 + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 5438 + - uid: 6303 components: - type: Transform - pos: -13.352391,6.4343877 - parent: 2 -- proto: WallCobblebrick - entities: - - uid: 4465 + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 5438 + - uid: 6304 components: - type: Transform - pos: -22.5,23.5 - parent: 2 - - uid: 4466 + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 5438 + - uid: 6305 components: - type: Transform - pos: -22.5,25.5 - parent: 2 - - uid: 4467 + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 5438 + - uid: 6306 components: - type: Transform - pos: -23.5,25.5 - parent: 2 - - uid: 4468 + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 5438 + - uid: 6307 components: - type: Transform - pos: -22.5,24.5 - parent: 2 - - uid: 4469 + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 5438 + - uid: 6308 components: - type: Transform - pos: -14.5,24.5 - parent: 2 - - uid: 4470 + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 5438 + - uid: 6309 components: - type: Transform - pos: -18.5,26.5 - parent: 2 - - uid: 4471 + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 5438 + - uid: 6310 components: - type: Transform - pos: -19.5,27.5 - parent: 2 - - uid: 4472 + rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 5438 + - uid: 6311 components: - type: Transform - pos: -17.5,25.5 - parent: 2 - - uid: 4473 + rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 5438 + - uid: 6312 components: - type: Transform - pos: -20.5,21.5 - parent: 2 - - uid: 4474 + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 5438 + - uid: 6313 components: - type: Transform - pos: -23.5,26.5 - parent: 2 - - uid: 4475 + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 5438 + - uid: 6314 components: - type: Transform - pos: -23.5,27.5 - parent: 2 - - uid: 4476 + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 5438 + - uid: 6315 components: - type: Transform - pos: -19.5,26.5 - parent: 2 - - uid: 4477 + rot: 3.141592653589793 rad + pos: 15.5,-9.5 + parent: 5438 + - uid: 6316 components: - type: Transform - pos: -14.5,23.5 - parent: 2 - - uid: 4478 + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 5438 + - uid: 6317 components: - type: Transform - pos: -18.5,25.5 - parent: 2 - - uid: 4479 + rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 5438 + - uid: 6318 components: - type: Transform - pos: -16.5,24.5 - parent: 2 - - uid: 4480 + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 5438 + - uid: 6319 components: - type: Transform - pos: -21.5,23.5 - parent: 2 - - uid: 4481 + rot: 3.141592653589793 rad + pos: 17.5,9.5 + parent: 5438 + - uid: 6320 components: - type: Transform - pos: -22.5,27.5 - parent: 2 - - uid: 4482 + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 5438 + - uid: 6321 components: - type: Transform - pos: -20.5,20.5 - parent: 2 - - uid: 4483 + rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 5438 + - uid: 6322 components: - type: Transform - pos: -21.5,21.5 - parent: 2 - - uid: 4484 + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 5438 + - uid: 6323 components: - type: Transform - pos: -21.5,27.5 - parent: 2 - - uid: 4485 + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 5438 + - uid: 6324 components: - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 4486 + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 5438 + - uid: 6325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,22.5 - parent: 2 - - uid: 4487 + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 5438 + - uid: 6326 components: - type: Transform - pos: -20.5,27.5 - parent: 2 - - uid: 4488 + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 5438 + - uid: 6327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 2 - - uid: 4489 + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 5438 + - uid: 6328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,19.5 - parent: 2 - - uid: 4490 + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 5438 + - uid: 6329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,20.5 - parent: 2 - - uid: 4491 + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 5438 + - uid: 6330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 2 -- proto: WallMeat - entities: - - uid: 6134 + rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 5438 + - uid: 6331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 5384 - - uid: 6135 + rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 5438 + - uid: 6332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,11.5 - parent: 5384 - - uid: 6136 + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 5438 + - uid: 8065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 5384 - - uid: 6137 + pos: 7.5,28.5 + parent: 7020 + - uid: 8066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 5384 - - uid: 6138 + pos: 8.5,28.5 + parent: 7020 + - uid: 8067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 5384 - - uid: 6139 + pos: 9.5,28.5 + parent: 7020 + - uid: 8068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 5384 - - uid: 6140 + pos: 10.5,28.5 + parent: 7020 + - uid: 8069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 5384 - - uid: 6141 + pos: 10.5,23.5 + parent: 7020 + - uid: 8070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 5384 - - uid: 6142 + pos: 0.5,5.5 + parent: 7020 + - uid: 8071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 5384 - - uid: 6143 + pos: 2.5,5.5 + parent: 7020 + - uid: 8072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 5384 - - uid: 6144 + pos: -1.5,5.5 + parent: 7020 + - uid: 8073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 5384 - - uid: 6145 + pos: -11.5,16.5 + parent: 7020 + - uid: 8074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 5384 - - uid: 6146 + pos: 8.5,19.5 + parent: 7020 + - uid: 8075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 5384 - - uid: 6147 + pos: 8.5,20.5 + parent: 7020 + - uid: 8076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 5384 - - uid: 6148 + pos: 8.5,16.5 + parent: 7020 + - uid: 8077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 5384 - - uid: 6149 + pos: -10.5,16.5 + parent: 7020 + - uid: 8078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 5384 - - uid: 6150 + pos: 8.5,18.5 + parent: 7020 + - uid: 8079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 5384 - - uid: 6151 + pos: 7.5,16.5 + parent: 7020 + - uid: 8080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 5384 - - uid: 6152 + pos: 6.5,16.5 + parent: 7020 + - uid: 8081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 5384 - - uid: 6153 + pos: 5.5,16.5 + parent: 7020 + - uid: 8082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 5384 - - uid: 6154 + pos: 8.5,17.5 + parent: 7020 + - uid: 8083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 5384 - - uid: 6155 + pos: 7.5,22.5 + parent: 7020 + - uid: 8084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 5384 - - uid: 6156 + pos: 7.5,23.5 + parent: 7020 + - uid: 8085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 5384 - - uid: 6157 + pos: 4.5,16.5 + parent: 7020 + - uid: 8086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 5384 -- proto: WallmountTelevision - entities: - - uid: 4492 + pos: 7.5,24.5 + parent: 7020 + - uid: 8087 components: - type: Transform - pos: -3.5,-5.5 - parent: 2 - - uid: 4493 + pos: 4.5,17.5 + parent: 7020 + - uid: 8088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 2 - - uid: 4494 + pos: 2.5,24.5 + parent: 7020 + - uid: 8089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 2 -- proto: WallPlastitanium - entities: - - uid: 6158 + pos: 1.5,24.5 + parent: 7020 + - uid: 8090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-13.5 - parent: 5384 - - uid: 6159 + pos: 6.5,24.5 + parent: 7020 + - uid: 8091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-14.5 - parent: 5384 - - uid: 6160 + pos: 4.5,24.5 + parent: 7020 + - uid: 8092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 5384 - - uid: 6161 + pos: -13.5,19.5 + parent: 7020 + - uid: 8093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 5384 - - uid: 6162 + pos: 7.5,20.5 + parent: 7020 + - uid: 8094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 5384 - - uid: 6163 + pos: -0.5,13.5 + parent: 7020 + - uid: 8095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 5384 - - uid: 6164 + pos: -12.5,30.5 + parent: 7020 + - uid: 8096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-2.5 - parent: 5384 - - uid: 6165 + pos: 4.5,20.5 + parent: 7020 + - uid: 8097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,0.5 - parent: 5384 - - uid: 6166 + pos: -2.5,15.5 + parent: 7020 + - uid: 8098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,4.5 - parent: 5384 - - uid: 6167 + pos: -16.5,27.5 + parent: 7020 + - uid: 8099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,2.5 - parent: 5384 - - uid: 6168 + rot: 1.5707963267948966 rad + pos: -18.5,24.5 + parent: 7020 + - uid: 8100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 5384 - - uid: 6169 + pos: -15.5,27.5 + parent: 7020 + - uid: 8101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-1.5 - parent: 5384 - - uid: 6170 + pos: -13.5,21.5 + parent: 7020 + - uid: 8102 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-3.5 - parent: 5384 - - uid: 6171 + pos: -16.5,21.5 + parent: 7020 + - uid: 8103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 5384 - - uid: 6172 + pos: -17.5,21.5 + parent: 7020 + - uid: 8104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-5.5 - parent: 5384 - - uid: 6173 + pos: -13.5,30.5 + parent: 7020 + - uid: 8105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-6.5 - parent: 5384 - - uid: 6174 + pos: -3.5,24.5 + parent: 7020 + - uid: 8106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 5384 - - uid: 6175 + pos: -12.5,16.5 + parent: 7020 + - uid: 8107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 5384 - - uid: 6176 + rot: 1.5707963267948966 rad + pos: -18.5,23.5 + parent: 7020 + - uid: 8108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 5384 - - uid: 6177 + pos: 3.5,19.5 + parent: 7020 + - uid: 8109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 5384 - - uid: 6178 + pos: 1.5,14.5 + parent: 7020 + - uid: 8110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 5384 - - uid: 6179 + rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 7020 + - uid: 8111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 5384 - - uid: 6180 + pos: -12.5,27.5 + parent: 7020 + - uid: 8112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-12.5 - parent: 5384 - - uid: 6181 + rot: 1.5707963267948966 rad + pos: -18.5,21.5 + parent: 7020 + - uid: 8113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,22.5 + parent: 7020 + - uid: 8114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-12.5 - parent: 5384 - - uid: 6182 + pos: 4.5,19.5 + parent: 7020 + - uid: 8115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 5384 - - uid: 6183 + pos: 2.5,20.5 + parent: 7020 + - uid: 8116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 5384 - - uid: 6184 + pos: 5.5,20.5 + parent: 7020 + - uid: 8117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 5384 - - uid: 6185 + pos: 1.5,15.5 + parent: 7020 + - uid: 8118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 5384 - - uid: 6186 + pos: -13.5,18.5 + parent: 7020 + - uid: 8119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-15.5 - parent: 5384 - - uid: 6187 + pos: 3.5,17.5 + parent: 7020 + - uid: 8120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 5384 - - uid: 6188 + pos: -13.5,20.5 + parent: 7020 + - uid: 8121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-14.5 - parent: 5384 - - uid: 6189 + pos: 1.5,13.5 + parent: 7020 + - uid: 8122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 5384 - - uid: 6190 + pos: -14.5,21.5 + parent: 7020 + - uid: 8123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-11.5 - parent: 5384 - - uid: 6191 + pos: -15.5,28.5 + parent: 7020 + - uid: 8124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-10.5 - parent: 5384 - - uid: 6192 + pos: -13.5,16.5 + parent: 7020 + - uid: 8125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 5384 - - uid: 6193 + pos: -13.5,17.5 + parent: 7020 + - uid: 8126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 5384 - - uid: 6194 + pos: -9.5,16.5 + parent: 7020 + - uid: 8127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 5384 - - uid: 6195 + pos: -10.5,21.5 + parent: 7020 + - uid: 8128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-10.5 - parent: 5384 - - uid: 6196 + pos: -10.5,25.5 + parent: 7020 + - uid: 8129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 5384 - - uid: 6197 + pos: -15.5,21.5 + parent: 7020 + - uid: 8130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 5384 - - uid: 6198 + pos: 2.5,19.5 + parent: 7020 + - uid: 8131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-4.5 - parent: 5384 - - uid: 6199 + pos: -1.5,21.5 + parent: 7020 + - uid: 8132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 5384 - - uid: 6200 + pos: -1.5,20.5 + parent: 7020 + - uid: 8133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-2.5 - parent: 5384 - - uid: 6201 + pos: 2.5,21.5 + parent: 7020 + - uid: 8134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-2.5 - parent: 5384 - - uid: 6202 + pos: -1.5,19.5 + parent: 7020 + - uid: 8135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 5384 - - uid: 6203 + pos: 2.5,15.5 + parent: 7020 + - uid: 8136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 5384 - - uid: 6204 + pos: 2.5,17.5 + parent: 7020 + - uid: 8137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 5384 - - uid: 6205 + pos: 2.5,16.5 + parent: 7020 + - uid: 8138 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 5384 - - uid: 6206 + pos: 1.5,21.5 + parent: 7020 + - uid: 8139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 5384 - - uid: 6207 + pos: -0.5,15.5 + parent: 7020 + - uid: 8140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 5384 - - uid: 6208 + pos: -0.5,21.5 + parent: 7020 + - uid: 8141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 5384 - - uid: 6209 + pos: -1.5,15.5 + parent: 7020 + - uid: 8142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,7.5 - parent: 5384 - - uid: 6210 + pos: -0.5,14.5 + parent: 7020 + - uid: 8143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 5384 - - uid: 6211 + pos: -2.5,16.5 + parent: 7020 + - uid: 8144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 5384 - - uid: 6212 + pos: -1.5,16.5 + parent: 7020 + - uid: 8145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,11.5 - parent: 5384 - - uid: 6213 + pos: 5.5,24.5 + parent: 7020 + - uid: 8146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 5384 - - uid: 6214 + pos: 0.5,24.5 + parent: 7020 + - uid: 8147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 - parent: 5384 - - uid: 6215 + pos: -1.5,24.5 + parent: 7020 + - uid: 8148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,12.5 - parent: 5384 - - uid: 6216 + pos: -0.5,24.5 + parent: 7020 + - uid: 8149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 5384 - - uid: 6217 + pos: 5.5,22.5 + parent: 7020 + - uid: 8150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,13.5 - parent: 5384 - - uid: 6218 + pos: 5.5,21.5 + parent: 7020 + - uid: 8151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,13.5 - parent: 5384 - - uid: 6219 + pos: 3.5,22.5 + parent: 7020 + - uid: 8152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 5384 - - uid: 6220 + pos: 4.5,22.5 + parent: 7020 + - uid: 8153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 5384 - - uid: 6221 + pos: -1.5,22.5 + parent: 7020 + - uid: 8154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 5384 - - uid: 6222 + pos: 2.5,22.5 + parent: 7020 + - uid: 8155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 5384 - - uid: 6223 + pos: -2.5,24.5 + parent: 7020 + - uid: 8156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 5384 - - uid: 6224 + pos: -2.5,22.5 + parent: 7020 + - uid: 8157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,10.5 - parent: 5384 - - uid: 6225 + pos: -10.5,22.5 + parent: 7020 + - uid: 8158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,9.5 - parent: 5384 - - uid: 6226 + pos: -2.5,19.5 + parent: 7020 + - uid: 8159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 5384 - - uid: 6227 + pos: -11.5,25.5 + parent: 7020 + - uid: 8160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,5.5 - parent: 5384 - - uid: 6228 + pos: -15.5,29.5 + parent: 7020 + - uid: 8161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 5384 - - uid: 6229 + pos: -11.5,26.5 + parent: 7020 + - uid: 8162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 5384 - - uid: 6230 + pos: -14.5,30.5 + parent: 7020 + - uid: 8163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-11.5 - parent: 5384 - - uid: 6231 + pos: -15.5,30.5 + parent: 7020 + - uid: 8164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 5384 - - uid: 6232 + pos: 11.5,21.5 + parent: 7020 + - uid: 8165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 5384 - - uid: 6233 + pos: 11.5,20.5 + parent: 7020 + - uid: 8166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 5384 - - uid: 6234 + pos: 11.5,22.5 + parent: 7020 + - uid: 8167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,2.5 - parent: 5384 - - uid: 6235 + pos: 11.5,23.5 + parent: 7020 + - uid: 8168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,2.5 - parent: 5384 - - uid: 6236 + pos: 10.5,25.5 + parent: 7020 + - uid: 8169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 5384 - - uid: 6237 + pos: 10.5,26.5 + parent: 7020 + - uid: 8170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-3.5 - parent: 5384 - - uid: 6238 + pos: 10.5,24.5 + parent: 7020 + - uid: 8171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-1.5 - parent: 5384 - - uid: 6239 + pos: 10.5,27.5 + parent: 7020 + - uid: 8172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-2.5 - parent: 5384 - - uid: 6240 + pos: 7.5,27.5 + parent: 7020 + - uid: 8173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 - parent: 5384 - - uid: 6241 + pos: 6.5,27.5 + parent: 7020 + - uid: 8174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 5384 - - uid: 6242 + pos: 5.5,27.5 + parent: 7020 + - uid: 8175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-14.5 - parent: 5384 - - uid: 6243 + pos: 3.5,27.5 + parent: 7020 + - uid: 8176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,5.5 - parent: 5384 - - uid: 6244 + pos: 2.5,27.5 + parent: 7020 + - uid: 8177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,6.5 - parent: 5384 - - uid: 6245 + pos: 1.5,27.5 + parent: 7020 + - uid: 8178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 5384 - - uid: 6246 + pos: 0.5,27.5 + parent: 7020 + - uid: 8179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 5384 - - uid: 6247 + pos: 10.5,19.5 + parent: 7020 + - uid: 8180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 5384 - - uid: 6248 + pos: 10.5,18.5 + parent: 7020 + - uid: 8181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 5384 - - uid: 6249 + pos: 10.5,20.5 + parent: 7020 + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 5384 - - uid: 6250 + pos: 10.5,17.5 + parent: 7020 + - uid: 8183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 5384 - - uid: 6251 + rot: 1.5707963267948966 rad + pos: 5.5,30.5 + parent: 7020 + - uid: 8184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 5384 - - uid: 6252 + rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 7020 + - uid: 8185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 5384 - - uid: 6253 + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 7020 + - uid: 8186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-14.5 - parent: 5384 - - uid: 6254 + rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 7020 + - uid: 8187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 5384 - - uid: 6255 + rot: 1.5707963267948966 rad + pos: 1.5,30.5 + parent: 7020 + - uid: 8188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,3.5 - parent: 5384 - - uid: 6256 + rot: 1.5707963267948966 rad + pos: 1.5,29.5 + parent: 7020 + - uid: 8189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 5384 - - uid: 6257 + rot: 1.5707963267948966 rad + pos: 5.5,31.5 + parent: 7020 + - uid: 8190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 5384 - - uid: 6258 + rot: 1.5707963267948966 rad + pos: 1.5,28.5 + parent: 7020 + - uid: 8191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 5384 - - uid: 6259 + rot: 1.5707963267948966 rad + pos: 4.5,31.5 + parent: 7020 + - uid: 8192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 5384 - - uid: 6260 + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 7020 + - uid: 8193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 5384 - - uid: 6261 + rot: 1.5707963267948966 rad + pos: 1.5,31.5 + parent: 7020 + - uid: 8194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-9.5 - parent: 5384 - - uid: 6262 + rot: 1.5707963267948966 rad + pos: -18.5,26.5 + parent: 7020 + - uid: 8195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 5384 - - uid: 6263 + rot: 1.5707963267948966 rad + pos: -18.5,27.5 + parent: 7020 + - uid: 8196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-1.5 - parent: 5384 - - uid: 6264 + rot: 1.5707963267948966 rad + pos: -17.5,27.5 + parent: 7020 + - uid: 8339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 5384 - - uid: 6265 + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 8267 + - uid: 8340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,9.5 - parent: 5384 - - uid: 6266 + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 8267 + - uid: 8341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,11.5 - parent: 5384 - - uid: 6267 + rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 8267 + - uid: 8342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 5384 - - uid: 6268 + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 8267 + - uid: 8343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 5384 - - uid: 6269 + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 8267 + - uid: 8344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 5384 - - uid: 6270 + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 8267 + - uid: 8345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,13.5 - parent: 5384 - - uid: 6271 + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 8267 + - uid: 8346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 5384 - - uid: 6272 + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 8267 + - uid: 8347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,12.5 - parent: 5384 - - uid: 6273 + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 8267 + - uid: 8348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 5384 - - uid: 6274 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 8267 + - uid: 8349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,8.5 - parent: 5384 - - uid: 6275 + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 8267 + - uid: 8350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,12.5 - parent: 5384 - - uid: 6276 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 8267 + - uid: 8351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 5384 - - uid: 6277 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 8267 + - uid: 8352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-13.5 - parent: 5384 - - uid: 6278 + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 8267 + - uid: 8353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,0.5 - parent: 5384 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 8267 - proto: WallReinforced entities: - - uid: 4495 + - uid: 4521 components: - type: Transform pos: 25.5,-9.5 parent: 2 - - uid: 4496 + - uid: 4522 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 4497 + - uid: 4523 components: - type: Transform pos: -13.5,18.5 parent: 2 - - uid: 4498 + - uid: 4524 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-9.5 parent: 2 - - uid: 4499 + - uid: 4525 components: - type: Transform pos: 27.5,-4.5 parent: 2 - - uid: 4500 + - uid: 4526 components: - type: Transform pos: 27.5,-2.5 parent: 2 - - uid: 4501 + - uid: 4527 components: - type: Transform pos: 27.5,-3.5 parent: 2 - - uid: 4502 + - uid: 4528 components: - type: Transform pos: 23.5,-3.5 parent: 2 - - uid: 4503 + - uid: 4529 components: - type: Transform pos: -20.5,19.5 parent: 2 - - uid: 4504 + - uid: 4530 components: - type: Transform pos: -5.5,20.5 parent: 2 - - uid: 4505 + - uid: 4531 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-9.5 parent: 2 - - uid: 4506 + - uid: 4532 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-10.5 parent: 2 - - uid: 4507 + - uid: 4533 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-15.5 parent: 2 - - uid: 4508 + - uid: 4534 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 - - uid: 4509 + - uid: 4535 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-8.5 parent: 2 - - uid: 4510 + - uid: 4536 components: - type: Transform pos: 27.5,-0.5 parent: 2 - - uid: 4511 + - uid: 4537 components: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 4512 + - uid: 4538 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 4513 + - uid: 4539 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-8.5 parent: 2 - - uid: 4514 + - uid: 4540 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-8.5 parent: 2 - - uid: 4515 + - uid: 4541 components: - type: Transform pos: -14.5,22.5 parent: 2 - - uid: 4516 + - uid: 4542 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 - - uid: 4517 + - uid: 4543 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 4518 + - uid: 4544 components: - type: Transform pos: -16.5,20.5 parent: 2 - - uid: 4519 + - uid: 4545 components: - type: Transform pos: -15.5,20.5 parent: 2 - - uid: 4520 + - uid: 4546 components: - type: Transform pos: -19.5,19.5 parent: 2 - - uid: 4521 + - uid: 4547 components: - type: Transform pos: -14.5,21.5 parent: 2 - - uid: 4522 + - uid: 4548 components: - type: Transform pos: 26.5,-6.5 parent: 2 - - uid: 4523 + - uid: 4549 components: - type: Transform pos: -17.5,20.5 parent: 2 - - uid: 4524 + - uid: 4550 components: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 4525 + - uid: 4551 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-12.5 parent: 2 - - uid: 4526 + - uid: 4552 components: - type: Transform pos: -13.5,23.5 parent: 2 - - uid: 4527 + - uid: 4553 components: - type: Transform pos: -18.5,19.5 parent: 2 - - uid: 4528 + - uid: 4554 components: - type: Transform pos: -13.5,22.5 parent: 2 - - uid: 4529 + - uid: 4555 components: - type: Transform pos: -15.5,19.5 parent: 2 - - uid: 4530 + - uid: 4556 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-8.5 parent: 2 - - uid: 4531 + - uid: 4557 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-15.5 parent: 2 - - uid: 4532 + - uid: 4558 components: - type: Transform pos: 20.5,-1.5 parent: 2 - - uid: 4533 + - uid: 4559 components: - type: Transform pos: 20.5,-0.5 parent: 2 - - uid: 4534 + - uid: 4560 components: - type: Transform pos: 29.5,-1.5 parent: 2 - - uid: 4535 + - uid: 4561 components: - type: Transform pos: 29.5,-5.5 parent: 2 - - uid: 4536 + - uid: 4562 components: - type: Transform pos: 31.5,-5.5 parent: 2 - - uid: 4537 + - uid: 4563 components: - type: Transform pos: 30.5,-5.5 parent: 2 - - uid: 4538 + - uid: 4564 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 4539 + - uid: 4565 components: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 4540 + - uid: 4566 components: - type: Transform pos: 3.5,1.5 parent: 2 - - uid: 4541 + - uid: 4567 components: - type: Transform pos: 3.5,2.5 parent: 2 - - uid: 4542 + - uid: 4568 components: - type: Transform pos: 3.5,3.5 parent: 2 - - uid: 4543 + - uid: 4569 components: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 4544 + - uid: 4570 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 4545 + - uid: 4571 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 4546 + - uid: 4572 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 4547 + - uid: 4573 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 4548 + - uid: 4574 components: - type: Transform pos: 7.5,1.5 parent: 2 - - uid: 4549 + - uid: 4575 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 4550 + - uid: 4576 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 4551 + - uid: 4577 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 4552 + - uid: 4578 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 4553 + - uid: 4579 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 4554 + - uid: 4580 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 4555 + - uid: 4581 components: - type: Transform pos: 6.5,-1.5 parent: 2 - - uid: 4556 + - uid: 4582 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 4557 + - uid: 4583 components: - type: Transform pos: 22.5,6.5 parent: 2 - - uid: 4558 + - uid: 4584 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 4559 + - uid: 4585 components: - type: Transform pos: -9.5,17.5 parent: 2 - - uid: 4560 + - uid: 4586 components: - type: Transform pos: -6.5,20.5 parent: 2 - - uid: 4561 + - uid: 4587 components: - type: Transform pos: -9.5,22.5 parent: 2 - - uid: 4562 + - uid: 4588 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 - - uid: 4563 + - uid: 4589 components: - type: Transform pos: -11.5,15.5 parent: 2 - - uid: 4564 + - uid: 4590 components: - type: Transform pos: -11.5,14.5 parent: 2 - - uid: 4565 + - uid: 4591 components: - type: Transform pos: -11.5,13.5 parent: 2 - - uid: 4566 + - uid: 4592 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 4567 + - uid: 4593 components: - type: Transform pos: 26.5,4.5 parent: 2 - - uid: 4568 + - uid: 4594 components: - type: Transform pos: -11.5,17.5 parent: 2 - - uid: 4569 + - uid: 4595 components: - type: Transform pos: -14.5,18.5 parent: 2 - - uid: 4570 + - uid: 4596 components: - type: Transform pos: -16.5,9.5 parent: 2 - - uid: 4571 + - uid: 4597 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 4572 + - uid: 4598 components: - type: Transform pos: -16.5,11.5 parent: 2 - - uid: 4573 + - uid: 4599 components: - type: Transform pos: -16.5,12.5 parent: 2 - - uid: 4574 + - uid: 4600 components: - type: Transform pos: -15.5,12.5 parent: 2 - - uid: 4575 + - uid: 4601 components: - type: Transform pos: -15.5,13.5 parent: 2 - - uid: 4576 + - uid: 4602 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 4577 + - uid: 4603 components: - type: Transform pos: -15.5,15.5 parent: 2 - - uid: 4578 + - uid: 4604 components: - type: Transform pos: -14.5,15.5 parent: 2 - - uid: 4579 + - uid: 4605 components: - type: Transform pos: -13.5,15.5 parent: 2 - - uid: 4580 + - uid: 4606 components: - type: Transform pos: -12.5,15.5 parent: 2 - - uid: 4581 + - uid: 4607 components: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 4582 + - uid: 4608 components: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 4583 + - uid: 4609 components: - type: Transform pos: 2.5,16.5 parent: 2 - - uid: 4584 + - uid: 4610 components: - type: Transform pos: 3.5,16.5 parent: 2 - - uid: 4585 + - uid: 4611 components: - type: Transform pos: 4.5,16.5 parent: 2 - - uid: 4586 + - uid: 4612 components: - type: Transform pos: 4.5,17.5 parent: 2 - - uid: 4587 + - uid: 4613 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,18.5 parent: 2 - - uid: 4588 + - uid: 4614 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 4589 + - uid: 4615 components: - type: Transform pos: 27.5,3.5 parent: 2 - - uid: 4590 + - uid: 4616 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 - - uid: 4591 + - uid: 4617 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-14.5 parent: 2 - - uid: 4592 + - uid: 4618 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-15.5 parent: 2 - - uid: 4593 + - uid: 4619 components: - type: Transform pos: -7.5,17.5 parent: 2 - - uid: 4594 + - uid: 4620 components: - type: Transform pos: -6.5,21.5 parent: 2 - - uid: 4595 + - uid: 4621 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 4596 + - uid: 4622 components: - type: Transform pos: -8.5,22.5 parent: 2 - - uid: 4597 + - uid: 4623 components: - type: Transform pos: -7.5,22.5 parent: 2 - - uid: 4598 + - uid: 4624 components: - type: Transform pos: 21.5,6.5 parent: 2 - - uid: 4599 + - uid: 4625 components: - type: Transform pos: 21.5,4.5 parent: 2 - - uid: 4600 + - uid: 4626 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 4601 + - uid: 4627 components: - type: Transform pos: 25.5,6.5 parent: 2 - - uid: 4602 + - uid: 4628 components: - type: Transform pos: 24.5,6.5 parent: 2 - - uid: 4603 + - uid: 4629 components: - type: Transform pos: 23.5,6.5 parent: 2 - - uid: 4604 + - uid: 4630 components: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 4605 + - uid: 4631 components: - type: Transform pos: 25.5,3.5 parent: 2 - - uid: 4606 + - uid: 4632 components: - type: Transform pos: 25.5,4.5 parent: 2 - - uid: 4607 + - uid: 4633 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 4608 + - uid: 4634 components: - type: Transform pos: -5.5,22.5 parent: 2 - - uid: 4609 + - uid: 4635 components: - type: Transform pos: -13.5,21.5 parent: 2 - - uid: 4610 + - uid: 4636 components: - type: Transform pos: -12.5,22.5 parent: 2 - - uid: 4611 + - uid: 4637 components: - type: Transform pos: -11.5,22.5 parent: 2 - - uid: 4612 + - uid: 4638 components: - type: Transform pos: -10.5,22.5 parent: 2 - - uid: 4613 + - uid: 4639 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 4614 + - uid: 4640 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 4615 + - uid: 4641 components: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 4616 + - uid: 4642 components: - type: Transform pos: -6.5,22.5 parent: 2 - - uid: 4617 + - uid: 4643 components: - type: Transform pos: -5.5,21.5 parent: 2 - - uid: 4618 + - uid: 4644 components: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 4619 + - uid: 4645 components: - type: Transform pos: -17.5,15.5 parent: 2 - - uid: 4620 + - uid: 4646 components: - type: Transform pos: -14.5,19.5 parent: 2 - - uid: 4621 + - uid: 4647 components: - type: Transform pos: -16.5,19.5 parent: 2 - - uid: 4622 + - uid: 4648 components: - type: Transform pos: -16.5,15.5 parent: 2 - - uid: 4623 + - uid: 4649 components: - type: Transform pos: -14.5,20.5 parent: 2 - - uid: 4624 + - uid: 4650 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 4625 + - uid: 4651 components: - type: Transform pos: -19.5,18.5 parent: 2 - - uid: 4626 + - uid: 4652 components: - type: Transform pos: -16.5,14.5 parent: 2 - - uid: 4627 + - uid: 4653 components: - type: Transform pos: -17.5,19.5 parent: 2 - - uid: 4628 + - uid: 4654 components: - type: Transform pos: -17.5,14.5 parent: 2 - - uid: 4629 + - uid: 4655 components: - type: Transform pos: -18.5,18.5 parent: 2 - - uid: 4630 + - uid: 4656 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 4631 + - uid: 4657 components: - type: Transform pos: -19.5,15.5 parent: 2 - - uid: 4632 + - uid: 4658 components: - type: Transform pos: -19.5,14.5 parent: 2 - - uid: 4633 + - uid: 4659 components: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 4634 + - uid: 4660 components: - type: Transform pos: -19.5,16.5 parent: 2 - - uid: 4635 + - uid: 4661 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 4636 + - uid: 4662 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 4637 + - uid: 4663 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 4638 + - uid: 4664 components: - type: Transform pos: -4.5,-3.5 parent: 2 - - uid: 4639 + - uid: 4665 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 4640 + - uid: 4666 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 4641 + - uid: 4667 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 4642 + - uid: 4668 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 4643 + - uid: 4669 components: - type: Transform pos: -4.5,0.5 parent: 2 - - uid: 4644 + - uid: 4670 components: - type: Transform pos: -4.5,2.5 parent: 2 - - uid: 4645 + - uid: 4671 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 4646 + - uid: 4672 components: - type: Transform pos: -2.5,2.5 parent: 2 - - uid: 4647 + - uid: 4673 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 4648 + - uid: 4674 components: - type: Transform pos: 8.5,-0.5 parent: 2 - - uid: 4649 + - uid: 4675 components: - type: Transform pos: 9.5,-0.5 parent: 2 - - uid: 4650 + - uid: 4676 components: - type: Transform pos: 9.5,-1.5 parent: 2 - - uid: 4651 + - uid: 4677 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 4652 + - uid: 4678 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - uid: 4653 + - uid: 4679 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 4654 + - uid: 4680 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 4655 + - uid: 4681 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 4656 + - uid: 4682 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 4657 + - uid: 4683 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 4658 + - uid: 4684 components: - type: Transform pos: 28.5,-5.5 parent: 2 - - uid: 4659 + - uid: 4685 components: - type: Transform pos: 27.5,-1.5 parent: 2 - - uid: 4660 + - uid: 4686 components: - type: Transform pos: 31.5,3.5 parent: 2 - - uid: 4661 + - uid: 4687 components: - type: Transform pos: 27.5,4.5 parent: 2 - - uid: 4662 + - uid: 4688 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-11.5 parent: 2 - - uid: 4663 + - uid: 4689 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 4664 + - uid: 4690 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 4665 + - uid: 4691 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 4666 + - uid: 4692 components: - type: Transform pos: 1.5,-5.5 parent: 2 - - uid: 4667 + - uid: 4693 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 4668 + - uid: 4694 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 4669 + - uid: 4695 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 4670 + - uid: 4696 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 4671 + - uid: 4697 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 4672 + - uid: 4698 components: - type: Transform pos: -3.5,-1.5 parent: 2 - - uid: 4673 + - uid: 4699 components: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 4674 + - uid: 4700 components: - type: Transform pos: -1.5,-1.5 parent: 2 - - uid: 4675 + - uid: 4701 components: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 4676 + - uid: 4702 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 4677 + - uid: 4703 components: - type: Transform pos: 0.5,-1.5 parent: 2 - - uid: 4678 + - uid: 4704 components: - type: Transform pos: 31.5,-1.5 parent: 2 - - uid: 4679 + - uid: 4705 components: - type: Transform pos: -1.5,-0.5 parent: 2 - - uid: 4680 + - uid: 4706 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 4681 + - uid: 4707 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 4682 + - uid: 4708 components: - type: Transform pos: -12.5,23.5 parent: 2 - - uid: 4683 + - uid: 4709 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 4684 + - uid: 4710 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 - - uid: 4685 + - uid: 4711 components: - type: Transform pos: -20.5,15.5 parent: 2 - - uid: 4686 + - uid: 4712 components: - type: Transform pos: 26.5,-7.5 parent: 2 - - uid: 4687 + - uid: 4713 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 4688 + - uid: 4714 components: - type: Transform pos: -21.5,18.5 parent: 2 - - uid: 4689 + - uid: 4715 components: - type: Transform pos: -21.5,17.5 parent: 2 - - uid: 4690 + - uid: 4716 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 4691 + - uid: 4717 components: - type: Transform pos: -20.5,18.5 parent: 2 - - uid: 4692 + - uid: 4718 components: - type: Transform pos: -20.5,16.5 parent: 2 - - uid: 4693 + - uid: 4719 components: - type: Transform pos: 23.5,-2.5 parent: 2 - - uid: 4694 + - uid: 4720 components: - type: Transform pos: 21.5,-0.5 parent: 2 - - uid: 4695 + - uid: 4721 components: - type: Transform pos: 23.5,-0.5 parent: 2 - - uid: 4696 + - uid: 4722 components: - type: Transform pos: 24.5,-0.5 parent: 2 - - uid: 4697 + - uid: 4723 components: - type: Transform pos: 25.5,-0.5 parent: 2 - - uid: 4698 + - uid: 4724 components: - type: Transform pos: 26.5,-0.5 parent: 2 - - uid: 4699 + - uid: 4725 components: - type: Transform pos: 22.5,-0.5 parent: 2 - - uid: 4700 + - uid: 4726 components: - type: Transform pos: 20.5,-3.5 parent: 2 - - uid: 4701 + - uid: 4727 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 4702 + - uid: 4728 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 - - uid: 4703 + - uid: 4729 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-11.5 parent: 2 - - uid: 4704 + - uid: 4730 components: - type: Transform pos: 27.5,-5.5 parent: 2 + - uid: 8197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 7020 + - uid: 8198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 7020 + - uid: 8199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 7020 + - uid: 8200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 7020 + - uid: 8201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 7020 + - uid: 8202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 7020 + - uid: 8203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 7020 + - uid: 8204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 7020 + - uid: 8205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 7020 + - uid: 8206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 7020 + - uid: 8207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 7020 - proto: WallReinforcedRust entities: - - uid: 6279 + - uid: 6333 components: - type: Transform pos: 1.5,8.5 - parent: 5384 - - uid: 6280 + parent: 5438 + - uid: 6334 components: - type: Transform pos: 0.5,8.5 - parent: 5384 - - uid: 6281 + parent: 5438 + - uid: 6335 components: - type: Transform pos: 0.5,9.5 - parent: 5384 - - uid: 6282 + parent: 5438 + - uid: 6336 components: - type: Transform pos: 0.5,7.5 - parent: 5384 - - uid: 6283 + parent: 5438 + - uid: 6337 components: - type: Transform pos: 0.5,5.5 - parent: 5384 - - uid: 6284 + parent: 5438 + - uid: 6338 components: - type: Transform pos: -3.5,-10.5 - parent: 5384 - - uid: 6285 + parent: 5438 + - uid: 6339 components: - type: Transform pos: -4.5,7.5 - parent: 5384 - - uid: 6286 + parent: 5438 + - uid: 6340 components: - type: Transform pos: -1.5,5.5 - parent: 5384 - - uid: 6287 + parent: 5438 + - uid: 6341 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-2.5 - parent: 5384 - - uid: 6288 + parent: 5438 + - uid: 6342 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 - parent: 5384 - - uid: 6289 + parent: 5438 + - uid: 6343 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,12.5 - parent: 5384 - - uid: 6290 + parent: 5438 + - uid: 6344 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 - parent: 5384 - - uid: 6291 + parent: 5438 + - uid: 6345 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,12.5 - parent: 5384 - - uid: 6292 + parent: 5438 + - uid: 6346 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,12.5 - parent: 5384 - - uid: 6293 + parent: 5438 + - uid: 6347 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,11.5 - parent: 5384 - - uid: 6294 + parent: 5438 + - uid: 6348 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 - parent: 5384 - - uid: 6295 + parent: 5438 + - uid: 6349 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,11.5 - parent: 5384 - - uid: 6296 + parent: 5438 + - uid: 6350 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,11.5 - parent: 5384 - - uid: 6297 + parent: 5438 + - uid: 6351 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,11.5 - parent: 5384 - - uid: 6298 + parent: 5438 + - uid: 6352 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,10.5 - parent: 5384 - - uid: 6299 + parent: 5438 + - uid: 6353 components: - type: Transform pos: 12.5,10.5 - parent: 5384 - - uid: 6300 + parent: 5438 + - uid: 6354 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,10.5 - parent: 5384 - - uid: 6301 + parent: 5438 + - uid: 6355 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,8.5 - parent: 5384 - - uid: 6302 + parent: 5438 + - uid: 6356 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,8.5 - parent: 5384 - - uid: 6303 + parent: 5438 + - uid: 6357 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,7.5 - parent: 5384 - - uid: 6304 + parent: 5438 + - uid: 6358 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,6.5 - parent: 5384 - - uid: 6305 + parent: 5438 + - uid: 6359 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,6.5 - parent: 5384 - - uid: 6306 + parent: 5438 + - uid: 6360 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,5.5 - parent: 5384 - - uid: 6307 + parent: 5438 + - uid: 6361 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,4.5 - parent: 5384 - - uid: 6308 + parent: 5438 + - uid: 6362 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,1.5 - parent: 5384 - - uid: 6309 + parent: 5438 + - uid: 6363 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-0.5 - parent: 5384 - - uid: 6310 + parent: 5438 + - uid: 6364 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-1.5 - parent: 5384 - - uid: 6311 + parent: 5438 + - uid: 6365 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-3.5 - parent: 5384 - - uid: 6312 + parent: 5438 + - uid: 6366 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-3.5 - parent: 5384 - - uid: 6313 + parent: 5438 + - uid: 6367 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-4.5 - parent: 5384 - - uid: 6314 + parent: 5438 + - uid: 6368 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-5.5 - parent: 5384 - - uid: 6315 + parent: 5438 + - uid: 6369 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-5.5 - parent: 5384 - - uid: 6316 + parent: 5438 + - uid: 6370 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-8.5 - parent: 5384 - - uid: 6317 + parent: 5438 + - uid: 6371 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-9.5 - parent: 5384 - - uid: 6318 + parent: 5438 + - uid: 6372 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-11.5 - parent: 5384 - - uid: 6319 + parent: 5438 + - uid: 6373 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-13.5 - parent: 5384 - - uid: 6320 + parent: 5438 + - uid: 6374 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-13.5 - parent: 5384 - - uid: 6321 + parent: 5438 + - uid: 6375 components: - type: Transform pos: -2.5,-3.5 - parent: 5384 - - uid: 6322 + parent: 5438 + - uid: 6376 components: - type: Transform pos: -4.5,-3.5 - parent: 5384 - - uid: 6323 + parent: 5438 + - uid: 6377 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 - parent: 5384 - - uid: 6324 + parent: 5438 + - uid: 6378 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 - parent: 5384 - - uid: 6325 + parent: 5438 + - uid: 6379 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 - parent: 5384 - - uid: 6326 + parent: 5438 + - uid: 6380 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 - parent: 5384 - - uid: 6327 + parent: 5438 + - uid: 6381 components: - type: Transform pos: -3.5,-3.5 - parent: 5384 - - uid: 6328 + parent: 5438 + - uid: 6382 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-13.5 - parent: 5384 - - uid: 6329 + parent: 5438 + - uid: 6383 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 - parent: 5384 - - uid: 6330 + parent: 5438 + - uid: 6384 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 - parent: 5384 - - uid: 6331 + parent: 5438 + - uid: 6385 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 - parent: 5384 - - uid: 6332 + parent: 5438 + - uid: 6386 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-11.5 - parent: 5384 - - uid: 6333 + parent: 5438 + - uid: 6387 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-10.5 - parent: 5384 - - uid: 6334 + parent: 5438 + - uid: 6388 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-10.5 - parent: 5384 - - uid: 6335 + parent: 5438 + - uid: 6389 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-9.5 - parent: 5384 - - uid: 6336 + parent: 5438 + - uid: 6390 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-8.5 - parent: 5384 - - uid: 6337 + parent: 5438 + - uid: 6391 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-7.5 - parent: 5384 - - uid: 6338 + parent: 5438 + - uid: 6392 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 - parent: 5384 - - uid: 6339 + parent: 5438 + - uid: 6393 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-4.5 - parent: 5384 - - uid: 6340 + parent: 5438 + - uid: 6394 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-4.5 - parent: 5384 - - uid: 6341 + parent: 5438 + - uid: 6395 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-3.5 - parent: 5384 - - uid: 6342 + parent: 5438 + - uid: 6396 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,1.5 - parent: 5384 - - uid: 6343 + parent: 5438 + - uid: 6397 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,1.5 - parent: 5384 - - uid: 6344 + parent: 5438 + - uid: 6398 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 - parent: 5384 - - uid: 6345 + parent: 5438 + - uid: 6399 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,3.5 - parent: 5384 - - uid: 6346 + parent: 5438 + - uid: 6400 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,7.5 - parent: 5384 - - uid: 6347 + parent: 5438 + - uid: 6401 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,8.5 - parent: 5384 - - uid: 6348 + parent: 5438 + - uid: 6402 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,8.5 - parent: 5384 - - uid: 6349 + parent: 5438 + - uid: 6403 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,9.5 - parent: 5384 - - uid: 6350 + parent: 5438 + - uid: 6404 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,10.5 - parent: 5384 - - uid: 6351 + parent: 5438 + - uid: 6405 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,10.5 - parent: 5384 - - uid: 6352 + parent: 5438 + - uid: 6406 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,10.5 - parent: 5384 - - uid: 6353 + parent: 5438 + - uid: 6407 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,11.5 - parent: 5384 - - uid: 6354 + parent: 5438 + - uid: 6408 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,10.5 - parent: 5384 - - uid: 6355 + parent: 5438 + - uid: 6409 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 - parent: 5384 - - uid: 6356 + parent: 5438 + - uid: 6410 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,1.5 - parent: 5384 - - uid: 6357 + parent: 5438 + - uid: 6411 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,3.5 - parent: 5384 - - uid: 6358 + parent: 5438 + - uid: 6412 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-12.5 - parent: 5384 - - uid: 6359 + parent: 5438 + - uid: 6413 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-12.5 - parent: 5384 - - uid: 6360 + parent: 5438 + - uid: 6414 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 - parent: 5384 - - uid: 6361 + parent: 5438 + - uid: 6415 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 - parent: 5384 - - uid: 6362 + parent: 5438 + - uid: 6416 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 - parent: 5384 - - uid: 6363 + parent: 5438 + - uid: 6417 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 - parent: 5384 - - uid: 6364 + parent: 5438 + - uid: 6418 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-10.5 - parent: 5384 - - uid: 6365 + parent: 5438 + - uid: 6419 components: - type: Transform pos: -4.5,-2.5 - parent: 5384 - - uid: 6366 + parent: 5438 + - uid: 6420 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,9.5 - parent: 5384 - - uid: 6367 + parent: 5438 + - uid: 6421 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,12.5 - parent: 5384 - - uid: 6368 + parent: 5438 + - uid: 6422 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,12.5 - parent: 5384 - - uid: 6369 + parent: 5438 + - uid: 6423 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,12.5 - parent: 5384 - - uid: 6370 + parent: 5438 + - uid: 6424 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,12.5 - parent: 5384 - - uid: 6371 + parent: 5438 + - uid: 6425 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,11.5 - parent: 5384 - - uid: 6372 + parent: 5438 + - uid: 6426 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,11.5 - parent: 5384 - - uid: 6373 + parent: 5438 + - uid: 6427 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,7.5 - parent: 5384 - - uid: 6374 + parent: 5438 + - uid: 6428 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,6.5 - parent: 5384 - - uid: 6375 + parent: 5438 + - uid: 6429 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,6.5 - parent: 5384 - - uid: 6376 + parent: 5438 + - uid: 6430 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,5.5 - parent: 5384 - - uid: 6377 + parent: 5438 + - uid: 6431 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 - parent: 5384 - - uid: 6378 + parent: 5438 + - uid: 6432 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,4.5 - parent: 5384 - - uid: 6379 + parent: 5438 + - uid: 6433 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,0.5 - parent: 5384 - - uid: 6380 + parent: 5438 + - uid: 6434 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-1.5 - parent: 5384 - - uid: 6381 + parent: 5438 + - uid: 6435 components: - type: Transform pos: -4.5,-1.5 - parent: 5384 - - uid: 6382 + parent: 5438 + - uid: 6436 components: - type: Transform pos: -3.5,0.5 - parent: 5384 - - uid: 6383 + parent: 5438 + - uid: 6437 components: - type: Transform pos: -3.5,-0.5 - parent: 5384 - - uid: 6384 + parent: 5438 + - uid: 6438 components: - type: Transform pos: -7.5,-2.5 - parent: 5384 - - uid: 6385 + parent: 5438 + - uid: 6439 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-4.5 - parent: 5384 - - uid: 6386 + parent: 5438 + - uid: 6440 components: - type: Transform pos: -2.5,-4.5 - parent: 5384 - - uid: 6387 + parent: 5438 + - uid: 6441 components: - type: Transform pos: -1.5,-5.5 - parent: 5384 - - uid: 6388 + parent: 5438 + - uid: 6442 components: - type: Transform pos: -2.5,-5.5 - parent: 5384 - - uid: 6389 + parent: 5438 + - uid: 6443 components: - type: Transform pos: -1.5,-4.5 - parent: 5384 - - uid: 6390 + parent: 5438 + - uid: 6444 components: - type: Transform pos: 1.5,-5.5 - parent: 5384 - - uid: 6391 + parent: 5438 + - uid: 6445 components: - type: Transform pos: 2.5,-5.5 - parent: 5384 - - uid: 6392 + parent: 5438 + - uid: 6446 components: - type: Transform pos: 2.5,-4.5 - parent: 5384 - - uid: 6393 + parent: 5438 + - uid: 6447 components: - type: Transform pos: 1.5,-4.5 - parent: 5384 - - uid: 6394 + parent: 5438 + - uid: 6448 components: - type: Transform pos: 0.5,-5.5 - parent: 5384 - - uid: 6395 + parent: 5438 + - uid: 6449 components: - type: Transform pos: 0.5,-4.5 - parent: 5384 - - uid: 6396 + parent: 5438 + - uid: 6450 components: - type: Transform pos: -0.5,-4.5 - parent: 5384 - - uid: 6397 + parent: 5438 + - uid: 6451 components: - type: Transform pos: -0.5,6.5 - parent: 5384 - - uid: 6398 + parent: 5438 + - uid: 6452 components: - type: Transform pos: -0.5,-5.5 - parent: 5384 - - uid: 6399 + parent: 5438 + - uid: 6453 components: - type: Transform pos: 1.5,6.5 - parent: 5384 - - uid: 6400 + parent: 5438 + - uid: 6454 components: - type: Transform pos: 2.5,6.5 - parent: 5384 - - uid: 6401 + parent: 5438 + - uid: 6455 components: - type: Transform pos: 2.5,11.5 - parent: 5384 - - uid: 6402 + parent: 5438 + - uid: 6456 components: - type: Transform pos: 2.5,7.5 - parent: 5384 - - uid: 6403 + parent: 5438 + - uid: 6457 components: - type: Transform pos: -0.5,7.5 - parent: 5384 - - uid: 6404 + parent: 5438 + - uid: 6458 components: - type: Transform pos: 1.5,7.5 - parent: 5384 - - uid: 6405 + parent: 5438 + - uid: 6459 components: - type: Transform pos: -0.5,8.5 - parent: 5384 - - uid: 6406 + parent: 5438 + - uid: 6460 components: - type: Transform pos: -0.5,9.5 - parent: 5384 - - uid: 6407 + parent: 5438 + - uid: 6461 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 - parent: 5384 - - uid: 6408 + parent: 5438 + - uid: 6462 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-7.5 - parent: 5384 - - uid: 6409 + parent: 5438 + - uid: 6463 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 - parent: 5384 - - uid: 6410 + parent: 5438 + - uid: 6464 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-7.5 - parent: 5384 - - uid: 6411 + parent: 5438 + - uid: 6465 components: - type: Transform pos: 3.5,-5.5 - parent: 5384 - - uid: 6412 + parent: 5438 + - uid: 6466 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-11.5 - parent: 5384 - - uid: 6413 + parent: 5438 + - uid: 6467 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-10.5 - parent: 5384 - - uid: 6414 + parent: 5438 + - uid: 6468 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-8.5 - parent: 5384 - - uid: 6415 + parent: 5438 + - uid: 6469 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-8.5 - parent: 5384 - - uid: 6416 + parent: 5438 + - uid: 6470 components: - type: Transform pos: 3.5,-4.5 - parent: 5384 - - uid: 6417 + parent: 5438 + - uid: 6471 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-6.5 - parent: 5384 - - uid: 6418 + parent: 5438 + - uid: 6472 components: - type: Transform pos: 4.5,-4.5 - parent: 5384 - - uid: 6419 + parent: 5438 + - uid: 6473 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 - parent: 5384 - - uid: 6420 + parent: 5438 + - uid: 6474 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 - parent: 5384 - - uid: 6421 + parent: 5438 + - uid: 6475 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,2.5 - parent: 5384 - - uid: 6422 + parent: 5438 + - uid: 6476 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 - parent: 5384 - - uid: 6423 + parent: 5438 + - uid: 6477 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 - parent: 5384 - - uid: 6424 + parent: 5438 + - uid: 6478 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,2.5 - parent: 5384 - - uid: 6425 + parent: 5438 + - uid: 6479 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 5384 - - uid: 6426 + parent: 5438 + - uid: 6480 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,4.5 - parent: 5384 - - uid: 6427 + parent: 5438 + - uid: 6481 components: - type: Transform pos: 5.5,-4.5 - parent: 5384 - - uid: 6428 + parent: 5438 + - uid: 6482 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-13.5 - parent: 5384 - - uid: 6429 + parent: 5438 + - uid: 6483 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-14.5 - parent: 5384 - - uid: 6430 + parent: 5438 + - uid: 6484 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 5384 - - uid: 6431 + parent: 5438 + - uid: 6485 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-13.5 - parent: 5384 - - uid: 6432 + parent: 5438 + - uid: 6486 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-13.5 - parent: 5384 - - uid: 6433 + parent: 5438 + - uid: 6487 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 - parent: 5384 - - uid: 6434 + parent: 5438 + - uid: 6488 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 - parent: 5384 - - uid: 6435 + parent: 5438 + - uid: 6489 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-5.5 - parent: 5384 - - uid: 6436 + parent: 5438 + - uid: 6490 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-4.5 - parent: 5384 - - uid: 6437 + parent: 5438 + - uid: 6491 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 - parent: 5384 - - uid: 6438 + parent: 5438 + - uid: 6492 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 - parent: 5384 - - uid: 6439 + parent: 5438 + - uid: 6493 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 - parent: 5384 - - uid: 6440 + parent: 5438 + - uid: 6494 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 - parent: 5384 - - uid: 6441 + parent: 5438 + - uid: 6495 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 - parent: 5384 - - uid: 6442 + parent: 5438 + - uid: 6496 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,5.5 - parent: 5384 - - uid: 6443 + parent: 5438 + - uid: 6497 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,4.5 - parent: 5384 - - uid: 6444 + parent: 5438 + - uid: 6498 components: - type: Transform pos: 1.5,11.5 - parent: 5384 - - uid: 6445 + parent: 5438 + - uid: 6499 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,5.5 - parent: 5384 - - uid: 6446 + parent: 5438 + - uid: 6500 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,5.5 - parent: 5384 - - uid: 6447 + parent: 5438 + - uid: 6501 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 - parent: 5384 - - uid: 6448 + parent: 5438 + - uid: 6502 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 - parent: 5384 - - uid: 6449 + parent: 5438 + - uid: 6503 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 - parent: 5384 - - uid: 6450 + parent: 5438 + - uid: 6504 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 - parent: 5384 - - uid: 6451 + parent: 5438 + - uid: 6505 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,1.5 - parent: 5384 - - uid: 6452 + parent: 5438 + - uid: 6506 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-0.5 - parent: 5384 - - uid: 6453 + parent: 5438 + - uid: 6507 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-1.5 - parent: 5384 - - uid: 6454 + parent: 5438 + - uid: 6508 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-2.5 - parent: 5384 - - uid: 6455 + parent: 5438 + - uid: 6509 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,3.5 - parent: 5384 - - uid: 6456 + parent: 5438 + - uid: 6510 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 - parent: 5384 - - uid: 6457 + parent: 5438 + - uid: 6511 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,0.5 - parent: 5384 - - uid: 6458 + parent: 5438 + - uid: 6512 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 - parent: 5384 - - uid: 6459 + parent: 5438 + - uid: 6513 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-1.5 - parent: 5384 - - uid: 6460 + parent: 5438 + - uid: 6514 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-3.5 - parent: 5384 - - uid: 6461 + parent: 5438 + - uid: 6515 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-3.5 - parent: 5384 - - uid: 6462 + parent: 5438 + - uid: 6516 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 - parent: 5384 - - uid: 6463 + parent: 5438 + - uid: 6517 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 - parent: 5384 - - uid: 6464 + parent: 5438 + - uid: 6518 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-6.5 - parent: 5384 - - uid: 6465 + parent: 5438 + - uid: 6519 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-1.5 - parent: 5384 - - uid: 6466 + parent: 5438 + - uid: 6520 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-0.5 - parent: 5384 - - uid: 6467 + parent: 5438 + - uid: 6521 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,0.5 - parent: 5384 - - uid: 6468 + parent: 5438 + - uid: 6522 components: - type: Transform pos: 1.5,10.5 - parent: 5384 - - uid: 6469 + parent: 5438 + - uid: 6523 components: - type: Transform pos: 1.5,9.5 - parent: 5384 - - uid: 6470 + parent: 5438 + - uid: 6524 components: - type: Transform pos: -1.5,-3.5 - parent: 5384 - - uid: 6471 + parent: 5438 + - uid: 6525 components: - type: Transform pos: -1.5,-2.5 - parent: 5384 - - uid: 6472 + parent: 5438 + - uid: 6526 components: - type: Transform pos: -1.5,-0.5 - parent: 5384 - - uid: 6473 + parent: 5438 + - uid: 6527 components: - type: Transform pos: -1.5,-1.5 - parent: 5384 - - uid: 6474 + parent: 5438 + - uid: 6528 components: - type: Transform pos: -0.5,-3.5 - parent: 5384 - - uid: 6475 + parent: 5438 + - uid: 6529 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-8.5 - parent: 5384 - - uid: 6476 + parent: 5438 + - uid: 6530 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-8.5 - parent: 5384 - - uid: 6477 + parent: 5438 + - uid: 6531 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-8.5 - parent: 5384 - - uid: 6478 + parent: 5438 + - uid: 6532 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-8.5 - parent: 5384 - - uid: 6479 + parent: 5438 + - uid: 6533 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,1.5 - parent: 5384 - - uid: 6480 + parent: 5438 + - uid: 6534 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-0.5 - parent: 5384 - - uid: 6481 + parent: 5438 + - uid: 6535 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,1.5 - parent: 5384 - - uid: 6482 + parent: 5438 + - uid: 6536 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,0.5 - parent: 5384 - - uid: 6483 + parent: 5438 + - uid: 6537 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,1.5 - parent: 5384 - - uid: 6484 + parent: 5438 + - uid: 6538 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,0.5 - parent: 5384 - - uid: 6485 + parent: 5438 + - uid: 6539 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,0.5 - parent: 5384 - - uid: 6486 + parent: 5438 + - uid: 6540 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,0.5 - parent: 5384 - - uid: 6487 + parent: 5438 + - uid: 6541 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,1.5 - parent: 5384 - - uid: 6488 + parent: 5438 + - uid: 6542 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,1.5 - parent: 5384 - - uid: 6489 + parent: 5438 + - uid: 6543 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-0.5 - parent: 5384 - - uid: 6490 + parent: 5438 + - uid: 6544 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 - parent: 5384 - - uid: 6491 + parent: 5438 + - uid: 6545 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 - parent: 5384 - - uid: 6492 + parent: 5438 + - uid: 6546 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-12.5 - parent: 5384 - - uid: 6493 + parent: 5438 + - uid: 6547 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 - parent: 5384 - - uid: 6494 + parent: 5438 + - uid: 6548 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-12.5 - parent: 5384 - - uid: 6495 + parent: 5438 + - uid: 6549 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-11.5 - parent: 5384 - - uid: 6496 + parent: 5438 + - uid: 6550 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 - parent: 5384 - - uid: 6497 + parent: 5438 + - uid: 6551 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 - parent: 5384 - - uid: 6498 + parent: 5438 + - uid: 6552 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,4.5 - parent: 5384 - - uid: 6499 + parent: 5438 + - uid: 6553 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,4.5 - parent: 5384 - - uid: 6500 + parent: 5438 + - uid: 6554 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 - parent: 5384 - - uid: 6501 + parent: 5438 + - uid: 6555 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-2.5 - parent: 5384 - - uid: 6502 + parent: 5438 + - uid: 6556 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 - parent: 5384 - - uid: 6503 + parent: 5438 + - uid: 6557 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 - parent: 5384 - - uid: 6504 + parent: 5438 + - uid: 6558 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,7.5 - parent: 5384 - - uid: 6505 + parent: 5438 + - uid: 6559 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,10.5 - parent: 5384 - - uid: 6506 + parent: 5438 + - uid: 6560 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 - parent: 5384 - - uid: 6507 + parent: 5438 + - uid: 6561 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,8.5 - parent: 5384 - - uid: 6508 + parent: 5438 + - uid: 6562 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,7.5 - parent: 5384 - - uid: 6509 + parent: 5438 + - uid: 6563 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,7.5 - parent: 5384 - - uid: 6510 + parent: 5438 + - uid: 6564 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,7.5 - parent: 5384 - - uid: 6511 + parent: 5438 + - uid: 6565 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,7.5 - parent: 5384 - - uid: 6512 + parent: 5438 + - uid: 6566 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,2.5 - parent: 5384 - - uid: 6513 + parent: 5438 + - uid: 6567 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,3.5 - parent: 5384 - - uid: 6514 + parent: 5438 + - uid: 6568 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,5.5 - parent: 5384 - - uid: 6515 + parent: 5438 + - uid: 6569 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,6.5 - parent: 5384 - - uid: 6516 + parent: 5438 + - uid: 6570 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,2.5 - parent: 5384 - - uid: 6517 + parent: 5438 + - uid: 6571 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,6.5 - parent: 5384 - - uid: 6518 + parent: 5438 + - uid: 6572 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 - parent: 5384 - - uid: 6519 + parent: 5438 + - uid: 6573 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 - parent: 5384 - - uid: 6520 + parent: 5438 + - uid: 6574 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,2.5 - parent: 5384 - - uid: 6521 + parent: 5438 + - uid: 6575 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,2.5 - parent: 5384 - - uid: 6522 + parent: 5438 + - uid: 6576 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,6.5 - parent: 5384 - - uid: 6523 + parent: 5438 + - uid: 6577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 5438 + - uid: 6578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 5438 + - uid: 6579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 5438 + - uid: 6580 + components: + - type: Transform + pos: -3.5,7.5 + parent: 5438 + - uid: 6581 + components: + - type: Transform + pos: 0.5,4.5 + parent: 5438 + - uid: 6582 + components: + - type: Transform + pos: 2.5,8.5 + parent: 5438 +- proto: WallRock + entities: + - uid: 4731 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 4774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 5384 - - uid: 6524 + pos: -32.5,27.5 + parent: 2 + - uid: 4775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,8.5 - parent: 5384 - - uid: 6525 + pos: -32.5,26.5 + parent: 2 + - uid: 4776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 5384 - - uid: 6526 + pos: -30.5,25.5 + parent: 2 + - uid: 4777 components: - type: Transform - pos: -3.5,7.5 - parent: 5384 - - uid: 6527 + pos: 29.5,-9.5 + parent: 2 + - uid: 4778 components: - type: Transform - pos: 0.5,4.5 - parent: 5384 - - uid: 6528 + pos: 30.5,-10.5 + parent: 2 + - uid: 4779 components: - type: Transform - pos: 2.5,8.5 - parent: 5384 -- proto: WallRock - entities: - - uid: 4705 + pos: -28.5,19.5 + parent: 2 + - uid: 4780 components: - type: Transform pos: 24.5,-18.5 parent: 2 - - uid: 4706 + - uid: 4781 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 4707 + - uid: 4782 components: - type: Transform pos: -19.5,-8.5 parent: 2 - - uid: 4708 + - uid: 4783 components: - type: Transform pos: 18.5,-14.5 parent: 2 - - uid: 4709 + - uid: 4784 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - uid: 4710 + - uid: 4785 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 4711 + - uid: 4786 components: - type: Transform pos: 24.5,-19.5 parent: 2 - - uid: 4712 + - uid: 4787 components: - type: Transform pos: -1.5,24.5 parent: 2 - - uid: 4713 + - uid: 4788 components: - type: Transform pos: -24.5,27.5 parent: 2 - - uid: 4714 + - uid: 4789 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 4715 + - uid: 4790 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 4716 + - uid: 4791 components: - type: Transform pos: 19.5,-22.5 parent: 2 - - uid: 4717 + - uid: 4792 components: - type: Transform pos: 17.5,-22.5 parent: 2 - - uid: 4718 + - uid: 4793 components: - type: Transform pos: -2.5,24.5 parent: 2 - - uid: 4719 + - uid: 4794 components: - type: Transform pos: 2.5,23.5 parent: 2 - - uid: 4720 + - uid: 4795 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 4721 + - uid: 4796 components: - type: Transform pos: 23.5,-21.5 parent: 2 - - uid: 4722 + - uid: 4797 components: - type: Transform pos: -21.5,19.5 parent: 2 - - uid: 4723 + - uid: 4798 components: - type: Transform pos: 18.5,-16.5 parent: 2 - - uid: 4724 + - uid: 4799 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 4725 + - uid: 4800 components: - type: Transform pos: -17.5,26.5 parent: 2 - - uid: 4726 + - uid: 4801 components: - type: Transform pos: -16.5,26.5 parent: 2 - - uid: 4727 + - uid: 4802 components: - type: Transform pos: -17.5,27.5 parent: 2 - - uid: 4728 + - uid: 4803 components: - type: Transform pos: 16.5,-17.5 parent: 2 - - uid: 4729 + - uid: 4804 components: - type: Transform pos: -22.5,28.5 parent: 2 - - uid: 4730 + - uid: 4805 components: - type: Transform pos: 18.5,-22.5 parent: 2 - - uid: 4731 + - uid: 4806 components: - type: Transform pos: 17.5,-23.5 parent: 2 - - uid: 4732 + - uid: 4807 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 4733 + - uid: 4808 components: - type: Transform pos: 22.5,-19.5 parent: 2 - - uid: 4734 + - uid: 4809 components: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 4735 + - uid: 4810 components: - type: Transform pos: 18.5,-24.5 parent: 2 - - uid: 4736 + - uid: 4811 components: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 4737 + - uid: 4812 components: - type: Transform pos: 20.5,-23.5 parent: 2 - - uid: 4738 + - uid: 4813 components: - type: Transform pos: 20.5,-24.5 parent: 2 - - uid: 4739 + - uid: 4814 components: - type: Transform pos: 23.5,-18.5 parent: 2 - - uid: 4740 + - uid: 4815 components: - type: Transform pos: -20.5,28.5 parent: 2 - - uid: 4741 + - uid: 4816 components: - type: Transform pos: -23.5,29.5 parent: 2 - - uid: 4742 + - uid: 4817 components: - type: Transform pos: 23.5,-19.5 parent: 2 - - uid: 4743 + - uid: 4818 components: - type: Transform pos: 18.5,-23.5 parent: 2 - - uid: 4744 + - uid: 4819 components: - type: Transform pos: 2.5,24.5 parent: 2 - - uid: 4745 + - uid: 4820 components: - type: Transform pos: -21.5,28.5 parent: 2 - - uid: 4746 + - uid: 4821 components: - type: Transform pos: -2.5,22.5 parent: 2 - - uid: 4747 + - uid: 4822 components: - type: Transform pos: -16.5,25.5 parent: 2 - - uid: 4748 + - uid: 4823 components: - type: Transform pos: -23.5,28.5 parent: 2 - - uid: 4749 + - uid: 4824 components: - type: Transform pos: -19.5,28.5 parent: 2 - - uid: 4750 + - uid: 4825 components: - type: Transform pos: -21.5,20.5 parent: 2 - - uid: 4751 + - uid: 4826 components: - type: Transform pos: 15.5,20.5 parent: 2 - - uid: 4752 + - uid: 4827 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 4753 + - uid: 4828 components: - type: Transform pos: -3.5,22.5 parent: 2 - - uid: 4754 + - uid: 4829 components: - type: Transform pos: 14.5,22.5 parent: 2 - - uid: 4755 + - uid: 4830 components: - type: Transform pos: -19.5,-7.5 parent: 2 - - uid: 4756 + - uid: 4831 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 4757 + - uid: 4832 components: - type: Transform pos: -19.5,-9.5 parent: 2 - - uid: 4758 + - uid: 4833 components: - type: Transform pos: -17.5,-7.5 parent: 2 - - uid: 4759 + - uid: 4834 components: - type: Transform pos: 16.5,-18.5 parent: 2 - - uid: 4760 + - uid: 4835 components: - type: Transform pos: 13.5,19.5 parent: 2 - - uid: 4761 + - uid: 4836 components: - type: Transform pos: 15.5,21.5 parent: 2 - - uid: 4762 + - uid: 4837 components: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 4763 + - uid: 4838 components: - type: Transform pos: 27.5,6.5 parent: 2 - - uid: 4764 + - uid: 4839 components: - type: Transform pos: 28.5,6.5 parent: 2 - - uid: 4765 + - uid: 4840 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 4766 + - uid: 4841 components: - type: Transform pos: 29.5,13.5 parent: 2 - - uid: 4767 + - uid: 4842 components: - type: Transform pos: 30.5,14.5 parent: 2 - - uid: 4768 + - uid: 4843 components: - type: Transform pos: 30.5,13.5 parent: 2 - - uid: 4769 + - uid: 4844 components: - type: Transform pos: 28.5,17.5 parent: 2 - - uid: 4770 + - uid: 4845 components: - type: Transform pos: -24.5,28.5 parent: 2 - - uid: 4771 + - uid: 4846 components: - type: Transform pos: -29.5,-8.5 parent: 2 - - uid: 4772 + - uid: 4847 components: - type: Transform pos: -30.5,-8.5 parent: 2 - - uid: 4773 + - uid: 4848 components: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 4774 + - uid: 4849 components: - type: Transform pos: -30.5,-6.5 parent: 2 - - uid: 4775 + - uid: 4850 components: - type: Transform pos: -30.5,-5.5 parent: 2 - - uid: 4776 + - uid: 4851 components: - type: Transform pos: -31.5,-7.5 parent: 2 - - uid: 4777 + - uid: 4852 components: - type: Transform pos: -31.5,-6.5 parent: 2 - - uid: 4778 + - uid: 4853 components: - type: Transform pos: -30.5,-4.5 parent: 2 - - uid: 4779 + - uid: 4854 components: - type: Transform pos: -31.5,-5.5 parent: 2 + - uid: 4855 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 - proto: WallRockArtifactFragment entities: - - uid: 4780 + - uid: 4856 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 4781 + - uid: 4857 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 4782 + - uid: 4858 components: - type: Transform pos: 18.5,-11.5 parent: 2 - - uid: 4783 + - uid: 4859 components: - type: Transform pos: 24.5,-14.5 parent: 2 - proto: WallRockCoal entities: - - uid: 4784 + - uid: 4860 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 4785 + - uid: 4861 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 4786 + - uid: 4862 components: - type: Transform pos: 30.5,9.5 parent: 2 - - uid: 4787 + - uid: 4863 components: - type: Transform pos: 30.5,8.5 parent: 2 - - uid: 4788 + - uid: 4864 components: - type: Transform pos: 31.5,9.5 parent: 2 - proto: WallRockSalt entities: - - uid: 4789 + - uid: 4865 components: - type: Transform pos: 19.5,-14.5 parent: 2 - - uid: 4790 + - uid: 4866 components: - type: Transform pos: 4.5,22.5 parent: 2 - - uid: 4791 + - uid: 4867 components: - type: Transform pos: 3.5,22.5 parent: 2 - - uid: 4792 + - uid: 4868 components: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 4793 + - uid: 4869 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 4794 + - uid: 4870 components: - type: Transform pos: 28.5,16.5 parent: 2 - proto: WallRockSilver entities: - - uid: 4795 + - uid: 4871 components: - type: Transform pos: 25.5,-18.5 parent: 2 - - uid: 4796 + - uid: 4872 components: - type: Transform pos: 19.5,-24.5 parent: 2 - proto: WallRockTin entities: - - uid: 4797 + - uid: 4873 components: - type: Transform pos: 4.5,23.5 parent: 2 - - uid: 4798 + - uid: 4874 components: - type: Transform pos: 3.5,23.5 parent: 2 - - uid: 4799 + - uid: 4875 components: - type: Transform pos: 3.5,24.5 parent: 2 - proto: WallRockUranium entities: - - uid: 4800 + - uid: 4876 components: - type: Transform pos: 29.5,14.5 parent: 2 -- proto: WallSolid +- proto: WallShuttle entities: - - uid: 4801 + - uid: 4877 components: - type: Transform - pos: -17.5,-1.5 + pos: -56.5,20.5 parent: 2 - - uid: 4802 + - uid: 8208 components: - type: Transform - pos: -20.5,-8.5 + pos: -5.5,22.5 + parent: 7020 + - uid: 8209 + components: + - type: Transform + pos: -3.5,22.5 + parent: 7020 + - uid: 8210 + components: + - type: Transform + pos: -8.5,22.5 + parent: 7020 + - uid: 8211 + components: + - type: Transform + pos: -10.5,19.5 + parent: 7020 + - uid: 8212 + components: + - type: Transform + pos: -10.5,20.5 + parent: 7020 + - uid: 8213 + components: + - type: Transform + pos: -4.5,22.5 + parent: 7020 + - uid: 8214 + components: + - type: Transform + pos: -9.5,22.5 + parent: 7020 + - uid: 8215 + components: + - type: Transform + pos: -3.5,21.5 + parent: 7020 + - uid: 8216 + components: + - type: Transform + pos: -3.5,19.5 + parent: 7020 + - uid: 8217 + components: + - type: Transform + pos: -3.5,20.5 + parent: 7020 +- proto: WallSolid + entities: + - uid: 4878 + components: + - type: Transform + pos: -17.5,-1.5 parent: 2 - - uid: 4803 + - uid: 4879 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-2.5 parent: 2 - - uid: 4804 + - uid: 4880 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,1.5 parent: 2 - - uid: 4805 + - uid: 4881 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-0.5 parent: 2 - - uid: 4806 + - uid: 4882 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-1.5 parent: 2 - - uid: 4807 + - uid: 4883 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,2.5 parent: 2 - - uid: 4808 + - uid: 4884 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 2 - - uid: 4809 + - uid: 4885 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 4810 + - uid: 4886 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,5.5 parent: 2 - - uid: 4811 + - uid: 4887 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,5.5 parent: 2 - - uid: 4812 + - uid: 4888 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,5.5 parent: 2 - - uid: 4813 + - uid: 4889 components: - type: Transform pos: -9.5,8.5 parent: 2 - - uid: 4814 + - uid: 4890 components: - type: Transform pos: 6.5,18.5 parent: 2 - - uid: 4815 + - uid: 4891 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,18.5 parent: 2 - - uid: 4816 + - uid: 4892 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,0.5 parent: 2 - - uid: 4817 + - uid: 4893 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,0.5 parent: 2 - - uid: 4818 + - uid: 4894 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,7.5 parent: 2 - - uid: 4819 + - uid: 4895 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,2.5 parent: 2 - - uid: 4820 + - uid: 4896 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-0.5 parent: 2 - - uid: 4821 + - uid: 4897 components: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 4822 + - uid: 4898 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-0.5 parent: 2 - - uid: 4823 + - uid: 4899 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 - - uid: 4824 + - uid: 4900 components: - type: Transform pos: 1.5,10.5 parent: 2 - - uid: 4825 + - uid: 4901 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 4826 + - uid: 4902 components: - type: Transform pos: 4.5,-16.5 parent: 2 - - uid: 4827 + - uid: 4903 components: - type: Transform pos: -9.5,10.5 parent: 2 - - uid: 4828 + - uid: 4904 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,13.5 parent: 2 - - uid: 4829 + - uid: 4905 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,9.5 parent: 2 - - uid: 4830 + - uid: 4906 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,14.5 parent: 2 - - uid: 4831 + - uid: 4907 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,5.5 parent: 2 - - uid: 4832 + - uid: 4908 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,18.5 parent: 2 - - uid: 4833 + - uid: 4909 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 - - uid: 4834 + - uid: 4910 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,18.5 parent: 2 - - uid: 4835 + - uid: 4911 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,18.5 parent: 2 - - uid: 4836 + - uid: 4912 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 - - uid: 4837 + - uid: 4913 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,18.5 parent: 2 - - uid: 4838 + - uid: 4914 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,17.5 parent: 2 - - uid: 4839 + - uid: 4915 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,16.5 parent: 2 - - uid: 4840 + - uid: 4916 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,15.5 parent: 2 - - uid: 4841 + - uid: 4917 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 - - uid: 4842 + - uid: 4918 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,14.5 parent: 2 - - uid: 4843 + - uid: 4919 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,14.5 parent: 2 - - uid: 4844 + - uid: 4920 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,14.5 parent: 2 - - uid: 4845 + - uid: 4921 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 - - uid: 4846 + - uid: 4922 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 - - uid: 4847 + - uid: 4923 components: - type: Transform pos: -24.5,-4.5 parent: 2 - - uid: 4848 + - uid: 4924 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,14.5 parent: 2 - - uid: 4849 + - uid: 4925 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-11.5 parent: 2 - - uid: 4850 + - uid: 4926 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-11.5 parent: 2 - - uid: 4851 + - uid: 4927 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-11.5 parent: 2 - - uid: 4852 + - uid: 4928 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-11.5 parent: 2 - - uid: 4853 + - uid: 4929 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 - - uid: 4854 + - uid: 4930 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 - - uid: 4855 + - uid: 4931 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-15.5 parent: 2 - - uid: 4856 + - uid: 4932 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - uid: 4857 + - uid: 4933 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-15.5 parent: 2 - - uid: 4858 + - uid: 4934 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-15.5 parent: 2 - - uid: 4859 + - uid: 4935 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-15.5 parent: 2 - - uid: 4860 + - uid: 4936 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-15.5 parent: 2 - - uid: 4861 + - uid: 4937 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-14.5 parent: 2 - - uid: 4862 + - uid: 4938 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 2 - - uid: 4863 + - uid: 4939 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,17.5 parent: 2 - - uid: 4864 + - uid: 4940 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,6.5 parent: 2 - - uid: 4865 + - uid: 4941 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-9.5 parent: 2 - - uid: 4866 + - uid: 4942 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-10.5 parent: 2 - - uid: 4867 + - uid: 4943 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-8.5 parent: 2 - - uid: 4868 + - uid: 4944 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-15.5 parent: 2 - - uid: 4869 + - uid: 4945 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-15.5 parent: 2 - - uid: 4870 + - uid: 4946 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-15.5 parent: 2 - - uid: 4871 + - uid: 4947 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-15.5 parent: 2 - - uid: 4872 + - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 2 - - uid: 4873 + - uid: 4949 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,9.5 parent: 2 - - uid: 4874 + - uid: 4950 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,9.5 parent: 2 - - uid: 4875 + - uid: 4951 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,9.5 parent: 2 - - uid: 4876 + - uid: 4952 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,6.5 parent: 2 - - uid: 4877 + - uid: 4953 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 - - uid: 4878 + - uid: 4954 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 - - uid: 4879 + - uid: 4955 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,0.5 parent: 2 - - uid: 4880 + - uid: 4956 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 4881 + - uid: 4957 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 - - uid: 4882 + - uid: 4958 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 2 - - uid: 4883 + - uid: 4959 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-18.5 parent: 2 - - uid: 4884 + - uid: 4960 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-16.5 parent: 2 - - uid: 4885 + - uid: 4961 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-19.5 parent: 2 - - uid: 4886 + - uid: 4962 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-16.5 parent: 2 - - uid: 4887 + - uid: 4963 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,13.5 parent: 2 - - uid: 4888 + - uid: 4964 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,13.5 parent: 2 - - uid: 4889 + - uid: 4965 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,11.5 parent: 2 - - uid: 4890 + - uid: 4966 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,10.5 parent: 2 - - uid: 4891 + - uid: 4967 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,13.5 parent: 2 - - uid: 4892 + - uid: 4968 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 - - uid: 4893 + - uid: 4969 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-19.5 parent: 2 - - uid: 4894 + - uid: 4970 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 2 - - uid: 4895 + - uid: 4971 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,1.5 parent: 2 - - uid: 4896 + - uid: 4972 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-5.5 parent: 2 - - uid: 4897 + - uid: 4973 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-5.5 parent: 2 - - uid: 4898 + - uid: 4974 components: - type: Transform pos: -19.5,6.5 parent: 2 - - uid: 4899 + - uid: 4975 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 - - uid: 4900 + - uid: 4976 components: - type: Transform pos: 4.5,-18.5 parent: 2 - - uid: 4901 + - uid: 4977 components: - type: Transform pos: -19.5,7.5 parent: 2 - - uid: 4902 + - uid: 4978 components: - type: Transform pos: -18.5,7.5 parent: 2 - - uid: 4903 + - uid: 4979 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,0.5 parent: 2 - - uid: 4904 + - uid: 4980 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,0.5 parent: 2 - - uid: 4905 + - uid: 4981 components: - type: Transform pos: -10.5,-4.5 parent: 2 - - uid: 4906 + - uid: 4982 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,14.5 parent: 2 - - uid: 4907 + - uid: 4983 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 2 - - uid: 4908 + - uid: 4984 components: - type: Transform pos: -17.5,7.5 parent: 2 - - uid: 4909 + - uid: 4985 components: - type: Transform pos: -16.5,7.5 parent: 2 - - uid: 4910 + - uid: 4986 components: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 4911 + - uid: 4987 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-7.5 parent: 2 - - uid: 4912 + - uid: 4988 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 - - uid: 4913 + - uid: 4989 components: - type: Transform pos: -20.5,0.5 parent: 2 - - uid: 4914 + - uid: 4990 components: - type: Transform pos: -21.5,1.5 parent: 2 - - uid: 4915 + - uid: 4991 components: - type: Transform pos: -21.5,3.5 parent: 2 - - uid: 4916 + - uid: 4992 components: - type: Transform pos: -21.5,4.5 parent: 2 - - uid: 4917 + - uid: 4993 components: - type: Transform pos: -20.5,4.5 parent: 2 - - uid: 4918 + - uid: 4994 components: - type: Transform pos: -19.5,4.5 parent: 2 - - uid: 4919 + - uid: 4995 components: - type: Transform pos: -21.5,0.5 parent: 2 - - uid: 4920 + - uid: 4996 components: - type: Transform pos: -21.5,8.5 parent: 2 - - uid: 4921 + - uid: 4997 components: - type: Transform pos: -19.5,12.5 parent: 2 - - uid: 4922 + - uid: 4998 components: - type: Transform pos: -18.5,12.5 parent: 2 - - uid: 4923 + - uid: 4999 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 4924 + - uid: 5000 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 4925 + - uid: 5001 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 - - uid: 4926 + - uid: 5002 components: - type: Transform pos: -24.5,-3.5 parent: 2 - - uid: 4927 + - uid: 5003 components: - type: Transform pos: -24.5,-2.5 parent: 2 - - uid: 4928 + - uid: 5004 components: - type: Transform pos: -25.5,-3.5 parent: 2 - - uid: 4929 + - uid: 5005 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 4930 + - uid: 5006 components: - type: Transform pos: -28.5,-4.5 parent: 2 - - uid: 4931 + - uid: 5007 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,1.5 parent: 2 - - uid: 4932 + - uid: 5008 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,0.5 parent: 2 - - uid: 4933 + - uid: 5009 components: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 4934 + - uid: 5010 components: - type: Transform pos: -25.5,3.5 parent: 2 - - uid: 4935 + - uid: 5011 components: - type: Transform pos: -26.5,3.5 parent: 2 - - uid: 4936 + - uid: 5012 components: - type: Transform pos: -22.5,3.5 parent: 2 - - uid: 4937 + - uid: 5013 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 4938 + - uid: 5014 components: - type: Transform pos: -24.5,3.5 parent: 2 - - uid: 4939 + - uid: 5015 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 4940 + - uid: 5016 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 4941 + - uid: 5017 components: - type: Transform pos: 2.5,10.5 parent: 2 - - uid: 4942 + - uid: 5018 components: - type: Transform pos: 6.5,10.5 parent: 2 - - uid: 4943 + - uid: 5019 components: - type: Transform pos: 6.5,6.5 parent: 2 - - uid: 4944 + - uid: 5020 components: - type: Transform pos: 2.5,6.5 parent: 2 - - uid: 4945 + - uid: 5021 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 4946 + - uid: 5022 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 4947 + - uid: 5023 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 4948 + - uid: 5024 components: - type: Transform pos: 9.5,8.5 parent: 2 - - uid: 4949 + - uid: 5025 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 4950 + - uid: 5026 components: - type: Transform pos: 9.5,10.5 parent: 2 - - uid: 4951 + - uid: 5027 components: - type: Transform pos: 9.5,11.5 parent: 2 - - uid: 4952 + - uid: 5028 components: - type: Transform pos: 9.5,12.5 parent: 2 - - uid: 4953 + - uid: 5029 components: - type: Transform pos: 12.5,12.5 parent: 2 - - uid: 4954 + - uid: 5030 components: - type: Transform pos: 13.5,12.5 parent: 2 - - uid: 4955 + - uid: 5031 components: - type: Transform pos: 14.5,12.5 parent: 2 - - uid: 4956 + - uid: 5032 components: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 4957 + - uid: 5033 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 4958 + - uid: 5034 components: - type: Transform pos: 15.5,8.5 parent: 2 - - uid: 4959 + - uid: 5035 components: - type: Transform pos: 14.5,6.5 parent: 2 - - uid: 4960 + - uid: 5036 components: - type: Transform pos: 15.5,6.5 parent: 2 - - uid: 4961 + - uid: 5037 components: - type: Transform pos: 16.5,6.5 parent: 2 - - uid: 4962 + - uid: 5038 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 4963 + - uid: 5039 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 4964 + - uid: 5040 components: - type: Transform pos: 18.5,8.5 parent: 2 - - uid: 4965 + - uid: 5041 components: - type: Transform pos: 18.5,7.5 parent: 2 - - uid: 4966 + - uid: 5042 components: - type: Transform pos: 17.5,6.5 parent: 2 - - uid: 4967 + - uid: 5043 components: - type: Transform pos: 18.5,4.5 parent: 2 - - uid: 4968 + - uid: 5044 components: - type: Transform pos: 18.5,5.5 parent: 2 - - uid: 4969 + - uid: 5045 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 4970 + - uid: 5046 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 4971 + - uid: 5047 components: - type: Transform pos: 21.5,7.5 parent: 2 - - uid: 4972 + - uid: 5048 components: - type: Transform pos: 13.5,6.5 parent: 2 - - uid: 4973 + - uid: 5049 components: - type: Transform pos: 12.5,6.5 parent: 2 - - uid: 4974 + - uid: 5050 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 4975 + - uid: 5051 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 4976 + - uid: 5052 components: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 4977 + - uid: 5053 components: - type: Transform pos: 12.5,-0.5 parent: 2 - - uid: 4978 + - uid: 5054 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 4979 + - uid: 5055 components: - type: Transform pos: 13.5,-0.5 parent: 2 - - uid: 4980 + - uid: 5056 components: - type: Transform pos: 14.5,-0.5 parent: 2 - - uid: 4981 + - uid: 5057 components: - type: Transform pos: 15.5,-0.5 parent: 2 - - uid: 4982 + - uid: 5058 components: - type: Transform pos: 16.5,-0.5 parent: 2 - - uid: 4983 + - uid: 5059 components: - type: Transform pos: 17.5,-0.5 parent: 2 - - uid: 4984 + - uid: 5060 components: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 4985 + - uid: 5061 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 4986 + - uid: 5062 components: - type: Transform pos: 17.5,-2.5 parent: 2 - - uid: 4987 + - uid: 5063 components: - type: Transform pos: 17.5,-1.5 parent: 2 - - uid: 4988 + - uid: 5064 components: - type: Transform pos: 12.5,-6.5 parent: 2 - - uid: 4989 + - uid: 5065 components: - type: Transform pos: 14.5,-7.5 parent: 2 - - uid: 4990 + - uid: 5066 components: - type: Transform pos: 15.5,-7.5 parent: 2 - - uid: 4991 + - uid: 5067 components: - type: Transform pos: 16.5,-7.5 parent: 2 - - uid: 4992 + - uid: 5068 components: - type: Transform pos: -0.5,8.5 parent: 2 - - uid: 4993 + - uid: 5069 components: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 4994 + - uid: 5070 components: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 4995 + - uid: 5071 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 4996 + - uid: 5072 components: - type: Transform pos: -0.5,11.5 parent: 2 - - uid: 4997 + - uid: 5073 components: - type: Transform pos: -0.5,12.5 parent: 2 - - uid: 4998 + - uid: 5074 components: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 4999 + - uid: 5075 components: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 5000 + - uid: 5076 components: - type: Transform pos: -0.5,15.5 parent: 2 - - uid: 5001 + - uid: 5077 components: - type: Transform pos: -15.5,8.5 parent: 2 - - uid: 5002 + - uid: 5078 components: - type: Transform pos: -13.5,12.5 parent: 2 - - uid: 5003 + - uid: 5079 components: - type: Transform pos: -14.5,12.5 parent: 2 - - uid: 5004 + - uid: 5080 components: - type: Transform pos: -14.5,8.5 parent: 2 - - uid: 5005 + - uid: 5081 components: - type: Transform pos: -13.5,8.5 parent: 2 - - uid: 5006 + - uid: 5082 components: - type: Transform pos: -13.5,10.5 parent: 2 - - uid: 5007 + - uid: 5083 components: - type: Transform pos: -13.5,9.5 parent: 2 - - uid: 5008 + - uid: 5084 components: - type: Transform pos: -13.5,7.5 parent: 2 - - uid: 5009 + - uid: 5085 components: - type: Transform pos: -12.5,7.5 parent: 2 - - uid: 5010 + - uid: 5086 components: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 5011 + - uid: 5087 components: - type: Transform pos: -10.5,7.5 parent: 2 - - uid: 5012 + - uid: 5088 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 5013 + - uid: 5089 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 5014 + - uid: 5090 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 5015 + - uid: 5091 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 5016 + - uid: 5092 components: - type: Transform pos: -8.5,9.5 parent: 2 - - uid: 5017 + - uid: 5093 components: - type: Transform pos: -7.5,9.5 parent: 2 - - uid: 5018 + - uid: 5094 components: - type: Transform pos: -10.5,6.5 parent: 2 - - uid: 5019 + - uid: 5095 components: - type: Transform pos: -10.5,5.5 parent: 2 - - uid: 5020 + - uid: 5096 components: - type: Transform pos: -6.5,5.5 parent: 2 - - uid: 5021 + - uid: 5097 components: - type: Transform pos: -5.5,6.5 parent: 2 - - uid: 5022 + - uid: 5098 components: - type: Transform pos: -4.5,6.5 parent: 2 - - uid: 5023 + - uid: 5099 components: - type: Transform pos: -3.5,6.5 parent: 2 - - uid: 5024 + - uid: 5100 components: - type: Transform pos: -3.5,8.5 parent: 2 - - uid: 5025 + - uid: 5101 components: - type: Transform pos: -3.5,7.5 parent: 2 - - uid: 5026 + - uid: 5102 components: - type: Transform pos: -12.5,6.5 parent: 2 - - uid: 5027 + - uid: 5103 components: - type: Transform pos: -16.5,6.5 parent: 2 - - uid: 5028 + - uid: 5104 components: - type: Transform pos: -16.5,5.5 parent: 2 - - uid: 5029 + - uid: 5105 components: - type: Transform pos: -16.5,4.5 parent: 2 - - uid: 5030 + - uid: 5106 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 5031 + - uid: 5107 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 5032 + - uid: 5108 components: - type: Transform pos: -16.5,-0.5 parent: 2 - - uid: 5033 + - uid: 5109 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 5034 + - uid: 5110 components: - type: Transform pos: -16.5,1.5 parent: 2 - - uid: 5035 + - uid: 5111 components: - type: Transform pos: -16.5,2.5 parent: 2 - - uid: 5036 + - uid: 5112 components: - type: Transform pos: -15.5,-0.5 parent: 2 - - uid: 5037 + - uid: 5113 components: - type: Transform pos: -13.5,-0.5 parent: 2 - - uid: 5038 + - uid: 5114 components: - type: Transform pos: -10.5,2.5 parent: 2 - - uid: 5039 + - uid: 5115 components: - type: Transform pos: -8.5,2.5 parent: 2 - - uid: 5040 + - uid: 5116 components: - type: Transform pos: -7.5,2.5 parent: 2 - - uid: 5041 + - uid: 5117 components: - type: Transform pos: -10.5,-3.5 parent: 2 - - uid: 5042 + - uid: 5118 components: - type: Transform pos: -10.5,-2.5 parent: 2 - - uid: 5043 + - uid: 5119 components: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 5044 + - uid: 5120 components: - type: Transform pos: -8.5,-2.5 parent: 2 - - uid: 5045 + - uid: 5121 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 5046 + - uid: 5122 components: - type: Transform pos: -10.5,-5.5 parent: 2 - - uid: 5047 + - uid: 5123 components: - type: Transform pos: -14.5,-5.5 parent: 2 - - uid: 5048 + - uid: 5124 components: - type: Transform pos: -15.5,-5.5 parent: 2 - - uid: 5049 + - uid: 5125 components: - type: Transform pos: -16.5,-5.5 parent: 2 - - uid: 5050 + - uid: 5126 components: - type: Transform pos: -18.5,-6.5 parent: 2 - - uid: 5051 + - uid: 5127 components: - type: Transform pos: -19.5,-6.5 parent: 2 - - uid: 5052 + - uid: 5128 components: - type: Transform pos: -16.5,-1.5 parent: 2 - - uid: 5053 + - uid: 5129 components: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 5054 + - uid: 5130 components: - type: Transform pos: 23.5,14.5 parent: 2 - - uid: 5055 + - uid: 5131 components: - type: Transform pos: 22.5,14.5 parent: 2 - - uid: 5056 + - uid: 5132 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 5057 + - uid: 5133 components: - type: Transform pos: 1.5,-11.5 parent: 2 - - uid: 5058 + - uid: 5134 components: - type: Transform pos: 13.5,-8.5 parent: 2 - - uid: 5059 + - uid: 5135 components: - type: Transform pos: 13.5,-10.5 parent: 2 - - uid: 5060 + - uid: 5136 components: - type: Transform pos: 13.5,-7.5 parent: 2 - - uid: 5061 + - uid: 5137 components: - type: Transform pos: -9.5,2.5 parent: 2 - - uid: 5062 + - uid: 5138 components: - type: Transform pos: 14.5,9.5 parent: 2 - - uid: 5063 + - uid: 5139 components: - type: Transform pos: 17.5,-4.5 parent: 2 - - uid: 5064 + - uid: 5140 components: - type: Transform pos: 17.5,-6.5 parent: 2 - - uid: 5065 + - uid: 5141 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 5066 + - uid: 5142 components: - type: Transform pos: 0.5,13.5 parent: 2 - - uid: 5067 + - uid: 5143 components: - type: Transform pos: 1.5,13.5 parent: 2 - - uid: 5068 + - uid: 5144 components: - type: Transform pos: 2.5,13.5 parent: 2 - - uid: 5069 + - uid: 5145 components: - type: Transform pos: 2.5,15.5 parent: 2 - - uid: 5070 + - uid: 5146 components: - type: Transform pos: 1.5,6.5 parent: 2 - - uid: 5071 + - uid: 5147 components: - type: Transform pos: 0.5,6.5 parent: 2 - - uid: 5072 + - uid: 5148 components: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 5073 + - uid: 5149 components: - type: Transform pos: 6.5,8.5 parent: 2 - - uid: 5074 + - uid: 5150 components: - type: Transform pos: 2.5,11.5 parent: 2 - - uid: 5075 + - uid: 5151 components: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 5076 + - uid: 5152 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 5077 + - uid: 5153 components: - type: Transform pos: 9.5,15.5 parent: 2 - - uid: 5078 + - uid: 5154 components: - type: Transform pos: 5.5,14.5 parent: 2 - - uid: 5079 + - uid: 5155 components: - type: Transform pos: 6.5,14.5 parent: 2 - - uid: 5080 + - uid: 5156 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 5081 + - uid: 5157 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 5082 + - uid: 5158 components: - type: Transform pos: 9.5,13.5 parent: 2 - - uid: 5083 + - uid: 5159 components: - type: Transform pos: 13.5,15.5 parent: 2 - - uid: 5084 + - uid: 5160 components: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 5085 + - uid: 5161 components: - type: Transform pos: 15.5,7.5 parent: 2 - - uid: 5086 + - uid: 5162 components: - type: Transform pos: 18.5,6.5 parent: 2 - - uid: 5087 + - uid: 5163 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 5088 + - uid: 5164 components: - type: Transform pos: 18.5,3.5 parent: 2 - - uid: 5089 + - uid: 5165 components: - type: Transform pos: 18.5,-3.5 parent: 2 - - uid: 5090 + - uid: 5166 components: - type: Transform pos: 21.5,-8.5 parent: 2 - - uid: 5091 + - uid: 5167 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 5092 + - uid: 5168 components: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 5093 + - uid: 5169 components: - type: Transform pos: 10.5,-7.5 parent: 2 - - uid: 5094 + - uid: 5170 components: - type: Transform pos: 11.5,-7.5 parent: 2 - - uid: 5095 + - uid: 5171 components: - type: Transform pos: 12.5,-7.5 parent: 2 - - uid: 5096 + - uid: 5172 components: - type: Transform pos: 11.5,-11.5 parent: 2 - - uid: 5097 + - uid: 5173 components: - type: Transform pos: 9.5,-7.5 parent: 2 - - uid: 5098 + - uid: 5174 components: - type: Transform pos: -6.5,9.5 parent: 2 - - uid: 5099 + - uid: 5175 components: - type: Transform pos: -6.5,8.5 parent: 2 - - uid: 5100 + - uid: 5176 components: - type: Transform pos: -6.5,6.5 parent: 2 - - uid: 5101 + - uid: 5177 components: - type: Transform pos: -16.5,-6.5 parent: 2 - - uid: 5102 + - uid: 5178 components: - type: Transform pos: -17.5,-6.5 parent: 2 - - uid: 5103 + - uid: 5179 components: - type: Transform pos: 18.5,1.5 parent: 2 - - uid: 5104 + - uid: 5180 components: - type: Transform pos: 18.5,0.5 parent: 2 - - uid: 5105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 2 - - uid: 5106 + - uid: 5181 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 2 - - uid: 5107 + - uid: 5182 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-5.5 parent: 2 - - uid: 5108 + - uid: 5183 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-5.5 parent: 2 - - uid: 5109 + - uid: 5184 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 - - uid: 5110 + - uid: 5185 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-7.5 parent: 2 - - uid: 5111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 2 - - uid: 5112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-9.5 - parent: 2 - - uid: 5113 + - uid: 5186 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 - - uid: 5114 + - uid: 5187 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-8.5 parent: 2 - - uid: 5115 + - uid: 5188 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 - - uid: 5116 + - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-7.5 parent: 2 - - uid: 5117 + - uid: 5190 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 - - uid: 5118 + - uid: 5191 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 - - uid: 5119 + - uid: 5192 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-9.5 parent: 2 - - uid: 5120 + - uid: 5193 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,5.5 parent: 2 - - uid: 5121 + - uid: 5194 components: - type: Transform rot: 1.5707963267948966 rad @@ -44670,19 +54356,19 @@ entities: parent: 2 - proto: WallSolidDiagonal entities: - - uid: 5122 + - uid: 5195 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,0.5 parent: 2 - - uid: 5123 + - uid: 5196 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-1.5 parent: 2 - - uid: 5124 + - uid: 5197 components: - type: Transform rot: 1.5707963267948966 rad @@ -44690,1028 +54376,1024 @@ entities: parent: 2 - proto: WallSolidRust entities: - - uid: 6529 + - uid: 6583 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-9.5 - parent: 5384 - - uid: 6530 + parent: 5438 + - uid: 6584 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 - parent: 5384 - - uid: 6531 + parent: 5438 + - uid: 6585 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-13.5 - parent: 5384 - - uid: 6532 + parent: 5438 + - uid: 6586 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-12.5 - parent: 5384 - - uid: 6533 + parent: 5438 + - uid: 6587 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-5.5 - parent: 5384 - - uid: 6534 + parent: 5438 + - uid: 6588 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 - parent: 5384 - - uid: 6535 + parent: 5438 + - uid: 6589 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,0.5 - parent: 5384 - - uid: 6536 + parent: 5438 + - uid: 6590 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 - parent: 5384 - - uid: 6537 + parent: 5438 + - uid: 6591 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,9.5 - parent: 5384 - - uid: 6538 + parent: 5438 + - uid: 6592 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,2.5 - parent: 5384 - - uid: 6539 + parent: 5438 + - uid: 6593 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-1.5 - parent: 5384 - - uid: 6540 + parent: 5438 + - uid: 6594 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-2.5 - parent: 5384 - - uid: 6541 + parent: 5438 + - uid: 6595 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-6.5 - parent: 5384 - - uid: 6542 + parent: 5438 + - uid: 6596 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-9.5 - parent: 5384 - - uid: 6543 + parent: 5438 + - uid: 6597 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-12.5 - parent: 5384 - - uid: 6544 + parent: 5438 + - uid: 6598 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 - parent: 5384 - - uid: 6545 + parent: 5438 + - uid: 6599 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-2.5 - parent: 5384 - - uid: 6546 + parent: 5438 + - uid: 6600 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 - parent: 5384 - - uid: 6547 + parent: 5438 + - uid: 6601 components: - type: Transform pos: -7.5,1.5 - parent: 5384 - - uid: 6548 + parent: 5438 + - uid: 6602 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 - parent: 5384 - - uid: 6549 + parent: 5438 + - uid: 6603 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,8.5 - parent: 5384 - - uid: 6550 + parent: 5438 + - uid: 6604 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-2.5 - parent: 5384 - - uid: 6551 + parent: 5438 + - uid: 6605 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,12.5 - parent: 5384 - - uid: 6552 + parent: 5438 + - uid: 6606 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 - parent: 5384 - - uid: 6553 + parent: 5438 + - uid: 6607 components: - type: Transform pos: -5.5,-2.5 - parent: 5384 - - uid: 6554 + parent: 5438 + - uid: 6608 components: - type: Transform pos: 3.5,-6.5 - parent: 5384 - - uid: 6555 + parent: 5438 + - uid: 6609 components: - type: Transform pos: 3.5,-12.5 - parent: 5384 - - uid: 6556 + parent: 5438 + - uid: 6610 components: - type: Transform pos: 4.5,-11.5 - parent: 5384 - - uid: 6557 + parent: 5438 + - uid: 6611 components: - type: Transform pos: 4.5,-7.5 - parent: 5384 - - uid: 6558 + parent: 5438 + - uid: 6612 components: - type: Transform pos: 4.5,-6.5 - parent: 5384 - - uid: 6559 + parent: 5438 + - uid: 6613 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,2.5 - parent: 5384 - - uid: 6560 + parent: 5438 + - uid: 6614 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 - parent: 5384 - - uid: 6561 + parent: 5438 + - uid: 6615 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 - parent: 5384 - - uid: 6562 + parent: 5438 + - uid: 6616 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 - parent: 5384 - - uid: 6563 + parent: 5438 + - uid: 6617 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 - parent: 5384 - - uid: 6564 + parent: 5438 + - uid: 6618 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-8.5 - parent: 5384 - - uid: 6565 + parent: 5438 + - uid: 6619 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-7.5 - parent: 5384 - - uid: 6566 + parent: 5438 + - uid: 6620 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-6.5 - parent: 5384 - - uid: 6567 + parent: 5438 + - uid: 6621 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-8.5 - parent: 5384 - - uid: 6568 + parent: 5438 + - uid: 6622 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-5.5 - parent: 5384 - - uid: 6569 + parent: 5438 + - uid: 6623 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-4.5 - parent: 5384 - - uid: 6570 + parent: 5438 + - uid: 6624 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-4.5 - parent: 5384 - - uid: 6571 + parent: 5438 + - uid: 6625 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-4.5 - parent: 5384 - - uid: 6572 + parent: 5438 + - uid: 6626 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-4.5 - parent: 5384 - - uid: 6573 + parent: 5438 + - uid: 6627 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-7.5 - parent: 5384 - - uid: 6574 + parent: 5438 + - uid: 6628 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-3.5 - parent: 5384 - - uid: 6575 + parent: 5438 + - uid: 6629 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-0.5 - parent: 5384 - - uid: 6576 + parent: 5438 + - uid: 6630 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-0.5 - parent: 5384 - - uid: 6577 + parent: 5438 + - uid: 6631 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-0.5 - parent: 5384 - - uid: 6578 + parent: 5438 + - uid: 6632 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,0.5 - parent: 5384 - - uid: 6579 + parent: 5438 + - uid: 6633 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,1.5 - parent: 5384 - - uid: 6580 + parent: 5438 + - uid: 6634 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,1.5 - parent: 5384 + parent: 5438 - proto: WallWeaponCapacitorRecharger entities: - - uid: 5125 + - uid: 5198 components: - type: Transform pos: -9.5,17.5 parent: 2 - proto: WallWood entities: - - uid: 5126 + - uid: 5199 components: - type: Transform pos: -49.5,16.5 parent: 2 - - uid: 5127 - components: - - type: Transform - pos: -52.5,16.5 - parent: 2 - - uid: 5128 - components: - - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 5129 - components: - - type: Transform - pos: -48.5,22.5 - parent: 2 - - uid: 5130 + - uid: 5200 components: - type: Transform pos: -48.5,21.5 parent: 2 - - uid: 5131 + - uid: 5201 components: - type: Transform pos: -31.5,32.5 parent: 2 - - uid: 5132 + - uid: 5202 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 5133 - components: - - type: Transform - pos: -52.5,21.5 - parent: 2 - - uid: 5134 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 5135 - components: - - type: Transform - pos: -46.5,17.5 - parent: 2 - - uid: 5136 + - uid: 5203 components: - type: Transform pos: -46.5,19.5 parent: 2 - - uid: 5137 - components: - - type: Transform - pos: -52.5,18.5 - parent: 2 - - uid: 5138 + - uid: 5204 components: - type: Transform pos: -48.5,19.5 parent: 2 - - uid: 5139 + - uid: 5205 components: - type: Transform pos: -47.5,22.5 parent: 2 - - uid: 5140 - components: - - type: Transform - pos: -51.5,16.5 - parent: 2 - - uid: 5141 + - uid: 5206 components: - type: Transform pos: -50.5,16.5 parent: 2 - - uid: 5142 + - uid: 5207 components: - type: Transform pos: -46.5,18.5 parent: 2 - - uid: 5143 + - uid: 5208 components: - type: Transform pos: -48.5,20.5 parent: 2 - - uid: 5144 + - uid: 5209 components: - type: Transform pos: -48.5,16.5 parent: 2 - - uid: 5145 + - uid: 5210 components: - type: Transform pos: 5.5,44.5 parent: 2 - - uid: 5146 - components: - - type: Transform - pos: -52.5,19.5 - parent: 2 - - uid: 5147 - components: - - type: Transform - pos: -52.5,17.5 - parent: 2 - - uid: 5148 + - uid: 5211 components: - type: Transform pos: -28.5,30.5 parent: 2 - - uid: 5149 + - uid: 5212 components: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 5150 - components: - - type: Transform - pos: -29.5,29.5 - parent: 2 - - uid: 5151 - components: - - type: Transform - pos: -30.5,29.5 - parent: 2 - - uid: 5152 + - uid: 5213 components: - type: Transform pos: -31.5,29.5 parent: 2 - - uid: 5153 + - uid: 5214 components: - type: Transform pos: -46.5,22.5 parent: 2 - - uid: 5154 + - uid: 5215 components: - type: Transform pos: -45.5,22.5 parent: 2 - - uid: 5155 - components: - - type: Transform - pos: -51.5,21.5 - parent: 2 - - uid: 5156 - components: - - type: Transform - pos: -50.5,21.5 - parent: 2 - - uid: 5157 + - uid: 5216 components: - type: Transform pos: -45.5,19.5 parent: 2 - - uid: 5158 + - uid: 5217 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 5159 + - uid: 5218 components: - type: Transform pos: -47.5,16.5 parent: 2 - - uid: 5160 + - uid: 5219 components: - type: Transform pos: 3.5,39.5 parent: 2 - - uid: 5161 + - uid: 5220 components: - type: Transform pos: 11.5,42.5 parent: 2 - - uid: 5162 + - uid: 5221 components: - type: Transform pos: 9.5,37.5 parent: 2 - - uid: 5163 + - uid: 5222 components: - type: Transform pos: 5.5,38.5 parent: 2 - - uid: 5164 + - uid: 5223 components: - type: Transform pos: 2.5,42.5 parent: 2 - - uid: 5165 + - uid: 5224 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 5166 + - uid: 5225 components: - type: Transform pos: 3.5,38.5 parent: 2 - - uid: 5167 + - uid: 5226 components: - type: Transform pos: 5.5,37.5 parent: 2 - - uid: 5168 + - uid: 5227 components: - type: Transform pos: 10.5,43.5 parent: 2 - - uid: 5169 + - uid: 5228 components: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 5170 + - uid: 5229 components: - type: Transform pos: 10.5,42.5 parent: 2 - - uid: 5171 + - uid: 5230 components: - type: Transform pos: 2.5,40.5 parent: 2 - - uid: 5172 + - uid: 5231 components: - type: Transform pos: 11.5,40.5 parent: 2 - - uid: 5173 + - uid: 5232 components: - type: Transform pos: 2.5,41.5 parent: 2 - - uid: 5174 + - uid: 5233 components: - type: Transform pos: 10.5,39.5 parent: 2 - - uid: 5175 + - uid: 5234 components: - type: Transform pos: 12.5,41.5 parent: 2 - - uid: 5176 + - uid: 5235 components: - type: Transform pos: 9.5,43.5 parent: 2 - - uid: 5177 + - uid: 5236 components: - type: Transform pos: 2.5,39.5 parent: 2 - - uid: 5178 + - uid: 5237 components: - type: Transform pos: 11.5,39.5 parent: 2 - - uid: 5179 + - uid: 5238 components: - type: Transform pos: 6.5,37.5 parent: 2 - - uid: 5180 + - uid: 5239 components: - type: Transform pos: 12.5,42.5 parent: 2 - - uid: 5181 + - uid: 5240 components: - type: Transform pos: 8.5,43.5 parent: 2 - - uid: 5182 + - uid: 5241 components: - type: Transform pos: 7.5,44.5 parent: 2 - - uid: 5183 + - uid: 5242 components: - type: Transform pos: 7.5,43.5 parent: 2 - - uid: 5184 + - uid: 5243 components: - type: Transform pos: 6.5,44.5 parent: 2 - - uid: 5185 + - uid: 5244 components: - type: Transform pos: 10.5,38.5 parent: 2 - - uid: 5186 + - uid: 5245 components: - type: Transform pos: 4.5,38.5 parent: 2 - - uid: 5187 + - uid: 5246 components: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 5188 + - uid: 5247 components: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 5189 + - uid: 5248 components: - type: Transform pos: 3.5,42.5 parent: 2 - - uid: 5190 + - uid: 5249 components: - type: Transform pos: 4.5,43.5 parent: 2 - - uid: 5191 + - uid: 5250 components: - type: Transform pos: 4.5,44.5 parent: 2 - - uid: 5192 + - uid: 5251 components: - type: Transform pos: 7.5,41.5 parent: 2 - - uid: 5193 + - uid: 5252 components: - type: Transform pos: 8.5,42.5 parent: 2 - - uid: 5194 + - uid: 5253 components: - type: Transform pos: 8.5,41.5 parent: 2 - - uid: 5195 + - uid: 5254 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 5196 + - uid: 5255 components: - type: Transform pos: 7.5,39.5 parent: 2 - - uid: 6871 + - uid: 6925 components: - type: Transform pos: -1.5,-3.5 - parent: 6631 - - uid: 6872 + parent: 6685 + - uid: 6926 components: - type: Transform pos: -0.5,-3.5 - parent: 6631 - - uid: 6873 + parent: 6685 + - uid: 6927 components: - type: Transform pos: 0.5,-3.5 - parent: 6631 - - uid: 6874 + parent: 6685 + - uid: 6928 components: - type: Transform pos: 1.5,-3.5 - parent: 6631 - - uid: 6875 + parent: 6685 + - uid: 6929 components: - type: Transform pos: 2.5,-3.5 - parent: 6631 - - uid: 6876 + parent: 6685 + - uid: 6930 components: - type: Transform pos: 0.5,-4.5 - parent: 6631 - - uid: 6877 + parent: 6685 + - uid: 6931 components: - type: Transform pos: 3.5,-3.5 - parent: 6631 - - uid: 6878 + parent: 6685 + - uid: 6932 components: - type: Transform pos: 4.5,-2.5 - parent: 6631 - - uid: 6879 + parent: 6685 + - uid: 6933 components: - type: Transform pos: 3.5,-2.5 - parent: 6631 - - uid: 6880 + parent: 6685 + - uid: 6934 components: - type: Transform pos: -2.5,-3.5 - parent: 6631 - - uid: 6881 + parent: 6685 + - uid: 6935 components: - type: Transform pos: -2.5,-2.5 - parent: 6631 - - uid: 6882 + parent: 6685 + - uid: 6936 components: - type: Transform pos: -3.5,-2.5 - parent: 6631 - - uid: 6883 + parent: 6685 + - uid: 6937 components: - type: Transform pos: -1.5,11.5 - parent: 6631 - - uid: 6884 + parent: 6685 + - uid: 6938 components: - type: Transform pos: -1.5,9.5 - parent: 6631 - - uid: 6885 + parent: 6685 + - uid: 6939 components: - type: Transform pos: -1.5,8.5 - parent: 6631 - - uid: 6886 + parent: 6685 + - uid: 6940 components: - type: Transform pos: -2.5,8.5 - parent: 6631 - - uid: 6887 + parent: 6685 + - uid: 6941 components: - type: Transform pos: -2.5,6.5 - parent: 6631 - - uid: 6888 + parent: 6685 + - uid: 6942 components: - type: Transform pos: -2.5,5.5 - parent: 6631 - - uid: 6889 + parent: 6685 + - uid: 6943 components: - type: Transform pos: 2.5,11.5 - parent: 6631 - - uid: 6890 + parent: 6685 + - uid: 6944 components: - type: Transform pos: 2.5,9.5 - parent: 6631 - - uid: 6891 + parent: 6685 + - uid: 6945 components: - type: Transform pos: 2.5,8.5 - parent: 6631 - - uid: 6892 + parent: 6685 + - uid: 6946 components: - type: Transform pos: 3.5,8.5 - parent: 6631 - - uid: 6893 + parent: 6685 + - uid: 6947 components: - type: Transform pos: 3.5,6.5 - parent: 6631 - - uid: 6894 + parent: 6685 + - uid: 6948 components: - type: Transform pos: 3.5,5.5 - parent: 6631 - - uid: 6895 + parent: 6685 + - uid: 6949 components: - type: Transform pos: -3.5,5.5 - parent: 6631 - - uid: 6896 + parent: 6685 + - uid: 6950 components: - type: Transform pos: -3.5,3.5 - parent: 6631 - - uid: 6897 + parent: 6685 + - uid: 6951 components: - type: Transform pos: 4.5,5.5 - parent: 6631 - - uid: 6898 + parent: 6685 + - uid: 6952 components: - type: Transform pos: 4.5,3.5 - parent: 6631 - - uid: 6899 + parent: 6685 + - uid: 6953 components: - type: Transform pos: 5.5,-1.5 - parent: 6631 - - uid: 6900 + parent: 6685 + - uid: 6954 components: - type: Transform pos: 4.5,-1.5 - parent: 6631 - - uid: 6901 + parent: 6685 + - uid: 6955 components: - type: Transform pos: -4.5,-1.5 - parent: 6631 - - uid: 6902 + parent: 6685 + - uid: 6956 components: - type: Transform pos: -3.5,-1.5 - parent: 6631 - - uid: 6903 + parent: 6685 + - uid: 6957 components: - type: Transform pos: 5.5,2.5 - parent: 6631 - - uid: 6904 + parent: 6685 + - uid: 6958 components: - type: Transform pos: 4.5,2.5 - parent: 6631 - - uid: 6905 + parent: 6685 + - uid: 6959 components: - type: Transform pos: -4.5,2.5 - parent: 6631 - - uid: 6906 + parent: 6685 + - uid: 6960 components: - type: Transform pos: -3.5,2.5 - parent: 6631 - - uid: 6907 + parent: 6685 + - uid: 6961 components: - type: Transform pos: -4.5,1.5 - parent: 6631 - - uid: 6908 + parent: 6685 + - uid: 6962 components: - type: Transform pos: -4.5,-0.5 - parent: 6631 - - uid: 6909 + parent: 6685 + - uid: 6963 components: - type: Transform pos: 5.5,-0.5 - parent: 6631 - - uid: 6910 + parent: 6685 + - uid: 6964 components: - type: Transform pos: 5.5,1.5 - parent: 6631 - - uid: 6911 + parent: 6685 + - uid: 6965 components: - type: Transform pos: 3.5,-4.5 - parent: 6631 - - uid: 6912 + parent: 6685 + - uid: 6966 components: - type: Transform pos: -2.5,-4.5 - parent: 6631 - - uid: 6913 + parent: 6685 + - uid: 6967 components: - type: Transform pos: -0.5,11.5 - parent: 6631 - - uid: 6914 + parent: 6685 + - uid: 6968 components: - type: Transform pos: -0.5,12.5 - parent: 6631 - - uid: 6915 + parent: 6685 + - uid: 6969 components: - type: Transform pos: 1.5,11.5 - parent: 6631 - - uid: 6916 + parent: 6685 + - uid: 6970 components: - type: Transform pos: 1.5,12.5 - parent: 6631 - - uid: 6917 + parent: 6685 + - uid: 6971 components: - type: Transform pos: -0.5,-0.5 - parent: 6631 - - uid: 6918 + parent: 6685 + - uid: 6972 components: - type: Transform pos: 1.5,-0.5 - parent: 6631 - - uid: 6919 + parent: 6685 + - uid: 6973 components: - type: Transform pos: 2.5,-0.5 - parent: 6631 - - uid: 6920 + parent: 6685 + - uid: 6974 components: - type: Transform pos: 2.5,-2.5 - parent: 6631 - - uid: 6921 + parent: 6685 + - uid: 6975 components: - type: Transform pos: 2.5,-1.5 - parent: 6631 - - uid: 6922 + parent: 6685 + - uid: 6976 components: - type: Transform pos: -1.5,-0.5 - parent: 6631 - - uid: 6923 + parent: 6685 + - uid: 6977 components: - type: Transform pos: -2.5,-0.5 - parent: 6631 - - uid: 6924 + parent: 6685 + - uid: 6978 components: - type: Transform pos: 3.5,-0.5 - parent: 6631 - - uid: 6925 + parent: 6685 + - uid: 6979 components: - type: Transform pos: -2.5,2.5 - parent: 6631 - - uid: 6926 + parent: 6685 + - uid: 6980 components: - type: Transform pos: 3.5,2.5 - parent: 6631 - - uid: 6927 + parent: 6685 + - uid: 6981 components: - type: Transform pos: 1.5,8.5 - parent: 6631 - - uid: 6928 + parent: 6685 + - uid: 6982 components: - type: Transform pos: -0.5,8.5 - parent: 6631 - - uid: 6929 + parent: 6685 + - uid: 6983 components: - type: Transform pos: -1.5,5.5 - parent: 6631 - - uid: 6930 + parent: 6685 + - uid: 6984 components: - type: Transform pos: 2.5,5.5 - parent: 6631 - - uid: 6931 + parent: 6685 + - uid: 6985 components: - type: Transform pos: -3.5,-0.5 - parent: 6631 - - uid: 6932 + parent: 6685 + - uid: 6986 components: - type: Transform pos: 4.5,-0.5 - parent: 6631 - - uid: 6933 + parent: 6685 + - uid: 6987 components: - type: Transform pos: -1.5,-1.5 - parent: 6631 - - uid: 6934 + parent: 6685 + - uid: 6988 components: - type: Transform pos: -1.5,-2.5 - parent: 6631 - - uid: 6935 + parent: 6685 + - uid: 6989 components: - type: Transform pos: 3.5,1.5 - parent: 6631 - - uid: 6936 + parent: 6685 + - uid: 6990 components: - type: Transform pos: -2.5,1.5 - parent: 6631 - - uid: 6937 + parent: 6685 + - uid: 6991 components: - type: Transform pos: -0.5,4.5 - parent: 6631 - - uid: 6938 + parent: 6685 + - uid: 6992 components: - type: Transform pos: -1.5,4.5 - parent: 6631 - - uid: 6939 + parent: 6685 + - uid: 6993 components: - type: Transform pos: 1.5,4.5 - parent: 6631 - - uid: 6940 + parent: 6685 + - uid: 6994 components: - type: Transform pos: 2.5,4.5 - parent: 6631 + parent: 6685 + - uid: 8218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,32.5 + parent: 7020 + - uid: 8219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,32.5 + parent: 7020 + - uid: 8220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,31.5 + parent: 7020 + - uid: 8221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,32.5 + parent: 7020 + - uid: 8222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,30.5 + parent: 7020 + - uid: 8223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,32.5 + parent: 7020 + - uid: 8224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 7020 + - uid: 8225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,32.5 + parent: 7020 + - uid: 8226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,31.5 + parent: 7020 + - uid: 8227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 7020 + - uid: 8228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 7020 - proto: WardrobePrisonFilled entities: - - uid: 1816 + - uid: 1810 components: - type: Transform anchored: True @@ -45745,122 +55427,122 @@ entities: showEnts: False occludes: True ents: + - 1811 + - 1812 + - 1813 + - 1814 + - 1815 + - 1816 - 1817 + - 1823 + - 1824 + - 1825 - 1818 - 1819 - 1820 - 1821 - - 1822 - - 1823 - - 1829 - - 1830 - - 1831 - - 1824 - - 1825 - 1826 - - 1827 - - 1832 - - 1828 + - 1822 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WarpPoint entities: - - uid: 5197 + - uid: 5256 components: - type: Transform pos: -6.5,13.5 parent: 2 - type: WarpPoint location: Бриг - - uid: 5198 + - uid: 5257 components: - type: Transform pos: 0.5,0.5 parent: 2 - type: WarpPoint location: Мостик - - uid: 5199 + - uid: 5258 components: - type: Transform pos: 5.5,11.5 parent: 2 - type: WarpPoint location: Медбей - - uid: 5200 + - uid: 5259 components: - type: Transform pos: 18.5,10.5 parent: 2 - type: WarpPoint location: Снабжение - - uid: 5201 + - uid: 5260 components: - type: Transform pos: 15.5,2.5 parent: 2 - type: WarpPoint location: Инженерный - - uid: 5202 + - uid: 5261 components: - type: Transform pos: 19.5,-5.5 parent: 2 - type: WarpPoint location: РнД или НИО - - uid: 5203 + - uid: 5262 components: - type: Transform pos: 6.5,-10.5 parent: 2 - type: WarpPoint location: Сервис - - uid: 5204 + - uid: 5263 components: - type: Transform pos: -14.5,2.5 parent: 2 - type: WarpPoint location: Жилые помещения - - uid: 5205 + - uid: 5264 components: - type: Transform pos: -23.5,1.5 parent: 2 - type: WarpPoint location: Технические помещения - - uid: 6581 + - uid: 6635 components: - type: MetaData name: Обломок плоти - type: Transform pos: 2.5,-0.5 - parent: 5384 + parent: 5438 + - uid: 8229 + components: + - type: Transform + pos: 0.5,18.5 + parent: 7020 + - type: WarpPoint + location: SyndyLand - proto: WarpPointBombing entities: - - uid: 5206 + - uid: 5265 components: - type: Transform pos: 0.5,21.5 parent: 2 - type: WarpPoint location: Камера брига - - uid: 5207 - components: - - type: Transform - pos: -49.5,19.5 - parent: 2 - - type: WarpPoint - location: западный островок - - uid: 5208 + - uid: 5266 components: - type: Transform pos: 26.5,-13.5 parent: 2 - type: WarpPoint location: камера с артефактом - - uid: 5209 + - uid: 5267 components: - type: Transform pos: -20.5,-2.5 @@ -45869,155 +55551,155 @@ entities: location: тех. тунелли на открытом воздухе - proto: WaterCooler entities: - - uid: 5210 + - uid: 5268 components: - type: Transform pos: -26.5,5.5 parent: 2 - proto: WaterTankFull entities: - - uid: 5211 + - uid: 5269 components: - type: Transform pos: -15.5,-1.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 5212 + - uid: 5270 components: - type: Transform pos: 16.5,-12.5 parent: 2 - - uid: 5213 + - uid: 5271 components: - type: Transform pos: -19.5,3.5 parent: 2 - proto: WaterVaporCanister entities: - - uid: 5214 + - uid: 5272 components: - type: Transform pos: 7.5,42.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 5215 + - uid: 5273 components: - type: Transform pos: -7.5,19.5 parent: 2 - - uid: 5216 + - uid: 5274 components: - type: Transform pos: -0.5,2.5 parent: 2 - - uid: 5217 + - uid: 5275 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 2 - - uid: 5218 + - uid: 5276 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,14.5 parent: 2 - - uid: 6582 + - uid: 6636 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,5.5 - parent: 5384 + parent: 5438 - proto: WeaponDisabler entities: - - uid: 3162 + - uid: 3184 components: - type: Transform - parent: 3156 + parent: 3178 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 3163 + - uid: 3185 components: - type: Transform - parent: 3156 + parent: 3178 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 3164 + - uid: 3186 components: - type: Transform - parent: 3156 + parent: 3178 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 3165 + - uid: 3187 components: - type: Transform - parent: 3156 + parent: 3178 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponLaserCannon entities: - - uid: 5219 + - uid: 5277 components: - type: Transform pos: -13.4602785,20.687626 parent: 2 - proto: WeaponLaserCarbine entities: - - uid: 5220 + - uid: 5278 components: - type: Transform pos: -13.512572,20.42742 parent: 2 - proto: WeaponMakeshiftLaser entities: - - uid: 6583 + - uid: 6637 components: - type: Transform pos: 14.5,2.5 - parent: 5384 + parent: 5438 - proto: WeaponMeleeNeedle entities: - - uid: 3166 + - uid: 3188 components: - type: Transform - parent: 3156 + parent: 3178 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponPistolFlintlock entities: - - uid: 3152 + - uid: 3174 components: - type: Transform - parent: 3149 + parent: 3171 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponPistolMk58 entities: - - uid: 5221 + - uid: 5279 components: - type: Transform rot: 3.141592653589793 rad pos: -13.47297,19.610746 parent: 2 - - uid: 5222 + - uid: 5280 components: - type: Transform pos: -13.556303,19.652412 parent: 2 - - uid: 5223 + - uid: 5281 components: - type: Transform pos: -13.568087,19.695602 parent: 2 - - uid: 5224 + - uid: 5282 components: - type: Transform rot: 3.141592653589793 rad @@ -46025,90 +55707,92 @@ entities: parent: 2 - proto: WeaponPistolViper entities: - - uid: 6584 + - uid: 6638 components: - type: Transform pos: 14.514694,6.394104 - parent: 5384 + parent: 5438 - type: Gun selectedMode: FullAuto - type: ChamberMagazineAmmoProvider boltClosed: True + - type: Unremoveable + deleteOnDrop: False - proto: WeaponRevolverDeckard entities: - - uid: 227 + - uid: 233 components: - type: Transform - parent: 217 + parent: 229 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponRevolverPirate entities: - - uid: 3153 + - uid: 3175 components: - type: MetaData desc: Один его вид способен изменить позицию вашего опонента и сделать её более приемлимой name: грозный револьвер - type: Transform - parent: 3149 + parent: 3171 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponRifleAk entities: - - uid: 6941 + - uid: 6995 components: - type: Transform pos: 3.5253906,4.7223663 - parent: 6631 - - uid: 6942 + parent: 6685 + - uid: 6996 components: - type: Transform pos: -2.5058594,4.7223663 - parent: 6631 + parent: 6685 - proto: WeaponRifleLecter entities: - - uid: 5225 + - uid: 5283 components: - type: Transform pos: -13.460488,20.61492 parent: 2 - proto: WeaponRifleM90GrenadeLauncher entities: - - uid: 6943 + - uid: 6997 components: - type: Transform pos: 1.5097656,10.723757 - parent: 6631 + parent: 6685 - proto: WeaponShotgunBlunderbuss entities: - - uid: 3154 + - uid: 3176 components: - type: MetaData desc: Старое оружее полученное в давней битве, никто не знает откуда оно name: раритетный дробовик - type: Transform - parent: 3149 + parent: 3171 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunEnforcer entities: - - uid: 5226 + - uid: 5284 components: - type: Transform pos: -13.450072,20.281586 parent: 2 - proto: WeaponSniperMosin entities: - - uid: 3155 + - uid: 3177 components: - type: MetaData desc: С ней воевали ещё ваши деды name: партизанская винтовка - type: Transform - parent: 3149 + parent: 3171 - type: Physics canCollide: False - type: InsideEntityStorage @@ -46123,86 +55807,81 @@ entities: - type: InsideEntityStorage - proto: WeaponSubMachineGunC20r entities: - - uid: 6585 + - uid: 6639 components: - type: Transform pos: 3.559906,9.428436 - parent: 5384 + parent: 5438 - type: ChamberMagazineAmmoProvider boltClosed: True + - type: Unremoveable + deleteOnDrop: False - proto: WeaponSubMachineGunDrozd entities: - - uid: 5227 + - uid: 5285 components: - type: Transform pos: -13.408405,20.80242 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 6586 + - uid: 6640 components: - type: Transform pos: 0.5,-1.5 - parent: 5384 - - uid: 6587 + parent: 5438 + - uid: 6641 components: - type: Transform pos: 5.5,1.5 - parent: 5384 - - uid: 6588 + parent: 5438 + - uid: 6642 components: - type: Transform pos: 4.5,-3.5 - parent: 5384 + parent: 5438 - proto: WeaponTurretSyndicateDisposable entities: - - uid: 5228 + - uid: 5286 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 - - uid: 6589 + - uid: 6643 components: - type: Transform pos: 16.5,3.5 - parent: 5384 + parent: 5438 - proto: WelderIndustrial entities: - - uid: 5229 + - uid: 5287 components: - type: Transform pos: 20.385881,-7.2462807 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 5230 + - uid: 5288 components: - type: Transform pos: 21.5,0.5 parent: 2 - - uid: 5231 + - uid: 5289 components: - type: Transform pos: -14.5,-1.5 parent: 2 -- proto: WheatSeeds - entities: - - uid: 5232 - components: - - type: Transform - pos: -51.746204,17.266376 - parent: 2 - proto: Windoor entities: - - uid: 5233 + - uid: 5290 components: - type: Transform pos: 4.5,-5.5 parent: 2 - proto: WindoorBarKitchenLocked entities: - - uid: 5234 + - uid: 5291 components: - type: Transform rot: 1.5707963267948966 rad @@ -46210,7 +55889,7 @@ entities: parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 5235 + - uid: 5292 components: - type: Transform rot: 3.141592653589793 rad @@ -46218,60 +55897,60 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 5236 + - uid: 5293 components: - type: Transform pos: -8.5,-5.5 parent: 2 - - uid: 5237 + - uid: 5294 components: - type: Transform pos: -15.5,-1.5 parent: 2 - - uid: 5238 + - uid: 5295 components: - type: Transform pos: -14.5,-1.5 parent: 2 - - uid: 5239 + - uid: 5296 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 5240 + - uid: 5297 components: - type: Transform pos: -5.5,-5.5 parent: 2 - - uid: 5241 + - uid: 5298 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 2 - - uid: 5242 + - uid: 5299 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-7.5 parent: 2 - - uid: 5243 + - uid: 5300 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 5244 + - uid: 5301 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - - uid: 6590 + - uid: 6644 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,7.5 - parent: 5384 + parent: 5438 - type: AccessReader access: - - Engineering @@ -46280,62 +55959,62 @@ entities: - - Salvage - proto: WindoorSecureArmoryLocked entities: - - uid: 5245 + - uid: 5302 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,20.5 parent: 2 - - uid: 5246 + - uid: 5303 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,19.5 parent: 2 - - uid: 5247 + - uid: 5304 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,19.5 parent: 2 - - uid: 5248 + - uid: 5305 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,17.5 parent: 2 - - uid: 5249 + - uid: 5306 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,20.5 parent: 2 - - uid: 5250 + - uid: 5307 components: - type: Transform pos: -8.5,17.5 parent: 2 - - uid: 6591 + - uid: 6645 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,2.5 - parent: 5384 - - uid: 6592 + parent: 5438 + - uid: 6646 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,2.5 - parent: 5384 - - uid: 6593 + parent: 5438 + - uid: 6647 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,2.5 - parent: 5384 + parent: 5438 - proto: WindoorSecureBrigLocked entities: - - uid: 5251 + - uid: 5308 components: - type: Transform rot: 3.141592653589793 rad @@ -46345,26 +56024,26 @@ entities: invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 5257: + 5314: - DoorStatus: DoorBolt - - uid: 5252 + - uid: 5309 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,17.5 parent: 2 - - uid: 5253 + - uid: 5310 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 - - uid: 5254 + - uid: 5311 components: - type: Transform pos: -1.5,11.5 parent: 2 - - uid: 5255 + - uid: 5312 components: - type: Transform rot: 3.141592653589793 rad @@ -46374,9 +56053,9 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5256: + 5313: - DoorStatus: DoorBolt - - uid: 5256 + - uid: 5313 components: - type: Transform pos: -1.5,17.5 @@ -46385,9 +56064,9 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5255: + 5312: - DoorStatus: DoorBolt - - uid: 5257 + - uid: 5314 components: - type: Transform pos: -4.5,17.5 @@ -46396,17 +56075,17 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5251: + 5308: - DoorStatus: DoorBolt - proto: WindoorSecureCargoLocked entities: - - uid: 5258 + - uid: 5315 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 2 - - uid: 5259 + - uid: 5316 components: - type: Transform rot: 1.5707963267948966 rad @@ -46414,20 +56093,20 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 5260 + - uid: 5317 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 2 - - uid: 5261 + - uid: 5318 components: - type: Transform pos: 5.5,10.5 parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 5262 + - uid: 5319 components: - type: Transform rot: 1.5707963267948966 rad @@ -46435,7 +56114,7 @@ entities: parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 5263 + - uid: 5320 components: - type: Transform rot: 3.141592653589793 rad @@ -46443,18 +56122,18 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 5264 + - uid: 5321 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-2.5 parent: 2 - - uid: 6594 + - uid: 6648 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 - parent: 5384 + parent: 5438 - type: AccessReader access: - - Engineering @@ -46463,7 +56142,7 @@ entities: - - Salvage - proto: WindoorSecureSecurityLocked entities: - - uid: 5265 + - uid: 5322 components: - type: Transform rot: 3.141592653589793 rad @@ -46471,58 +56150,76 @@ entities: parent: 2 - proto: WindoorServiceLocked entities: - - uid: 5266 + - uid: 5323 components: - type: Transform pos: -20.5,24.5 parent: 2 - proto: Window entities: - - uid: 5267 + - uid: 5324 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 - - uid: 5268 + - uid: 5325 components: - type: Transform pos: -29.5,32.5 parent: 2 - - uid: 5269 + - uid: 5326 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 5270 + - uid: 5327 components: - type: Transform pos: -31.5,31.5 parent: 2 - - uid: 5271 + - uid: 5328 components: - type: Transform pos: -31.5,30.5 parent: 2 - - uid: 5272 + - uid: 5329 components: - type: Transform pos: 12.5,15.5 parent: 2 - - uid: 5273 + - uid: 5330 components: - type: Transform pos: 10.5,15.5 parent: 2 + - uid: 8230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,29.5 + parent: 7020 + - uid: 8231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 7020 + - uid: 8232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,30.5 + parent: 7020 - proto: WindowClockworkDirectional entities: - - uid: 5274 + - uid: 5331 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,24.5 parent: 2 - - uid: 5275 + - uid: 5332 components: - type: Transform rot: -1.5707963267948966 rad @@ -46530,466 +56227,655 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 5276 + - uid: 5333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 5334 components: - type: Transform pos: -31.5,30.5 parent: 2 - - uid: 5277 + - uid: 5335 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 - - uid: 5278 + - uid: 5336 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,31.5 parent: 2 - - uid: 5279 + - uid: 5337 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,30.5 parent: 2 - - uid: 5280 + - uid: 5338 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,30.5 parent: 2 - - uid: 5281 + - uid: 5339 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,31.5 parent: 2 - - uid: 5282 + - uid: 5340 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,32.5 parent: 2 - - uid: 5283 + - uid: 5341 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,32.5 parent: 2 - - uid: 5284 + - uid: 5342 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,32.5 parent: 2 - - uid: 5285 + - uid: 5343 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 5286 + - uid: 5344 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,32.5 parent: 2 - - uid: 5287 + - uid: 5345 components: - type: Transform pos: -29.5,32.5 parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 6595 + - uid: 6649 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-6.5 - parent: 5384 - - uid: 6596 + parent: 5438 + - uid: 6650 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 5384 - - uid: 6597 + parent: 5438 + - uid: 6651 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,0.5 - parent: 5384 - - uid: 6598 + parent: 5438 + - uid: 6652 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 - parent: 5384 - - uid: 6599 + parent: 5438 + - uid: 6653 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 - parent: 5384 - - uid: 6600 + parent: 5438 + - uid: 6654 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,11.5 - parent: 5384 - - uid: 6601 + parent: 5438 + - uid: 6655 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,11.5 - parent: 5384 - - uid: 6602 + parent: 5438 + - uid: 6656 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,11.5 - parent: 5384 - - uid: 6603 + parent: 5438 + - uid: 6657 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,10.5 - parent: 5384 - - uid: 6604 + parent: 5438 + - uid: 6658 components: - type: Transform pos: 2.5,10.5 - parent: 5384 - - uid: 6605 + parent: 5438 + - uid: 6659 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 - parent: 5384 - - uid: 6606 + parent: 5438 + - uid: 6660 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,4.5 - parent: 5384 - - uid: 6607 + parent: 5438 + - uid: 6661 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,4.5 - parent: 5384 - - uid: 6608 + parent: 5438 + - uid: 6662 components: - type: Transform pos: 9.5,4.5 - parent: 5384 - - uid: 6609 + parent: 5438 + - uid: 6663 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,5.5 - parent: 5384 - - uid: 6610 + parent: 5438 + - uid: 6664 components: - type: Transform pos: 3.5,4.5 - parent: 5384 - - uid: 6611 + parent: 5438 + - uid: 6665 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 - parent: 5384 - - uid: 6612 + parent: 5438 + - uid: 6666 components: - type: Transform pos: 4.5,4.5 - parent: 5384 - - uid: 6613 + parent: 5438 + - uid: 6667 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 - parent: 5384 - - uid: 6614 + parent: 5438 + - uid: 6668 components: - type: Transform pos: 5.5,4.5 - parent: 5384 - - uid: 6615 + parent: 5438 + - uid: 6669 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,0.5 - parent: 5384 - - uid: 6616 + parent: 5438 + - uid: 6670 components: - type: Transform pos: -1.5,9.5 - parent: 5384 - - uid: 6617 + parent: 5438 + - uid: 6671 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 - parent: 5384 - - uid: 6618 + parent: 5438 + - uid: 6672 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,8.5 - parent: 5384 - - uid: 6619 + parent: 5438 + - uid: 6673 components: - type: Transform pos: 15.5,8.5 - parent: 5384 - - uid: 6620 + parent: 5438 + - uid: 6674 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,8.5 - parent: 5384 - - uid: 6621 + parent: 5438 + - uid: 6675 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,8.5 - parent: 5384 - - uid: 6622 + parent: 5438 + - uid: 6676 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 - parent: 5384 - - uid: 6623 + parent: 5438 + - uid: 6677 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,9.5 - parent: 5384 + parent: 5438 + - uid: 8233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 7020 + - uid: 8234 + components: + - type: Transform + pos: -12.5,24.5 + parent: 7020 + - uid: 8235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,25.5 + parent: 7020 + - uid: 8236 + components: + - type: Transform + pos: -12.5,25.5 + parent: 7020 + - uid: 8237 + components: + - type: Transform + pos: -15.5,23.5 + parent: 7020 + - uid: 8238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,23.5 + parent: 7020 + - uid: 8239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,25.5 + parent: 7020 + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,25.5 + parent: 7020 + - uid: 8241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,24.5 + parent: 7020 + - uid: 8242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,22.5 + parent: 7020 + - uid: 8243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 7020 + - uid: 8244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 7020 + - uid: 8245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,25.5 + parent: 7020 + - uid: 8246 + components: + - type: Transform + pos: -16.5,23.5 + parent: 7020 + - uid: 8247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 7020 + - uid: 8248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,26.5 + parent: 7020 + - uid: 8249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,23.5 + parent: 7020 + - uid: 8250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,23.5 + parent: 7020 + - uid: 8251 + components: + - type: Transform + pos: -11.5,23.5 + parent: 7020 + - uid: 8252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,23.5 + parent: 7020 + - uid: 8253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,25.5 + parent: 7020 + - uid: 8254 + components: + - type: Transform + pos: -12.5,23.5 + parent: 7020 + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,25.5 + parent: 7020 + - uid: 8256 + components: + - type: Transform + pos: -17.5,22.5 + parent: 7020 + - uid: 8257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,22.5 + parent: 7020 + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,22.5 + parent: 7020 + - uid: 8259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,26.5 + parent: 7020 + - uid: 8260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,24.5 + parent: 7020 + - uid: 8354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 8267 + - uid: 8355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 8267 + - uid: 8356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 8267 + - uid: 8357 + components: + - type: Transform + pos: -7.5,0.5 + parent: 8267 + - uid: 8358 + components: + - type: Transform + pos: -6.5,0.5 + parent: 8267 + - uid: 8359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 8267 - proto: WindowReinforcedDirectional entities: - - uid: 5288 + - uid: 5346 components: - type: Transform pos: -13.5,20.5 parent: 2 - - uid: 5289 + - uid: 5347 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,18.5 parent: 2 - - uid: 5290 + - uid: 5348 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,21.5 parent: 2 - - uid: 5291 + - uid: 5349 components: - type: Transform pos: -17.5,18.5 parent: 2 - - uid: 5292 + - uid: 5350 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,15.5 parent: 2 - - uid: 5293 + - uid: 5351 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,15.5 parent: 2 - - uid: 5294 + - uid: 5352 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,24.5 parent: 2 - - uid: 5295 + - uid: 5353 components: - type: Transform pos: -23.5,24.5 parent: 2 - - uid: 5296 + - uid: 5354 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 5297 + - uid: 5355 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 - - uid: 5298 + - uid: 5356 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - - uid: 5299 + - uid: 5357 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 2 - - uid: 5300 + - uid: 5358 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 2 - - uid: 5301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,22.5 - parent: 2 - - uid: 5302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,22.5 - parent: 2 - - uid: 5303 + - uid: 5359 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 - - uid: 5304 + - uid: 5360 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 - - uid: 5305 + - uid: 5361 components: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 5306 + - uid: 5362 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,16.5 parent: 2 - - uid: 5307 + - uid: 5363 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 2 - - uid: 5308 + - uid: 5364 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,16.5 parent: 2 - - uid: 5309 + - uid: 5365 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,16.5 parent: 2 - - uid: 5310 + - uid: 5366 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,16.5 parent: 2 - - uid: 5311 + - uid: 5367 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,16.5 parent: 2 - - uid: 5312 + - uid: 5368 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 2 - - uid: 5313 + - uid: 5369 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-8.5 parent: 2 - - uid: 5314 + - uid: 5370 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 5315 + - uid: 5371 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 5316 + - uid: 5372 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 2 - - uid: 5317 + - uid: 5373 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 5318 + - uid: 5374 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 5319 + - uid: 5375 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 5320 + - uid: 5376 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 2 - - uid: 5321 + - uid: 5377 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 2 - - uid: 5322 + - uid: 5378 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,13.5 parent: 2 - - uid: 5323 + - uid: 5379 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 parent: 2 - - uid: 5324 + - uid: 5380 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,11.5 parent: 2 - - uid: 5325 + - uid: 5381 components: - type: Transform pos: -2.5,11.5 parent: 2 - - uid: 5326 + - uid: 5382 components: - type: Transform rot: 3.141592653589793 rad @@ -46997,7 +56883,7 @@ entities: parent: 2 - type: Occluder boundingBox: -0.5,-0.5,0.5,-0.3 - - uid: 5327 + - uid: 5383 components: - type: Transform rot: 3.141592653589793 rad @@ -47005,7 +56891,7 @@ entities: parent: 2 - type: Occluder boundingBox: -0.5,-0.5,0.5,-0.3 - - uid: 5328 + - uid: 5384 components: - type: Transform rot: 3.141592653589793 rad @@ -47013,479 +56899,517 @@ entities: parent: 2 - type: Occluder boundingBox: -0.5,-0.5,0.5,-0.3 - - uid: 5329 + - uid: 5385 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 - - uid: 5330 + - uid: 5386 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 2 - - uid: 5331 + - uid: 5387 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 - - uid: 5332 + - uid: 5388 components: - type: Transform pos: 11.5,-6.5 parent: 2 - - uid: 5333 + - uid: 5389 components: - type: Transform pos: 7.5,3.5 parent: 2 - - uid: 5334 + - uid: 5390 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 5335 + - uid: 5391 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 2 - - uid: 5336 + - uid: 5392 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 5337 + - uid: 5393 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,3.5 parent: 2 - - uid: 5338 + - uid: 5394 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 5339 + - uid: 5395 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 2 - - uid: 5340 + - uid: 5396 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 2 - - uid: 5341 + - uid: 5397 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-3.5 parent: 2 - - uid: 5342 + - uid: 5398 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2 - - uid: 5343 + - uid: 5399 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 2 - - uid: 5344 + - uid: 5400 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,9.5 parent: 2 - - uid: 5345 + - uid: 5401 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 2 - - uid: 5346 + - uid: 5402 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,13.5 parent: 2 - - uid: 5347 + - uid: 5403 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,12.5 parent: 2 - - uid: 5348 + - uid: 5404 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,8.5 parent: 2 - - uid: 5349 + - uid: 5405 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,13.5 parent: 2 - - uid: 5350 + - uid: 5406 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,12.5 parent: 2 - - uid: 5351 + - uid: 5407 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,9.5 parent: 2 - - uid: 5352 + - uid: 5408 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 5353 + - uid: 5409 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 2 - - uid: 5354 + - uid: 5410 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 - - uid: 5355 + - uid: 5411 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 parent: 2 - - uid: 5356 + - uid: 5412 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 2 - - uid: 5357 + - uid: 5413 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,43.5 parent: 2 - - uid: 5358 + - uid: 5414 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,43.5 parent: 2 - - uid: 5359 + - uid: 5415 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-7.5 parent: 2 - - uid: 5360 + - uid: 5416 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,19.5 parent: 2 - - uid: 5361 + - uid: 5417 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 2 - - uid: 5362 + - uid: 5418 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,19.5 parent: 2 - - uid: 5363 + - uid: 5419 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 2 - - uid: 5364 + - uid: 5420 components: - type: Transform pos: 34.5,-6.5 parent: 2 - - uid: 5365 + - uid: 5421 components: - type: Transform pos: -5.5,18.5 parent: 2 - - uid: 5366 + - uid: 5422 components: - type: Transform pos: -6.5,18.5 parent: 2 - - uid: 5367 + - uid: 5423 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,19.5 parent: 2 - - uid: 5368 + - uid: 5424 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,19.5 parent: 2 - - uid: 6624 + - uid: 6678 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,6.5 - parent: 5384 - - uid: 6625 + parent: 5438 + - uid: 6679 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 - parent: 5384 - - uid: 6626 + parent: 5438 + - uid: 6680 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 - parent: 5384 - - uid: 6627 + parent: 5438 + - uid: 6681 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 - parent: 5384 - - uid: 6628 + parent: 5438 + - uid: 6682 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,7.5 - parent: 5384 - - uid: 6629 + parent: 5438 + - uid: 6683 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,4.5 - parent: 5384 - - uid: 6630 + parent: 5438 + - uid: 6684 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 - parent: 5384 - - uid: 6944 + parent: 5438 + - uid: 6998 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 - parent: 6631 - - uid: 6945 + parent: 6685 + - uid: 6999 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 - parent: 6631 - - uid: 6946 + parent: 6685 + - uid: 7000 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,10.5 - parent: 6631 - - uid: 6947 + parent: 6685 + - uid: 7001 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 - parent: 6631 - - uid: 6948 + parent: 6685 + - uid: 7002 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,4.5 - parent: 6631 - - uid: 6949 + parent: 6685 + - uid: 7003 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,4.5 - parent: 6631 - - uid: 6950 + parent: 6685 + - uid: 7004 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 - parent: 6631 - - uid: 6951 + parent: 6685 + - uid: 7005 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,4.5 - parent: 6631 - - uid: 6952 + parent: 6685 + - uid: 7006 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 - parent: 6631 - - uid: 6953 + parent: 6685 + - uid: 7007 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,7.5 - parent: 6631 - - uid: 6954 + parent: 6685 + - uid: 7008 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,10.5 - parent: 6631 - - uid: 6955 + parent: 6685 + - uid: 7009 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 - parent: 6631 - - uid: 6956 + parent: 6685 + - uid: 7010 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 - parent: 6631 - - uid: 6957 + parent: 6685 + - uid: 7011 components: - type: Transform pos: 0.5,14.5 - parent: 6631 - - uid: 6958 + parent: 6685 + - uid: 7012 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,13.5 - parent: 6631 - - uid: 6959 + parent: 6685 + - uid: 7013 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,14.5 - parent: 6631 - - uid: 6960 + parent: 6685 + - uid: 7014 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 - parent: 6631 - - uid: 6961 + parent: 6685 + - uid: 7015 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 - parent: 6631 - - uid: 6962 + parent: 6685 + - uid: 7016 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 - parent: 6631 - - uid: 6963 + parent: 6685 + - uid: 7017 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,13.5 - parent: 6631 - - uid: 6964 + parent: 6685 + - uid: 7018 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 - parent: 6631 - - uid: 6965 + parent: 6685 + - uid: 7019 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 - parent: 6631 + parent: 6685 - proto: WoodDoor entities: - - uid: 5369 + - uid: 5425 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 5426 components: - type: Transform pos: -45.5,21.5 parent: 2 - - uid: 5370 + - uid: 5427 components: - type: Transform pos: -45.5,20.5 parent: 2 - - uid: 5371 + - uid: 5428 components: - type: Transform pos: 8.5,37.5 parent: 2 - - uid: 5372 + - uid: 5429 components: - type: Transform pos: -28.5,31.5 parent: 2 - - uid: 5373 - components: - - type: Transform - pos: 7.5,40.5 - parent: 2 - proto: WoodenBench entities: - - uid: 5374 + - uid: 5430 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-7.5 parent: 2 - - uid: 5375 + - uid: 5431 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,41.5 parent: 2 + - uid: 8261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 7020 + - uid: 8262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 7020 - proto: WoodenSign entities: - - uid: 5376 + - uid: 5432 components: - type: MetaData name: северный островок - type: Transform pos: 17.581327,22.38815 parent: 2 - - uid: 5377 + - uid: 5433 components: - type: MetaData name: западный островок - type: Transform pos: -30.026646,6.293075 parent: 2 - - uid: 5378 + - uid: 5434 components: - type: MetaData name: выход со станции - type: Transform pos: -10.552152,-6.4674454 parent: 2 +- proto: WoodenSupport + entities: + - uid: 8263 + components: + - type: Transform + pos: -9.5,32.5 + parent: 7020 +- proto: WoodenSupportBeam + entities: + - uid: 8264 + components: + - type: Transform + pos: -12.5,32.5 + parent: 7020 + - uid: 8265 + components: + - type: Transform + pos: -6.5,12.5 + parent: 7020 +- proto: WoodenSupportWallBroken + entities: + - uid: 8266 + components: + - type: Transform + pos: -19.5,22.5 + parent: 7020 - proto: Wrench entities: - - uid: 5379 + - uid: 5435 components: - type: Transform pos: 26.612692,-3.35111 diff --git a/Resources/Maps/corvax_tushkan.yml b/Resources/Maps/corvax_tushkan.yml index f8920ef28f0..68d740cfb0b 100644 --- a/Resources/Maps/corvax_tushkan.yml +++ b/Resources/Maps/corvax_tushkan.yml @@ -7,6 +7,7 @@ tilemap: 70: FloorArcadeRed 4: FloorAstroGrass 41: FloorBlueCircuit + 76: FloorBrokenWood 74: FloorCarpetClown 44: FloorClown 21: FloorConcrete @@ -79,6 +80,7 @@ tilemap: 5: FloorWoodParquetDark 46: FloorWoodParquetRed 67: FloorWoodRed + 75: FloorWoodTile 147: Lattice 148: Plating entities: @@ -110,43 +112,43 @@ entities: chunks: 0,0: ind: 0,0 - tiles: IAAAAAACDQAAAAAAGwAAAAABDgAAAAABGwAAAAACJQAAAAACGwAAAAABGwAAAAAAJQAAAAADGwAAAAAADgAAAAABDgAAAAADGwAAAAAAGwAAAAACGwAAAAABDgAAAAAAIAAAAAAADQAAAAACJQAAAAACJQAAAAABJQAAAAADlAAAAAAAJQAAAAACJQAAAAAClAAAAAAAJQAAAAABJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAAAJQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAAQAAAAACCgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAADCgAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAACCgAAAAABhQAAAAADhQAAAAADlAAAAAAAhQAAAAAAhQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAACGgAAAAABCgAAAAABhQAAAAAAhQAAAAADhQAAAAAChQAAAAADhQAAAAAChQAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAABGgAAAAADGgAAAAAAAQAAAAACAQAAAAADGgAAAAAAGgAAAAACGgAAAAADAQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADCgAAAAAACgAAAAACCgAAAAABCgAAAAABhQAAAAABhQAAAAABhQAAAAADhQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAABGgAAAAADCgAAAAAAGgAAAAADGgAAAAADGgAAAAADAQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEAAAAAAAEAAAAAAAGgAAAAAACgAAAAAChQAAAAADhQAAAAAChQAAAAAAhQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEAAAAAAAEAAAAAAAGgAAAAADCgAAAAAAhQAAAAAChQAAAAABhQAAAAADhQAAAAADBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAAEAAAAAAAGgAAAAACCgAAAAAAhQAAAAAChQAAAAABhQAAAAAChQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAABGgAAAAADGgAAAAADCgAAAAAAGgAAAAABGgAAAAAAGgAAAAABAQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAABCgAAAAADCgAAAAABCgAAAAAChQAAAAABhQAAAAAAhQAAAAAChQAAAAABlAAAAAAADAAAAAADDAAAAAAADAAAAAADDAAAAAACDAAAAAAAlAAAAAAAlAAAAAAAGgAAAAAAGgAAAAAAAQAAAAABAQAAAAAAGgAAAAACGgAAAAAAGgAAAAACAQAAAAABJQAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAAAlAAAAAAAlAAAAAAA + tiles: IAAAAAAADQAAAAABGwAAAAAADgAAAAACGwAAAAABJQAAAAABGwAAAAAAGwAAAAABJQAAAAABGwAAAAABDgAAAAACDgAAAAACGwAAAAACGwAAAAADGwAAAAAADgAAAAABIAAAAAABDQAAAAABJQAAAAACJQAAAAADJQAAAAABlAAAAAAAJQAAAAABJQAAAAAAlAAAAAAAJQAAAAACJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAADJQAAAAAAJQAAAAACJQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAAQAAAAAACgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAAACgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAAACgAAAAAChQAAAAABhQAAAAABlAAAAAAAhQAAAAAChQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABGgAAAAAACgAAAAADhQAAAAAAhQAAAAAChQAAAAABhQAAAAABhQAAAAADhQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADGgAAAAABGgAAAAACAQAAAAAAAQAAAAABGgAAAAADGgAAAAAAGgAAAAAAAQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAACCgAAAAACCgAAAAAACgAAAAADCgAAAAABhQAAAAABhQAAAAAChQAAAAAChQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAABGgAAAAABCgAAAAADGgAAAAACGgAAAAADGgAAAAAAAQAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEAAAAAAAEAAAAAAAGgAAAAAACgAAAAABhQAAAAAChQAAAAAChQAAAAADhQAAAAADlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEAAAAAAAEAAAAAAAGgAAAAACCgAAAAAChQAAAAADhQAAAAAAhQAAAAABhQAAAAABBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAAEAAAAAAAGgAAAAABCgAAAAADhQAAAAAAhQAAAAADhQAAAAAAhQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAABGgAAAAACGgAAAAAACgAAAAABGgAAAAABGgAAAAABGgAAAAACAQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAADCgAAAAABCgAAAAADCgAAAAAAhQAAAAABhQAAAAADhQAAAAABhQAAAAADlAAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAADDAAAAAABlAAAAAAAlAAAAAAAGgAAAAABGgAAAAAAAQAAAAADAQAAAAAAGgAAAAACGgAAAAABGgAAAAACAQAAAAACJQAAAAACDAAAAAADDAAAAAABDAAAAAAADAAAAAABDAAAAAAClAAAAAAAlAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: DgAAAAACDgAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAACDgAAAAADDgAAAAAADgAAAAADDgAAAAAAGwAAAAACHwAAAAADHQAAAAADHQAAAAAAHQAAAAACDQAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAACJQAAAAAAGwAAAAABGwAAAAADGwAAAAABDQAAAAAAlAAAAAAAlAAAAAAAHwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAJQAAAAAAHAAAAAAAHAAAAAADGwAAAAADHAAAAAADHAAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAHAAAAAABHAAAAAAAGwAAAAAAHAAAAAACHAAAAAABlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAABHAAAAAADHAAAAAADGgAAAAAAHAAAAAADHAAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAAAlAAAAAAAhQAAAAAChQAAAAAACgAAAAAAGwAAAAAAGgAAAAABGgAAAAABGgAAAAADGwAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAChQAAAAAChQAAAAABhQAAAAAAhQAAAAACCgAAAAAAHQAAAAADHQAAAAADGgAAAAACHQAAAAACHQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACGgAAAAADGgAAAAABGgAAAAACAQAAAAADAQAAAAACGgAAAAAADQAAAAADDQAAAAADIAAAAAACDQAAAAADDQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAChQAAAAAAhQAAAAABCgAAAAAACgAAAAABCgAAAAADHgAAAAABDQAAAAADIAAAAAABDQAAAAADHgAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAADGgAAAAADGgAAAAACGgAAAAADCgAAAAABGgAAAAAChQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAAhQAAAAAAhQAAAAADCgAAAAACGgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAACCAAAAAADlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAhQAAAAABhQAAAAABhQAAAAAChQAAAAADCgAAAAADGgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAAAhQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAADhQAAAAADhQAAAAACCgAAAAABGgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAADhQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAABGgAAAAAAGgAAAAAAGgAAAAABCgAAAAACGgAAAAAAGgAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAADhQAAAAAAhQAAAAABCgAAAAAACgAAAAADCgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAADGgAAAAACGgAAAAACGgAAAAADAQAAAAACAQAAAAAAGgAAAAAA + tiles: DgAAAAADDgAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACDgAAAAABDgAAAAACDgAAAAABDgAAAAACGwAAAAACHwAAAAADHQAAAAAAHQAAAAADHQAAAAACDQAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADJQAAAAABGwAAAAACGwAAAAABGwAAAAADDQAAAAAClAAAAAAAlAAAAAAAHwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAJQAAAAACOgAAAAAAOgAAAAACKAAAAAACOgAAAAADOgAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAABOgAAAAABKAAAAAAAKAAAAAABKAAAAAABOgAAAAAClAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAACOgAAAAABKAAAAAADTAAAAAAGKAAAAAACOgAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAABlAAAAAAAhQAAAAADhQAAAAADCgAAAAABKAAAAAADTAAAAAAGTAAAAAAETAAAAAAGKAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAADhQAAAAAAhQAAAAABhQAAAAAAhQAAAAADCgAAAAACKAAAAAABKAAAAAABTAAAAAAFKAAAAAADKAAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACGgAAAAAAGgAAAAABGgAAAAACAQAAAAABAQAAAAABGgAAAAABKAAAAAACKAAAAAACKAAAAAADKAAAAAABKAAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAAChQAAAAADhQAAAAABCgAAAAAACgAAAAADCgAAAAABSwAAAAABKAAAAAAAKAAAAAAAKAAAAAADSwAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACGgAAAAACGgAAAAABGgAAAAADCgAAAAAAGgAAAAAChQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAADhQAAAAAAhQAAAAADCgAAAAABGgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAADCAAAAAADlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAhQAAAAABhQAAAAADhQAAAAAAhQAAAAABCgAAAAADGgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAABhQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAAChQAAAAAChQAAAAABCgAAAAACGgAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAAChQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAABGgAAAAACGgAAAAACGgAAAAACCgAAAAADGgAAAAAAGgAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAABhQAAAAAChQAAAAADhQAAAAABCgAAAAABCgAAAAACCgAAAAADEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACGgAAAAACGgAAAAADGgAAAAACAQAAAAABAQAAAAAAGgAAAAAA version: 6 1,0: ind: 1,0 - tiles: DgAAAAACGwAAAAAAJQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABJQAAAAABJQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAHwAAAAADJQAAAAAAJQAAAAACJQAAAAADJQAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABJQAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAHwAAAAABHwAAAAABlAAAAAAAlAAAAAAAJQAAAAABGgAAAAAABAAAAAACBAAAAAACBAAAAAACGgAAAAABJQAAAAAAlAAAAAAAJQAAAAACJQAAAAAAJQAAAAAClAAAAAAAHwAAAAABHAAAAAACJQAAAAABlAAAAAAAJQAAAAADGgAAAAABBAAAAAADBAAAAAAABAAAAAADGgAAAAACJQAAAAABJQAAAAADGwAAAAACGwAAAAABGwAAAAACJQAAAAADJQAAAAACEwAAAAABJQAAAAABlAAAAAAAJQAAAAABGgAAAAACBAAAAAABBAAAAAADBAAAAAADGgAAAAACJQAAAAABlAAAAAAAJQAAAAAAJQAAAAADJQAAAAADlAAAAAAAJQAAAAACHAAAAAADAQAAAAAClAAAAAAAJQAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAACJQAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAJQAAAAABHAAAAAAAAQAAAAAClAAAAAAAJQAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACJQAAAAACJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABJQAAAAACAQAAAAAAlAAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAMwAAAAAChQAAAAABHQAAAAABHQAAAAADlAAAAAAAJQAAAAACAwAAAAACJQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAhQAAAAAAhQAAAAAAHQAAAAACHQAAAAAAlAAAAAAAJQAAAAACAwAAAAACJQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAACgAAAAAACgAAAAAAHQAAAAACHQAAAAADlAAAAAAAJQAAAAABAwAAAAACJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADDQAAAAAADQAAAAABEQAAAAAAPgAAAAAAEQAAAAAAPgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADDgAAAAAADgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAClAAAAAAADQAAAAABDQAAAAACDQAAAAAA + tiles: DgAAAAACGwAAAAABJQAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABJQAAAAACJQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAHwAAAAACJQAAAAADJQAAAAABJQAAAAAAJQAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAAAJQAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAHwAAAAABHwAAAAABlAAAAAAAlAAAAAAAJQAAAAADGgAAAAABCgAAAAABCgAAAAADCgAAAAABGgAAAAACJQAAAAADlAAAAAAAJQAAAAAAJQAAAAACJQAAAAAAlAAAAAAAHwAAAAACHAAAAAAAJQAAAAAClAAAAAAAJQAAAAABGgAAAAADCgAAAAACCgAAAAAACgAAAAACGgAAAAABJQAAAAABJQAAAAACGwAAAAABGwAAAAAAGwAAAAABJQAAAAABJQAAAAAAEwAAAAACJQAAAAADlAAAAAAAJQAAAAABGgAAAAABCgAAAAACCgAAAAADCgAAAAABGgAAAAAAJQAAAAABlAAAAAAAJQAAAAADJQAAAAADJQAAAAAAlAAAAAAAJQAAAAAAHAAAAAADAQAAAAADlAAAAAAAJQAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAADJQAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAJQAAAAADHAAAAAAAAQAAAAAAlAAAAAAAJQAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAJQAAAAABJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAJQAAAAAAAQAAAAAAlAAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAMwAAAAADhQAAAAABHQAAAAABHQAAAAAClAAAAAAAJQAAAAADAwAAAAAAJQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAhQAAAAABhQAAAAAAHQAAAAACHQAAAAABlAAAAAAAJQAAAAACAwAAAAAAJQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAACgAAAAABCgAAAAACHQAAAAADHQAAAAAAlAAAAAAAJQAAAAAAAwAAAAADJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAADQAAAAADDQAAAAABEQAAAAAAPgAAAAACEQAAAAAAPgAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAADgAAAAACDgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAAlAAAAAAADQAAAAADDQAAAAADDQAAAAAA version: 6 2,0: ind: 2,0 - tiles: JQAAAAABJQAAAAADlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACJQAAAAABJQAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAJQAAAAADlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAADJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADJQAAAAABlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACJQAAAAAAJQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAADlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAABgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAJQAAAAABDwAAAAAADQAAAAABDQAAAAADEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAlAAAAAAADwAAAAAADQAAAAAADQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAJQAAAAAADwAAAAAADQAAAAABDQAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAABJQAAAAAClAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADJQAAAAAAJQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADJQAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABJQAAAAADlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACJQAAAAADJQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAABlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAABgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAJQAAAAACDwAAAAAADQAAAAABDQAAAAADEwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAlAAAAAAADwAAAAAADQAAAAADDQAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAJQAAAAAADwAAAAAADQAAAAABDQAAAAAAEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: lAAAAAAAhQAAAAABhQAAAAABggAAAAADHwAAAAABGwAAAAADDgAAAAACDgAAAAAADgAAAAABDgAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADDgAAAAABDgAAAAADlAAAAAAAhQAAAAADhQAAAAACggAAAAABlAAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAABlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAHQAAAAADIQAAAAAAIQAAAAAAlAAAAAAADQAAAAABDQAAAAACDQAAAAADlAAAAAAAGwAAAAAAGwAAAAABGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAlAAAAAAADQAAAAAAHQAAAAABDQAAAAADEwAAAAADGwAAAAADDgAAAAAAGwAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAHgAAAAABHgAAAAAAHwAAAAAAHwAAAAAAlAAAAAAADQAAAAACDQAAAAAADQAAAAAAlAAAAAAAGwAAAAACDgAAAAADGwAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEwAAAAABHgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGwAAAAADDgAAAAAAGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACJQAAAAACJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGwAAAAADHQAAAAACGwAAAAAClAAAAAAAlAAAAAAAlAAAAAAABgAAAAAACQAAAAACCQAAAAAACQAAAAAAAQAAAAABAQAAAAADAQAAAAADAwAAAAACAwAAAAADlAAAAAAAGwAAAAABHQAAAAAAGwAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACQAAAAACCAAAAAACCQAAAAABAQAAAAACAQAAAAACAQAAAAABAwAAAAADAwAAAAACJQAAAAACGwAAAAABHQAAAAAAGwAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABJQAAAAADJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAGwAAAAADDgAAAAABGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAlAAAAAAAGwAAAAAADgAAAAABGwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAPgAAAAABlAAAAAAAlAAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAACAQAAAAACHwAAAAAAGwAAAAADDgAAAAACGwAAAAACHwAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAAQAAAAAClAAAAAAAGwAAAAABGwAAAAABGwAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAAAQAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAA + tiles: lAAAAAAAhQAAAAAAhQAAAAACggAAAAAAHwAAAAABGwAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADDgAAAAAADgAAAAAAlAAAAAAAhQAAAAABhQAAAAAAggAAAAAClAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAlAAAAAAADQAAAAADDQAAAAADDQAAAAAClAAAAAAAGwAAAAADGwAAAAADGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAHQAAAAACIQAAAAAAIQAAAAAAlAAAAAAADQAAAAACHQAAAAAADQAAAAAAEwAAAAACGwAAAAACDgAAAAAAGwAAAAAClAAAAAAAlAAAAAAABgAAAAAABgAAAAAAHgAAAAACHgAAAAAAHwAAAAACHwAAAAABlAAAAAAADQAAAAADDQAAAAAADQAAAAADlAAAAAAAGwAAAAAADgAAAAAAGwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEwAAAAACHgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGwAAAAABDgAAAAADGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACJQAAAAACJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAGwAAAAACHQAAAAACGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAACQAAAAADCQAAAAADCQAAAAADAQAAAAACAQAAAAACAQAAAAABAwAAAAADAwAAAAADlAAAAAAAGwAAAAACHQAAAAAAGwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACQAAAAADCAAAAAAACQAAAAADAQAAAAACAQAAAAADAQAAAAACAwAAAAACAwAAAAACJQAAAAADGwAAAAADHQAAAAABGwAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAJQAAAAACJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAGwAAAAAADgAAAAACGwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAADlAAAAAAAGwAAAAACDgAAAAAAGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAPgAAAAADlAAAAAAAlAAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAABAQAAAAAAHwAAAAABGwAAAAACDgAAAAAAGwAAAAAAHwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABAQAAAAAClAAAAAAAGwAAAAADGwAAAAACGwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACAQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAPgAAAAAAPgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAPgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASgAAAAAAlAAAAAAAlAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAASgAAAAAAlAAAAAAAQQAAAAACQQAAAAAAQQAAAAADQQAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOwAAAAACMgAAAAACMgAAAAADMgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAOwAAAAAAMgAAAAABMgAAAAACMgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAQAAAAAADQAAAAAADQAAAAAAAlAAAAAAAJQAAAAADJQAAAAABJQAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAQAAAAAACQAAAAAABQAAAAAADJQAAAAAAQwAAAAADQwAAAAAAQwAAAAAAlAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAPgAAAAACPgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAPgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASgAAAAAAlAAAAAAAlAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAASgAAAAAAlAAAAAAAQQAAAAAAQQAAAAADQQAAAAADQQAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOwAAAAADMgAAAAACMgAAAAABMgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAOwAAAAADMgAAAAABMgAAAAADMgAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAQAAAAAADQAAAAAADQAAAAAAClAAAAAAAJQAAAAAAJQAAAAADJQAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAQAAAAAABQAAAAAADQAAAAAABJQAAAAADQwAAAAAAQwAAAAAAQwAAAAABlAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: JgAAAAAAJgAAAAACKAAAAAAClAAAAAAAJgAAAAACJgAAAAADlAAAAAAAlAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABlAAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJgAAAAABJgAAAAAAKAAAAAADlAAAAAAAJgAAAAADJgAAAAADlAAAAAAAlAAAAAAAAQAAAAACAwAAAAACAwAAAAAAJQAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAJwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAJgAAAAACJgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAAwAAAAABGAAAAAAAGAAAAAAAGAAAAAABKAAAAAADKAAAAAABKAAAAAADJwAAAAABJgAAAAAAJgAAAAAAlAAAAAAAlAAAAAAAJQAAAAABIAAAAAABJQAAAAADlAAAAAAAAwAAAAACGAAAAAADGAAAAAAAGAAAAAACKAAAAAADKAAAAAAAKAAAAAADlAAAAAAAJgAAAAADJgAAAAAAlAAAAAAAlAAAAAAAAwAAAAADIAAAAAACAwAAAAABlAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABJwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAABAwAAAAADlAAAAAAAlAAAAAAAJQAAAAABJQAAAAACJQAAAAAAEwAAAAAAEwAAAAAAMQAAAAADDQAAAAADDQAAAAADDQAAAAAADQAAAAACEwAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAADEwAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACEwAAAAACIAAAAAACDgAAAAACDgAAAAADDgAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAABOQAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAACEwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAABIAAAAAAADQAAAAADlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAIAAAAAABDQAAAAAClAAAAAAAJQAAAAABDgAAAAAAJQAAAAAClAAAAAAAJQAAAAACJQAAAAADJQAAAAACJQAAAAADJQAAAAACJQAAAAAClAAAAAAAAQAAAAACAQAAAAABIAAAAAACDQAAAAABlAAAAAAADgAAAAAAJQAAAAADDgAAAAAAlAAAAAAAHQAAAAADHQAAAAADJQAAAAAAHAAAAAABHAAAAAABJQAAAAAAlAAAAAAAIAAAAAACIAAAAAAADgAAAAAADQAAAAAClAAAAAAAJQAAAAABDgAAAAAAJQAAAAAClAAAAAAAHQAAAAABHQAAAAACJQAAAAABHAAAAAABHAAAAAAAJQAAAAABlAAAAAAAIAAAAAABIAAAAAACDgAAAAACDQAAAAADlAAAAAAAAwAAAAAAAwAAAAADAwAAAAAClAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAAAlAAAAAAAAQAAAAABAQAAAAAADgAAAAACDQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABJQAAAAADJQAAAAAClAAAAAAAJQAAAAAClAAAAAAAIAAAAAABDQAAAAABJQAAAAACJQAAAAACJQAAAAAAlAAAAAAAJQAAAAADJQAAAAAAlAAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAADJQAAAAAA + tiles: JgAAAAADJgAAAAACKAAAAAAAlAAAAAAAJgAAAAACJgAAAAABlAAAAAAAlAAAAAAAAQAAAAAAAwAAAAABAwAAAAADlAAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJgAAAAABJgAAAAACKAAAAAABlAAAAAAAJgAAAAABJgAAAAABlAAAAAAAlAAAAAAAAQAAAAAAAwAAAAABAwAAAAAAJQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACJwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAAAJgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAAwAAAAACGAAAAAABGAAAAAAAGAAAAAABKAAAAAACKAAAAAABKAAAAAAAJwAAAAADJgAAAAABJgAAAAABlAAAAAAAlAAAAAAAJQAAAAACIAAAAAABJQAAAAAAlAAAAAAAAwAAAAABGAAAAAABGAAAAAACGAAAAAABKAAAAAACKAAAAAABKAAAAAAClAAAAAAAJgAAAAADJgAAAAABlAAAAAAAlAAAAAAAAwAAAAABIAAAAAAAAwAAAAAAlAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACJwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAACAwAAAAACAwAAAAAClAAAAAAAlAAAAAAAJQAAAAACJQAAAAAAJQAAAAAAEwAAAAAAEwAAAAABMQAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAADEwAAAAACDQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAADDQAAAAAAEwAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABEwAAAAAAIAAAAAAADgAAAAACDgAAAAACDgAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAAAOQAAAAACDQAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAACDQAAAAAAEwAAAAADDQAAAAACDQAAAAADDQAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAACIAAAAAACDQAAAAAClAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAIAAAAAADDQAAAAAAlAAAAAAAJQAAAAABDgAAAAAAJQAAAAABlAAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAACJQAAAAADJQAAAAAClAAAAAAAAQAAAAADAQAAAAABIAAAAAAADQAAAAAClAAAAAAADgAAAAAAJQAAAAACDgAAAAAClAAAAAAAHQAAAAACHQAAAAAAJQAAAAABHAAAAAABHAAAAAAAJQAAAAABlAAAAAAAIAAAAAAAIAAAAAACDgAAAAABDQAAAAABlAAAAAAAJQAAAAAADgAAAAACJQAAAAADlAAAAAAAHQAAAAABHQAAAAAAJQAAAAABHAAAAAADHAAAAAAAJQAAAAADlAAAAAAAIAAAAAAAIAAAAAABDgAAAAADDQAAAAABlAAAAAAAAwAAAAADAwAAAAABAwAAAAAAlAAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAADJQAAAAADlAAAAAAAAQAAAAADAQAAAAACDgAAAAABDQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACJQAAAAAAJQAAAAAClAAAAAAAJQAAAAABlAAAAAAAIAAAAAAADQAAAAABJQAAAAADJQAAAAABJQAAAAADlAAAAAAAJQAAAAACJQAAAAADlAAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAAAJQAAAAAA version: 6 0,1: ind: 0,1 - tiles: GgAAAAABCgAAAAAChQAAAAAAhQAAAAADhQAAAAADhQAAAAAChQAAAAAChQAAAAADlAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAAADAAAAAAAlAAAAAAAlAAAAAAAAQAAAAABCgAAAAABlAAAAAAAhQAAAAABhQAAAAADhQAAAAAChQAAAAADhQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACCgAAAAABlAAAAAAAggAAAAACggAAAAAAggAAAAAAggAAAAADggAAAAADlAAAAAAAAwAAAAADAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAADCgAAAAACJQAAAAADhQAAAAAAhQAAAAADggAAAAABhQAAAAAChQAAAAACJQAAAAACBQAAAAABBQAAAAADBgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAJQAAAAADJQAAAAAClAAAAAAAhQAAAAABhQAAAAACggAAAAADhQAAAAAAhQAAAAAClAAAAAAAAwAAAAAAAwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAIAAAAAACDQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABAAAAAAClAAAAAAAEAAAAAAADgAAAAAADQAAAAABBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAADgAAAAABDQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAADgAAAAADDQAAAAADlAAAAAAACQAAAAABCQAAAAACCQAAAAACEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAABDQAAAAAClAAAAAAACQAAAAABCQAAAAADCQAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAACDQAAAAADlAAAAAAAlAAAAAAACAAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAADEwAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAACDQAAAAAAEwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADDgAAAAADDgAAAAABDgAAAAABIAAAAAAAEwAAAAAAIAAAAAABIAAAAAADDgAAAAADDgAAAAABDgAAAAABIAAAAAABEwAAAAADEwAAAAACMQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAABEwAAAAABDQAAAAADDQAAAAABDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAAADQAAAAADDQAAAAADlAAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAJQAAAAADggAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAA + tiles: GgAAAAABCgAAAAAChQAAAAAChQAAAAAAhQAAAAABhQAAAAADhQAAAAAAhQAAAAAAlAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAABlAAAAAAAlAAAAAAAAQAAAAACCgAAAAAAlAAAAAAAhQAAAAADhQAAAAADhQAAAAAChQAAAAADhQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACCgAAAAAAlAAAAAAAggAAAAABggAAAAADggAAAAACggAAAAADggAAAAADlAAAAAAAAwAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACCgAAAAADJQAAAAABhQAAAAAChQAAAAADggAAAAABhQAAAAADhQAAAAAAJQAAAAADBQAAAAAABQAAAAABBgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAJQAAAAAAJQAAAAAAlAAAAAAAhQAAAAAChQAAAAACggAAAAAAhQAAAAADhQAAAAAClAAAAAAAAwAAAAABAwAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAIAAAAAACDQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABAAAAAAAlAAAAAAAEAAAAAAADgAAAAABDQAAAAABBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAADgAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAADgAAAAABDQAAAAAClAAAAAAACQAAAAAACQAAAAADCQAAAAADEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAACDQAAAAADlAAAAAAACQAAAAADCQAAAAABCQAAAAADEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAAADQAAAAAAlAAAAAAAlAAAAAAACAAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOQAAAAACDQAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAABDQAAAAAAEwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAAAEwAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAADgAAAAAADgAAAAACDgAAAAABIAAAAAABEwAAAAACIAAAAAACIAAAAAABDgAAAAABDgAAAAACDgAAAAACIAAAAAADEwAAAAABEwAAAAADMQAAAAABDQAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAADEwAAAAAADQAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADlAAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAJQAAAAABggAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAA version: 6 0,2: ind: 0,2 - tiles: AwAAAAACAQAAAAABAwAAAAABlAAAAAAAhQAAAAAAhQAAAAADhQAAAAAChQAAAAADlAAAAAAAggAAAAADggAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAAwAAAAACAQAAAAABAwAAAAAClAAAAAAAhQAAAAAChQAAAAAAhQAAAAADhQAAAAABggAAAAAAggAAAAACggAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAlAAAAAAAJQAAAAABlAAAAAAAggAAAAAAggAAAAABQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAAAAQAAAAACAwAAAAAAlAAAAAAAggAAAAABggAAAAABQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEgAAAAADAQAAAAAAAwAAAAADlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAADAQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACJQAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAAABQAAAAADBQAAAAACBQAAAAACAwAAAAAClAAAAAAAAwAAAAACAQAAAAAAAQAAAAACAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAABAAAAAABBQAAAAADBQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACJQAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAADAQAAAAACAwAAAAAAlAAAAAAAhQAAAAADhQAAAAABhQAAAAAAhQAAAAAAlAAAAAAAggAAAAAAggAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAAwAAAAADAQAAAAAAAwAAAAADlAAAAAAAhQAAAAAAhQAAAAAChQAAAAAChQAAAAABggAAAAABggAAAAACggAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAggAAAAADggAAAAACQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAABAQAAAAAAAwAAAAABlAAAAAAAggAAAAAAggAAAAABQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEgAAAAAAAQAAAAABAwAAAAADlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAABAQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACJQAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAABAwAAAAABBAAAAAAABQAAAAADBQAAAAADBQAAAAADAwAAAAAAlAAAAAAAAwAAAAAAAQAAAAADAQAAAAADAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAADBQAAAAAABQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADJQAAAAABJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAEQAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAEQAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEQAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAEQAAAAAABgAAAAAAJgAAAAAAJgAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAJQAAAAACJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAJgAAAAABJgAAAAABJgAAAAAClAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAPgAAAAAAlAAAAAAAAwAAAAAAAwAAAAADlAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADJgAAAAADJgAAAAAAKAAAAAADKAAAAAABlAAAAAAAlAAAAAAABgAAAAAAPgAAAAABlAAAAAAAAwAAAAABAwAAAAADJQAAAAACAwAAAAACIAAAAAACIAAAAAABIAAAAAABJgAAAAACJgAAAAADKAAAAAABKAAAAAADlAAAAAAAlAAAAAAABgAAAAAAPgAAAAADlAAAAAAAAwAAAAABAwAAAAAAlAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACJgAAAAADJgAAAAAAKAAAAAAAKAAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAACJgAAAAACKAAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAAwAAAAADAwAAAAAAlAAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAA + tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAEQAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAEQAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEQAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAABgAAAAAAEQAAAAAABgAAAAAAJgAAAAACJgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAJQAAAAADJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAJgAAAAADJgAAAAACJgAAAAAClAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAPgAAAAADlAAAAAAAAwAAAAAAAwAAAAADlAAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAJgAAAAADJgAAAAABKAAAAAADKAAAAAAClAAAAAAAlAAAAAAABgAAAAAAPgAAAAAAlAAAAAAAAwAAAAACAwAAAAABJQAAAAACAwAAAAABIAAAAAADIAAAAAACIAAAAAADJgAAAAACJgAAAAACKAAAAAADKAAAAAABlAAAAAAAlAAAAAAABgAAAAAAPgAAAAADlAAAAAAAAwAAAAAAAwAAAAADlAAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADJgAAAAADJgAAAAABKAAAAAABKAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAAAJgAAAAACKAAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAADAwAAAAACAwAAAAABlAAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAB version: 6 0,-3: ind: 0,-3 @@ -158,23 +160,23 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: lAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADwAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADlAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAQAAAAAAAQAAAAACAwAAAAADJQAAAAABlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAClAAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAACOgAAAAABOgAAAAABOgAAAAABlAAAAAAAOwAAAAAAggAAAAAAggAAAAADggAAAAADggAAAAAAlAAAAAAAAwAAAAAAlAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAOgAAAAABQgAAAAAAQgAAAAAAlAAAAAAAOwAAAAACggAAAAABhQAAAAABhQAAAAABhQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAJwAAAAAAJwAAAAADJwAAAAACJwAAAAADOgAAAAADOgAAAAAAOgAAAAAAlAAAAAAAOwAAAAAAggAAAAAAhQAAAAADhQAAAAABhQAAAAABlAAAAAAAJQAAAAABlAAAAAAAJwAAAAACJwAAAAACJwAAAAADJwAAAAABOgAAAAACQgAAAAAAQgAAAAAAlAAAAAAAOwAAAAABggAAAAAAhQAAAAAAhQAAAAABhQAAAAAAlAAAAAAA + tiles: lAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADwAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAQAAAAADAQAAAAAAAwAAAAAAJQAAAAADlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAClAAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAAAOgAAAAACOgAAAAACOgAAAAAClAAAAAAAOwAAAAADggAAAAABggAAAAAAggAAAAACggAAAAAClAAAAAAAAwAAAAADlAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAOgAAAAABQgAAAAAAQgAAAAAAlAAAAAAAOwAAAAAAggAAAAADhQAAAAAAhQAAAAAChQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJwAAAAABJwAAAAADJwAAAAADJwAAAAABOgAAAAACOgAAAAACOgAAAAABlAAAAAAAOwAAAAABggAAAAAChQAAAAADhQAAAAADhQAAAAAClAAAAAAAJQAAAAAAlAAAAAAAJwAAAAAAJwAAAAADJwAAAAADJwAAAAACOgAAAAADQgAAAAAAQgAAAAAAlAAAAAAAOwAAAAACggAAAAAChQAAAAABhQAAAAABhQAAAAAClAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: JQAAAAAClAAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAAAOgAAAAADOgAAAAABOgAAAAAAlAAAAAAAOwAAAAABggAAAAADggAAAAABggAAAAADggAAAAAClAAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAJwAAAAAClAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAEwAAAAAClAAAAAAAJwAAAAADJwAAAAAClAAAAAAAEwAAAAADEwAAAAADMQAAAAACDQAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAAADQAAAAABEwAAAAABlAAAAAAAJwAAAAAAJwAAAAADlAAAAAAAEwAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACDgAAAAABDgAAAAACDgAAAAABIAAAAAABIAAAAAABIAAAAAACAwAAAAADlAAAAAAAJwAAAAADJwAAAAABlAAAAAAAOQAAAAABIAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAABEwAAAAABEwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACDQAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAAAIAAAAAACOQAAAAACAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAhQAAAAADhQAAAAADhQAAAAAADgAAAAAADgAAAAAADgAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADEwAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAACgAAAAACGgAAAAABGgAAAAAAGgAAAAACDQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAADMQAAAAADEwAAAAAAEwAAAAADAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAGgAAAAAChQAAAAABhQAAAAABAwAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAACGgAAAAABhQAAAAAChQAAAAADAQAAAAAAAQAAAAAClAAAAAAAAQAAAAABKQAAAAAAlAAAAAAAhQAAAAADhQAAAAADhQAAAAAClAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAGgAAAAACGgAAAAACGgAAAAAAKQAAAAAAKQAAAAAAlAAAAAAAAQAAAAACKQAAAAAAlAAAAAAAhQAAAAADhQAAAAAChQAAAAABlAAAAAAAlAAAAAAAlAAAAAAACgAAAAAChQAAAAAAhQAAAAAChQAAAAACKQAAAAAAKQAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAChQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACAQAAAAAClAAAAAAAAQAAAAAAJQAAAAAClAAAAAAAhQAAAAAAhQAAAAABhQAAAAAClAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAKgAAAAADKgAAAAAAAwAAAAABAwAAAAADlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAKgAAAAACKgAAAAACJQAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAADJQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAA + tiles: JQAAAAADlAAAAAAAJwAAAAAAJwAAAAABJwAAAAABJwAAAAADOgAAAAAAOgAAAAABOgAAAAADlAAAAAAAOwAAAAADggAAAAACggAAAAADggAAAAACggAAAAADlAAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAJwAAAAAClAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAEwAAAAABlAAAAAAAJwAAAAADJwAAAAADlAAAAAAAEwAAAAACEwAAAAAAMQAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAAADQAAAAAAEwAAAAABlAAAAAAAJwAAAAACJwAAAAAClAAAAAAAEwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABDgAAAAADDgAAAAADDgAAAAADIAAAAAABIAAAAAADIAAAAAAAAwAAAAABlAAAAAAAJwAAAAACJwAAAAABlAAAAAAAOQAAAAAAIAAAAAACDQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAADDQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAACEwAAAAAAEwAAAAADlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAADDQAAAAABIAAAAAABOQAAAAACAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAABhQAAAAADhQAAAAAAhQAAAAACDgAAAAADDgAAAAABDgAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAEwAAAAABAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAACgAAAAABGgAAAAABGgAAAAACGgAAAAACDQAAAAADDQAAAAADDQAAAAADDQAAAAACDQAAAAADMQAAAAACEwAAAAAAEwAAAAABAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAGgAAAAABhQAAAAABhQAAAAADAwAAAAABAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAGgAAAAADhQAAAAADhQAAAAACAQAAAAADAQAAAAAAlAAAAAAAAQAAAAABKQAAAAAAlAAAAAAAhQAAAAABhQAAAAABhQAAAAABlAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAGgAAAAADGgAAAAABGgAAAAACKQAAAAAAKQAAAAAAlAAAAAAAAQAAAAABKQAAAAAAlAAAAAAAhQAAAAADhQAAAAAChQAAAAAClAAAAAAAlAAAAAAAlAAAAAAACgAAAAAAhQAAAAAAhQAAAAAChQAAAAADKQAAAAAAKQAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAhQAAAAABhQAAAAAChQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAADAQAAAAAAlAAAAAAAAQAAAAACJQAAAAABlAAAAAAAhQAAAAAChQAAAAABhQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAKgAAAAADKgAAAAADAwAAAAABAwAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAKgAAAAACKgAAAAACJQAAAAACJQAAAAADJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAADJQAAAAACJQAAAAADJQAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDQAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAADIAAAAAAADQAAAAABJQAAAAABAwAAAAACJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAADIAAAAAABDQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAIAAAAAABDQAAAAABJQAAAAAAAwAAAAABJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACIAAAAAACDQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDgAAAAACDQAAAAAAAwAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAADDgAAAAABDQAAAAADAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADgAAAAABDQAAAAADAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDQAAAAADDQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAIAAAAAABDQAAAAAAJQAAAAADAwAAAAACJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABIAAAAAADDQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABIAAAAAABDQAAAAAAJQAAAAAAAwAAAAACJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABIAAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABDgAAAAADDQAAAAADAwAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDgAAAAABDQAAAAADAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDgAAAAACDQAAAAADAwAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: DQAAAAADIAAAAAABDQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAADIAAAAAAADQAAAAAAJQAAAAACAwAAAAACJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAADIAAAAAAAOQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACEwAAAAADJQAAAAABAwAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAEwAAAAABEwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAABhQAAAAADCgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABCgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAAAGgAAAAADCgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAABGgAAAAACCgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAACgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAAChQAAAAABCgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DQAAAAAAIAAAAAAADQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACIAAAAAABDQAAAAABJQAAAAABAwAAAAACJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAADIAAAAAADOQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAABEwAAAAACJQAAAAAAAwAAAAACJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAABEwAAAAACEwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAAChQAAAAABCgAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAADCgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAADGgAAAAABCgAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAADGgAAAAABCgAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACCgAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAAAhQAAAAAACgAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAClAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADJQAAAAABBwAAAAAACQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAABwAAAAAACAAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACAAAAAADBwAAAAAACAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACAAAAAABBwAAAAAACAAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACQAAAAACBwAAAAAABwAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAJQAAAAACBwAAAAAACQAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAABwAAAAAACAAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACAAAAAAABwAAAAAACAAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACAAAAAAABwAAAAAACAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACQAAAAABBwAAAAAABwAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 @@ -182,63 +184,63 @@ entities: version: 6 1,1: ind: 1,1 - tiles: lAAAAAAACQAAAAABCQAAAAADCQAAAAAClAAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAClAAAAAAAlAAAAAAAEwAAAAADEwAAAAABlAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAAlAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAABwAAAAAAlAAAAAAACQAAAAACCQAAAAAACQAAAAABlAAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAADlAAAAAAAEAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAlAAAAAAAEwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAMgAAAAAABwAAAAAAMgAAAAABlAAAAAAACQAAAAABhQAAAAACCQAAAAAAlAAAAAAABQAAAAADBQAAAAAABQAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAMgAAAAAABwAAAAAAMgAAAAACJQAAAAABCgAAAAADhQAAAAAACgAAAAABlAAAAAAABQAAAAABBQAAAAABBQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAMgAAAAACBwAAAAAAMgAAAAABJQAAAAAACgAAAAADhQAAAAAACgAAAAABlAAAAAAABQAAAAABBQAAAAADBQAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAMgAAAAADBwAAAAAAMgAAAAAAlAAAAAAACQAAAAAChQAAAAACCQAAAAADlAAAAAAACwAAAAAABQAAAAADBQAAAAAAEwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAMgAAAAADMgAAAAABMgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAAAwAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAABgAAAAAAIAAAAAACIAAAAAADIAAAAAACDgAAAAABDgAAAAAADgAAAAACIAAAAAACIAAAAAABDQAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACAAAAAACCAAAAAACCAAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEQAAAAAADQAAAAABEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAAAhQAAAAAAhQAAAAAAhQAAAAAChQAAAAACggAAAAAChQAAAAADlAAAAAAAhQAAAAABlAAAAAAAlAAAAAAA + tiles: lAAAAAAACQAAAAADCQAAAAADCQAAAAADlAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAAlAAAAAAAlAAAAAAAEwAAAAABEwAAAAAAlAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAAlAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAANwAAAAAABwAAAAAABwAAAAAABwAAAAAAlAAAAAAACQAAAAADCQAAAAAACQAAAAADlAAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAADlAAAAAAAEAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAlAAAAAAAEwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAAClAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAMgAAAAADBwAAAAAAMgAAAAABlAAAAAAACQAAAAAAhQAAAAACCQAAAAAClAAAAAAABQAAAAABBQAAAAACBQAAAAAClAAAAAAAEAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAMgAAAAABBwAAAAAAMgAAAAADJQAAAAADCgAAAAABhQAAAAADCgAAAAAAlAAAAAAABQAAAAABBQAAAAAABQAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAMgAAAAACBwAAAAAAMgAAAAABJQAAAAABCgAAAAABhQAAAAADCgAAAAABlAAAAAAABQAAAAADBQAAAAABBQAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAMgAAAAADBwAAAAAAMgAAAAABlAAAAAAACQAAAAAChQAAAAAACQAAAAABlAAAAAAACwAAAAAABQAAAAADBQAAAAADEwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAMgAAAAADMgAAAAAAMgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAABDQAAAAABDQAAAAAAAwAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAABgAAAAAAIAAAAAADIAAAAAACIAAAAAADDgAAAAAADgAAAAABDgAAAAADIAAAAAADIAAAAAACDQAAAAADAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAABDQAAAAAADQAAAAABAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACAAAAAACCAAAAAACCAAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEQAAAAAADQAAAAACEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAADhQAAAAADhQAAAAAChQAAAAAChQAAAAABggAAAAAChQAAAAABlAAAAAAAhQAAAAAAlAAAAAAAlAAAAAAA version: 6 1,2: ind: 1,2 - tiles: EQAAAAAADQAAAAABEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAAChQAAAAAChQAAAAABhQAAAAABhQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAggAAAAAAlAAAAAAAlAAAAAAAEQAAAAAADQAAAAADEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAADhQAAAAAAhQAAAAADhQAAAAADhQAAAAAClAAAAAAAhQAAAAADhQAAAAADhQAAAAAAlAAAAAAAlAAAAAAACAAAAAACEgAAAAADCAAAAAABCAAAAAADlAAAAAAAGgAAAAADhQAAAAAAhQAAAAAAhQAAAAAAGgAAAAAAggAAAAAAhQAAAAADhQAAAAAAhQAAAAADlAAAAAAAlAAAAAAAEgAAAAACEgAAAAADEgAAAAABEgAAAAABlAAAAAAAGgAAAAACAQAAAAACAQAAAAADAQAAAAADGgAAAAADlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAAlAAAAAAAGgAAAAADAQAAAAACAQAAAAADAQAAAAAAGgAAAAAAlAAAAAAAAwAAAAACAwAAAAADAwAAAAADBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAADhQAAAAAChQAAAAABhQAAAAACGgAAAAABlAAAAAAAJQAAAAABJQAAAAABJQAAAAADlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: EQAAAAAADQAAAAADEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAABhQAAAAADhQAAAAAChQAAAAABhQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAggAAAAAAlAAAAAAAlAAAAAAAEQAAAAAADQAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAAAhQAAAAADhQAAAAAChQAAAAAChQAAAAAClAAAAAAAhQAAAAADhQAAAAABhQAAAAABlAAAAAAAlAAAAAAACAAAAAACEgAAAAABCAAAAAACCAAAAAAAlAAAAAAAGgAAAAAChQAAAAADhQAAAAAAhQAAAAABGgAAAAADggAAAAADhQAAAAABhQAAAAAAhQAAAAADlAAAAAAAlAAAAAAAEgAAAAACEgAAAAACEgAAAAACEgAAAAAAlAAAAAAAGgAAAAABAQAAAAACAQAAAAACAQAAAAACGgAAAAAClAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADlAAAAAAAGgAAAAADAQAAAAADAQAAAAAAAQAAAAADGgAAAAADlAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAAAhQAAAAAChQAAAAABhQAAAAACGgAAAAABlAAAAAAAJQAAAAAAJQAAAAACJQAAAAAClAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: lAAAAAAADQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABQAAAAADBQAAAAAAggAAAAACggAAAAABggAAAAABggAAAAADggAAAAABlAAAAAAAAwAAAAAAAQAAAAADDQAAAAAADQAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAAClAAAAAAAggAAAAAAggAAAAAAggAAAAADggAAAAAAlAAAAAAAAwAAAAABAQAAAAABPQAAAAAAJwAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAAhQAAAAADhQAAAAAAhQAAAAADlAAAAAAAJQAAAAABPQAAAAAAJwAAAAAClAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAABhQAAAAAChQAAAAADhQAAAAAAlAAAAAAAAwAAAAABPQAAAAAAJwAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABJQAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAQAAAAADAQAAAAABAwAAAAADlAAAAAAAAwAAAAADBQAAAAABBQAAAAACBQAAAAACBAAAAAAAAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAABgAAAAAAAwAAAAADAwAAAAADAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABQAAAAACBQAAAAACBAAAAAACAwAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: lAAAAAAADQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABQAAAAACBQAAAAAAggAAAAADggAAAAACggAAAAAAggAAAAAAggAAAAAAlAAAAAAAAwAAAAAAAQAAAAACDQAAAAAADQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAClAAAAAAAggAAAAAAggAAAAADggAAAAADggAAAAAClAAAAAAAAwAAAAABAQAAAAADPQAAAAAAJwAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAABhQAAAAAAhQAAAAABhQAAAAAAhQAAAAAAlAAAAAAAJQAAAAACPQAAAAAAJwAAAAAClAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAABhQAAAAABhQAAAAABhQAAAAAClAAAAAAAAwAAAAACPQAAAAAAJwAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADJQAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAQAAAAAAAQAAAAACAwAAAAAAlAAAAAAAAwAAAAADBQAAAAADBQAAAAABBQAAAAADBAAAAAADAwAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAABgAAAAAAAwAAAAABAwAAAAACAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAABQAAAAABBQAAAAADBAAAAAAAAwAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAhQAAAAAAhQAAAAAChQAAAAAAhQAAAAAChQAAAAADhQAAAAADCgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADlAAAAAAACgAAAAACAwAAAAACAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAABIwAAAAADIwAAAAACIwAAAAACAwAAAAAClAAAAAAACgAAAAABAwAAAAABAwAAAAAClAAAAAAAlAAAAAAABgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAwAAAAADIwAAAAACIwAAAAADIwAAAAACAwAAAAAAJQAAAAADCgAAAAAAAwAAAAAAAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADlAAAAAAAJQAAAAADAwAAAAACAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAABAwAAAAABAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAADlAAAAAAADQAAAAABAwAAAAACAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFQAAAAABFQAAAAACFAAAAAAAFwAAAAAAFwAAAAADFwAAAAADFgAAAAAClAAAAAAADQAAAAACJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAFAAAAAAAFQAAAAACFQAAAAACFAAAAAAAFwAAAAADFwAAAAACFwAAAAAAFgAAAAAClAAAAAAADQAAAAADAQAAAAACAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAACFwAAAAABFwAAAAACFgAAAAADlAAAAAAADQAAAAACAwAAAAAAAwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAABlAAAAAAAlAAAAAAADQAAAAAAIAAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAADEwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAACIAAAAAADIAAAAAADIAAAAAAADgAAAAAADgAAAAADDgAAAAACIAAAAAADEwAAAAACIAAAAAABDgAAAAAADgAAAAADDgAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABEwAAAAAAMQAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAABEwAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAACDQAAAAADDQAAAAAAMQAAAAABEwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAACAAAAAABCAAAAAAAlAAAAAAAggAAAAABggAAAAACggAAAAAAggAAAAAAlAAAAAAAJQAAAAADlAAAAAAA + tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAhQAAAAABhQAAAAABhQAAAAADhQAAAAADhQAAAAAAhQAAAAAACgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADlAAAAAAACgAAAAABJwAAAAAAJwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAACIwAAAAACIwAAAAAAIwAAAAABAwAAAAAClAAAAAAACgAAAAABJwAAAAAAJwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAwAAAAABIwAAAAACIwAAAAADIwAAAAAAAwAAAAACJQAAAAADCgAAAAABJwAAAAAAJwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADlAAAAAAAJQAAAAAAJwAAAAAAJwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAABJwAAAAAAJwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAClAAAAAAADQAAAAACJwAAAAAAJwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFQAAAAABFQAAAAADFAAAAAAAFwAAAAADFwAAAAACFwAAAAABFgAAAAAClAAAAAAADQAAAAADJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAFAAAAAAAFQAAAAAAFQAAAAAAFAAAAAAAFwAAAAADFwAAAAABFwAAAAADFgAAAAADlAAAAAAADQAAAAACAQAAAAACAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAABFwAAAAACFwAAAAAAFgAAAAAAlAAAAAAADQAAAAACAwAAAAABAwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAAClAAAAAAAlAAAAAAADQAAAAACIAAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAABEwAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAADDQAAAAADIAAAAAABIAAAAAAAIAAAAAABDgAAAAAADgAAAAAADgAAAAACIAAAAAAAEwAAAAABIAAAAAAADgAAAAACDgAAAAADDgAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAEwAAAAABMQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAADEwAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAADMQAAAAADEwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAACAAAAAABCAAAAAAAlAAAAAAAggAAAAACggAAAAACggAAAAAAggAAAAAClAAAAAAAJQAAAAABlAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADlAAAAAAADQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAwAAAAABJQAAAAACAwAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAwAAAAADJQAAAAAADQAAAAADDQAAAAABDQAAAAAADQAAAAABAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADJQAAAAADJQAAAAACJQAAAAAAJQAAAAADAwAAAAAAlAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAARAAAAAACRAAAAAABAQAAAAACAQAAAAADlAAAAAAAPgAAAAAAEAAAAAAAlAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAARAAAAAACRAAAAAABAQAAAAACJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABlAAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACAwAAAAABJQAAAAABAwAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAwAAAAACJQAAAAADDQAAAAADDQAAAAADDQAAAAADDQAAAAADAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAABJQAAAAAAAwAAAAAClAAAAAAAlAAAAAAAEAAAAAAAlAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAARAAAAAADRAAAAAAAAQAAAAAAAQAAAAAAlAAAAAAAPgAAAAAAEAAAAAAAlAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAARAAAAAAARAAAAAADAQAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AwAAAAAAAwAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAQAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAQAAAAABAwAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAADlAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAlAAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAClAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADJQAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAABDgAAAAABDgAAAAACAQAAAAACAwAAAAABJQAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADJQAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAlAAAAAAAEQAAAAAAEQAAAAAABgAAAAAAAwAAAAABAQAAAAADAwAAAAABBgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAAAlAAAAAAAAgAAAAAAAwAAAAACAwAAAAADlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAAAAQAAAAAAAwAAAAABlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAABlAAAAAAAAgAAAAAAAwAAAAABAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOQAAAAABlAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAlAAAAAAAEQAAAAAAEQAAAAAABgAAAAAAAwAAAAABAQAAAAADAwAAAAACBgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAEwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAAAAQAAAAADAwAAAAADlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAEwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAQAAAAADAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAAwAAAAADAwAAAAADlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAAB + tiles: AwAAAAAAAwAAAAABAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAACAQAAAAACAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAQAAAAADAwAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAADlAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAwAAAAABAwAAAAADAwAAAAACJQAAAAABJQAAAAACJQAAAAABJQAAAAAClAAAAAAAJwAAAAAAKAAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAABlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJwAAAAAAKAAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAJQAAAAAAJwAAAAAAKAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAACDgAAAAAADgAAAAAAAQAAAAACAwAAAAACJQAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADJQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAlAAAAAAAEQAAAAAAEQAAAAAABgAAAAAAAwAAAAABAQAAAAABAwAAAAADBgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAAAlAAAAAAAAgAAAAAAAwAAAAABAwAAAAABlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAACAQAAAAACAwAAAAAClAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAADlAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAQAAAAADAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOQAAAAABlAAAAAAAAgAAAAAAAwAAAAACAwAAAAADlAAAAAAAEQAAAAAAEQAAAAAABgAAAAAAAwAAAAABAQAAAAABAwAAAAAABgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAEwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAAwAAAAABAQAAAAABAwAAAAADlAAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAEwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAQAAAAADAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAAwAAAAAAAwAAAAAClAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAAC version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAJQAAAAAAJQAAAAADJQAAAAAClAAAAAAAQAAAAAAAQAAAAAACQAAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAQwAAAAAAQwAAAAADQwAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAACCwAAAAAAAwAAAAAAAwAAAAAAlAAAAAAAJQAAAAAAJQAAAAACJQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAlAAAAAAAJQAAAAADJQAAAAAAJQAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAwAAAAACCwAAAAAAAwAAAAAAAwAAAAAClAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADlAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAQAAAAADAQAAAAACAQAAAAADAwAAAAADJQAAAAABAwAAAAACAQAAAAACDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAClAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACAAAAAABLgAAAAAAlAAAAAAAAQAAAAADAQAAAAABAQAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAALgAAAAADLgAAAAACggAAAAAAAQAAAAADAQAAAAACAQAAAAAAAwAAAAABAQAAAAADAQAAAAACAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAALgAAAAADLgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAQAAAAADAQAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAJQAAAAABJQAAAAACJQAAAAABlAAAAAAAQAAAAAAAQAAAAAADQAAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAQwAAAAADQwAAAAAAQwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAADCwAAAAAAAwAAAAACAwAAAAAClAAAAAAAJQAAAAABJQAAAAABJQAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAlAAAAAAAJQAAAAAAJQAAAAABJQAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAADCwAAAAAAAwAAAAABAwAAAAAAlAAAAAAAAwAAAAADAwAAAAADAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABlAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAQAAAAABAQAAAAABAQAAAAAAAwAAAAACJQAAAAACAwAAAAADAQAAAAABDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABlAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAAwAAAAACAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAACAAAAAABLgAAAAADlAAAAAAAAQAAAAABAQAAAAABAQAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAALgAAAAAALgAAAAABggAAAAADAQAAAAAAAQAAAAADAQAAAAAAAwAAAAACAQAAAAACAQAAAAADAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAALgAAAAABLgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAQAAAAABAQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABDQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAwAAAAAAJQAAAAADDQAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAADQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAADQAAAAACIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABOQAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAEwAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABEwAAAAADEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAADQAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACAwAAAAABJQAAAAABDQAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAADQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAADQAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAOQAAAAACIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACEwAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACEwAAAAABEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAADQAAAAABDQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAADQAAAAACIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABAwAAAAABJQAAAAADDQAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABDQAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABDQAAAAACIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADDQAAAAABIAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAADQAAAAABDQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAADQAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAwAAAAABJQAAAAADDQAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADDQAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADDQAAAAAAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABDQAAAAADIAAAAAAB version: 6 -2,-1: ind: -2,-1 - tiles: DQAAAAADlAAAAAAARwAAAAAARwAAAAAARwAAAAAAAQAAAAAAIAAAAAACGgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAAAlAAAAAAARwAAAAAARwAAAAAAlAAAAAAAGgAAAAAAIAAAAAABGgAAAAADlAAAAAAAhQAAAAADhQAAAAAChQAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAAAIAAAAAACAQAAAAADggAAAAADhQAAAAABhQAAAAADhQAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAABlAAAAAAARgAAAAAAPAAAAAAAJQAAAAACAQAAAAAAIAAAAAAAGgAAAAAClAAAAAAAhQAAAAABSAAAAAADSAAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADlAAAAAAARQAAAAAARgAAAAAAlAAAAAAAGgAAAAABIAAAAAABGgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAwAAAAACAwAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADQAAAAADDQAAAAACDQAAAAABEwAAAAAADQAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAADIAAAAAABIAAAAAACIAAAAAADEwAAAAABIAAAAAADIAAAAAACIAAAAAAABAAAAAABBAAAAAAABAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAAADgAAAAAADgAAAAACMQAAAAAADQAAAAACDQAAAAADEwAAAAACDQAAAAACDQAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAADDQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGwAAAAABEQAAAAAAPgAAAAAAPgAAAAADBgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAGwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAGwAAAAAAGwAAAAABlAAAAAAAGwAAAAADlAAAAAAAhQAAAAAChQAAAAAChQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAGwAAAAACGwAAAAAAlAAAAAAAGwAAAAAAlAAAAAAAhQAAAAABhQAAAAADhQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAABggAAAAADlAAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAB + tiles: DQAAAAADlAAAAAAARwAAAAAARwAAAAAARwAAAAAAAQAAAAACIAAAAAAAGgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAAClAAAAAAARwAAAAAARwAAAAAAlAAAAAAAGgAAAAAAIAAAAAACGgAAAAAClAAAAAAAhQAAAAAChQAAAAAAhQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAAAIAAAAAAAAQAAAAABggAAAAADhQAAAAAChQAAAAAChQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAABlAAAAAAARgAAAAAAPAAAAAAAJQAAAAADAQAAAAAAIAAAAAABGgAAAAADlAAAAAAAhQAAAAAASAAAAAADSAAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAClAAAAAAARQAAAAAARgAAAAAAlAAAAAAAGgAAAAABIAAAAAACGgAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAADQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAABlAAAAAAAlAAAAAAAAwAAAAADAwAAAAABAwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADQAAAAAADQAAAAABDQAAAAABEwAAAAABDQAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAAAIAAAAAADIAAAAAABIAAAAAAAEwAAAAACIAAAAAAAIAAAAAAAIAAAAAACBAAAAAACBAAAAAAABAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAAADgAAAAAADgAAAAADMQAAAAAADQAAAAABDQAAAAACEwAAAAACDQAAAAACDQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAAADQAAAAADDQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGwAAAAABEQAAAAAAPgAAAAACPgAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAGwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAGwAAAAAAGwAAAAADlAAAAAAAGwAAAAAClAAAAAAAhQAAAAABhQAAAAAAhQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAGwAAAAAAGwAAAAADlAAAAAAAGwAAAAAAlAAAAAAAhQAAAAADhQAAAAABhQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAABggAAAAADlAAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAwAAAAAAAwAAAAACJQAAAAAAAwAAAAACAwAAAAADAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAANQAAAAADNQAAAAADNQAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAADQAAAAADlAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADDQAAAAACEwAAAAADlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADQAAAAADlAAAAAAAAAAAAAAAlAAAAAAADQAAAAABGAAAAAAADQAAAAADGAAAAAADDQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAABlAAAAAAAAAAAAAAAlAAAAAAAEwAAAAABGAAAAAABDQAAAAABGAAAAAABEwAAAAABlAAAAAAAMQAAAAABMgAAAAABMwAAAAACMwAAAAAAlAAAAAAAlAAAAAAADQAAAAABlAAAAAAAkwAAAAAAlAAAAAAADQAAAAAAGAAAAAADDQAAAAAAGAAAAAAADQAAAAAClAAAAAAAMQAAAAADMQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAADQAAAAADlAAAAAAAGwAAAAACGwAAAAACGwAAAAADAQAAAAABIAAAAAAAGgAAAAAClAAAAAAAQwAAAAAAQwAAAAACQwAAAAABlAAAAAAAEQAAAAAABgAAAAAAlAAAAAAADQAAAAADlAAAAAAAGwAAAAABGwAAAAABlAAAAAAAGgAAAAACIAAAAAABAQAAAAABRAAAAAABQwAAAAACQwAAAAAAQwAAAAABlAAAAAAAlAAAAAAAPgAAAAAAlAAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAADIAAAAAAAGgAAAAAAlAAAAAAAQwAAAAABQwAAAAADQwAAAAAAlAAAAAAAlAAAAAAAPgAAAAAAlAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAAQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAwAAAAACAwAAAAAAJQAAAAACAwAAAAABAwAAAAABAwAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAANQAAAAABNQAAAAAANQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAADQAAAAAClAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAEwAAAAABDQAAAAABEwAAAAADlAAAAAAAlAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAADQAAAAADlAAAAAAAAAAAAAAAlAAAAAAADQAAAAADGAAAAAADDQAAAAABGAAAAAABDQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAClAAAAAAAAAAAAAAAlAAAAAAAEwAAAAAAGAAAAAAADQAAAAADGAAAAAABEwAAAAAAlAAAAAAAMQAAAAACMgAAAAABMwAAAAAAMwAAAAAAlAAAAAAAlAAAAAAADQAAAAAAlAAAAAAAkwAAAAAAlAAAAAAADQAAAAADGAAAAAADDQAAAAABGAAAAAACDQAAAAAAlAAAAAAAMQAAAAADMQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAADQAAAAAAlAAAAAAAGwAAAAAAGwAAAAABGwAAAAACAQAAAAAAIAAAAAABGgAAAAADlAAAAAAAQwAAAAADQwAAAAADQwAAAAAClAAAAAAAEQAAAAAABgAAAAAAlAAAAAAADQAAAAAClAAAAAAAGwAAAAACGwAAAAAClAAAAAAAGgAAAAAAIAAAAAACAQAAAAACRAAAAAABQwAAAAACQwAAAAAAQwAAAAAAlAAAAAAAlAAAAAAAPgAAAAADlAAAAAAADQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAACIAAAAAADGgAAAAABlAAAAAAAQwAAAAADQwAAAAAAQwAAAAAClAAAAAAAlAAAAAAAPgAAAAAClAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAwAAAAAAAwAAAAAClAAAAAAAAQAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAKQAAAAAAAwAAAAACJQAAAAABAQAAAAAAJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAADAwAAAAAAlAAAAAAAAQAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAABJQAAAAAAAQAAAAABJQAAAAAAJQAAAAADAQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAIAAAAAABIAAAAAADAwAAAAADIAAAAAABIAAAAAACAwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAADJQAAAAABAQAAAAADJQAAAAACJQAAAAABAQAAAAACJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAIAAAAAADIAAAAAACAwAAAAACIAAAAAADIAAAAAABAwAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAADJQAAAAABAQAAAAABJQAAAAAAJQAAAAADAQAAAAACJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAAwAAAAADAwAAAAAClAAAAAAAAQAAAAADlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAKQAAAAAAAwAAAAADJQAAAAADAQAAAAADJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAABAwAAAAACAwAAAAAAlAAAAAAAAQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAAJQAAAAAAAQAAAAAAJQAAAAADJQAAAAADAQAAAAABJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAIAAAAAACIAAAAAACAwAAAAADIAAAAAAAIAAAAAACAwAAAAACIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAACJQAAAAAAAQAAAAAAJQAAAAABJQAAAAAAAQAAAAADJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAIAAAAAACIAAAAAAAAwAAAAACIAAAAAAAIAAAAAAAAwAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAADJQAAAAAAAQAAAAAAJQAAAAABJQAAAAAAAQAAAAABJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: DQAAAAADDQAAAAACDQAAAAAADQAAAAACDQAAAAAAlAAAAAAAAwAAAAAAIAAAAAACAwAAAAADlAAAAAAAlAAAAAAAJgAAAAAAJgAAAAABlAAAAAAAKAAAAAACJgAAAAADDQAAAAAAAwAAAAABAQAAAAACAwAAAAADDQAAAAACJQAAAAAAAwAAAAACIAAAAAABAwAAAAAAlAAAAAAAlAAAAAAAJgAAAAAAJgAAAAADlAAAAAAAKAAAAAADJgAAAAACDQAAAAADAQAAAAABAQAAAAAAAQAAAAACDQAAAAABlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAABJgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACAwAAAAAAAQAAAAABAwAAAAADDQAAAAAClAAAAAAAAwAAAAAAIAAAAAACAwAAAAAAlAAAAAAAlAAAAAAAJgAAAAABJgAAAAACJwAAAAAAKAAAAAABKAAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAADDQAAAAADlAAAAAAAAwAAAAABIAAAAAAAAwAAAAAClAAAAAAAlAAAAAAAJgAAAAAAJgAAAAAAlAAAAAAAKAAAAAABKAAAAAAClAAAAAAADQAAAAAADQAAAAABDQAAAAABlAAAAAAAlAAAAAAAAwAAAAACAwAAAAACAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAADDQAAAAABEwAAAAACDQAAAAABDQAAAAABDQAAAAAADQAAAAAAMQAAAAAAEwAAAAABDgAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACDgAAAAABDgAAAAACDgAAAAAAIAAAAAADEwAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAADDQAAAAACDQAAAAADEwAAAAAADQAAAAADDQAAAAADDQAAAAADDQAAAAACDQAAAAACDQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAAHQAAAAADGwAAAAACHQAAAAACGwAAAAAAlAAAAAAAGwAAAAAAGwAAAAABGwAAAAADlAAAAAAAGwAAAAACGwAAAAACDwAAAAAADwAAAAAADwAAAAAAlAAAAAAADQAAAAABHQAAAAAAGwAAAAACHQAAAAAAGwAAAAADHwAAAAAAGwAAAAADHQAAAAACGwAAAAABHwAAAAAAGgAAAAACGgAAAAAADwAAAAAADwAAAAAADwAAAAAAlAAAAAAADQAAAAAAHQAAAAABGwAAAAACHQAAAAABGwAAAAABlAAAAAAAGwAAAAADHQAAAAADGwAAAAAAHwAAAAAAGgAAAAAAGgAAAAADHQAAAAADHQAAAAABHQAAAAABHwAAAAABDQAAAAADHQAAAAAAGwAAAAACHQAAAAADGwAAAAAClAAAAAAAGwAAAAABGwAAAAACGwAAAAAAlAAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABlAAAAAAADQAAAAAClAAAAAAAHwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAADJQAAAAABGwAAAAACGwAAAAAAGwAAAAAADQAAAAAA + tiles: DQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAADlAAAAAAAAwAAAAAAIAAAAAABAwAAAAAAlAAAAAAAlAAAAAAAJgAAAAAAJgAAAAAAlAAAAAAAKAAAAAABJgAAAAADDQAAAAABAwAAAAABAQAAAAACAwAAAAADDQAAAAADJQAAAAACAwAAAAADIAAAAAABAwAAAAABlAAAAAAAlAAAAAAAJgAAAAABJgAAAAAClAAAAAAAKAAAAAACJgAAAAADDQAAAAABAQAAAAACAQAAAAACAQAAAAAADQAAAAAClAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAJgAAAAABJgAAAAAClAAAAAAAlAAAAAAAlAAAAAAADQAAAAAAAwAAAAABAQAAAAADAwAAAAAADQAAAAABlAAAAAAAAwAAAAADIAAAAAAAAwAAAAAClAAAAAAAlAAAAAAAJgAAAAADJgAAAAABJwAAAAACKAAAAAACKAAAAAACDQAAAAABDQAAAAAADQAAAAAADQAAAAABDQAAAAADlAAAAAAAAwAAAAAAIAAAAAACAwAAAAAAlAAAAAAAlAAAAAAAJgAAAAABJgAAAAADlAAAAAAAKAAAAAADKAAAAAADlAAAAAAADQAAAAACDQAAAAADDQAAAAAClAAAAAAAlAAAAAAAAwAAAAAAAwAAAAADAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAABDQAAAAAADQAAAAABDQAAAAACDQAAAAACEwAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAACMQAAAAAAEwAAAAACDgAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAAADgAAAAAADgAAAAABDgAAAAACIAAAAAAAEwAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAADEwAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADHQAAAAABGwAAAAAAHQAAAAADGwAAAAADlAAAAAAAGwAAAAACGwAAAAADGwAAAAAClAAAAAAAGwAAAAABGwAAAAACDwAAAAAADwAAAAAADwAAAAAAlAAAAAAADQAAAAADHQAAAAACGwAAAAADHQAAAAADGwAAAAABHwAAAAABGwAAAAAAHQAAAAACGwAAAAAAHwAAAAADGgAAAAADGgAAAAADDwAAAAAADwAAAAAADwAAAAAAlAAAAAAADQAAAAACHQAAAAABGwAAAAABHQAAAAADGwAAAAADlAAAAAAAGwAAAAABHQAAAAACGwAAAAADHwAAAAAAGgAAAAACGgAAAAABHQAAAAACHQAAAAADHQAAAAAAHwAAAAAADQAAAAACHQAAAAACGwAAAAAAHQAAAAABGwAAAAAAlAAAAAAAGwAAAAACGwAAAAACGwAAAAAClAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAAClAAAAAAADQAAAAADlAAAAAAAHwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAHwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADJQAAAAACGwAAAAABGwAAAAAAGwAAAAACDQAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: lAAAAAAAAwAAAAADAwAAAAADNQAAAAABlAAAAAAAAgAAAAAADgAAAAABAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAACAwAAAAAANQAAAAAClAAAAAAAAgAAAAAADgAAAAAAAgAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAADNQAAAAAAJQAAAAAAAgAAAAAADgAAAAABAgAAAAAAJQAAAAAADwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADwAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAABAwAAAAAANQAAAAABlAAAAAAAAgAAAAAADgAAAAACAgAAAAAAlAAAAAAADwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADwAAAAAAlAAAAAAAlAAAAAAANQAAAAABNQAAAAABNQAAAAAANQAAAAAClAAAAAAAAgAAAAAAIAAAAAADAgAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAIAAAAAACAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAlAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAADAgAAAAAAIAAAAAACAgAAAAAAJQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAlAAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAAgAAAAAAIAAAAAADAgAAAAAAlAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAADDQAAAAACDQAAAAACIAAAAAAAAwAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAABDQAAAAACIAAAAAAAAwAAAAABAwAAAAADNQAAAAACNAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAAAJgAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAIAAAAAAAIAAAAAACAwAAAAAAEwAAAAACEwAAAAAClAAAAAAAlAAAAAAAKAAAAAABKAAAAAACJgAAAAADDQAAAAADDQAAAAACDQAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACIAAAAAACAwAAAAACNAAAAAADNQAAAAAAlAAAAAAAlAAAAAAAKAAAAAABKAAAAAAAJgAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABIAAAAAACAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAKAAAAAABKAAAAAAAJgAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAADAwAAAAAAIAAAAAABAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAKAAAAAACJgAAAAAC + tiles: lAAAAAAAAwAAAAAAAwAAAAABNQAAAAADlAAAAAAAAgAAAAAADgAAAAABAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAABNQAAAAADlAAAAAAAAgAAAAAADgAAAAAAAgAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAACAwAAAAADNQAAAAADJQAAAAAAAgAAAAAADgAAAAAAAgAAAAAAJQAAAAACDwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADwAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAwAAAAAAAwAAAAADNQAAAAAAlAAAAAAAAgAAAAAADgAAAAAAAgAAAAAAlAAAAAAADwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADwAAAAAAlAAAAAAAlAAAAAAANQAAAAABNQAAAAAANQAAAAAANQAAAAAClAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAlAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAIAAAAAADAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAAgAAAAAAIAAAAAACAgAAAAAAlAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAACAgAAAAAAIAAAAAAAAgAAAAAAJQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAlAAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAAgAAAAAAIAAAAAACAgAAAAAAlAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAADDQAAAAABDQAAAAAADQAAAAAADQAAAAABDQAAAAABIAAAAAABAwAAAAABAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAADIAAAAAACAwAAAAACAwAAAAABNQAAAAACNAAAAAADlAAAAAAAlAAAAAAAlAAAAAAAJgAAAAAAJgAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADIAAAAAADIAAAAAACAwAAAAAAEwAAAAACEwAAAAAAlAAAAAAAlAAAAAAAKAAAAAACKAAAAAADJgAAAAACDQAAAAACDQAAAAABDQAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACIAAAAAAAAwAAAAACNAAAAAAANQAAAAABlAAAAAAAlAAAAAAAKAAAAAAAKAAAAAABJgAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACIAAAAAADAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAKAAAAAADKAAAAAABJgAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAIAAAAAABAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAKAAAAAAAJgAAAAAC version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAADAwAAAAADlAAAAAAAAAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAADAwAAAAABAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAJQAAAAABAQAAAAACJQAAAAAAJQAAAAAClAAAAAAAAgAAAAAAIAAAAAAAAgAAAAAAlAAAAAAANgAAAAAANgAAAAABNgAAAAADNgAAAAAANgAAAAAAlAAAAAAAkwAAAAAAIAAAAAABAwAAAAABAwAAAAADAwAAAAAAlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAJQAAAAACFwAAAAACFwAAAAABFwAAAAADFwAAAAACFwAAAAAClAAAAAAAAAAAAAAAJQAAAAABIAAAAAADIAAAAAACIAAAAAADJQAAAAABAgAAAAAAIAAAAAADAgAAAAAAlAAAAAAANgAAAAADNgAAAAABNgAAAAADEAAAAAAAEAAAAAAAlAAAAAAAAAAAAAAAIAAAAAACAwAAAAABAwAAAAACAwAAAAAAlAAAAAAAAgAAAAAAIAAAAAADAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAJQAAAAAAAQAAAAADJQAAAAABJQAAAAAClAAAAAAAAgAAAAAAIAAAAAACAgAAAAAAJQAAAAABDgAAAAACDgAAAAADDgAAAAADDgAAAAACDgAAAAAAlAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAADgAAAAABAgAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAlAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAADAwAAAAABlAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAJQAAAAADAQAAAAADJQAAAAAAJQAAAAAAlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAlAAAAAAANgAAAAACNgAAAAADNgAAAAACNgAAAAACNgAAAAAClAAAAAAAkwAAAAAAIAAAAAAAAwAAAAADAwAAAAADAwAAAAABlAAAAAAAAgAAAAAAIAAAAAACAgAAAAAAJQAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAACFwAAAAABlAAAAAAAAAAAAAAAJQAAAAADIAAAAAAAIAAAAAABIAAAAAACJQAAAAABAgAAAAAAIAAAAAADAgAAAAAAlAAAAAAANgAAAAADNgAAAAADNgAAAAADEAAAAAAAEAAAAAAAlAAAAAAAAAAAAAAAIAAAAAACAwAAAAAAAwAAAAADAwAAAAAAlAAAAAAAAgAAAAAAIAAAAAACAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAJQAAAAAAAQAAAAACJQAAAAACJQAAAAAClAAAAAAAAgAAAAAAIAAAAAAAAgAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAClAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAADgAAAAADAgAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAlAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -438,7 +440,6 @@ entities: color: '#D381C996' id: BrickCornerOverlayNE decals: - 2327: 22,4 2539: 24,7 2789: 33,6 3417: 12,-3 @@ -471,7 +472,6 @@ entities: color: '#D381C996' id: BrickCornerOverlayNW decals: - 2328: 20,4 2538: 18,7 2792: 30,6 3411: 9,-3 @@ -504,7 +504,6 @@ entities: color: '#D381C996' id: BrickCornerOverlaySE decals: - 2330: 22,2 2537: 24,-1 2791: 33,0 3418: 12,-6 @@ -519,7 +518,6 @@ entities: color: '#D381C996' id: BrickCornerOverlaySW decals: - 2329: 20,2 2536: 18,-1 3412: 9,-6 - node: @@ -534,30 +532,6 @@ entities: id: BrickCornerOverlaySW decals: 4879: -39,20 - - node: - zIndex: 1 - color: '#52B4E996' - id: BrickEndOverlayE - decals: - 1632: -13,6 - - node: - zIndex: 1 - color: '#52B4E996' - id: BrickEndOverlayN - decals: - 1638: -14,7 - - node: - zIndex: 1 - color: '#52B4E996' - id: BrickEndOverlayS - decals: - 1630: -14,5 - - node: - zIndex: 1 - color: '#52B4E996' - id: BrickEndOverlayW - decals: - 1631: -15,6 - node: zIndex: 1 color: '#765428BF' @@ -596,7 +570,6 @@ entities: color: '#D381C996' id: BrickLineOverlayE decals: - 2337: 22,3 2511: 24,0 2512: 24,1 2513: 24,2 @@ -677,7 +650,6 @@ entities: color: '#D381C996' id: BrickLineOverlayN decals: - 2350: 21,4 2518: 3,1 2519: 4,1 2520: 6,1 @@ -779,7 +751,6 @@ entities: color: '#D381C996' id: BrickLineOverlayS decals: - 2331: 21,2 2485: 3,-1 2486: 4,-1 2487: 6,-1 @@ -889,7 +860,6 @@ entities: color: '#D381C996' id: BrickLineOverlayW decals: - 2326: 20,3 2504: 18,0 2505: 18,1 2506: 18,2 @@ -962,7 +932,6 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 2277: 22,4 3303: -13,-28 - node: color: '#FFFFFFFF' @@ -992,7 +961,6 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 2276: 20,4 2550: 2,1 - node: zIndex: 2 @@ -1029,7 +997,6 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2278: 22,2 2637: 16,5 - node: zIndex: 2 @@ -1057,7 +1024,6 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 2279: 20,2 2552: 2,-1 2638: 12,5 - node: @@ -1236,7 +1202,6 @@ entities: decals: 2269: 19,2 2271: 19,4 - 2282: 22,3 2646: 12,6 2647: 16,6 2648: 14,4 @@ -1322,7 +1287,6 @@ entities: 2264: 20,1 2265: 21,1 2266: 22,1 - 2281: 21,4 2643: 13,5 2644: 15,5 2645: 14,5 @@ -1415,7 +1379,6 @@ entities: 2261: 20,5 2262: 21,5 2263: 22,5 - 2280: 21,2 2641: 13,5 2642: 15,5 - node: @@ -1487,7 +1450,6 @@ entities: 2272: 23,2 2273: 23,3 2274: 23,4 - 2275: 20,3 2649: 14,4 2650: 12,6 2651: 16,6 @@ -2202,31 +2164,10 @@ entities: 1741: -20,3 1763: -11,-6 3445: 7,-5 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndE - decals: - 1615: -13,6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndN - decals: - 1637: -14,7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndS - decals: - 1625: -14,5 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndW - decals: - 1616: -15,6 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1621: -14,6 2694: 23,5 - node: zIndex: 1 @@ -2238,7 +2179,6 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 1622: -14,6 2693: 19,5 - node: zIndex: 1 @@ -2250,7 +2190,6 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 1623: -14,6 2692: 23,1 - node: zIndex: 1 @@ -2262,7 +2201,6 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 1624: -14,6 2691: 19,1 - node: zIndex: 1 @@ -2858,22 +2796,6 @@ entities: id: DeliveryGreyscale decals: 1767: -10,-2 - - node: - color: '#52B4E996' - id: DiagonalCheckerAOverlay - decals: - 1574: -16,3 - 1575: -15,3 - 1578: -16,5 - 1579: -15,5 - 1580: -13,5 - 1581: -13,4 - 1582: -16,4 - 1583: -15,4 - 1584: -13,3 - 1585: -12,3 - 1586: -12,4 - 1587: -12,5 - node: color: '#9FED5896' id: DiagonalCheckerAOverlay @@ -3757,24 +3679,12 @@ entities: id: Flowersbr3 decals: 148: -3.0077362,38.980534 - - node: - color: '#FFFFFFCC' - id: Flowerspv1 - decals: - 2964: 21.708109,2.9968364 - 2965: 21.517332,2.1921363 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 153: 3.017492,39.231606 154: -2.963756,39.046604 - - node: - color: '#FFFFFFCC' - id: Flowerspv2 - decals: - 2963: 20.726976,2.2931695 - 2967: 20.313215,2.7421858 - node: color: '#FFFFFFFF' id: Flowerspv2 @@ -3782,12 +3692,6 @@ entities: 151: -2.9537683,39.782207 152: 3.0351105,40.02447 155: -2.990184,40.064114 - - node: - color: '#FFFFFFCC' - id: Flowerspv3 - decals: - 2962: 20.231455,3.5518417 - 2966: 21.502466,3.708489 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -4137,33 +4041,6 @@ entities: id: Grassc1 decals: 6557: -30.97787,5.6526427 - - node: - color: '#FFFFFFCC' - id: Grassd1 - decals: - 2959: 21.836943,2.3526342 - - node: - color: '#FFFFFFCC' - id: Grassd2 - decals: - 2956: 20.34047,2.91755 - 2960: 21.718018,3.224785 - - node: - color: '#FFFFFFCC' - id: Grasse1 - decals: - 2957: 20.053066,2.2931695 - 2961: 21.648645,3.7500577 - - node: - color: '#FFFFFFCC' - id: Grasse2 - decals: - 2958: 21.014378,2.3625453 - - node: - color: '#FFFFFFCC' - id: Grasse3 - decals: - 2955: 20.11253,3.740147 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe @@ -5729,24 +5606,12 @@ entities: decals: 4647: -10,-16 4648: -10,-17 - - node: - color: '#FFFFFF19' - id: MiniTileDiagonalCheckerBOverlay - decals: - 1649: -16,9 - 1650: -12,9 - node: zIndex: 1 color: '#334E6DC8' id: MiniTileInnerOverlayNE decals: 6920: -22,-42 - - node: - zIndex: 1 - color: '#52B4E996' - id: MiniTileInnerOverlayNE - decals: - 1633: -14,6 - node: zIndex: 1 color: '#DE3A3A96' @@ -5769,12 +5634,6 @@ entities: id: MiniTileInnerOverlayNW decals: 6923: -20,-42 - - node: - zIndex: 1 - color: '#52B4E996' - id: MiniTileInnerOverlayNW - decals: - 1635: -14,6 - node: zIndex: 1 color: '#AE6716FF' @@ -5809,12 +5668,6 @@ entities: id: MiniTileInnerOverlaySE decals: 6921: -22,-40 - - node: - zIndex: 1 - color: '#52B4E996' - id: MiniTileInnerOverlaySE - decals: - 1636: -14,6 - node: zIndex: 1 color: '#AE6716FF' @@ -5843,12 +5696,6 @@ entities: id: MiniTileInnerOverlaySW decals: 6922: -20,-40 - - node: - zIndex: 1 - color: '#52B4E996' - id: MiniTileInnerOverlaySW - decals: - 1634: -14,6 - node: zIndex: 1 color: '#DE3A3A96' @@ -6145,11 +5992,6 @@ entities: id: MiniTileSteelInnerNe decals: 4703: -10,-30 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNe - decals: - 1641: -13,8 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNw @@ -6160,11 +6002,6 @@ entities: id: MiniTileSteelInnerNw decals: 1938: -28,5 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNw - decals: - 1642: -15,8 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerSe @@ -6194,7 +6031,6 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 1644: -13,9 2881: 30,3 5101: -15,32 - node: @@ -6206,8 +6042,6 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1639: -16,8 - 1640: -12,8 5093: -19,33 5094: -18,33 5095: -17,33 @@ -6244,37 +6078,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1643: -15,9 2882: 33,3 5102: -20,32 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNe - decals: - 1590: -15,5 - 1591: -12,5 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNw - decals: - 1588: -16,5 - 1589: -13,5 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSe - decals: - 1594: -15,3 - 1595: -12,3 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSw - decals: - 1592: -13,3 - 1593: -16,3 - node: zIndex: 2 color: '#FFFFFFFF' @@ -6342,13 +6147,6 @@ entities: 2759: 30,5 3393: 9,-5 3394: 9,-4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileWhiteLineE - decals: - 1596: -15,4 - 1597: -12,4 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -6445,13 +6243,6 @@ entities: 2766: 33,5 3395: 12,-5 3396: 12,-4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 1598: -16,4 - 1599: -13,4 - node: zIndex: 2 color: '#FFFFFFFF' @@ -6761,8 +6552,6 @@ entities: 769: 36,13 770: 36,14 771: 36,15 - 1606: -15,8 - 1607: -15,9 3898: -10,-41 3899: -10,-40 4567: 33,-26 @@ -6905,8 +6694,6 @@ entities: 207: 0,32 254: -9,42 255: 9,42 - 1608: -13,8 - 1609: -13,9 3896: -10,-41 3897: -10,-40 4564: 33,-26 @@ -7041,6 +6828,7 @@ entities: decals: 1954: 1,-18 3931: 19,-14 + 7274: -16,9 - node: color: '#4B362BFF' id: WoodTrimThinCornerSeWhite @@ -7084,6 +6872,11 @@ entities: id: WoodTrimThinCornerSwWhite decals: 325: -6,23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 7280: -13,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7121,6 +6914,11 @@ entities: id: WoodTrimThinEndEWhite decals: 817: 31,23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 7279: -14,7 - node: color: '#4B362BFF' id: WoodTrimThinEndNWhite @@ -7134,6 +6932,11 @@ entities: decals: 816: 30,25 3172: 23,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 7281: -14,5 - node: color: '#4B362BFF' id: WoodTrimThinEndSWhite @@ -7151,6 +6954,11 @@ entities: id: WoodTrimThinEndSWhite decals: 5071: -41,25 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 7278: -15,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7196,6 +7004,7 @@ entities: id: WoodTrimThinInnerNe decals: 3374: 1,-15 + 7285: -14,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7273,6 +7082,7 @@ entities: id: WoodTrimThinInnerNw decals: 3373: -1,-15 + 7284: -14,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7336,6 +7146,7 @@ entities: id: WoodTrimThinInnerSe decals: 3375: 1,-18 + 7283: -14,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7396,6 +7207,7 @@ entities: id: WoodTrimThinInnerSw decals: 3376: -1,-18 + 7282: -14,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7777,6 +7589,29 @@ entities: id: cyr_zh decals: 2663: -2,-13 + - node: + cleanable: True + color: '#8000007F' + id: dot + decals: + 7292: 2.157667,7.183964 + 7293: 1.5184445,6.6487803 + 7294: 3.0942018,6.663646 + 7295: 2.8117554,7.778611 + 7296: 2.0536072,7.4961534 + 7297: 2.231995,8.551654 + 7298: 2.6779637,8.640851 + 7299: 3.2874558,7.82321 + 7300: 3.6145,7.9421396 + 7301: 2.3806512,7.6596813 + 7302: 1.3103261,7.9570065 + 7303: 1.8752205,7.0947666 + 7304: 2.2765915,6.5893154 + 7305: 2.3806512,8.566521 + 7306: 2.1873987,7.9718723 + 7307: 2.7671578,8.105668 + 7308: 3.8820806,7.273161 + 7309: 3.1982617,6.5447164 - node: cleanable: True color: '#8000007F' @@ -7832,6 +7667,229 @@ entities: 7092: -37.104763,-0.047881275 7093: -37.954903,0.05783391 7094: -37.644375,0.39480108 + - node: + cleanable: True + color: '#0000002B' + id: footprint + decals: + 7501: -19.04286,2.958836 + 7502: -19.44911,3.255711 + 7503: -19.79286,3.552586 + 7504: -20.495985,3.161961 + 7505: -17.652235,3.224461 + 7506: -19.04286,3.458836 + 7507: -19.214735,4.068211 + 7508: -19.027235,5.535478 + 7509: -18.04286,6.108919 + 7510: -18.870985,6.376186 + 7511: -19.558485,7.7084436 + 7512: -19.058485,8.639131 + 7513: -19.214735,7.5611 + 7514: -13.778308,2.4912956 + 7515: -15.151822,3.1403444 + 7516: -14.276717,3.2336276 + 7517: -13.90166,3.358373 + 7518: -13.72989,3.593215 + 7519: -14.339265,4.14009 + 7520: -13.651765,4.89009 + 7521: -13.72989,5.061965 + 7522: -14.85489,5.64009 + 7523: -14.29239,5.51509 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#0000002B' + id: footprint + decals: + 7318: -15.193592,27.167624 + 7319: -14.865467,27.339499 + 7320: -14.490467,27.433249 + 7321: -13.771717,27.886374 + 7322: -12.740467,27.073874 + 7323: -9.459217,27.417624 + 7324: -9.334217,28.323874 + 7325: -7.4279666,27.526999 + 7326: -6.7404666,28.355124 + 7327: -4.6623416,28.026999 + 7328: -4.193592,26.901999 + 7329: -2.7404668,27.667624 + 7330: -0.6623418,27.839499 + 7331: -1.1935918,27.745749 + 7332: -3.3654668,28.214499 + 7333: -4.490467,27.433249 + 7334: 1.0096209,28.042622 + 7335: 1.6376283,27.964499 + 7336: 1.8720033,27.105124 + 7337: 0.12200338,27.230124 + 7338: -1.6279967,28.526999 + 7339: -2.2842467,27.964499 + 7433: -20.171616,-9.149674 + 7434: -21.577866,-8.962174 + 7435: -21.827866,-8.930924 + 7436: -22.78099,-8.977799 + 7437: -18.702866,-9.149674 + 7438: -17.640366,-9.071549 + 7439: -17.43724,-9.009049 + 7440: -17.359116,-8.899674 + 7441: -19.421616,-7.9152994 + 7442: -20.921616,-7.8371744 + 7443: -21.327866,-8.446548 + 7444: -17.78099,-9.196549 + 7445: -19.015366,-9.743424 + 7446: -20.827866,-10.071549 + 7447: -26.58738,-9.180924 + 7448: -27.4951,-9.227799 + 7449: -29.68296,-8.930924 + 7450: -30.08945,-8.884049 + 7451: -32.167213,-8.696549 + 7452: -32.620342,-9.040299 + 7453: -31.198465,-9.821549 + 7454: -28.52659,-9.696549 + 7455: -27.729715,-9.665299 + 7456: -29.30784,-10.118424 + 7457: -31.12034,-10.290299 + 7458: -31.99534,-9.743424 + 7459: -31.667215,-8.899674 + 7460: -30.135965,-9.009049 + 7461: -29.99534,-8.993424 + 7462: -32.417213,-7.7121744 + 7463: -31.21409,-8.180923 + 7464: -27.510965,-8.962174 + 7465: -27.33909,-9.134049 + 7466: -29.042215,-9.790299 + 7467: -31.479715,-9.524674 + 7468: -31.073465,-9.805924 + 7469: -26.104715,-9.946549 + 7470: -29.198465,-9.665299 + 7471: -31.80784,-9.618424 + 7472: -28.604715,-9.196549 + 7473: -29.15159,-9.118424 + 7474: -31.292215,-9.024674 + 7475: -27.96409,-9.837174 + 7476: -10.902236,-0.070519835 + 7477: -13.495986,0.0682112 + 7478: -15.339736,0.0838362 + 7479: -16.94911,0.3494612 + 7480: -18.48036,0.2713362 + 7481: -20.152235,0.2869612 + 7482: -21.38661,0.1932112 + 7483: -22.04286,-0.40053883 + 7484: -17.839735,-0.6817888 + 7485: -14.277236,-0.6661638 + 7486: -13.074111,-0.7442888 + 7487: -16.51161,-0.47866383 + 7488: -18.183485,-0.41616383 + 7489: -19.870985,-0.41616383 + 7490: -21.120985,-0.5567888 + 7491: -22.214735,-0.6036638 + 7492: -21.214735,-0.25991383 + 7493: -19.41786,0.5994612 + 7494: -17.777235,0.4275862 + 7495: -15.620986,-0.10366383 + 7496: -13.808486,-0.38491383 + 7497: -13.120986,-0.24428883 + 7498: -13.699111,-0.056788832 + 7499: -17.51161,0.4119612 + 7500: -18.933485,0.3494612 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#0000002B' + id: footprint + decals: + 7340: 0.059503376,27.370749 + 7341: 1.8407533,27.698874 + 7342: 4.2100306,27.714499 + 7343: 6.587587,27.167624 + 7344: 4.97803,28.698874 + 7345: 5.5621705,28.214499 + 7346: 8.919127,28.745749 + 7347: 9.517295,27.948875 + 7348: 4.0524507,30.011374 + 7349: 4.5368257,30.089499 + 7350: 5.0524507,30.183249 + 7351: 5.6930757,29.995749 + 7352: 6.4430757,30.089499 + 7353: 6.7399507,30.026999 + 7354: 6.9118257,29.495749 + 7355: 8.335021,28.076817 + 7356: 13.006665,28.323683 + 7357: 13.761036,27.510044 + 7358: 14.682213,28.572487 + 7359: 15.9290905,27.650612 + 7360: 16.33333,28.103737 + 7361: 15.327264,28.181862 + 7362: 14.842077,27.853737 + 7363: 18.605745,27.150612 + 7364: 20.086031,28.072487 + 7365: 21.24127,27.416237 + 7366: 22.791466,27.134987 + 7367: 22.737183,28.494362 + 7368: 23.377808,27.666237 + 7369: 23.127808,27.119362 + 7370: 21.049683,27.291237 + 7371: 19.768433,27.150612 + 7372: 24.066029,27.463112 + 7373: 21.841507,28.384987 + 7374: 21.763382,27.525612 + 7375: 20.654007,27.791237 + 7376: 20.154007,27.822487 + 7377: 18.34631,27.666237 + 7378: 15.190604,29.213112 + 7379: 14.398999,27.791237 + 7380: 14.046269,28.166237 + 7381: 15.053588,27.463112 + 7382: 10.459296,27.666237 + 7383: -2.2258518,15.303379 + 7384: 1.1533034,15.227705 + 7385: 3.0269132,15.689468 + 7386: -1.8012118,16.501968 + 7387: -2.2855868,15.486342 + 7388: 0.51128817,14.705092 + 7389: 1.8237882,14.767592 + 7390: 3.3081632,15.048842 + 7391: 4.151913,15.142592 + 7392: 2.8579123,-0.028242499 + 7393: 1.8422873,0.17488253 + 7394: 1.1704123,0.20613253 + 7395: 0.7172873,0.17488253 + 7396: -0.09521264,0.08113253 + 7397: 0.7287638,-9.164678 + 7398: 2.7870934,-9.086558 + 7399: 4.488662,-9.336558 + 7400: 6.4150577,-9.149058 + 7401: 8.142816,-9.055309 + 7402: 9.377904,-9.133433 + 7403: 10.945521,-9.133433 + 7404: 14.322339,-8.305307 + 7405: 15.739286,-9.180308 + 7406: 15.759554,-9.461558 + 7407: 15.104696,-9.336558 + 7408: 15.760553,-9.602184 + 7409: 18.810827,-8.961558 + 7410: 20.426619,-8.930308 + 7411: 21.605005,-9.883433 + 7412: 22.46671,-12.974286 + 7413: 23.74796,-12.958661 + 7414: 24.808197,-12.880536 + 7415: 27.07214,-12.927411 + 7416: 29.390135,-13.208661 + 7417: 30.296602,-13.396161 + 7418: 28.68748,-13.161786 + 7419: 26.171638,-12.864911 + 7420: 24.171638,-12.583661 + 7421: 22.984138,-12.630536 + 7422: 25.046638,-13.974286 + 7423: 28.718513,-14.083661 + 7424: 29.609138,-14.177411 + 7425: 27.921638,-13.568036 + 7426: 23.937263,-12.661786 + 7427: 24.718513,-12.318036 + 7428: 29.778103,-13.380536 + 7429: 31.92279,-13.630536 + 7430: 28.64138,-13.036786 + 7431: 26.537075,-12.739911 + 7432: 25.64645,-12.458661 - node: cleanable: True zIndex: 10 @@ -7865,6 +7923,22 @@ entities: 6892: -1.0523071,-10.08767 6893: -0.9127066,-8.027984 6894: -1.389674,-8.854186 + - node: + cleanable: True + color: '#00000063' + id: footprint + decals: + 7315: -22.95826,30.14736 + 7316: -22.755135,30.24111 + 7317: -22.786385,29.92861 + - node: + cleanable: True + color: '#FFFFFFFF' + id: ghost + decals: + 7310: 3.983736,16.162056 + 7313: -20,25 + 7314: -16,33 - node: cleanable: True zIndex: 10 @@ -7957,6 +8031,13 @@ entities: id: m decals: 2664: 2,-13 + - node: + cleanable: True + color: '#DA8B8BFF' + id: revolution + decals: + 7311: -20.422703,17.9648 + 7312: -18.672703,17.9648 - node: cleanable: True color: '#8000007F' @@ -7965,6 +8046,15 @@ entities: 4806: 14.732597,8.825684 4807: 15.384482,9.548071 4808: 14.728192,10.041409 + - node: + cleanable: True + color: '#8000007F' + id: smallbrush + decals: + 7288: 2.6333673,8.046204 + 7289: 3.2279935,8.402992 + 7290: 3.332052,7.124499 + 7291: 1.8603547,7.7191467 - node: cleanable: True zIndex: 2 @@ -8051,6 +8141,13 @@ entities: decals: 4805: 15.010089,9.12521 4822: 14.848893,9.250078 + - node: + cleanable: True + color: '#8000007F' + id: splatter + decals: + 7286: 2.9604115,7.8380756 + 7287: 2.5441735,7.600217 - node: cleanable: True zIndex: 2 @@ -8204,7 +8301,8 @@ entities: 6,0: 0: 64923 6,1: - 0: 48029 + 0: 47517 + 2: 512 6,2: 0: 56792 6,3: @@ -8231,7 +8329,7 @@ entities: 0: 3067 8,2: 0: 4881 - 2: 4 + 3: 4 8,3: 0: 65008 9,0: @@ -8249,7 +8347,8 @@ entities: -9,1: 0: 56829 -8,2: - 0: 62399 + 0: 62271 + 4: 128 -9,2: 0: 32624 -8,3: @@ -8263,7 +8362,8 @@ entities: -7,1: 0: 49527 -7,2: - 0: 7423 + 0: 4303 + 4: 3120 -7,3: 0: 7645 -7,4: @@ -8275,7 +8375,8 @@ entities: -6,1: 0: 4223 -6,2: - 0: 16887 + 0: 16631 + 4: 256 -6,3: 0: 1919 -6,-1: @@ -8292,11 +8393,11 @@ entities: 0: 65295 -11,1: 0: 3584 - 2: 4 + 3: 4 -11,0: - 2: 1024 + 3: 1024 -11,2: - 2: 4 + 3: 4 -10,0: 0: 65535 -10,1: @@ -8305,7 +8406,7 @@ entities: 0: 35762 -10,3: 0: 63240 - 2: 1 + 3: 1 -10,-1: 0: 61440 -10,4: @@ -8408,21 +8509,21 @@ entities: 0: 65529 0,10: 0: 127 - 2: 34816 + 3: 34816 -1,10: 0: 207 - 2: 8960 + 3: 8960 0,11: - 2: 3983 + 3: 3983 -1,11: - 2: 3646 + 3: 3646 1,9: 0: 65521 1,10: 0: 3 - 2: 17856 + 3: 17856 1,11: - 2: 116 + 3: 116 2,9: 0: 61190 2,10: @@ -8435,7 +8536,7 @@ entities: 0: 65535 4,9: 0: 15 - 2: 2048 + 3: 2048 0,-8: 0: 65535 -1,-8: @@ -8472,87 +8573,87 @@ entities: 0: 62719 4,-8: 0: 61713 - 2: 136 + 3: 136 4,-7: 0: 4373 - 2: 17472 + 3: 17472 4,-6: 0: 4113 - 2: 3268 + 3: 3268 4,-5: 0: 56541 0,-12: - 2: 4880 + 3: 4880 -1,-12: - 2: 3840 + 3: 3840 0,-11: - 2: 4593 + 3: 4593 -1,-11: - 2: 62451 + 3: 62451 0,-10: - 2: 4383 - 3: 17408 + 3: 4383 + 5: 17408 -1,-10: - 2: 2051 + 3: 2051 0: 13056 0,-9: - 2: 3857 - 3: 4 + 3: 3857 + 5: 4 -1,-9: - 2: 128 + 3: 128 0: 13059 1,-11: - 2: 8944 + 3: 8944 1,-10: - 2: 15 - 3: 21760 + 3: 15 + 5: 21760 1,-9: - 3: 5 - 2: 3840 + 5: 5 + 3: 3840 2,-11: - 2: 35064 + 3: 35064 2,-10: - 2: 15 - 4: 4352 - 3: 17408 + 3: 15 + 6: 4352 + 5: 17408 2,-9: - 4: 1 - 2: 3840 - 3: 4 + 6: 1 + 3: 3840 + 5: 4 3,-11: - 2: 240 + 3: 240 3,-10: - 2: 15 - 5: 4352 - 6: 17408 + 3: 15 + 7: 4352 + 8: 17408 3,-9: - 5: 1 - 2: 3840 - 6: 4 + 7: 1 + 3: 3840 + 8: 4 4,-11: - 2: 4592 + 3: 4592 4,-10: - 2: 7953 + 3: 7953 4,-9: - 2: 49649 + 3: 49649 5,-11: - 2: 4401 + 3: 4401 5,-10: - 2: 4369 + 3: 4369 5,-9: - 2: 30065 + 3: 30065 5,-8: - 2: 65348 + 3: 65348 5,-7: - 3: 30578 + 5: 30578 5,-5: 0: 65535 5,-4: 0: 61007 5,-6: - 2: 3200 + 3: 3200 6,-6: - 2: 256 + 3: 256 0: 2184 6,-5: 0: 56797 @@ -8588,22 +8689,22 @@ entities: 0: 30583 8,-1: 0: 272 - 2: 1088 + 3: 1088 8,-8: 0: 8192 8,-7: 0: 8738 9,-7: - 2: 4096 + 3: 4096 9,-6: 0: 12336 9,-4: 0: 12336 9,-3: - 2: 16 + 3: 16 8,4: 0: 4368 - 2: 3200 + 3: 3200 8,5: 0: 61135 7,5: @@ -8612,21 +8713,21 @@ entities: 0: 61678 8,6: 0: 6372 - 2: 49152 + 3: 49152 8,7: 0: 273 - 2: 3276 + 3: 3276 7,7: 0: 43263 8,8: - 2: 2 + 3: 2 0: 26368 9,4: - 2: 256 + 3: 256 9,6: - 2: 4096 + 3: 4096 9,7: - 2: 273 + 3: 273 7,8: 0: 39864 7,9: @@ -8663,7 +8764,7 @@ entities: 0: 11 -5,9: 0: 11 - 2: 512 + 3: 512 -3,8: 0: 61917 -3,9: @@ -8677,12 +8778,12 @@ entities: -2,9: 0: 61408 -2,10: - 2: 17504 + 3: 17504 0: 8 -2,7: 0: 57599 -2,11: - 2: 196 + 3: 196 -4,5: 0: 48059 -5,5: @@ -8705,7 +8806,7 @@ entities: -8,8: 0: 192 -8,7: - 2: 34816 + 3: 34816 0: 14 -7,8: 0: 3838 @@ -8738,7 +8839,7 @@ entities: -6,6: 0: 30706 -11,4: - 2: 6 + 3: 6 0: 52224 -11,5: 0: 52428 @@ -8749,13 +8850,13 @@ entities: -10,6: 0: 4064 -10,7: - 2: 6 + 3: 6 -10,-4: 0: 2048 -9,-4: 0: 53198 -9,-3: - 2: 1 + 3: 1 0: 61132 -9,-2: 0: 52238 @@ -8771,14 +8872,14 @@ entities: 0: 32768 -9,-6: 0: 64716 - 2: 16 + 3: 16 -9,-8: 0: 32768 -9,-7: 0: 34952 -8,-6: 0: 4369 - 2: 16384 + 3: 16384 -8,-5: 0: 7633 -7,-4: @@ -8815,11 +8916,11 @@ entities: 0: 65534 -6,-6: 0: 56592 - 2: 4 + 3: 4 -6,-8: 0: 61166 -6,-7: - 2: 58432 + 3: 58432 -5,-8: 0: 65262 -5,-6: @@ -8835,7 +8936,7 @@ entities: -4,-5: 0: 4095 -6,-12: - 2: 36736 + 3: 36736 -6,-10: 0: 60940 -6,-9: @@ -8843,7 +8944,7 @@ entities: -6,-11: 0: 52224 -5,-12: - 2: 3840 + 3: 3840 -5,-11: 0: 21760 -5,-10: @@ -8851,7 +8952,7 @@ entities: -5,-9: 0: 4095 -4,-12: - 2: 12064 + 3: 12064 -4,-11: 0: 30464 -4,-10: @@ -8873,7 +8974,8 @@ entities: -2,-2: 0: 65039 -2,-5: - 0: 4471 + 0: 4375 + 4: 96 -3,-8: 0: 61422 -3,-7: @@ -8885,25 +8987,26 @@ entities: -2,-7: 0: 65038 -2,-6: - 0: 28942 + 0: 4366 + 4: 24576 -2,-8: 0: 61152 -2,-9: 0: 61198 -3,-12: - 2: 61422 + 3: 61422 -3,-10: 0: 60996 -3,-11: - 2: 238 + 3: 238 0: 17408 -2,-12: - 2: 36736 + 3: 36736 -2,-11: - 2: 65279 + 3: 65279 -2,-10: 0: 65024 - 2: 14 + 3: 14 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8935,6 +9038,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 immutable: True moles: @@ -8950,6 +9068,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -12062,6 +12195,33 @@ entities: - type: Transform pos: -26.5,-23.5 parent: 2 +- proto: BalloonCommander + entities: + - uid: 11044 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - type: Foldable + folded: False +- proto: BalloonElite + entities: + - uid: 11046 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - type: Foldable + folded: False +- proto: BalloonJuggernaut + entities: + - uid: 11045 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - type: Foldable + folded: False - proto: BananaSeeds entities: - uid: 8161 @@ -12190,11 +12350,6 @@ entities: - type: Transform pos: 10.5,32.5 parent: 2 - - uid: 2369 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - uid: 2431 components: - type: Transform @@ -12450,6 +12605,11 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,5.5 parent: 2 + - uid: 10960 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 - proto: BedsheetMime entities: - uid: 5313 @@ -12535,13 +12695,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: BiomassReclaimer - entities: - - uid: 4368 - components: - - type: Transform - pos: -27.5,9.5 - parent: 2 - proto: BlastDoor entities: - uid: 153 @@ -13422,7 +13575,7 @@ entities: - uid: 4279 components: - type: Transform - pos: -11.5,7.5 + pos: -12.316648,7.611188 parent: 2 - uid: 4730 components: @@ -25566,6 +25719,51 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-3.5 parent: 2 +- proto: CandleBlackInfinite + entities: + - uid: 10580 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 10937 + components: + - type: Transform + pos: 22.475777,2.615667 + parent: 2 + - type: PointLight + radius: 5 + - uid: 10951 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - type: PointLight + radius: 5 + - uid: 10953 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 +- proto: CandleBlueSmallInfinite + entities: + - uid: 3690 + components: + - type: Transform + pos: -6.5080905,16.673487 + parent: 2 +- proto: CandleGreenSmallInfinite + entities: + - uid: 5063 + components: + - type: Transform + pos: -17.551947,19.776356 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -23.67697,20.181671 + parent: 2 - proto: CandleInfinite entities: - uid: 3456 @@ -25584,12 +25782,106 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,11.5 parent: 2 + - type: PointLight + radius: 5 - uid: 3812 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 2 + - type: PointLight + radius: 5 + - uid: 5061 + components: + - type: Transform + pos: -17.388424,19.612827 + parent: 2 + - type: PointLight + radius: 10 + - uid: 10972 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 +- proto: CandlePurpleInfinite + entities: + - uid: 10950 + components: + - type: Transform + pos: -6.7479854,16.440102 + parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 5062 + components: + - type: Transform + pos: -23.870222,20.434397 + parent: 2 +- proto: CandyBowl + entities: + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 +- proto: CandyBucket + entities: + - uid: 55 + components: + - type: Transform + pos: 5.5278935,10.635044 + parent: 2 + - type: Item + heldPrefix: full + - type: Storage + storedItems: + 161: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 161 + - uid: 11036 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 11037 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 - proto: CapacitorStockPart entities: - uid: 10413 @@ -26396,6 +26688,134 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: CarvedPumpkin + entities: + - uid: 9427 + components: + - type: Transform + pos: 34.585987,-19.46364 + parent: 2 + - type: PointLight + energy: 3 + color: '#FF8000FF' + radius: 10 + missingComponents: + - Item + - uid: 11013 + components: + - type: MetaData + desc: Традиционное страшное украшение , возможно оно говорит, может быть. + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + pos: 24.554094,15.652574 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 +- proto: CarvedPumpkinLarge + entities: + - uid: 10957 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - type: PointLight + color: '#FF8000FF' + missingComponents: + - Item + - uid: 10971 + components: + - type: MetaData + desc: Традиционное страшное украшение , возможно он говорит. + name: страшная тыква + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: PointLight + softness: 2 + energy: 2 + color: '#FF8000FF' + radius: 10 + - type: GhostRole + description: Вы умеете говорить. Что-то еще нужно для счастья? + name: говорящая тыква + - type: GhostTakeoverAvailable + - uid: 11080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,19.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 51 + components: + - type: Transform + pos: -6.2570014,16.390463 + parent: 2 + - uid: 10961 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - type: PointLight + energy: 2 + color: '#FF8000FF' + radius: 10 + - uid: 11069 + components: + - type: Transform + pos: 3.3158934,-0.3819615 + parent: 2 + - uid: 11070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.55232,-17.524782 + parent: 2 + - uid: 11071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.38518,-18.774782 + parent: 2 + - uid: 11075 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 - proto: Catwalk entities: - uid: 1536 @@ -27708,18 +28128,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-18.5 parent: 2 - - uid: 3125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,20.5 - parent: 2 - - uid: 3126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,20.5 - parent: 2 - uid: 4307 components: - type: Transform @@ -28245,6 +28653,20 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 9095 +- proto: ChairWeb + entities: + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,20.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 - proto: ChairWood entities: - uid: 45 @@ -28379,6 +28801,17 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-0.5 parent: 2 + - uid: 10954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 2 + - uid: 10955 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 - proto: CheckerBoard entities: - uid: 4889 @@ -29237,6 +29670,13 @@ entities: parent: 8771 - type: Physics canCollide: False +- proto: ClothingHeadHatHoodMoth + entities: + - uid: 6285 + components: + - type: Transform + pos: 31.599686,-7.7733264 + parent: 2 - proto: ClothingHeadHatQMsoft entities: - uid: 2678 @@ -29283,6 +29723,13 @@ entities: - type: Transform pos: -18.5,-24.5 parent: 2 +- proto: ClothingHeadHatWizardFake + entities: + - uid: 10993 + components: + - type: Transform + pos: 6.4603043,12.509299 + parent: 2 - proto: ClothingHeadHelmetHardsuitWarden entities: - uid: 8024 @@ -29339,6 +29786,21 @@ entities: - type: Transform pos: -38.545258,10.761818 parent: 2 +- proto: ClothingMaskBear + entities: + - uid: 9426 + components: + - type: Transform + pos: 26.663332,12.522179 + parent: 2 +- proto: ClothingMaskBee + entities: + - uid: 10966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,5.5 + parent: 2 - proto: ClothingMaskClownBanana entities: - uid: 5377 @@ -29348,6 +29810,25 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 6582 + components: + - type: Transform + parent: 6423 + - type: Physics + canCollide: False +- proto: ClothingMaskFox + entities: + - uid: 7964 + components: + - type: Transform + parent: 7963 + - type: Physics + canCollide: False + - uid: 10965 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 - proto: ClothingMaskGas entities: - uid: 5429 @@ -29364,6 +29845,14 @@ entities: rot: 0.5235987755982988 rad pos: 30.286564,-1.129552 parent: 2 +- proto: ClothingMaskJackal + entities: + - uid: 10977 + components: + - type: Transform + parent: 10976 + - type: Physics + canCollide: False - proto: ClothingMaskMuzzle entities: - uid: 5186 @@ -29381,6 +29870,19 @@ entities: parent: 8771 - type: Physics canCollide: False +- proto: ClothingMaskRaven + entities: + - uid: 5060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.220222,-3.554218 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 - proto: ClothingMaskSexyClown entities: - uid: 5331 @@ -29633,6 +30135,135 @@ entities: - type: Transform pos: -17.5,-15.5 parent: 2 +- proto: ClothingOuterGhostSheet + entities: + - uid: 9425 + components: + - type: Transform + parent: 8520 + - type: Physics + canCollide: False + - uid: 10959 + components: + - type: Transform + parent: 10958 + - type: Physics + canCollide: False + - uid: 10970 + components: + - type: Transform + parent: 10969 + - type: Physics + canCollide: False + - uid: 10983 + components: + - type: Transform + parent: 10982 + - type: Physics + canCollide: False + - uid: 10996 + components: + - type: Transform + parent: 10995 + - type: Physics + canCollide: False + - uid: 10998 + components: + - type: Transform + parent: 10997 + - type: Physics + canCollide: False + - uid: 11000 + components: + - type: Transform + parent: 10999 + - type: Physics + canCollide: False + - uid: 11002 + components: + - type: Transform + parent: 11001 + - type: Physics + canCollide: False + - uid: 11004 + components: + - type: Transform + parent: 11003 + - type: Physics + canCollide: False + - uid: 11006 + components: + - type: Transform + parent: 11005 + - type: Physics + canCollide: False + - uid: 11009 + components: + - type: Transform + parent: 11008 + - type: Physics + canCollide: False +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 11052 + components: + - type: MetaData + desc: Защитный скафандр, используемый инженерами отряда быстрого реагирования, подделка. + - type: Transform + parent: 11051 + - type: RadiationReceiver + - type: Physics + canCollide: False + - type: Geiger + isEnabled: True + missingComponents: + - PressureProtection + - TemperatureProtection + - Armor + - Contraband +- proto: ClothingOuterHardsuitJuggernaut + entities: + - uid: 11050 + components: + - type: MetaData + desc: Потешный костюм джаггернаута, внушающий страх в безопасников. + name: картонный костюм джаггернаута Cybersun + - type: Transform + parent: 11049 + - type: Physics + canCollide: False + - type: RadiationReceiver + missingComponents: + - PressureProtection + - Armor + - TemperatureProtection + - Geiger + - Contraband +- proto: ClothingOuterHardsuitMaxim + entities: + - uid: 10561 + components: + - type: Transform + parent: 10560 + - type: Physics + canCollide: False + - type: Geiger + isEnabled: True + - type: RadiationReceiver + missingComponents: + - PressureProtection + - Armor + - TemperatureProtection + - DamageOnInteractProtection + - Contraband +- proto: ClothingOuterSuitIan + entities: + - uid: 7965 + components: + - type: Transform + parent: 7963 + - type: Physics + canCollide: False - proto: ClothingShoesBootsCombat entities: - uid: 10793 @@ -29763,6 +30394,13 @@ entities: - type: Transform pos: 2.5906014,-11.407577 parent: 2 +- proto: ClothingUnderSocksBee + entities: + - uid: 11048 + components: + - type: Transform + pos: -25.14748,-22.085838 + parent: 2 - proto: ClothingUniformColorRainbow entities: - uid: 10763 @@ -29859,6 +30497,22 @@ entities: parent: 5438 - type: Physics canCollide: False +- proto: ClothingUniformJumpsuitClownBanana + entities: + - uid: 6884 + components: + - type: Transform + parent: 6423 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitCossack + entities: + - uid: 10978 + components: + - type: Transform + parent: 10976 + - type: Physics + canCollide: False - proto: ClothingUniformJumpsuitDetectiveGrey entities: - uid: 8774 @@ -30057,6 +30711,12 @@ entities: - type: InsideEntityStorage - proto: Cobweb1 entities: + - uid: 5250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 - uid: 10772 components: - type: Transform @@ -30085,8 +30745,71 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-2.5 parent: 2 + - uid: 10985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,23.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 11062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 - proto: Cobweb2 entities: + - uid: 6284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 - uid: 10771 components: - type: Transform @@ -30121,6 +30844,63 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 + - uid: 10988 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 11066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 2 - proto: CocoaSeeds entities: - uid: 8154 @@ -30600,50 +31380,10 @@ entities: parent: 2 - proto: CrateCoffin entities: - - uid: 3482 - components: - - type: Transform - pos: 27.5,36.5 - parent: 2 -- proto: CrateElectrical - entities: - - uid: 6583 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 -- proto: CrateEmptySpawner - entities: - - uid: 2714 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 2722 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 -- proto: CrateEngineeringAMEControl - entities: - - uid: 10299 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 2 -- proto: CrateEngineeringAMEJar - entities: - - uid: 10300 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 10298 + - uid: 52 components: - type: Transform - pos: -12.5,-31.5 + pos: -27.5,9.5 parent: 2 - type: EntityStorage air: @@ -30669,96 +31409,15 @@ entities: showEnts: False occludes: True ents: - - 4465 - - 7581 - - 10485 + - 53 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: CrateEngineeringSecure - entities: - - uid: 6058 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 2 -- proto: CrateFilledSpawner - entities: - - uid: 2709 - components: - - type: Transform - pos: 17.5,19.5 - parent: 2 -- proto: CrateFunInstrumentsVariety - entities: - - uid: 5322 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 -- proto: CrateFunToyBox - entities: - - uid: 5998 - components: - - type: Transform - pos: 31.5,-4.5 - parent: 2 -- proto: CrateGenericSteel - entities: - - uid: 2715 - components: - - type: Transform - pos: 19.5,19.5 - parent: 2 -- proto: CrateHydroponics - entities: - - uid: 8140 - components: - - type: Transform - pos: -19.5,32.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8160 - - 8159 - - 8158 - - 8157 - - 8156 - - 8155 - - 8141 - - 8142 - - 8143 - - 8144 - - 8145 - - 8146 - - 8147 - - 8148 - - 8149 - - 8150 - - 8151 - - 8152 - - 8153 - - 8154 - - 8161 - - 8162 - - 8163 - - 8164 - - 8165 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateHydroSecure - entities: - - uid: 41 + - uid: 170 components: - type: Transform - pos: -2.5,23.5 + pos: -28.5,9.5 parent: 2 - type: EntityStorage air: @@ -30778,66 +31437,459 @@ entities: - 0 - 0 - 0 -- proto: CrateMedicalSecure - entities: - - uid: 4431 - components: - - type: Transform - pos: -21.5,11.5 - parent: 2 -- proto: CrateMedicalSurgery - entities: - - uid: 4329 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 2 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 4330 + - 171 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 3570 - components: - - type: Transform - pos: 32.5,11.5 - parent: 2 -- proto: CrateServicePersonnel - entities: - - uid: 2017 - components: - - type: Transform - pos: 4.5,33.5 - parent: 2 -- proto: CrateTrashCart - entities: - - uid: 3549 - components: - - type: Transform - pos: 29.5,11.5 - parent: 2 - - uid: 10012 - components: - - type: Transform - pos: 28.5,6.5 - parent: 2 - - uid: 10013 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 10022 + - uid: 927 components: - type: Transform - pos: 17.5,14.5 + pos: -23.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2369 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2818 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2961 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2964 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3015 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3482 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 10962 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10963 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10967 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 +- proto: CrateElectrical + entities: + - uid: 6583 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 2714 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 10299 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 10300 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 10298 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4465 + - 7581 + - 10485 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSecure + entities: + - uid: 6058 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 2709 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 5322 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 5998 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 2715 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 +- proto: CrateHydroponics + entities: + - uid: 8140 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8160 + - 8159 + - 8158 + - 8157 + - 8156 + - 8155 + - 8141 + - 8142 + - 8143 + - 8144 + - 8145 + - 8146 + - 8147 + - 8148 + - 8149 + - 8150 + - 8151 + - 8152 + - 8153 + - 8154 + - 8161 + - 8162 + - 8163 + - 8164 + - 8165 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateHydroSecure + entities: + - uid: 41 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMedicalSecure + entities: + - uid: 4431 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 4329 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4330 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 3570 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 +- proto: CrateServicePersonnel + entities: + - uid: 2017 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 +- proto: CrateTrashCart + entities: + - uid: 3549 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + pos: 17.5,14.5 parent: 2 - type: EntityStorage air: @@ -31049,6 +32101,41 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-21.5 parent: 2 +- proto: CrystalBlue + entities: + - uid: 5644 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 3126 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 +- proto: CrystalGreen + entities: + - uid: 11010 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 11014 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 11016 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 - proto: CurtainsBlack entities: - uid: 10770 @@ -34632,6 +35719,22 @@ entities: - type: Transform pos: -38.987156,5.8194094 parent: 2 +- proto: DrinkBeerCan + entities: + - uid: 3691 + components: + - type: MetaData + name: банка-пива + - type: Transform + pos: -11.711747,-20.200558 + parent: 2 +- proto: DrinkBloodGlass + entities: + - uid: 10942 + components: + - type: Transform + pos: -11.308011,4.554913 + parent: 2 - proto: DrinkBlueCuracaoBottleFull entities: - uid: 4325 @@ -37338,13 +38441,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 4369 - components: - - type: Transform - pos: -27.5,9.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 4392 components: - type: Transform @@ -37397,6 +38493,19 @@ entities: - type: Transform pos: 28.53897,-7.2885733 parent: 2 +- proto: FoodBluePumpkin + entities: + - uid: 11067 + components: + - type: Transform + pos: 15.338401,27.401432 + parent: 2 + - uid: 11081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 2 - proto: FoodBowlBig entities: - uid: 6014 @@ -37765,6 +38874,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodPumpkin + entities: + - uid: 10948 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 - proto: FoodSnackChips entities: - uid: 5468 @@ -37775,6 +38891,12 @@ entities: parent: 2 - proto: FoodSnackChocolate entities: + - uid: 161 + components: + - type: Transform + parent: 55 + - type: Physics + canCollide: False - uid: 4303 components: - type: Transform @@ -52382,6 +53504,25 @@ entities: - type: Transform pos: -36.5,1.8 parent: 2 +- proto: HeadSkeleton + entities: + - uid: 7962 + components: + - type: MetaData + name: Йорик + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 21.532883,3.6127136 + parent: 2 + - uid: 11072 + components: + - type: Transform + pos: -25.299812,5.4154015 + parent: 2 - proto: HighSecArmoryLocked entities: - uid: 7916 @@ -53014,6 +54155,30 @@ entities: - type: Transform pos: -36.617023,1.2229006 parent: 2 +- proto: LegionnaireBonfire + entities: + - uid: 10952 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - type: PointLight + energy: 100 + radius: 15 + - uid: 11007 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - type: PointLight + softness: 2 + energy: 2 + radius: 10 - proto: LemonSeeds entities: - uid: 8143 @@ -53508,21 +54673,137 @@ entities: - type: Transform pos: -6.5,-18.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 172 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 6141 components: - type: Transform pos: -5.5,-20.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 173 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 6142 components: - type: Transform pos: -5.5,-18.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 174 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 6274 components: - type: Transform pos: -6.5,-20.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 175 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerEvidence entities: - uid: 5432 @@ -54586,6 +55867,84 @@ entities: showEnts: False occludes: False ent: 5440 + - uid: 6423 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 6884 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 6582 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 7963 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7965 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 7964 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - uid: 8235 components: - type: Transform @@ -54625,6 +55984,46 @@ entities: showEnts: False occludes: False ent: null + - uid: 8520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 9425 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - uid: 8771 components: - type: Transform @@ -54664,6 +56063,556 @@ entities: showEnts: False occludes: False ent: null + - uid: 10560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,20.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10561 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 10958 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10959 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 10969 + components: + - type: Transform + rot: -4.71238898038469 rad + pos: -21.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10970 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 10976 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10978 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10977 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 10982 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10983 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 10995 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10996 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 10997 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 10998 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 10999 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 11000 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 11001 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 11002 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 11003 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 11004 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 11005 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 11006 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 11008 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 11009 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 11049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 11050 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 11051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 11052 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null - proto: MaterialBiomass entities: - uid: 4416 @@ -54676,6 +56625,13 @@ entities: - type: Transform pos: -25.55,5.5 parent: 2 +- proto: MaterialBones1 + entities: + - uid: 11023 + components: + - type: Transform + pos: 3.3547742,8.352612 + parent: 2 - proto: MaterialCloth entities: - uid: 2021 @@ -54741,11 +56697,6 @@ entities: parent: 2 - proto: MedicalBed entities: - - uid: 4240 - components: - - type: Transform - pos: -11.5,5.5 - parent: 2 - uid: 4241 components: - type: Transform @@ -54878,21 +56829,6 @@ entities: - type: Transform pos: 28.5,37.5 parent: 2 - - uid: 4370 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - - uid: 4371 - components: - - type: Transform - pos: -24.5,10.5 - parent: 2 - - uid: 4372 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - proto: Multitool entities: - uid: 5437 @@ -55017,6 +56953,13 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 4372 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 - proto: OnionSeeds entities: - uid: 8155 @@ -55369,12 +57312,12 @@ entities: - uid: 4280 components: - type: Transform - pos: -11.565091,7.5901275 + pos: -12.176023,7.548688 parent: 2 - uid: 4282 components: - type: Transform - pos: -11.613543,7.5460796 + pos: -12.176023,7.564313 parent: 2 - uid: 4520 components: @@ -61062,6 +63005,13 @@ entities: rot: 0.17453292519943295 rad pos: 31.948124,-2.525792 parent: 2 + - uid: 10949 + components: + - type: Transform + pos: -0.44963545,-30.58918 + parent: 2 + - type: Paper + content: Я украл ваш крутой двигатель , попробуй найти его - proto: PaperBin entities: - uid: 1391 @@ -61156,6 +63106,19 @@ entities: - type: Transform pos: 32.255543,-2.2699432 parent: 2 +- proto: PenCentcom + entities: + - uid: 5457 + components: + - type: Transform + pos: -27.258871,19.571775 + parent: 2 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 1.5 - proto: PianoInstrument entities: - uid: 3830 @@ -61219,6 +63182,146 @@ entities: - type: Transform pos: 8.408838,-14.32572 parent: 2 +- proto: PlushieGhost + entities: + - uid: 53 + components: + - type: Transform + parent: 52 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 171 + components: + - type: Transform + parent: 170 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 172 + components: + - type: Transform + parent: 6140 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 173 + components: + - type: Transform + parent: 6141 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 174 + components: + - type: Transform + parent: 6142 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 175 + components: + - type: Transform + parent: 6274 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2369 + components: + - type: Transform + parent: 927 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2961 + components: + - type: Transform + parent: 2818 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3015 + components: + - type: Transform + parent: 2964 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4240 + components: + - type: Transform + pos: -1.8850992,7.374241 + parent: 2 + - uid: 10963 + components: + - type: Transform + parent: 10962 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10979 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + pos: 3.4631171,14.669904 + parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 11024 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 +- proto: PlushieMagicarp + entities: + - uid: 11021 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 4269 + components: + - type: Transform + pos: -19.027203,19.651806 + parent: 2 + - uid: 11025 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 +- proto: PlushieRainbowCarp + entities: + - uid: 11022 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 - proto: PlushieSharkPink entities: - uid: 5178 @@ -61226,6 +63329,14 @@ entities: - type: Transform pos: -28.5,-2.5 parent: 2 +- proto: PlushieThrongler + entities: + - uid: 11017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,35.5 + parent: 2 - proto: PoppySeeds entities: - uid: 8165 @@ -61249,6 +63360,13 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 2 +- proto: PosterBroken + entities: + - uid: 11015 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 7069 @@ -61473,11 +63591,6 @@ entities: - type: Transform pos: -4.5,35.5 parent: 2 - - uid: 4269 - components: - - type: Transform - pos: -15.59375,6.265625 - parent: 2 - uid: 5194 components: - type: Transform @@ -61924,12 +64037,6 @@ entities: parent: 9095 - proto: Poweredlight entities: - - uid: 161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-0.5 - parent: 2 - uid: 1308 components: - type: Transform @@ -62125,12 +64232,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,22.5 parent: 2 - - uid: 2818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 2 - uid: 2819 components: - type: Transform @@ -62161,12 +64262,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,24.5 parent: 2 - - uid: 2961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 - parent: 2 - uid: 2962 components: - type: Transform @@ -62178,12 +64273,6 @@ entities: - type: Transform pos: 24.5,20.5 parent: 2 - - uid: 2964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 - parent: 2 - uid: 2965 components: - type: Transform @@ -62214,12 +64303,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,14.5 parent: 2 - - uid: 3015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,16.5 - parent: 2 - uid: 3256 components: - type: Transform @@ -62451,34 +64534,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 2 - - uid: 5060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,3.5 - parent: 2 - - uid: 5061 - components: - - type: Transform - pos: 21.5,7.5 - parent: 2 - - uid: 5062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,5.5 - parent: 2 - - uid: 5063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 2 - - uid: 5066 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 - uid: 5067 components: - type: Transform @@ -62600,12 +64655,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,10.5 parent: 2 - - uid: 5644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,10.5 - parent: 2 - uid: 5828 components: - type: Transform @@ -62728,12 +64777,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 - - uid: 6423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-17.5 - parent: 2 - uid: 6530 components: - type: Transform @@ -62882,29 +64925,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 2 - - uid: 7962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,20.5 - parent: 2 - - uid: 7963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,18.5 - parent: 2 - - uid: 7964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,18.5 - parent: 2 - - uid: 7965 - components: - - type: Transform - pos: -18.5,23.5 - parent: 2 - uid: 7966 components: - type: Transform @@ -62923,11 +64943,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,21.5 parent: 2 - - uid: 7969 - components: - - type: Transform - pos: -25.5,23.5 - parent: 2 - uid: 8037 components: - type: Transform @@ -63129,22 +65144,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,26.5 parent: 2 - - uid: 9425 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - - uid: 9426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 2 - - uid: 9427 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - uid: 9428 components: - type: Transform @@ -63270,18 +65269,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,36.5 parent: 2 - - uid: 10579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 - parent: 2 - - uid: 10580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-21.5 - parent: 2 - uid: 10581 components: - type: Transform @@ -63330,18 +65317,6 @@ entities: parent: 2 - proto: PoweredlightCyan entities: - - uid: 51 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 2 - - uid: 52 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 2 - uid: 3726 components: - type: Transform @@ -63488,18 +65463,6 @@ entities: parent: 2 - proto: PoweredlightPink entities: - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 2 - - uid: 55 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 2 - uid: 3808 components: - type: Transform @@ -63693,11 +65656,15 @@ entities: - type: Transform pos: -26.5,9.5 parent: 2 + - type: PointLight + color: '#FF8000FF' - uid: 4387 components: - type: Transform pos: -22.5,9.5 parent: 2 + - type: PointLight + color: '#FF8000FF' - uid: 5103 components: - type: Transform @@ -63708,12 +65675,6 @@ entities: - type: Transform pos: 23.5,11.5 parent: 2 - - uid: 5250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 2 - uid: 5251 components: - type: Transform @@ -63726,14 +65687,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-12.5 parent: 2 - - uid: 6582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 2 - - type: PointLight - offset: 0,0 - uid: 6704 components: - type: Transform @@ -63782,14 +65735,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-37.5 parent: 2 - - uid: 6884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-22.5 - parent: 2 - - type: PointLight - offset: 0,0 - uid: 7168 components: - type: Transform @@ -64061,13 +66006,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-31.5 parent: 2 - - uid: 10576 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 2 - - type: PointLight - offset: 0,0 - uid: 10577 components: - type: Transform @@ -64256,6 +66194,47 @@ entities: - type: Transform pos: -28.5,-2.5 parent: 2 +- proto: PumpkinLantern + entities: + - uid: 11073 + components: + - type: Transform + pos: -20.46958,23.685844 + parent: 2 + - type: PointLight + radius: 5 +- proto: PumpkinSeeds + entities: + - uid: 11087 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 - proto: Rack entities: - uid: 1499 @@ -64329,11 +66308,6 @@ entities: - type: Transform pos: -14.5,-25.5 parent: 2 - - uid: 6284 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - uid: 6609 components: - type: Transform @@ -64576,29 +66550,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 2 - - uid: 172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,3.5 - parent: 2 - - uid: 174 - components: - - type: Transform - pos: 21.5,2.5 - parent: 2 - - uid: 175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 2 - - uid: 176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,3.5 - parent: 2 - uid: 357 components: - type: Transform @@ -64939,29 +66890,6 @@ entities: parent: 2 - proto: RailingCorner entities: - - uid: 169 - components: - - type: Transform - pos: 22.5,2.5 - parent: 2 - - uid: 170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 2 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 2 - - uid: 173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,2.5 - parent: 2 - uid: 1220 components: - type: Transform @@ -65359,11 +67287,6 @@ entities: - type: Transform pos: 5.5,5.5 parent: 2 - - uid: 927 - components: - - type: Transform - pos: 25.5,6.5 - parent: 2 - uid: 2254 components: - type: Transform @@ -66094,6 +68017,13 @@ entities: - type: Transform pos: 34.50168,-7.422984 parent: 2 +- proto: RGBStaff + entities: + - uid: 4369 + components: + - type: Transform + pos: 1.0442228,11.289121 + parent: 2 - proto: RiceSeeds entities: - uid: 8157 @@ -66341,13 +68271,6 @@ entities: - type: Transform pos: -14.5,36.5 parent: 2 -- proto: ShadowTree03 - entities: - - uid: 5457 - components: - - type: Transform - pos: 21.5,3.25 - parent: 2 - proto: ShardGlass entities: - uid: 2716 @@ -67879,6 +69802,13 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 2 +- proto: SingularityToy + entities: + - uid: 10994 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 - proto: Sink entities: - uid: 4256 @@ -68626,6 +70556,74 @@ entities: - type: Transform pos: 32.5,-1.5 parent: 2 + - uid: 11028 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 11038 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 11054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - uid: 11057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 11059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 - proto: SprayBottleSpaceCleaner entities: - uid: 10005 @@ -70128,11 +72126,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-14.5 parent: 2 - - uid: 3124 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - uid: 3571 components: - type: Transform @@ -70406,6 +72399,21 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 2 + - uid: 10579 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 - proto: TableCounterMetal entities: - uid: 2361 @@ -70503,16 +72511,6 @@ entities: - type: Transform pos: 4.5,19.5 parent: 2 - - uid: 3690 - components: - - type: Transform - pos: 6.5,20.5 - parent: 2 - - uid: 3691 - components: - - type: Transform - pos: 6.5,19.5 - parent: 2 - proto: TableFancyBlack entities: - uid: 373 @@ -71243,6 +73241,26 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-17.5 parent: 2 +- proto: TableWeb + entities: + - uid: 10945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + - uid: 10946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 - proto: TableWood entities: - uid: 299 @@ -71479,6 +73497,26 @@ entities: - type: Transform pos: -34.5,11.5 parent: 2 + - uid: 10936 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 10943 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 - proto: TearGasGrenade entities: - uid: 1121 @@ -71504,27 +73542,40 @@ entities: - type: InsideEntityStorage - proto: TegCenter entities: - - uid: 10560 + - uid: 3125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-30.5 + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 parent: 2 + - type: ApcPowerReceiver + powerDisabled: True - proto: TegCirculator entities: - - uid: 8520 + - uid: 4368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-31.5 + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 10561 + - uid: 4370 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: -0.5,-29.5 + pos: -12.5,-11.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - type: Physics + bodyType: Dynamic + - uid: 10947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-25.5 parent: 2 - type: PointLight color: '#FF3300FF' @@ -71927,11 +73978,6 @@ entities: - type: Transform pos: 20.5,6.59375 parent: 2 - - uid: 6285 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - uid: 7557 components: - type: Transform @@ -71999,6 +74045,23 @@ entities: - type: Transform pos: -21.139904,-20.621662 parent: 2 +- proto: ToySword + entities: + - uid: 4371 + components: + - type: Transform + pos: 4.338294,-3.7060897 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + pos: -40.182858,21.985033 + parent: 2 - proto: TrackingImplanter entities: - uid: 8194 @@ -72048,6 +74111,7 @@ entities: tags: - Paper sizes: null + mindRoles: null components: null - type: Dumpable delayPerItem: 0 @@ -72442,6 +74506,13 @@ entities: - type: Transform pos: 26.5,-19.5 parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 10576 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 - proto: VendingMachineMedical entities: - uid: 4260 @@ -81718,6 +83789,23 @@ entities: - type: Transform pos: -15.5,-41.5 parent: 2 +- proto: WebBed + entities: + - uid: 176 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 - proto: WelderIndustrialAdvanced entities: - uid: 6029 @@ -81854,6 +83942,14 @@ entities: rot: 3.141592653589793 rad pos: -4.5,17.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -2109.2192 + state: Opening + - type: Airlock + autoClose: False - proto: WindoorSecure entities: - uid: 2027 @@ -82700,6 +84796,30 @@ entities: rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 +- proto: WoodenSupport + entities: + - uid: 11018 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 11083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,21.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,21.5 + parent: 2 - proto: Wrench entities: - uid: 5112 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index d2d35c7d928..5ad509170dd 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -9,6 +9,7 @@ tilemap: 17: FloorBlueCircuit 21: FloorCarpetOffice 29: FloorDark + 1: FloorDarkDiagonal 34: FloorDarkMono 41: FloorEighties 44: FloorFreezer @@ -25,6 +26,7 @@ tilemap: 98: FloorSteelDirty 100: FloorSteelLime 101: FloorSteelMini + 2: FloorSteelMono 106: FloorTechMaint 107: FloorTechMaint2 110: FloorWhite @@ -45,31 +47,31 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABHQAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAABWwAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABHQAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAIgAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA version: 6 0,0: ind: 0,0 - tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADewAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAAAeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAADeAAAAAAA + tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABegAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADewAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAAAeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAADeAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: ewAAAAAAewAAAAAAawAAAAAATQAAAAAATQAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAB + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA version: 6 0,1: ind: 0,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAewAAAAAAewAAAAAA version: 6 1,0: ind: 1,0 @@ -81,27 +83,27 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: awAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADHQAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAACHQAAAAACHQAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAA + tiles: awAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAWwAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADHQAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAACHQAAAAACHQAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHQAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHQAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: egAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAABewAAAAAAHQAAAAACWwAAAAACewAAAAAAWwAAAAADWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAABewAAAAAAHQAAAAACWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAADHQAAAAAAWwAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAADTQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAA + tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: ewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA + tiles: ewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA version: 6 1,1: ind: 1,1 - tiles: eAAAAAAAewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAeAAAAAAAeAAAAAABWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: eAAAAAAAewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAACewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAeAAAAAAAeAAAAAABWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,0: ind: 2,0 @@ -109,19 +111,19 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: WwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAWwAAAAADOgAAAAAAWwAAAAAAWwAAAAACWwAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAWwAAAAADOgAAAAAAWwAAAAAAWwAAAAACWwAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -133,27 +135,27 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABbgAAAAACewAAAAAA + tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAACewAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAeAAAAAAA + tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAeAAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,2: ind: 1,2 - tiles: ewAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACewAAAAAAeAAAAAAAeAAAAAABWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAADewAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACHQAAAAACHQAAAAACHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAAHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAACewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADewAAAAAAHQAAAAABeAAAAAACewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAHQAAAAADeAAAAAABAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAC + tiles: ewAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACewAAAAAAeAAAAAAAeAAAAAABWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAADewAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAANgAAAAAANgAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACHQAAAAACHQAAAAACHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAAHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAACewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADewAAAAAAHQAAAAABeAAAAAACewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAHQAAAAADeAAAAAABAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAC version: 6 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAHQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAHQAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAATQAAAAAAHQAAAAACHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABewAAAAAATQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAYgAAAAAAWwAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAACTQAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAHQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAHQAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAATQAAAAAAHQAAAAACHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABewAAAAAATQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,2: ind: 2,2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAABWwAAAAABYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAADYgAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAABWwAAAAADYgAAAAAAUAAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAACeAAAAAADeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAACeAAAAAADeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,3: ind: 1,3 @@ -165,43 +167,43 @@ entities: version: 6 4,-1: ind: 4,-1 - tiles: ewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAbgAAAAABagAAAAAAewAAAAAA + tiles: ewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAbgAAAAABagAAAAAAewAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA version: 6 3,0: ind: 3,0 - tiles: bgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAbgAAAAABbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAADHQAAAAAAHQAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADewAAAAAAbgAAAAACWwAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABWwAAAAADewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADWwAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAD + tiles: bgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAADHQAAAAAAHQAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADewAAAAAAbgAAAAACWwAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABWwAAAAADewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADWwAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAD version: 6 4,0: ind: 4,0 - tiles: bgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABewAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACWwAAAAACbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACWwAAAAACbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAADEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAADbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAANgAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAADEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAADbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 3,3: ind: 3,3 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 4,1: ind: 4,1 - tiles: bgAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAAAWwAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAABewAAAAAAewAAAAAAYgAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAA + tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAA version: 6 4,3: ind: 4,3 @@ -209,7 +211,7 @@ entities: version: 6 5,-1: ind: 5,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 @@ -217,7 +219,7 @@ entities: version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAHQAAAAAAewAAAAAAewAAAAAATQAAAAAANgAAAAAATQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 @@ -245,7 +247,7 @@ entities: version: 6 5,1: ind: 5,1 - tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAANgAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAEQAAAAAAewAAAAAAewAAAAAANgAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 3,-4: ind: 3,-4 @@ -253,31 +255,31 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 6,1: + ind: 6,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: NgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -297,31 +299,42 @@ entities: version: 2 data: tiles: - -4,-4: - 0: 65520 - -4,-5: - 1: 63626 - -5,-4: - 0: 65520 - -4,-3: - 0: 136 + -4,-1: + 0: 65280 + -5,-1: + 0: 65280 + -4,0: + 0: 2191 + 1: 768 + -3,-1: + 0: 65280 + 1: 8 + -3,0: + 0: 558 + 1: 2048 -3,-4: - 0: 65520 + 1: 17472 -3,-5: - 1: 61442 + 0: 49152 + 1: 136 + -3,-3: + 1: 4 + 0: 3072 -2,-4: - 0: 30580 - -2,-5: - 1: 4096 - 0: 17472 + 0: 30582 -2,-3: - 0: 26214 + 0: 26471 + -3,-2: + 1: 34952 + -2,-1: + 0: 65382 + -2,-5: + 0: 30310 -2,-2: 0: 26222 - -2,-1: - 0: 61030 -2,0: - 0: 2190 + 0: 2191 + 1: 768 -1,-4: 1: 17 0: 28672 @@ -332,9 +345,10 @@ entities: -1,-1: 0: 65455 -1,-5: - 1: 28944 + 1: 30481 -1,0: 0: 558 + 1: 2048 0,-4: 0: 47935 0,-3: @@ -343,35 +357,33 @@ entities: 0: 48802 0,-1: 0: 65322 + -5,0: + 0: 15 + 1: 3840 -4,3: - 1: 61440 - -4,4: - 1: 15 - -5,3: - 1: 57344 + 1: 32768 -3,3: - 1: 61440 - -3,4: + 1: 768 + -4,4: 1: 15 -2,3: - 1: 61440 + 1: 17152 -2,4: 1: 15 -1,3: - 1: 61440 - -1,4: - 1: 15 + 1: 36352 0,0: 0: 34959 - 0,3: - 1: 61440 - 0: 136 - 0,4: + 1: 768 + -1,4: 1: 15 0,1: 0: 34952 0,2: 0: 34952 + 0,3: + 0: 136 + 1: 32768 1,0: 0: 30719 1,1: @@ -379,11 +391,13 @@ entities: 1,2: 0: 32759 1,3: - 0: 32887 + 0: 24695 + 0,4: + 1: 143 1,-1: 0: 65303 1,4: - 0: 43775 + 0: 60966 2,0: 0: 61695 2,1: @@ -395,7 +409,7 @@ entities: 2,-1: 0: 65467 2,4: - 0: 64443 + 0: 15247 3,0: 0: 45311 3,1: @@ -415,8 +429,8 @@ entities: 4,3: 0: 65021 0,-5: - 0: 45056 - 1: 70 + 0: 45859 + 1: 200 1,-4: 0: 65295 1,-3: @@ -454,30 +468,43 @@ entities: 0: 4 -5,-8: 1: 34944 - -5,-5: - 1: 61713 + -4,-7: + 1: 112 + 0: 29184 -4,-6: - 0: 57344 + 0: 242 + -5,-6: + 0: 240 -4,-9: 0: 17408 1: 35807 -3,-8: 0: 69 1: 61624 + -3,-7: + 1: 3840 -3,-6: - 0: 12288 + 0: 255 + 1: 32768 -3,-9: 0: 21760 1: 43759 -2,-8: 0: 21 1: 61674 + -2,-7: + 1: 768 + -2,-6: + 0: 20087 -2,-9: 0: 21760 1: 35471 -1,-8: 0: 34953 1: 12848 + -1,-6: + 0: 3840 + 1: 8 -1,-9: 0: 4360 1: 119 @@ -488,10 +515,9 @@ entities: 0: 65535 0,-7: 1: 30576 - -1,-6: - 1: 2184 0,-6: - 1: 17477 + 1: 34821 + 0: 13056 0,-9: 0: 57551 1,-8: @@ -525,37 +551,40 @@ entities: 0: 3855 4,-5: 0: 22288 + 0,6: + 0: 2056 1,6: - 0: 36751 - 1,7: - 0: 52232 + 0: 53199 1,5: - 0: 34944 + 1: 16 + 0: 52416 + 1,7: + 1: 16 + 0: 60428 1,8: - 0: 12 - 1: 8704 + 0: 15086 2,5: - 0: 65523 + 0: 65529 2,6: 0: 65535 2,7: - 0: 47935 + 0: 48063 2,8: - 0: 34947 + 0: 35763 3,5: - 0: 65534 + 0: 65535 3,6: 0: 46079 3,7: - 0: 48031 + 0: 48063 4,4: 0: 3845 4,5: - 0: 61423 + 0: 61183 4,6: 0: 65038 3,8: - 0: 49656 + 0: 57592 4,1: 0: 61152 5,0: @@ -699,8 +728,8 @@ entities: 0: 61047 1: 136 3,-10: - 1: 118 - 0: 45056 + 1: 50 + 0: 45192 3,-9: 0: 3067 3,-13: @@ -778,10 +807,12 @@ entities: 0: 8191 10,-5: 0: 12543 + 1: 32768 10,-9: 0: 65535 10,-4: 0: 61491 + 1: 136 11,-8: 0: 4369 1: 17476 @@ -792,10 +823,14 @@ entities: 0: 273 1: 3140 11,-5: - 0: 35071 + 0: 51455 + 1: 4096 11,-9: 0: 4369 1: 17484 + 11,-4: + 1: 17 + 0: 63692 12,-8: 3: 7 4: 1792 @@ -808,8 +843,6 @@ entities: 0: 49152 12,-5: 0: 43263 - 11,-4: - 0: 63624 8,-13: 0: 53519 1: 240 @@ -881,7 +914,7 @@ entities: 7,7: 0: 3822 7,8: - 0: 56591 + 0: 53703 8,4: 0: 65520 8,5: @@ -889,7 +922,7 @@ entities: 8,6: 0: 65535 8,7: - 0: 12159 + 0: 65407 9,0: 0: 20735 9,1: @@ -911,7 +944,7 @@ entities: 10,-1: 0: 65167 10,4: - 0: 61412 + 0: 61156 11,0: 0: 65327 11,1: @@ -945,7 +978,7 @@ entities: 11,-2: 0: 65535 12,-4: - 0: 65418 + 0: 32650 12,-2: 0: 61167 12,-1: @@ -1125,21 +1158,27 @@ entities: 1: 65280 16,-5: 0: 65295 + 0,8: + 1: 9728 + 0,9: + 1: 9826 + 0: 2176 + 0,10: + 1: 59938 1,9: - 1: 58094 + 0: 32754 1,10: - 1: 11810 - 1,11: - 1: 57890 + 0: 7 + 1: 63488 2,9: - 1: 65075 - 0: 136 + 1: 13298 + 0: 8 2,10: - 1: 3840 + 1: 15906 2,11: - 1: 61440 + 1: 58082 3,11: - 1: 61440 + 1: 61680 3,9: 0: 61166 3,10: @@ -1147,7 +1186,7 @@ entities: 4,9: 0: 57583 4,11: - 1: 12288 + 1: 12850 0: 2184 4,10: 0: 1262 @@ -1179,9 +1218,9 @@ entities: 0: 15 1: 61440 8,8: - 0: 21831 + 0: 21746 8,9: - 0: 14549 + 0: 14557 8,10: 0: 30591 8,11: @@ -1189,64 +1228,76 @@ entities: 9,4: 0: 65520 9,5: - 0: 57297 + 0: 57296 9,6: 0: 56733 9,7: - 0: 48909 + 0: 65293 10,5: - 0: 64270 + 0: 64302 10,6: - 0: 45979 + 0: 13211 10,7: - 0: 13067 - 1: 34816 - 9,8: - 0: 65528 + 0: 65283 10,8: - 0: 13107 - 1: 34952 + 0: 13105 + 1: 34944 11,5: 0: 48010 11,6: - 0: 59579 + 0: 63675 11,7: - 0: 26215 + 0: 30575 11,8: - 0: 26214 + 0: 61030 12,4: 0: 61408 12,5: 0: 57598 12,6: 0: 28910 + 12,7: + 1: 36608 + 0: 6 8,12: 0: 1 1: 12800 + 9,8: + 0: 35760 9,9: - 0: 36622 + 0: 36795 9,10: 0: 15291 9,11: 1: 57344 + 10,9: + 0: 3 + 1: 3720 10,10: 0: 36848 10,11: 1: 12561 0: 2184 - 10,9: - 0: 34 - 1: 136 10,12: 1: 50244 - 11,9: - 0: 30310 11,10: - 0: 4915 + 0: 4914 + 1: 34944 11,11: 0: 53009 + 1: 12 + 11,9: + 0: 26214 + 12,8: + 1: 15 + 0: 65392 + 12,9: + 1: 17648 + 12,10: + 1: 53188 12,11: 0: 13056 + 1: 2052 5,13: 1: 3298 6,13: @@ -1275,11 +1326,11 @@ entities: 16,0: 0: 65535 17,-3: - 0: 61422 + 0: 61322 17,-5: 0: 65263 17,-4: - 0: 36494 + 0: 60046 17,-2: 0: 61070 17,-1: @@ -1431,66 +1482,80 @@ entities: 0: 60447 13,6: 0: 239 - 1: 16384 + 1: 61440 13,7: - 0: 65520 + 1: 305 + 0: 49152 + 13,8: + 0: 65518 14,5: 0: 65487 14,6: - 0: 4607 - 1: 16384 + 0: 255 + 1: 61440 14,7: - 0: 65520 + 0: 28672 + 1: 128 + 14,8: + 0: 47935 15,5: 0: 64789 15,6: 0: 50431 + 1: 4096 15,7: - 0: 4380 + 1: 61201 + 0: 12 + 15,8: + 1: 25668 16,5: 0: 56783 16,6: 0: 56541 16,7: 0: 50381 + 1: 4352 13,12: - 0: 15 + 0: 34959 + 1: 768 + 13,11: + 0: 49152 + 1: 303 14,12: - 0: 4383 + 0: 8751 + 1: 2048 + 14,11: + 0: 28672 + 1: 143 15,12: 0: 15 + 1: 256 15,11: 0: 34816 - 12,8: - 0: 17476 - 12,9: - 0: 50244 - 13,8: - 0: 32752 - 13,9: - 0: 3183 - 12,10: - 0: 8 + 1: 773 13,10: - 0: 227 - 14,8: - 0: 57328 + 1: 12544 + 0: 206 + 13,9: + 0: 61166 14,9: - 0: 1998 + 0: 15295 14,10: - 0: 248 - 15,8: - 0: 21844 - 15,9: - 0: 25669 + 0: 127 + 1: 32768 15,10: - 0: 3 + 1: 8165 + 15,9: + 1: 17510 + 16,10: + 1: 272 + 0: 56524 16,11: - 0: 32652 + 0: 32669 16,8: 0: 52428 17,5: - 0: 63726 + 0: 47790 17,7: 0: 61167 17,6: @@ -1499,22 +1564,31 @@ entities: 17,8: 0: 3823 18,5: - 0: 4113 - 1: 1100 + 0: 30495 18,6: - 1: 8828 + 1: 57360 + 0: 3584 18,7: - 1: 8738 - 18,8: - 1: 8738 + 1: 57568 + 0: 3584 19,5: - 1: 4369 + 1: 3955 + 0: 61440 19,6: - 1: 15 + 1: 28679 + 0: 36744 + 19,7: + 1: 12336 + 0: 35712 + 20,5: + 1: 12544 + 20,6: + 0: 25123 + 1: 92 + 20,7: + 0: 30578 16,9: 0: 52428 - 16,10: - 0: 52428 17,9: 0: 61679 17,10: @@ -1524,14 +1598,20 @@ entities: 18,11: 0: 112 1: 2176 + 18,8: + 1: 57568 + 0: 3584 18,9: 1: 11810 18,10: 1: 14 18,12: 1: 61713 + 19,8: + 1: 12336 + 0: 2944 19,9: - 1: 3840 + 1: 3852 19,10: 1: 17487 0: 43680 @@ -1541,8 +1621,10 @@ entities: 19,12: 0: 170 1: 65092 + 20,8: + 0: 1906 20,9: - 1: 3840 + 1: 3855 20,11: 1: 19964 0: 40960 @@ -1583,25 +1665,41 @@ entities: 20,10: 0: 43690 1: 17476 + 21,8: + 0: 7 + 1: 24576 21,9: - 1: 3840 + 1: 3843 21,10: 1: 21831 0: 43680 21,11: 1: 18429 0: 40960 + 21,7: + 0: 30583 21,12: 0: 170 1: 64325 22,9: - 1: 30464 + 1: 30472 22,10: 1: 65126 22,11: 1: 39611 + 22,7: + 0: 65534 + 22,8: + 0: 24590 + 23,8: + 0: 255 22,12: 1: 14190 + 23,7: + 0: 7455 + 24,8: + 0: 17 + 1: 18440 13,-11: 1: 4096 13,-10: @@ -1672,76 +1770,98 @@ entities: 1: 50 29,-3: 1: 273 - -8,-5: - 1: 32768 - -8,-4: + 21,6: + 1: 99 + 22,6: + 0: 96 + 1: 8 + 23,6: + 0: 61440 + 24,6: + 0: 4096 + 1: 2114 + 24,7: + 0: 4369 1: 8 - 0: 2048 - -7,-5: - 1: 64267 - 0: 1092 - -7,-4: - 1: 20507 - 0: 3908 -7,-6: - 0: 16384 + 0: 63728 + -7,-5: + 1: 8736 + 0: 34952 + -7,-7: + 1: 32768 + -6,-7: + 1: 45056 + -6,-6: + 0: 13296 + 1: 32768 -6,-5: - 1: 61697 + 0: 62259 + 1: 136 + -7,-4: + 0: 52424 -6,-4: - 1: 4113 - 0: 52672 - -6,-6: - 0: 3072 - 1: 16384 - -5,-6: - 0: 1792 - 1: 20480 - -8,-3: - 1: 12040 - -9,-3: - 1: 44544 - -8,-2: - 1: 12066 - -9,-2: - 1: 44714 - -8,-1: - 1: 3874 - -9,-1: - 1: 3754 + 0: 30579 + -5,-7: + 1: 28672 + -5,-5: + 0: 4096 -7,-1: - 0: 256 + 0: 36744 + 1: 2 + -7,0: + 0: 15 + 1: 17408 -7,-3: - 0: 18 + 0: 34956 + 1: 8704 -7,-2: - 0: 4096 - -7,0: - 0: 257 + 1: 8738 + 0: 34952 + -6,-3: + 0: 16183 + -6,-2: + 0: 13107 + 1: 34952 + -6,-1: + 0: 65331 + 1: 8 + -6,0: + 0: 15 + 1: 22784 + -5,-4: + 1: 4368 -5,-3: - 0: 17 - -8,0: - 1: 35056 - -9,0: - 1: 43744 - -8,2: - 1: 36744 - -9,2: - 1: 44714 - -8,1: - 1: 35016 - -7,1: + 1: 1 0: 256 + -7,1: + 1: 17604 -7,2: - 0: 17 - -8,3: - 1: 2184 + 1: 19524 -7,3: - 0: 1 + 1: 3140 + -6,1: + 1: 21877 + -6,2: + 1: 22357 + -6,3: + 1: 17173 + -6,4: + 1: 12 + -5,3: + 1: 17152 -5,4: - 1: 3822 - -9,1: - 1: 43754 - -9,3: - 1: 170 + 1: 15 + -3,4: + 1: 15 + 25,6: + 1: 12832 + 25,7: + 1: 8994 + 25,8: + 1: 8754 + 24,9: + 1: 2 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1853,13 +1973,6 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: -4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1028: -12,-14 - 1029: -19,-14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -1868,30 +1981,45 @@ entities: 1114: -5,0 1115: -3,0 1474: 24,23 - 2376: 58,-2 - 2377: 60,-2 + 3394: 11.968304,28.74898 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2727: -22,-17 + 2728: -22,-10 - node: color: '#FFFFFFFF' id: Arrows decals: 753: 21,-16 - 1026: -13,-12 - 1027: -20,-12 - 2624: 20,-46 - 2625: 22,-46 + 2729: -15,-2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1584: 36,18 + 2725: -8,-10 + 2726: -8,-17 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2626: 20,-58 - 2627: 22,-58 + 2645: -13,0 + 2646: -11,0 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 3122: -23.030256,-10.18695 + 3123: -23.030256,-17.187887 + 3124: -7.0305576,-17.187887 + 3125: -7.0305576,-10.187422 + 3854: 57.969326,-2.0004528 + 3855: 59.969025,-2.0004528 - node: color: '#FED83DFF' id: Bot @@ -1921,23 +2049,11 @@ entities: 1173: 15,-2 1174: 14,-2 1175: 13,-2 - 1222: 13,26 - 1223: 11,26 - 1224: 10,26 - 1225: 11,24 - 1226: 12,24 - 1227: 13,24 - 1228: 7,25 - 1323: 12,26 1466: 22,22 1467: 22,23 1468: 22,24 1469: 22,25 1470: 23,25 - 1581: 37,17 - 1582: 38,17 - 1583: 39,17 - 1795: 10,24 2085: 52,17 2086: 52,18 2199: 68,13 @@ -1954,6 +2070,27 @@ entities: 2577: 41,-43 2578: 38,-43 2579: 37,-43 + 2835: 38,24 + 2836: 41,24 + 2845: 38,21 + 3094: 96,30 + 3148: 26,-39 + 3167: 15,-39 + 3179: 11,31 + 3180: 12,31 + 3181: 13,31 + 3185: 9,26 + 3186: 10,26 + 3187: 11,26 + 3188: 12,26 + 3189: 12,24 + 3190: 11,24 + 3191: 10,24 + 3192: 9,24 + 3910: 16,-45 + 3911: 17,-45 + 3912: 25,-45 + 3913: 26,-45 - node: cleanable: True color: '#FFFFFFFF' @@ -1999,6 +2136,17 @@ entities: 2196: 68,16 2197: 67,16 2198: 66,16 + 3143: 25,-42 + 3144: 26,-42 + 3145: 26,-43 + 3146: 25,-43 + 3151: 14,-51 + 3152: 14,-52 + 3153: 14,-53 + 3154: 28,-51 + 3155: 28,-52 + 3156: 28,-53 + 3168: 16,-39 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2032,20 +2180,27 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 759: 16,-43 - 760: 17,-43 - 761: 25,-43 - 762: 26,-43 1552: 14,40 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: BoxGreyscale + id: BrickTileDarkCornerNe + decals: + 3076: 74,23 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 3075: 73,23 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 3078: 74,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw decals: - 2638: 12,-50 - 2639: 12,-49 - 2640: 12,-48 - 2641: 12,-47 + 3077: 73,22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -2054,6 +2209,11 @@ entities: 1782: 22,-12 1783: 22,-11 1784: 22,-10 + 2885: 56,39 + 2889: 56,40 + 2969: 56,36 + 2970: 56,37 + 2971: 56,38 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -2088,11 +2248,6 @@ entities: id: BrickTileWhiteCornerNe decals: 1447: 20,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 1574: 39,19 - node: color: '#EFCC4193' id: BrickTileWhiteCornerNe @@ -2109,11 +2264,6 @@ entities: id: BrickTileWhiteCornerNw decals: 1446: 17,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 1573: 36,19 - node: color: '#EFCC4193' id: BrickTileWhiteCornerNw @@ -2136,10 +2286,10 @@ entities: decals: 1451: 20,20 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1576: 39,17 + 3175: 17,-43 - node: color: '#EFCC4193' id: BrickTileWhiteCornerSe @@ -2162,10 +2312,10 @@ entities: decals: 1452: 17,20 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1575: 36,17 + 3165: 16,-43 - node: color: '#EFCC4193' id: BrickTileWhiteCornerSw @@ -2222,11 +2372,22 @@ entities: id: BrickTileWhiteInnerSw decals: 2083: 54,19 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 3163: 16,-40 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: 1846: 17,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2687: -23,-10 + 2688: -23,-17 - node: color: '#9FED583B' id: BrickTileWhiteLineE @@ -2257,16 +2418,18 @@ entities: 2077: 50,18 2090: 51,21 - node: - color: '#EFCC4193' + color: '#EFB34196' id: BrickTileWhiteLineE decals: - 388: 13,-36 + 3172: 17,-39 + 3173: 17,-41 + 3174: 17,-42 + 3176: 26,-40 - node: - color: '#EFCC4582' + color: '#EFCC4193' id: BrickTileWhiteLineE decals: - 472: 26,-42 - 473: 26,-41 + 388: 13,-36 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2277,9 +2440,8 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1118: -13,-12 - 1119: -20,-12 - 1944: 32,36 + 2741: 32,36 + 3117: -3,1 - node: color: '#9FED5847' id: BrickTileWhiteLineN @@ -2304,12 +2466,12 @@ entities: decals: 1458: 18,24 1459: 19,24 - 1946: 30,36 + 2739: 30,36 + 3121: -11,1 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1945: 31,36 2056: 52,14 2057: 51,14 2058: 50,14 @@ -2319,14 +2481,13 @@ entities: 2182: 66,15 2183: 67,15 2184: 68,15 + 2740: 31,36 + 3120: -13,1 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1116: -3,1 - 1117: -5,1 - 1577: 38,19 - 1578: 37,19 + 3118: -5,1 - node: color: '#EFCC4193' id: BrickTileWhiteLineN @@ -2355,7 +2516,11 @@ entities: decals: 1851: 16,-6 1852: 15,-6 - 1941: 32,35 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 2736: 32,36 - node: color: '#9FED583B' id: BrickTileWhiteLineS @@ -2399,14 +2564,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1579: 38,17 - 1580: 37,17 - 1942: 31,35 + 2737: 31,36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1943: 30,35 + 2738: 30,36 + 3162: 15,-40 - node: color: '#EFCC4193' id: BrickTileWhiteLineS @@ -2426,6 +2590,12 @@ entities: id: BrickTileWhiteLineW decals: 1850: 14,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 2689: -7,-17 + 2690: -7,-10 - node: color: '#9FED583B' id: BrickTileWhiteLineW @@ -2466,37 +2636,22 @@ entities: 2081: 54,17 2082: 54,18 - node: - color: '#EFCC4193' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 395: 10,-36 - 396: 10,-35 + 3161: 16,-41 - node: - color: '#EFCC4582' + color: '#EFCC4193' id: BrickTileWhiteLineW decals: - 470: 25,-42 - 471: 25,-41 - 474: 16,-41 - 475: 16,-40 + 395: 10,-36 + 396: 10,-35 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: 2224: 78,-2 2225: 78,-1 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 1093: -6,-18 - 1364: 9,27 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Caution - decals: - 1363: 9,27 - node: color: '#52B4E996' id: CheckerNESW @@ -2610,16 +2765,6 @@ entities: decals: 2222: 77,-2 2223: 77,-1 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 1211: 13,30 - 1212: 13,31 - 1213: 12,31 - 1214: 12,30 - 1215: 11,30 - 1216: 11,31 - node: color: '#D381C996' id: CheckerNWSE @@ -2628,11 +2773,12 @@ entities: 2037: 58,10 2038: 58,11 - node: - color: '#EFCC4593' + color: '#EFB34196' id: CheckerNWSE decals: - 757: 18,-18 - 758: 18,-17 + 3921: 18,-19 + 3922: 18,-18 + 3923: 18,-17 - node: color: '#FFFFFF93' id: CheckerNWSE @@ -2674,9 +2820,6 @@ entities: 414: 46,-38 415: 39,-41 416: 41,-41 - 445: 16,-39 - 446: 17,-39 - 447: 25,-39 1004: 25,-3 1005: 26,-3 1006: 27,-3 @@ -2689,9 +2832,6 @@ entities: 1023: 27,16 1024: 33,-2 1025: 35,-2 - 1097: -8,-15 - 1098: -8,-14 - 1099: -8,-13 1120: 2,-2 1121: 2,-1 1122: 2,0 @@ -2699,8 +2839,6 @@ entities: 1180: 17,-1 1181: 17,0 1182: 17,1 - 1229: 7,24 - 1230: 7,26 1694: 40,12 1695: 41,12 1696: 42,12 @@ -2724,8 +2862,10 @@ entities: 2099: 58,21 2100: 59,21 2101: 60,21 - 2599: 26,-39 2614: 28,-6 + 3182: 11,30 + 3183: 12,30 + 3184: 13,30 - node: cleanable: True color: '#FFFFFFFF' @@ -2749,6 +2889,14 @@ entities: decals: 2064: 52,14 2065: 48,14 + - node: + color: '#334E6DC8' + id: DiagonalCheckerBOverlay + decals: + 3061: 73,22 + 3062: 73,23 + 3063: 74,23 + 3064: 74,22 - node: cleanable: True color: '#FFFFFFFF' @@ -2789,35 +2937,7 @@ entities: 1152: -4,-5 1153: -4,-4 1154: -4,-5 - 1234: 6,30 - 1235: 7,31 - 1236: 6,32 - 1237: 9,30 - 1238: 9,29 - 1346: 15,20 - 1347: 14,20 - 1348: 13,23 - 1349: 12,23 - 1350: 11,23 - 1351: 7,22 - 1352: 7,21 - 1353: 10,25 - 1354: 9,27 - 1355: 7,28 - 1356: 13,28 - 1357: 11,28 - 1358: 15,24 - 1359: 12,24 - 1360: 7,24 1361: 5,24 - 1362: 7,23 - 1371: 8,17 - 1372: 7,16 - 1373: 5,16 - 1374: 8,18 - 1439: 11,24 - 1440: 10,26 - 1441: 7,25 1481: 17,21 1482: 18,22 1483: 18,23 @@ -2830,17 +2950,6 @@ entities: 1524: 23,22 1525: 23,23 1526: 23,21 - 1527: 15,23 - 1528: 14,23 - 1529: 13,24 - 1553: 39,30 - 1554: 40,31 - 1555: 39,33 - 1556: 38,33 - 1557: 37,35 - 1558: 39,35 - 1559: 41,33 - 1560: 40,33 1623: 32,17 1624: 32,18 1625: 33,17 @@ -2849,8 +2958,6 @@ entities: 1628: 33,23 1629: 34,24 1630: 33,27 - 1631: 32,29 - 1632: 32,30 1633: 30,23 1634: 30,18 1635: 29,17 @@ -2867,14 +2974,6 @@ entities: 1661: 27,23 1662: 25,25 1663: 27,26 - 1799: 8,21 - 1800: 9,21 - 1801: 9,22 - 1802: 9,23 - 1803: 10,23 - 1804: 10,22 - 1805: 8,24 - 1806: 9,24 2256: 55,-16 2257: 55,-16 2258: 56,-16 @@ -2886,6 +2985,65 @@ entities: 2306: 33,-17 2307: 31,-16 2308: 29,-17 + 3031: 36,31 + 3128: 56,35 + 3129: 57,40 + 3288: 12,28 + 3289: 11,27 + 3290: 13,27 + 3297: 8,20 + 3298: 6,22 + 3299: 6,24 + 3300: 7,23 + 3301: 7,27 + 3302: 10,24 + 3303: 10,26 + 3304: 12,26 + 3305: 12,22 + 3306: 11,23 + 3307: 14,20 + 3308: 15,23 + 3309: 14,22 + 3310: 13,24 + 3311: 12,25 + 3312: 9,22 + 3313: 8,27 + 3315: 10,25 + 3316: 9,23 + 3317: 8,24 + 3318: 6,26 + 3319: 12,23 + 3320: 10,22 + 3325: 11,20 + 3328: 12,24 + 3438: 7,31 + 3439: 7,30 + 3440: 9,32 + 3441: 8,32 + 3442: 7,32 + 3443: 5,32 + 3444: 5,31 + 3445: 9,34 + 3446: 8,34 + 3447: 9,29 + 3448: 5,35 + 3455: 7,28 + 3456: 6,27 + 3538: 6,33 + 3539: 8,33 + 3601: 4,37 + 3602: 6,38 + 3603: 4,39 + 3604: 5,40 + 3907: 29,-27 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2895: 41,34 + 2901: 39,34 + 2906: 46,27 + 2922: 49,33 - node: cleanable: True color: '#FFFFFFFF' @@ -2904,17 +3062,150 @@ entities: 484: 31,-36 618: 18,-31 619: 19,-29 - 1239: 8,29 - 1240: 8,31 - 1324: 12,22 - 1325: 8,20 - 1375: 7,17 - 1376: 8,16 - 1377: 9,19 1485: 18,21 1507: 23,23 - 1561: 39,32 2260: 55,-15 + 2995: 54,32 + 2996: 53,37 + 2997: 58,36 + 3009: 58,32 + 3029: 38,22 + 3041: 54,47 + 3132: 58,31 + 3251: 7,22 + 3252: 6,25 + 3253: 8,26 + 3254: 11,28 + 3256: 13,30 + 3257: 14,23 + 3258: 15,21 + 3259: 10,23 + 3260: 13,21 + 3261: 11,25 + 3262: 7,24 + 3263: 13,26 + 3264: 11,21 + 3265: 16,20 + 3330: 11,29 + 3418: 8,29 + 3419: 6,28 + 3433: 9,29 + 3526: 7,34 + 3540: 7,33 + 3605: 5,37 + 3606: 6,39 + 3607: 4,40 + 3613: 5,35 + 3615: 7,37 + 3616: 7,38 + 3654: 6,38 + 3856: 72,-1 + 3857: 73,-3 + 3858: 70,-5 + 3859: 72,-6 + 3860: 70,-3 + 3861: 69,-4 + 3862: 75,-2 + 3863: 72,-1 + 3864: 72,-4 + 3892: 29,-29 + 3898: 4,38 + 3909: 30,-27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3010: 59,32 + 3011: 59,40 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3007: 59,34 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3008: 59,38 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2894: 39,33 + 2904: 40,35 + 2932: 37,19 + 2933: 38,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3000: 55,34 + 3024: 37,31 + 3025: 40,30 + 3033: 59,36 + 3039: 50,34 + 3044: 58,47 + 3131: 58,31 + 3268: 7,26 + 3269: 13,25 + 3271: 9,21 + 3272: 14,21 + 3273: 6,23 + 3274: 6,26 + 3275: 9,25 + 3276: 13,28 + 3277: 12,29 + 3278: 8,21 + 3321: 9,26 + 3322: 9,24 + 3323: 15,22 + 3324: 12,20 + 3421: 8,28 + 3435: 6,31 + 3437: 8,30 + 3457: 6,23 + 3608: 4,38 + 3609: 6,37 + 3865: 70,-2 + 3866: 70,-4 + 3867: 71,-6 + 3868: 70,-6 + 3869: 74,-3 + 3870: 72,-3 + 3891: 29,-28 + 3897: 30,-28 + 3899: 6,37 + 3900: 5,39 + 3904: 6,32 + 3905: 8,30 + 3908: 29,-27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3001: 54,35 + 3002: 56,38 + 3003: 54,39 + 3592: 4,40 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 2896: 39,35 + 2897: 41,36 + 2900: 41,33 + 2902: 39,36 + 2903: 40,34 + 2908: 49,35 - node: cleanable: True color: '#FFFFFFFF' @@ -2974,39 +3265,6 @@ entities: 641: 15,-37 642: 16,-37 643: 15,-34 - 1245: 9,31 - 1246: 7,32 - 1247: 9,32 - 1248: 6,31 - 1249: 8,29 - 1250: 9,28 - 1251: 10,27 - 1252: 10,28 - 1332: 13,25 - 1333: 11,25 - 1334: 12,27 - 1335: 11,26 - 1336: 12,22 - 1337: 13,23 - 1338: 14,24 - 1339: 15,23 - 1340: 15,22 - 1341: 15,21 - 1342: 14,22 - 1343: 15,21 - 1344: 15,20 - 1345: 14,21 - 1380: 7,16 - 1381: 9,17 - 1382: 9,16 - 1383: 9,15 - 1384: 7,15 - 1385: 9,18 - 1386: 7,19 - 1387: 7,19 - 1388: 8,18 - 1389: 9,17 - 1390: 9,16 1492: 18,24 1493: 17,23 1494: 19,23 @@ -3016,8 +3274,6 @@ entities: 1498: 17,20 1499: 17,21 1500: 18,20 - 1501: 16,20 - 1502: 16,22 1503: 20,20 1504: 21,21 1505: 22,20 @@ -3032,13 +3288,6 @@ entities: 1516: 23,23 1517: 23,22 1518: 22,25 - 1566: 38,35 - 1567: 36,35 - 1568: 38,36 - 1569: 37,34 - 1570: 40,32 - 1571: 40,31 - 1572: 40,30 1638: 30,17 1639: 30,21 1640: 33,18 @@ -3050,9 +3299,7 @@ entities: 1646: 29,23 1647: 35,28 1648: 34,27 - 1649: 33,30 1650: 33,29 - 1651: 37,30 1652: 36,22 1664: 25,21 1665: 26,22 @@ -3067,11 +3314,6 @@ entities: 1792: 25,33 1793: 26,34 1794: 27,34 - 1807: 9,21 - 1808: 10,22 - 1809: 7,21 - 1810: 8,22 - 1811: 8,24 2263: 55,-15 2264: 55,-14 2265: 54,-14 @@ -3079,6 +3321,76 @@ entities: 2267: 57,-16 2268: 57,-15 2269: 57,-14 + 2935: 39,18 + 2982: 54,34 + 2983: 55,37 + 2984: 55,40 + 2985: 53,40 + 2986: 57,37 + 2987: 56,33 + 2988: 54,33 + 2989: 58,36 + 2990: 58,40 + 2991: 55,41 + 2992: 54,40 + 2993: 53,34 + 2994: 53,33 + 2999: 55,35 + 3012: 55,38 + 3013: 46,33 + 3015: 36,30 + 3016: 39,31 + 3017: 41,30 + 3018: 43,31 + 3027: 40,27 + 3028: 40,22 + 3030: 39,24 + 3040: 51,35 + 3042: 57,47 + 3133: 55,39 + 3279: 7,25 + 3280: 8,23 + 3281: 12,21 + 3282: 14,24 + 3283: 10,27 + 3284: 10,28 + 3286: 15,20 + 3287: 12,27 + 3326: 13,22 + 3327: 11,24 + 3329: 9,27 + 3420: 7,28 + 3429: 7,34 + 3432: 9,30 + 3611: 5,39 + 3612: 4,38 + 3614: 4,35 + 3883: 72,-5 + 3884: 71,-3 + 3885: 71,-1 + 3886: 74,-1 + 3887: 74,-3 + 3896: 30,-25 + 3901: 4,37 + 3902: 4,37 + 3903: 5,33 + 3906: 8,32 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 3004: 57,39 + 3006: 55,32 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2891: 33,30 + 2898: 40,33 + 2899: 39,35 + 2918: 58,40 - node: cleanable: True color: '#FFFFFFFF' @@ -3100,18 +3412,6 @@ entities: 615: 14,-26 616: 13,-25 617: 25,-29 - 1241: 8,30 - 1242: 7,30 - 1243: 7,31 - 1244: 8,32 - 1326: 13,22 - 1327: 13,21 - 1328: 11,22 - 1329: 8,26 - 1330: 12,25 - 1331: 11,27 - 1378: 7,18 - 1379: 8,19 1486: 18,20 1487: 19,21 1488: 19,22 @@ -3119,12 +3419,68 @@ entities: 1490: 19,23 1491: 17,24 1506: 23,21 - 1562: 39,30 - 1563: 37,33 - 1564: 37,34 - 1565: 39,34 2261: 56,-14 2262: 55,-16 + 2936: 37,18 + 2975: 53,32 + 2976: 56,34 + 2977: 54,37 + 2978: 58,40 + 2979: 56,32 + 2981: 55,31 + 3019: 37,30 + 3023: 42,31 + 3026: 39,26 + 3043: 56,47 + 3291: 8,25 + 3292: 8,22 + 3293: 7,21 + 3294: 10,21 + 3295: 13,23 + 3331: 13,29 + 3422: 9,28 + 3423: 6,32 + 3424: 5,33 + 3426: 7,34 + 3427: 8,31 + 3428: 6,30 + 3458: 6,21 + 3541: 9,33 + 3610: 5,38 + 3871: 71,-3 + 3872: 71,-4 + 3873: 69,-5 + 3874: 69,-3 + 3875: 74,-2 + 3876: 73,-1 + 3877: 75,-1 + 3878: 72,-2 + 3879: 73,-4 + 3880: 71,-6 + 3882: 74,-4 + 3894: 30,-24 + 3895: 30,-29 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3020: 39,30 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3021: 43,30 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3022: 38,31 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -3161,6 +3517,16 @@ entities: 1531: 24,17 1532: 24,18 1533: 24,18 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 3756: 68,3 + 3757: 68,4 + 3758: 68,5 + 3759: 68,6 + 3763: 53,-2 + 3764: 53,0 - node: color: '#9FED581F' id: FullTileOverlayGreyscale @@ -3180,26 +3546,14 @@ entities: 842: 43,-11 843: 44,-11 844: 44,-10 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 2299: 53,-2 - 2300: 53,0 - 2337: 68,5 - 2338: 68,6 - 2400: 68,4 - 2401: 68,3 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1232: 8,29 - 1233: 9,29 - 1442: 16,20 - 1443: 16,22 1444: 21,20 1445: 21,21 + 3266: 16,21 + 3267: 16,20 - node: color: '#D4D4D40C' id: FullTileOverlayGreyscale @@ -3218,7 +3572,6 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 35: 36,20 46: 36,28 47: 36,27 48: 36,26 @@ -3327,6 +3680,14 @@ entities: 2451: 73,8 2452: 71,8 2453: 72,8 + 3655: 48,0 + 3656: 49,0 + 3657: 50,0 + 3658: 51,0 + 3690: 54,3 + 3691: 55,3 + 3692: 57,3 + 3839: 68,2 - node: color: '#9FED5847' id: HalfTileOverlayGreyscale @@ -3339,47 +3700,15 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 1759: 48,0 - 1760: 49,0 - 1761: 50,0 - 1762: 51,0 2204: 78,-4 2205: 79,-4 2206: 81,-4 - 2313: 77,5 - 2318: 79,2 - 2319: 80,2 - 2320: 81,2 - 2331: 75,2 - 2332: 74,2 - 2333: 73,2 - 2334: 72,2 - 2335: 70,2 - 2336: 69,2 - 2402: 68,2 - 2404: 57,3 - 2405: 55,3 - 2406: 54,3 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 187: 7,19 - 188: 9,19 - 1195: 10,28 - 1196: 9,28 - 1197: 8,28 - 1204: 14,25 - 1208: 11,28 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale - decals: - 118: 53,-4 - 120: 52,-4 - 125: 49,-5 - 126: 50,-5 - 127: 51,-5 + 3210: 14,25 + 3214: 10,28 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -3414,16 +3743,21 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 60: 33,30 73: 32,24 74: 31,24 75: 30,24 76: 29,24 77: 28,24 - 94: 36,31 - 95: 37,31 178: 36,24 1149: -2,-4 + 2744: 33,31 + 2808: 34,31 + 2823: 36,19 + 2824: 37,19 + 2825: 38,19 + 2826: 39,19 + 2939: 36,31 + 2940: 43,31 - node: color: '#EFB34128' id: HalfTileOverlayGreyscale @@ -3462,8 +3796,11 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale decals: - 2602: 49,-11 - 2603: 50,-11 + 3667: 52,-4 + 3673: 49,-11 + 3674: 50,-11 + 3677: 50,-5 + 3678: 51,-5 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -3479,6 +3816,13 @@ entities: 2437: 71,4 2446: 73,4 2447: 72,4 + 3687: 53,2 + 3710: 63,0 + 3711: 64,0 + 3712: 66,0 + 3713: 67,0 + 3714: 68,0 + 3722: 60,-8 - node: color: '#9FED5834' id: HalfTileOverlayGreyscale180 @@ -3502,40 +3846,15 @@ entities: 2212: 81,-8 2213: 80,-8 2214: 79,-8 - 2303: 53,2 - 2321: 81,1 - 2322: 80,1 - 2323: 79,1 - 2324: 78,1 - 2325: 76,1 - 2326: 75,1 - 2327: 74,1 - 2328: 73,1 - 2329: 70,1 - 2330: 71,1 - 2343: 68,0 - 2344: 67,0 - 2345: 66,0 - 2346: 64,0 - 2347: 63,0 - 2359: 60,-8 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 183: 8,15 - 184: 7,15 - 192: 9,15 - 1205: 12,21 - 1206: 11,21 - 1207: 10,21 - 1797: 9,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale180 - decals: - 116: 50,-3 - 117: 49,-3 + 3197: 7,21 + 3198: 9,21 + 3199: 10,21 + 3202: 12,20 + 3203: 13,20 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3561,9 +3880,13 @@ entities: 81: 31,23 90: 33,17 91: 34,17 - 96: 36,30 - 99: 37,30 1150: -2,-6 + 2819: 36,17 + 2820: 37,17 + 2821: 38,17 + 2822: 39,17 + 2937: 36,30 + 2938: 43,30 - node: color: '#EFCC4193' id: HalfTileOverlayGreyscale180 @@ -3589,6 +3912,12 @@ entities: 460: 20,-44 461: 21,-44 462: 22,-44 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale180 + decals: + 3675: 49,-3 + 3676: 50,-3 - node: color: '#34A2C0B2' id: HalfTileOverlayGreyscale270 @@ -3602,53 +3931,34 @@ entities: decals: 102: 49,3 103: 49,2 - 2391: 55,-6 - 2396: 55,-4 2439: 70,5 2440: 70,6 2441: 70,7 + 3679: 54,-2 + 3680: 54,-1 + 3681: 54,0 + 3682: 54,1 + 3683: 52,3 + 3694: 59,3 + 3695: 59,4 + 3696: 65,3 + 3697: 65,4 + 3698: 62,3 + 3699: 62,4 + 3719: 59,-4 + 3720: 59,-5 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: 2203: 76,-5 2217: 78,-7 - 2295: 52,3 - 2296: 54,-2 - 2297: 54,-1 - 2298: 54,0 - 2301: 54,1 - 2311: 76,3 - 2312: 76,4 - 2357: 59,-5 - 2358: 59,-4 - 2419: 65,3 - 2420: 65,4 - 2421: 62,3 - 2422: 62,4 - 2423: 59,3 - 2424: 59,4 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 185: 7,16 - 186: 7,17 - 197: 7,18 - 1183: 7,22 - 1184: 7,23 - 1185: 7,24 - 1186: 7,25 - 1187: 7,26 - 1188: 7,27 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale270 - decals: - 128: 49,-9 - 129: 49,-8 - 130: 49,-7 - 131: 49,-6 + 3219: 6,22 + 3220: 6,25 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3667,8 +3977,6 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 62: 32,30 - 63: 32,29 65: 32,28 67: 33,27 68: 33,26 @@ -3680,6 +3988,16 @@ entities: 87: 32,18 88: 32,17 1148: -3,-5 + 2745: 32,30 + 2815: 32,29 + 2816: 29,28 + 2817: 29,29 + 2818: 29,30 + 2829: 35,23 + 2830: 35,22 + 2840: 38,23 + 2841: 38,22 + 2842: 38,21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -3704,6 +4022,18 @@ entities: id: HalfTileOverlayGreyscale270 decals: 459: 19,-43 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale270 + decals: + 3669: 49,-6 + 3670: 49,-7 + 3671: 49,-8 + 3672: 49,-9 + 3775: 55,-6 + 3784: 55,-8 + 3824: 55,-5 + 3825: 55,-4 - node: color: '#34A2C0B2' id: HalfTileOverlayGreyscale90 @@ -3727,6 +4057,22 @@ entities: 2395: 57,-4 2448: 74,5 2449: 74,6 + 3660: 52,-1 + 3661: 52,-2 + 3700: 61,4 + 3701: 61,3 + 3702: 64,4 + 3703: 64,3 + 3704: 62,-7 + 3705: 62,-5 + 3706: 62,-4 + 3707: 62,-3 + 3708: 62,-2 + 3709: 62,-1 + 3754: 67,3 + 3755: 67,4 + 3785: 57,-8 + 3786: 69,1 - node: color: '#5A5A5AFF' id: HalfTileOverlayGreyscale90 @@ -3737,46 +4083,19 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 1764: 52,-1 - 1765: 52,-2 2208: 82,-6 2209: 82,-5 2210: 82,-7 - 2309: 78,3 - 2310: 78,4 - 2348: 62,-1 - 2349: 62,-2 - 2350: 62,-3 - 2351: 62,-4 - 2352: 62,-5 - 2353: 62,-7 - 2413: 67,3 - 2414: 67,4 - 2415: 64,3 - 2416: 64,4 - 2417: 61,3 - 2418: 61,4 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 189: 9,18 - 190: 9,17 - 191: 9,16 - 1198: 13,27 - 1199: 13,26 - 1200: 15,24 - 1201: 15,23 - 1202: 15,22 - 1203: 15,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale90 - decals: - 121: 53,-5 - 122: 53,-6 - 123: 53,-7 - 124: 53,-8 + 3205: 15,21 + 3206: 15,22 + 3207: 15,23 + 3208: 15,24 + 3212: 13,26 + 3213: 13,27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3802,7 +4121,6 @@ entities: 52: 35,27 53: 35,28 56: 34,29 - 57: 34,30 179: 36,23 1147: -1,-5 1600: 27,17 @@ -3812,10 +4130,14 @@ entities: 1604: 27,21 1605: 27,26 1606: 27,27 - 1607: 27,28 - 1608: 27,29 1609: 27,30 1610: 27,31 + 2813: 27,29 + 2814: 27,28 + 2827: 33,23 + 2828: 33,22 + 2843: 41,23 + 2844: 41,22 - node: color: '#EFCC4193' id: HalfTileOverlayGreyscale90 @@ -3836,22 +4158,21 @@ entities: 457: 23,-42 458: 23,-41 - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea + color: '#FA750096' + id: HalfTileOverlayGreyscale90 decals: - 1598: 39,24 - 1599: 40,24 + 3662: 53,-8 + 3664: 53,-6 + 3665: 53,-5 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1231: 9,26 1473: 23,25 1621: 31,18 1622: 31,20 - 2294: 52,0 + 3235: 8,26 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3866,19 +4187,21 @@ entities: 1176: 13,-2 1177: 14,-2 1178: 15,-2 - 1796: 9,24 - 2293: 52,-2 + 3096: 82,30 + 3236: 8,24 - node: - angle: 4.71238898038469 rad + angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 70: 32,25 + 2838: 39,24 + 2839: 40,24 - node: + angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: North + id: LoadingArea decals: - 1155: -17,-14 + 70: 32,25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3906,6 +4229,25 @@ entities: 2508: 104,-18 2509: 108,-18 2510: 108,-16 + 2707: -7,-4 + 2708: -7,-5 + 2709: -7,-6 + 2710: -7,-7 + 2711: -7,-8 + 2712: -7,-9 + 2713: -7,-11 + 2714: -7,-12 + 2715: -8,-12 + 2716: -8,-13 + 2717: -8,-14 + 2718: -8,-15 + 2719: -7,-16 + 2720: -7,-18 + 2721: -7,-19 + 2722: -7,-20 + 3837: 62,2 + 3838: 65,2 + 3840: 59,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale @@ -3929,32 +4271,16 @@ entities: 2548: 103,-16 2549: 102,-20 - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 2317: 76,2 - - node: - color: '#A4610696' + color: '#8D1C9996' id: QuarterTileOverlayGreyscale decals: - 193: 7,15 + 3401: 6,28 + 3402: 7,28 + 3403: 9,28 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1064: -22,-13 - 1065: -21,-13 - 1066: -19,-13 - 1067: -18,-13 - 1068: -17,-13 - 1069: -16,-13 - 1070: -15,-13 - 1071: -14,-13 - 1072: -12,-13 - 1073: -11,-13 - 1074: -10,-13 - 1075: -9,-13 - 1076: -8,-13 1077: -7,-13 1078: -7,-12 1079: -7,-11 @@ -4022,6 +4348,11 @@ entities: 2024: 40,5 2025: 40,4 2026: 40,3 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 2684: -22,-12 - node: color: '#D5188DFF' id: QuarterTileOverlayGreyscale @@ -4035,10 +4366,7 @@ entities: id: QuarterTileOverlayGreyscale decals: 54: 35,28 - 58: 34,30 - 61: 32,30 72: 33,24 - 100: 36,30 739: 24,-25 740: 24,-24 955: 27,5 @@ -4072,8 +4400,19 @@ entities: 1111: 0,0 1112: 1,0 1113: 2,0 - 1589: 38,24 - 1590: 38,23 + 2768: 48,35 + 2769: 49,35 + 2770: 50,35 + 2771: 51,35 + 2780: 39,36 + 2781: 40,36 + 2788: 41,36 + 2941: 37,31 + 2942: 38,31 + 2943: 39,31 + 2944: 40,31 + 2945: 41,31 + 2946: 42,31 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -4112,6 +4451,9 @@ entities: 741: 28,-25 742: 28,-24 2454: 74,7 + 2723: -8,-15 + 2730: -7,-20 + 3723: 62,0 - node: color: '#797979AB' id: QuarterTileOverlayGreyscale180 @@ -4168,6 +4510,16 @@ entities: decals: 2550: 108,-20 2551: 103,-21 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 3398: 6,30 + 3399: 7,30 + 3400: 9,30 + 3412: 9,31 + 3413: 9,32 + 3535: 9,33 - node: color: '#951710FF' id: QuarterTileOverlayGreyscale180 @@ -4182,21 +4534,9 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2341: 69,1 - 2355: 62,0 2479: 105,-17 2480: 106,-18 2481: 103,-19 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 196: 9,19 - - node: - color: '#D0B78BFF' - id: QuarterTileOverlayGreyscale180 - decals: - 119: 53,-4 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -4264,23 +4604,25 @@ entities: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 1030: -22,-15 - 1031: -21,-15 - 1032: -20,-15 - 1033: -19,-15 - 1034: -18,-15 - 1035: -17,-15 - 1036: -16,-15 - 1037: -15,-15 - 1038: -14,-15 - 1039: -13,-15 - 1040: -12,-15 - 1041: -11,-15 - 1042: -10,-15 - 1043: -9,-15 - 1044: -8,-15 - 1045: -7,-15 - 1046: -6,-15 + 2665: -23,-21 + 2666: -23,-20 + 2667: -23,-19 + 2668: -23,-18 + 2669: -23,-16 + 2670: -22,-15 + 2671: -22,-14 + 2672: -22,-13 + 2673: -22,-12 + 2674: -23,-11 + 2675: -23,-9 + 2676: -23,-8 + 2677: -23,-7 + 2678: -23,-6 + 2679: -23,-5 + 2680: -23,-4 + 2681: -23,-3 + 2682: -23,-22 + 2683: -23,-15 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -4288,7 +4630,6 @@ entities: 40: 35,21 66: 32,28 89: 32,17 - 97: 37,31 180: 36,24 2471: 105,-19 2472: 104,-18 @@ -4298,6 +4639,20 @@ entities: 2476: 103,-17 2477: 102,-18 2478: 103,-20 + 2764: 48,34 + 2765: 49,34 + 2766: 50,34 + 2767: 51,34 + 2778: 40,33 + 2779: 41,33 + 2787: 39,33 + 2807: 34,30 + 2947: 37,30 + 2948: 38,30 + 2949: 39,30 + 2950: 40,30 + 2951: 41,30 + 2952: 42,30 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -4335,6 +4690,19 @@ entities: 750: 22,-18 751: 22,-17 752: 22,-16 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale180 + decals: + 2955: 57,40 + 2956: 57,39 + 2957: 57,38 + 2958: 57,37 + 2959: 57,36 + 2960: 57,35 + 2965: 57,32 + 2967: 57,34 + 2968: 57,33 - node: color: '#FED83DFF' id: QuarterTileOverlayGreyscale180 @@ -4349,6 +4717,18 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 1914: 8,-2 + 3065: 69,20 + 3066: 70,20 + 3067: 71,20 + 3068: 72,20 + 3072: 71,21 + 3073: 71,22 + 3074: 71,23 + 3081: 79,29 + 3082: 79,30 + 3083: 79,31 + 3089: 80,29 + 3090: 81,29 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale270 @@ -4361,23 +4741,8 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1047: -22,-15 - 1048: -21,-15 - 1049: -20,-15 - 1050: -19,-15 - 1051: -18,-15 - 1052: -17,-15 - 1053: -16,-15 - 1054: -15,-15 - 1055: -14,-15 - 1056: -13,-15 - 1057: -12,-15 - 1058: -11,-15 - 1059: -10,-15 - 1060: -9,-15 - 1061: -8,-15 - 1062: -7,-15 - 1063: -6,-15 + 2685: -22,-15 + 3688: 54,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale270 @@ -4425,7 +4790,6 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 2216: 78,-6 - 2302: 54,2 2482: 106,-19 2483: 105,-18 2484: 103,-16 @@ -4435,8 +4799,11 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 195: 7,19 - 1209: 13,21 + 3200: 11,21 + 3395: 6,30 + 3396: 7,30 + 3397: 9,30 + 3407: 6,28 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 @@ -4532,6 +4899,22 @@ entities: decals: 735: 24,-25 736: 24,-24 + 2691: -7,-20 + 2692: -7,-19 + 2693: -7,-18 + 2694: -7,-16 + 2695: -7,-15 + 2696: -8,-15 + 2697: -8,-14 + 2698: -8,-13 + 2699: -8,-12 + 2700: -7,-11 + 2701: -7,-9 + 2702: -7,-8 + 2703: -7,-7 + 2704: -7,-6 + 2705: -7,-5 + 2706: -7,-4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4540,7 +4923,7 @@ entities: 43: 35,17 69: 33,28 82: 32,23 - 101: 36,31 + 2831: 34,23 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale270 @@ -4587,6 +4970,11 @@ entities: 222: 26,40 223: 26,41 224: 26,42 + 3079: 69,22 + 3080: 69,23 + 3084: 79,31 + 3085: 80,31 + 3086: 81,31 - node: color: '#3EB38896' id: QuarterTileOverlayGreyscale90 @@ -4598,6 +4986,34 @@ entities: 2608: 27,-25 2609: 27,-24 2610: 27,-23 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 2647: -23,-3 + 2648: -23,-4 + 2649: -23,-5 + 2650: -23,-6 + 2651: -23,-7 + 2652: -23,-8 + 2653: -23,-9 + 2654: -23,-11 + 2655: -22,-12 + 2656: -22,-13 + 2657: -22,-14 + 2658: -22,-15 + 2659: -23,-16 + 2660: -23,-18 + 2661: -23,-19 + 2662: -23,-20 + 2663: -23,-21 + 2664: -23,-22 + 2686: -23,-12 + 3689: 53,3 + 3834: 61,2 + 3835: 64,2 + 3836: 67,2 + 3841: 58,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale90 @@ -4630,19 +5046,18 @@ entities: 2526: 102,-16 2527: 107,-18 2528: 105,-18 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 2316: 78,2 - 2407: 53,3 - 2425: 67,2 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 194: 9,15 - 1210: 13,25 + 3211: 13,25 + 3404: 6,28 + 3405: 7,28 + 3406: 9,28 + 3408: 9,30 + 3409: 9,31 + 3410: 9,32 + 3536: 9,33 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -4751,16 +5166,15 @@ entities: 1104: 0,0 1105: 1,0 1106: 2,0 + 2724: -8,-12 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: 45: 36,21 55: 34,28 - 59: 32,30 - 98: 37,30 177: 35,24 - 1591: 41,24 + 2832: 34,22 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -4828,19 +5242,13 @@ entities: decals: 9: 12,-28 10: 12,-27 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 1092: -6,-17 - 1369: 8,29 - 1370: 9,29 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 2410: 49,4 2442: 70,8 + 3684: 52,4 - node: color: '#9FED5847' id: ThreeQuarterTileOverlayGreyscale @@ -4851,13 +5259,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 2218: 76,-4 - 2315: 76,5 - 2409: 52,4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1189: 7,28 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -4878,6 +5279,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 1144: -3,-4 + 2743: 32,31 - node: color: '#EFB34128' id: ThreeQuarterTileOverlayGreyscale @@ -4895,6 +5297,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 468: 19,-39 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3668: 49,-5 - node: color: '#34A2C0B2' id: ThreeQuarterTileOverlayGreyscale180 @@ -4905,21 +5312,20 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1768: 51,1 - 2389: 57,-8 2444: 75,7 2445: 74,4 + 3715: 69,0 + 3716: 62,-8 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: 2211: 82,-8 - 2342: 69,0 - 2354: 62,-8 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1192: 15,20 + 3204: 15,20 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale180 @@ -4956,22 +5362,21 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 1766: 49,1 - 2388: 55,-8 2438: 70,4 + 3686: 52,2 + 3721: 59,-8 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: 2202: 76,-6 2215: 78,-8 - 2304: 52,2 - 2356: 59,-8 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1190: 7,21 - 1191: 13,20 + 3196: 6,21 + 3201: 11,20 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale270 @@ -5004,6 +5409,10 @@ entities: decals: 2411: 51,4 2443: 75,8 + 3659: 52,0 + 3685: 53,4 + 3693: 58,3 + 3808: 69,2 - node: color: '#9FED5847' id: ThreeQuarterTileOverlayGreyscale90 @@ -5014,17 +5423,12 @@ entities: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1763: 52,0 2207: 82,-4 - 2314: 78,5 - 2403: 58,3 - 2408: 53,4 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1193: 15,25 - 1194: 13,28 + 3209: 15,25 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale90 @@ -5053,6 +5457,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 467: 23,-39 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3666: 53,-4 - node: color: '#FFFFFFFF' id: VentSmall @@ -5084,12 +5493,33 @@ entities: id: WarnCornerFlipped decals: 207: 2,-33 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNE + decals: + 3843: 61,0 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNW + decals: + 3842: 57,0 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSE + decals: + 3844: 61,-2 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSW + decals: + 3845: 57,-2 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 1587: 40,27 2249: 57,-14 + 3101: 92,27 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -5099,23 +5529,39 @@ entities: 1586: 39,27 2248: 54,-14 2580: 36,-44 + 3098: 82,29 + 3102: 96,27 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1585: 40,26 2246: 57,-16 + 3104: 92,33 + 3108: 80,33 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1588: 39,26 2247: 54,-16 + 3097: 82,31 + 3103: 96,33 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleNE + decals: + 3116: 67,22 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: 1890: 9,-7 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleSE + decals: + 3115: 67,24 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE @@ -5125,30 +5571,33 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1368: 7,28 - 1597: 38,24 1620: 27,21 2561: 39,-49 + 3014: 46,33 + 3533: 6,33 + 3919: 18,-46 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 237: 55,9 - 1367: 10,28 - 1596: 41,24 2560: 41,-49 + 2974: 53,33 + 3920: 24,-46 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1091: -7,-15 1619: 27,26 2563: 39,-45 + 2848: 46,36 + 3653: 6,39 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 2562: 41,-45 + 2852: 53,36 - node: color: '#FFFFFFFF' id: WarnFull @@ -5162,6 +5611,8 @@ entities: id: WarnFullGreyscale decals: 2436: 71,3 + 3832: 70,2 + 3833: 70,1 - node: color: '#FFFFFFFF' id: WarnFullGreyscale @@ -5176,8 +5627,6 @@ entities: 1011: 26,-35 1012: 21,-34 1013: 21,-30 - 1217: 12,29 - 1221: 8,20 2426: 61,-9 - node: color: '#FFFFFFFF' @@ -5194,11 +5643,28 @@ entities: 2642: 40,-17 2643: 40,-16 2644: 40,-15 + 2731: -23,-23 + 2846: 46,35 + 2847: 46,34 + 3110: 80,34 + 3651: 6,38 + 3652: 6,37 - node: - color: '#9FED5896' + color: '#334E6DC8' + id: WarnLineGreyscaleE + decals: + 3114: 67,23 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 3770: 62,-6 + 3849: 61,-1 + - node: + color: '#FA750096' id: WarnLineGreyscaleE decals: - 2361: 62,-6 + 3767: 53,-7 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5216,15 +5682,16 @@ entities: 1887: 9,-6 1888: 9,-5 1889: 9,-4 + 3170: 23,-40 + 3171: 17,-40 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2367: 61,0 - 2368: 60,0 - 2369: 58,0 - 2370: 57,0 - 2435: 71,2 + 3771: 56,3 + 3850: 58,0 + 3851: 59,0 + 3852: 60,0 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5236,36 +5703,29 @@ entities: 443: 32,-39 444: 31,-39 469: 21,-39 - 1218: 12,28 - 1220: 8,19 1879: 10,-7 1880: 11,-7 1881: 12,-7 - 2363: 59,-4 - 2364: 60,-4 - 2365: 61,-4 - 2366: 62,-4 2397: 57,-4 - 2398: 56,-4 - 2399: 55,-4 + 3231: 11,28 + 3232: 12,28 + 3234: 13,28 + 3415: 8,28 + 3417: 5,33 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2371: 61,-2 - 2372: 60,-2 - 2373: 58,-2 - 2374: 57,-2 - 2375: 59,-2 - 2394: 56,-8 + 3762: 61,-8 + 3769: 65,0 + 3846: 58,-2 + 3847: 59,-2 + 3848: 60,-2 - node: - color: '#9FED5896' + color: '#FA750096' id: WarnLineGreyscaleS decals: - 2339: 77,1 - 2340: 72,1 - 2360: 61,-8 - 2362: 65,0 + 3768: 50,-9 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -5277,17 +5737,22 @@ entities: 689: 39,-37 690: 40,-37 813: 42,-8 - 1219: 14,20 - 1798: 8,21 1882: 12,-8 1883: 11,-8 1884: 10,-8 + 3226: 8,21 + 3227: 14,20 + 3416: 8,30 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2392: 55,-7 - 2393: 55,-5 + 3853: 57,-1 + - node: + color: '#FA750096' + id: WarnLineGreyscaleW + decals: + 3766: 55,-7 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -5305,14 +5770,12 @@ entities: 1896: 8,-8 1897: 8,-9 1898: 8,-10 - 2455: 69,0 - 2456: 69,1 - 2457: 69,2 + 3169: 19,-40 + 3177: 25,-40 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1090: -6,-15 2045: 51,13 2046: 50,13 2047: 49,13 @@ -5320,14 +5783,13 @@ entities: 2244: 77,-2 2252: 56,-16 2253: 55,-16 - 2378: 61,-2 - 2379: 60,-2 - 2380: 59,-2 - 2381: 58,-2 - 2382: 57,-2 2552: 40,-45 2600: 49,-12 2601: 50,-12 + 2732: -6,-20 + 3099: 84,32 + 3100: 86,32 + 3109: 79,33 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5346,6 +5808,12 @@ entities: 2591: 36,-47 2592: 36,-46 2593: 36,-45 + 2972: 53,34 + 2973: 53,35 + 3221: 6,27 + 3222: 6,26 + 3223: 6,24 + 3224: 6,23 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5364,10 +5832,6 @@ entities: 754: 22,-16 755: 21,-16 756: 20,-16 - 1365: 8,28 - 1366: 9,28 - 1592: 40,24 - 1593: 39,24 2048: 51,15 2049: 50,15 2050: 49,15 @@ -5375,11 +5839,6 @@ entities: 2241: 78,-1 2254: 56,-14 2255: 55,-14 - 2383: 61,0 - 2384: 60,0 - 2385: 59,0 - 2386: 58,0 - 2387: 57,0 2556: 40,-49 2581: 37,-44 2582: 38,-44 @@ -5389,6 +5848,17 @@ entities: 2586: 42,-44 2587: 44,-44 2588: 43,-44 + 2854: 48,33 + 2855: 49,33 + 2856: 50,33 + 3530: 7,33 + 3531: 8,33 + 3537: 9,33 + 3914: 19,-46 + 3915: 20,-46 + 3916: 21,-46 + 3917: 22,-46 + 3918: 23,-46 - node: color: '#FED83DFF' id: WarningLine @@ -5423,21 +5893,29 @@ entities: id: WoodTrimThinCornerNe decals: 1858: 20,-3 + 3240: 9,19 + 3249: 6,16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 1856: 18,-3 + 3237: 5,19 + 3250: 5,16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 1861: 20,-6 + 3239: 9,18 + 3248: 6,15 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 1853: 18,-6 + 3238: 5,18 + 3247: 5,15 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5456,12 +5934,18 @@ entities: 1095: -3,-11 1096: -4,-11 1857: 19,-3 + 3241: 8,19 + 3242: 7,19 + 3243: 6,19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: 1862: 19,-6 2598: 36,43 + 3244: 6,18 + 3245: 7,18 + 3246: 8,18 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -5470,231 +5954,242 @@ entities: 1855: 18,-4 - node: cleanable: True - angle: -4.71238898038469 rad - color: '#00000060' + angle: -1.5707963267948966 rad + color: '#1206120F' id: footprint decals: - 1274: 8.005591,29.808443 - 1275: 8.443091,30.551498 - 1276: 7.7903137,30.363998 - 1277: 7.5403137,30.107054 - 1278: 6.6653137,30.752888 - 1279: 7.7486477,31.218166 - 1280: 7.929203,31.732056 - 1281: 8.665314,31.08622 - 1282: 7.4153137,31.32233 - 1283: 8.116703,30.454277 - 1284: 8.651425,31.044556 - 1294: 7.8406677,26.12399 - 1295: 8.559418,25.93649 - 1296: 8.918793,26.452114 - 1297: 7.8875427,25.56149 + 3038: 37.85091,30.216513 - node: cleanable: True - angle: -3.141592653589793 rad - color: '#00000060' - id: footprint - decals: - 1285: 7.9222584,30.25727 - 1286: 8.206981,29.875326 - 1287: 8.054203,29.31977 - 1288: 8.387536,28.916994 - 1289: 8.068091,28.375326 - 1290: 8.401425,28.000326 - 1291: 8.165314,27.666994 - 1292: 8.540314,27.41005 - 1293: 9.262536,27.312826 - - node: angle: -1.5707963267948966 rad - color: '#00000060' + color: '#12061228' id: footprint decals: - 1410: 8.091304,16.603054 - 1411: 8.320471,16.964165 - 1412: 7.820471,17.39472 - 1413: 8.362137,16.922499 - 1414: 8.091304,17.797499 - 1415: 8.132971,18.061386 - 1416: 7.834359,18.25583 - 1417: 8.382971,18.450275 - 1418: 8.445471,17.83222 + 3037: 37.455074,30.584824 - node: cleanable: True angle: -1.5707963267948966 rad - color: '#00000060' + color: '#12061247' id: footprint decals: - 1263: 6.5194807,30.009832 - 1264: 6.887536,30.565388 - 1265: 7.1514254,30.093164 - 1266: 7.5194807,30.676498 - 1267: 8.200036,30.113998 - 1268: 8.422258,30.940388 - 1269: 9.026425,30.315388 - 1270: 6.450036,31.676498 - 1271: 7.241703,31.891777 - 1272: 8.130591,31.03761 - 1273: 7.026425,31.35011 - 1298: 11.25042,22.296373 - 1299: 12.234795,21.765123 - 1300: 12.703545,22.343248 - 1301: 13.734795,21.671373 - 1302: 14.53167,22.202623 - 1303: 14.93792,21.390123 + 3034: 36.107853,30.160917 + 3035: 36.482853,30.550077 + 3036: 37.08702,30.258207 - node: - color: '#00000060' + cleanable: True + angle: -1.5707963267948966 rad + color: '#3C323266' id: footprint decals: - 1427: 8.546305,22.79264 - 1428: 10.350877,23.736956 + 3622: 5.1542163,36.791412 + 3623: 5.80005,37.222267 + 3624: 6.230605,36.791412 + 3625: 5.11255,38.11872 + 3626: 4.480605,38.41754 + 3627: 3.9042163,38.007534 + 3636: 3.7167163,37.118027 + 3637: 4.2514386,36.791412 + 3638: 4.633383,37.229214 + 3639: 5.480605,36.881752 + 3640: 6.098661,37.26396 + 3641: 5.959772,36.819206 + 3642: 5.5778275,37.701763 - node: cleanable: True - color: '#00000060' + color: '#3C323266' id: footprint decals: - 1253: 8.831981,27.987852 - 1254: 9.005591,28.265629 - 1255: 8.769481,28.494795 - 1256: 9.054203,28.842018 - 1257: 8.755591,29.147573 - 1258: 9.109758,29.473963 - 1259: 8.762536,29.828129 - 1260: 9.088925,30.078129 - 1261: 8.755591,30.522573 - 1262: 9.081981,30.522573 - 1312: 13.708358,19.952623 - 1313: 14.145858,20.890123 - 1314: 13.630233,21.452623 - 1315: 13.739608,20.593248 - 1316: 14.130233,20.265123 - 1317: 13.661483,21.890123 - 1318: 14.036483,22.343248 - 1319: 13.458358,23.327623 - 1320: 14.020858,23.452623 - 1321: 14.005233,24.218248 - 1322: 13.645858,22.858873 - 1391: 7.237137,16.09611 - 1392: 7.7232485,16.464165 - 1393: 7.362137,16.915554 - 1394: 7.917693,17.665554 - 1395: 7.521859,18.13083 - 1396: 7.980193,18.56833 - 1397: 7.882971,19.109999 - 1429: 10.046046,23.44008 - 1430: 7.2491713,26.34633 - 1431: 8.389796,26.674456 - 1432: 13.452296,20.69008 - 1433: 13.467921,21.31508 - 1434: 8.999171,26.4967 - 1435: 8.046046,27.90295 - 1436: 8.624171,27.59045 - 1437: 8.983546,28.09045 - 1438: 8.608546,29.3092 + 3617: 4.7514386,36.826157 + 3618: 5.133383,37.236164 + 3619: 4.7653275,37.92414 + 3620: 5.168105,38.33415 + 3621: 4.7653275,38.869244 - node: + cleanable: True angle: 1.5707963267948966 rad - color: '#00000060' + color: '#3C323266' id: footprint decals: - 1419: 7.966304,16.290554 - 1420: 7.626026,15.89472 - 1421: 6.952415,16.39472 - 1422: 6.9801927,15.866943 - 1423: 6.834359,17.01972 - 1424: 6.876026,17.748886 - 1425: 7.542693,18.01972 - 1426: 7.709359,19.228054 + 3628: 5.11255,38.737206 + 3629: 4.848661,38.49398 + 3630: 4.5361605,37.86855 + 3631: 4.05005,37.395996 + 3632: 3.6681051,37.792107 + 3633: 3.9736605,37.708714 + 3634: 3.6958828,37.395996 + 3635: 4.3139386,37.722614 - node: cleanable: True - angle: 1.5707963267948966 rad - color: '#00000060' + angle: -3.141592653589793 rad + color: '#3C323270' id: footprint decals: - 1304: 14.972425,21.077623 - 1305: 14.316175,21.655748 - 1306: 13.8318,21.202623 - 1307: 13.003675,21.843248 - 1308: 12.534925,21.390123 - 1309: 11.6443,21.843248 - 1310: 10.972425,21.468248 + 3643: 5.152672,32.323315 + 3644: 4.850589,31.760422 - node: cleanable: True - angle: 3.141592653589793 rad - color: '#00000060' + color: '#3C323270' id: footprint decals: - 1398: 6.8551927,16.728054 - 1399: 7.570471,17.200275 - 1400: 7.1607485,17.623886 - 1401: 8.2649145,17.76972 - 1402: 7.7857485,18.45722 - 1403: 8.2440815,18.929443 - 1404: 8.2232485,18.65861 - 1405: 8.132971,18.03361 - 1406: 7.292692,18.554443 - 1407: 7.8274145,17.075275 - 1408: 7.167692,16.964165 - 1409: 7.4732485,16.31833 + 3645: 12.683783,26.23768 + 3646: 13.173366,26.82142 + 3647: 12.777533,27.290495 + 3648: 13.204616,27.884659 + 3649: 12.767116,28.270344 + 3650: 13.121283,28.781115 - node: cleanable: True - angle: 6.283185307179586 rad - color: '#00000060' + angle: -3.141592653589793 rad + color: '#4632327F' id: footprint decals: - 1311: 7.894642,22.655748 + 3459: 7.786436,27.447971 + 3460: 8.098936,28.059507 + 3461: 7.765602,28.810028 + 3462: 8.182269,29.303427 + 3463: 7.8003244,29.914963 + 3464: 8.182269,30.58904 + 3465: 7.79338,31.068169 + 3466: 4.765602,32.756844 + 3468: 4.7794914,34.091103 + 3469: 5.1614356,34.854633 + 3470: 4.807269,35.605152 + 3471: 5.203102,36.20974 - node: cleanable: True - color: '#0000065D' + angle: -1.5707963267948966 rad + color: '#4632327F' id: footprint decals: - 1812: 8.153207,20.861673 - 1813: 8.434457,21.127298 - 1814: 8.215707,21.486673 - 1815: 8.512582,21.892923 - 1816: 8.309457,22.142923 - 1817: 8.731332,22.627298 - 1818: 8.496957,23.517923 - 1819: 8.262582,24.096048 + 3339: 9.7551565,23.26556 + 3340: 10.199601,22.820807 + 3341: 10.789879,23.24471 + 3342: 11.282934,22.862501 + 3343: 12.08849,23.272509 + 3344: 12.560712,22.834705 + 3363: 8.78505,22.233381 + 3364: 9.298939,21.941511 + 3365: 9.979495,22.309822 + 3366: 8.208661,22.017954 + 3367: 7.4447727,22.268127 + 3500: 8.125149,30.19862 + 3501: 8.625149,29.872005 + 3502: 9.069593,30.177773 + 3511: 7.786661,28.240509 + 3512: 8.321383,27.74711 + 3513: 8.92555,28.205763 + 3514: 9.258883,27.802704 + 3515: 9.904717,28.212711 - node: cleanable: True - angle: 1.5707963267948966 rad - color: '#0000065D' + color: '#4632327F' id: footprint decals: - 1834: 9.684457,21.892923 - 1835: 8.856332,22.736673 - 1836: 8.856332,22.721048 - 1837: 10.309457,22.674173 - 1838: 11.246957,22.017923 - 1839: 10.028207,22.033548 - 1840: 10.215707,22.627298 - 1841: 9.262582,22.174173 - 1842: 9.106332,22.221048 + 3332: 13.713909,20.02025 + 3333: 14.151409,20.360764 + 3334: 13.706546,20.923655 + 3335: 14.095434,21.389256 + 3336: 13.6926565,21.959097 + 3337: 14.116268,22.640125 + 3338: 13.706546,23.293356 + 3358: 8.194773,20.90607 + 3359: 7.8475504,21.302177 + 3360: 8.173939,21.823374 + 3361: 7.7850504,22.497452 + 3362: 8.132273,23.053394 + 3478: 5.7794914,30.754562 + 3479: 6.140602,31.234062 + 3480: 5.79338,31.73441 + 3481: 6.1753244,32.332047 + 3496: 8.590913,31.748306 + 3497: 8.292302,32.345943 + 3503: 7.8585606,27.74704 + 3504: 8.150227,28.435019 + 3505: 7.7196712,29.053503 + 3506: 8.198838,29.574697 + 3507: 7.7405043,30.297422 + 3508: 7.976616,30.756943 + 3509: 8.210273,27.260662 + 3510: 7.793606,26.725567 + 3542: 5.813014,32.55113 + 3543: 6.104681,33.051476 + 3544: 8.569844,32.77003 + 3545: 8.246928,33.09317 - node: cleanable: True - angle: 3.141592653589793 rad - color: '#0000065D' + angle: 1.5707963267948966 rad + color: '#4632327F' id: footprint decals: - 1820: 7.856332,21.033548 - 1821: 8.215707,21.408548 - 1822: 7.950082,21.892923 - 1823: 8.762582,22.283548 - 1824: 8.293832,23.142923 - 1825: 8.965707,23.392923 + 3345: 15.178768,21.34061 + 3346: 14.782934,20.916706 + 3347: 14.282934,21.24332 + 3348: 13.5051565,20.902807 + 3349: 13.178768,21.305864 + 3350: 12.532934,20.937553 + 3351: 11.914879,21.333662 + 3352: 11.345434,20.923655 + 3353: 10.748212,21.326712 + 3354: 10.074601,20.909756 + 3355: 13.1926565,25.221567 + 3356: 12.595434,24.818508 + 3357: 11.762101,25.263262 + 3368: 6.7781057,25.172922 + 3369: 7.125328,24.776814 + 3370: 7.7642174,25.20072 + 3385: 13.443252,22.368464 + 3386: 13.033529,22.01405 + 3387: 12.686307,22.340666 + 3388: 12.221029,21.979303 + 3389: 11.734919,22.410158 + 3390: 11.387696,21.951508 + 3391: 11.109919,22.431005 + 3392: 10.630752,21.951508 + 3393: 15.878498,20.976871 + 3483: 8.112824,31.657967 + 3484: 7.432269,31.331352 + 3485: 6.703102,31.748306 + 3486: 6.3767133,31.366096 + 3487: 5.633658,31.922039 + 3490: 5.0989356,32.749004 + 3492: 7.6128244,30.712868 + 3493: 7.1336575,31.178467 + 3494: 6.6128244,30.733715 + 3495: 5.994769,31.122875 + 3516: 15.162565,20.48974 + 3517: 14.683398,20.187449 + 3518: 14.183398,20.656523 + 3519: 13.641731,20.27084 + 3520: 8.2431135,24.784645 + 3521: 8.8368635,25.201601 + 3522: 17.269722,20.829908 + 3523: 16.759306,20.339985 + 3524: 16.155138,20.871605 + 3525: 15.665556,20.29829 + 3546: 5.6948442,33.072323 + 3547: 6.580261,32.77003 + 3548: 7.2885942,33.08275 + 3549: 7.799011,32.811726 - node: cleanable: True - angle: 4.71238898038469 rad - color: '#0000065D' + angle: 3.141592653589793 rad + color: '#4632327F' id: footprint decals: - 1826: 8.762582,21.236673 - 1827: 9.184457,21.986673 - 1828: 9.731332,21.486673 - 1829: 9.762582,22.346048 - 1830: 10.543832,21.799173 - 1831: 10.918832,22.111673 - 1832: 11.606332,21.705423 - 1833: 12.215707,22.096048 + 3371: 11.68782,23.220688 + 3372: 11.993376,22.81763 + 3373: 11.666986,22.206095 + 3374: 12.06282,21.664051 + 3375: 11.701709,21.122007 + 3376: 12.076709,20.593864 + 3377: 9.729486,25.284622 + 3378: 10.076709,24.82597 + 3379: 9.722542,24.283926 + 3380: 10.104486,23.436115 + 3381: 9.743376,22.748137 + 3382: 10.194764,22.185247 + 3383: 9.790189,21.868116 + 3384: 10.158244,21.353868 - node: cleanable: True angle: -4.71238898038469 rad @@ -5785,10 +6280,7 @@ entities: 517: 21.085358,-39.21534 518: 20.606192,-39.21534 519: 16.110773,-41.92628 - 520: 16.312162,-40.836002 - 521: 15.944107,-40.405445 522: 16.124662,-41.55128 - 523: 16.194107,-40.780445 527: 21.153759,-38.723778 528: 20.771816,-38.58489 529: 21.077372,-38.26544 @@ -5905,7 +6397,6 @@ entities: decals: 505: 16.144655,-41.73583 506: 16.436321,-41.476566 - 507: 16.311321,-41.008976 - node: color: '#FFFFFFFF' id: ghost @@ -5997,8 +6488,47 @@ entities: - type: Transform pos: 48.345963,-21.521229 parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 5500 + components: + - type: Transform + parent: 5530 + - type: InstantAction + container: 5530 + - uid: 6197 + components: + - type: Transform + parent: 10847 + - type: InstantAction + container: 10847 +- proto: ActionToggleLight + entities: + - uid: 13568 + components: + - type: Transform + parent: 13567 + - type: InstantAction + container: 13567 - proto: AirAlarm entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 8106 + - 14672 + - 29 + - 8238 + - 371 + - 14735 + - 14736 + - 429 + - 8203 - uid: 138 components: - type: Transform @@ -6124,22 +6654,14 @@ entities: parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - 7837 - 7838 + - 13985 + - 13980 + - 193 + - 241 + - 14065 + - 14064 - uid: 2296 components: - type: Transform @@ -6246,23 +6768,19 @@ entities: - 6684 - 6570 - 6571 - - uid: 7839 + - uid: 7962 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-15.5 + pos: 7.5,17.5 parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - - 7472 - - 7469 + - 8106 + - 6908 + - 12833 + - 6911 + - 14960 - uid: 8011 components: - type: Transform @@ -6291,18 +6809,6 @@ entities: - 8009 - 6778 - 7708 - - uid: 8239 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 12522 - - 8237 - - 8238 - - 8222 - - 8229 - uid: 8922 components: - type: Transform @@ -6336,6 +6842,8 @@ entities: - 9589 - 9570 - 9569 + - 9236 + - 13510 - uid: 9637 components: - type: Transform @@ -6434,6 +6942,18 @@ entities: - type: DeviceList devices: - 8659 + - uid: 10988 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 6774 + - 9456 + - 7760 + - 2301 + - 1812 - uid: 11165 components: - type: Transform @@ -6493,6 +7013,9 @@ entities: - 6568 - 6640 - 6628 + - 14994 + - 14992 + - 12161 - uid: 11730 components: - type: Transform @@ -6553,12 +7076,12 @@ entities: - 5190 - 11332 - 11355 - - 12158 - - 12159 - - 12161 - 12162 - 11938 - 11945 + - 9896 + - 9897 + - 9858 - uid: 12163 components: - type: Transform @@ -6568,9 +7091,8 @@ entities: devices: - 11366 - 11367 - - 12158 - - 12159 - - 12161 + - 9896 + - 9897 - uid: 12416 components: - type: Transform @@ -6729,19 +7251,6 @@ entities: devices: - 11957 - 11956 - - uid: 12520 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 12519 - - 12086 - - 8237 - - 8238 - - 8236 - - 8235 - uid: 12528 components: - type: Transform @@ -6754,6 +7263,9 @@ entities: - 8575 - 8629 - 8630 + - 2263 + - 10452 + - 2265 - uid: 12530 components: - type: Transform @@ -6817,6 +7329,129 @@ entities: - 12563 - 10346 - 10401 + - uid: 13512 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8349 + - 13511 + - 4414 + - 13515 + - 13517 + - 3152 + - 13523 + - 13514 + - 13507 + - uid: 13984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 14063 + - 14061 + - 14062 + - 13974 + - 13975 + - 13976 + - 13979 + - 13978 + - 13977 + - 13983 + - 13982 + - 13981 + - 14014 + - 14015 + - 14029 + - 14031 + - 14030 + - 14032 + - uid: 14067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 13967 + - 13894 + - 13973 + - 14066 + - 2125 + - 192 + - 1317 + - 1336 + - 7469 + - 1232 + - 1161 + - 7895 + - 6854 + - 7663 + - uid: 14247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 14547 + - 14385 + - 14373 + - 14377 + - 14384 + - 14420 + - 14421 + - 14433 + - 14432 + - 14549 + - 14552 + - 14551 + - 14553 + - uid: 14615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 14614 + - 14613 + - 14616 + - 14622 + - uid: 14670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 14671 + - 14669 + - 14667 + - 14672 + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 30 + - 8238 + - 29 + - 12086 + - 8236 + - 8235 - proto: AirCanister entities: - uid: 2078 @@ -6839,35 +7474,40 @@ entities: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 5747 + - uid: 8337 components: - type: Transform - pos: 48.5,-13.5 + pos: 46.5,38.5 parent: 2 - - uid: 7858 + - uid: 9900 components: - type: Transform - pos: 70.5,-19.5 + pos: 46.5,-14.5 parent: 2 - uid: 10794 components: - type: Transform pos: 78.5,-16.5 parent: 2 - - uid: 10842 + - uid: 11521 components: - type: Transform - pos: 46.5,36.5 + pos: 71.5,-18.5 parent: 2 - - uid: 10843 + - uid: 12802 components: - type: Transform - pos: 46.5,35.5 + pos: 14.5,-9.5 parent: 2 - - uid: 12802 + - uid: 13571 components: - type: Transform - pos: 14.5,-9.5 + pos: 46.5,37.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 81.5,34.5 parent: 2 - proto: Airlock entities: @@ -6891,11 +7531,6 @@ entities: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 2290 - components: - - type: Transform - pos: 41.5,36.5 - parent: 2 - uid: 8842 components: - type: Transform @@ -7000,22 +7635,22 @@ entities: parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 2081 + - uid: 41 components: - type: Transform - pos: 16.5,22.5 + pos: 16.5,21.5 parent: 2 - - uid: 2082 + - uid: 7015 components: - type: Transform - pos: 16.5,20.5 + pos: 21.5,20.5 parent: 2 - - uid: 2083 + - uid: 7168 components: - type: Transform - pos: 21.5,20.5 + pos: 16.5,20.5 parent: 2 - - uid: 11094 + - uid: 7880 components: - type: Transform pos: 21.5,21.5 @@ -7082,6 +7717,12 @@ entities: - type: Transform pos: 25.5,41.5 parent: 2 + - uid: 14095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,21.5 + parent: 2 - proto: AirlockCommandLocked entities: - uid: 2788 @@ -7096,6 +7737,18 @@ entities: - type: Transform pos: 29.5,36.5 parent: 2 + - uid: 14087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,23.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,32.5 + parent: 2 - proto: AirlockDetectiveGlassLocked entities: - uid: 2004 @@ -7105,10 +7758,11 @@ entities: parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 2131 + - uid: 11279 components: - type: Transform - pos: 40.5,18.5 + rot: 1.5707963267948966 rad + pos: 41.5,21.5 parent: 2 - proto: AirlockEngineering entities: @@ -7168,15 +7822,16 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 118 + - uid: 70 components: - type: Transform - pos: 3.5,-9.5 + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 parent: 2 - - uid: 128 + - uid: 118 components: - type: Transform - pos: 14.5,33.5 + pos: 3.5,-9.5 parent: 2 - uid: 596 components: @@ -7203,62 +7858,59 @@ entities: - type: Transform pos: 34.5,-16.5 parent: 2 - - uid: 3408 - components: - - type: Transform - pos: 69.5,43.5 - parent: 2 - - uid: 3490 + - uid: 2046 components: - type: Transform - pos: 48.5,27.5 + rot: -1.5707963267948966 rad + pos: 18.5,-39.5 parent: 2 - - uid: 4637 + - uid: 3208 components: - type: Transform - pos: 18.5,-39.5 + pos: 35.5,33.5 parent: 2 - - uid: 4643 + - uid: 3267 components: - type: Transform - pos: 24.5,-39.5 + rot: -1.5707963267948966 rad + pos: 70.5,-12.5 parent: 2 - - type: Door - secondsUntilStateChange: -5888.925 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 4744 + - uid: 3408 components: - type: Transform - pos: 44.5,28.5 + pos: 69.5,43.5 parent: 2 - - uid: 5726 + - uid: 3490 components: - type: Transform - pos: 52.5,-11.5 + pos: 48.5,27.5 parent: 2 - uid: 5824 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 6198 + - uid: 6899 components: - type: Transform - pos: 70.5,-13.5 + pos: 16.5,-12.5 parent: 2 - - uid: 6899 + - uid: 11212 components: - type: Transform - pos: 16.5,-12.5 + pos: 10.5,16.5 parent: 2 - uid: 13715 components: - type: Transform pos: 6.5,-22.5 parent: 2 + - uid: 15005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-12.5 + parent: 2 - proto: AirlockExternal entities: - uid: 1889 @@ -7327,55 +7979,17 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - - uid: 69 - components: - - type: Transform - pos: 11.5,37.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 70: - - DoorStatus: DoorBolt - - uid: 70 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 69: - - DoorStatus: DoorBolt - - uid: 171 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 173: - - DoorStatus: DoorBolt - uid: 173 components: - type: Transform pos: 13.5,-43.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 171: + 225: - DoorStatus: DoorBolt - - uid: 225 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - uid: 226 components: - type: Transform @@ -7441,107 +8055,194 @@ entities: linkedPorts: 12931: - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,49.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,49.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-20.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 258 + - uid: 411 components: - type: Transform - pos: 6.5,24.5 + pos: 5.5,24.5 parent: 2 - - uid: 2001 + - uid: 428 components: - type: Transform - pos: 6.5,26.5 + rot: -1.5707963267948966 rad + pos: 5.5,26.5 parent: 2 - - uid: 6863 + - uid: 974 components: - type: Transform - pos: 6.5,16.5 + pos: 5.5,34.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7886: + 975: - DoorStatus: DoorBolt - 7881: - - DoorStatus: DoorBolt - - uid: 7674 + - uid: 975 components: - type: Transform - pos: 6.5,17.5 + pos: 5.5,36.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7886: + 974: - DoorStatus: DoorBolt - 7881: - - DoorStatus: DoorBolt - - uid: 7881 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 225 components: - type: Transform - pos: 4.5,17.5 + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6863: - - DoorStatus: DoorBolt - 7674: + 173: - DoorStatus: DoorBolt - - uid: 7886 + - uid: 662 components: - type: Transform - pos: 4.5,16.5 + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 941 + components: + - type: Transform + pos: -14.5,-23.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7674: + 13780: - DoorStatus: DoorBolt - 6863: + - uid: 4556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4517: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassLocked - entities: - - uid: 2734 + - uid: 8930 components: - type: Transform - pos: -5.5,-18.5 + pos: 73.5,20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6839: + 2333: - DoorStatus: DoorBolt - - uid: 6839 + - uid: 14224 components: - type: Transform - pos: -5.5,-15.5 + pos: 81.5,28.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2734: + 14221: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 1332 + - uid: 13727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-10.5 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - - uid: 1334 + - uid: 13730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: @@ -7551,12 +8252,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 193 + - uid: 7544 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 + - uid: 7985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 8327 @@ -7565,6 +8278,44 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,4.5 parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,51.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 - proto: AirlockExternalLocked entities: - uid: 1369 @@ -7589,17 +8340,42 @@ entities: linkedPorts: 1369: - DoorStatus: DoorBolt - - uid: 3202 + - uid: 2333 components: - type: Transform - pos: 56.5,49.5 + rot: 3.141592653589793 rad + pos: 75.5,20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8930: + - DoorStatus: DoorBolt + - uid: 4517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4556: + - DoorStatus: DoorBolt + - uid: 7759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,45.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2167: - - DoorStatus: Close + 13556: + - DoorStatus: DoorBolt - uid: 8728 components: - type: Transform @@ -7622,20 +8398,40 @@ entities: linkedPorts: 8728: - DoorStatus: DoorBolt -- proto: AirlockExternalShuttleLocked - entities: - - uid: 2167 + - uid: 13556 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,51.5 + pos: 64.5,43.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7759: + - DoorStatus: DoorBolt + - uid: 13780 + components: + - type: Transform + pos: -14.5,-25.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 3202: - - DoorStatus: Close + 941: + - DoorStatus: DoorBolt + - uid: 14221 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 - type: DeviceLinkSink invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14224: + - DoorStatus: DoorBolt - proto: AirlockFreezer entities: - uid: 10 @@ -7648,6 +8444,18 @@ entities: - type: Transform pos: 9.5,12.5 parent: 2 + - uid: 6066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,35.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,37.5 + parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 559 @@ -7665,6 +8473,27 @@ entities: parent: 2 - proto: AirlockGlass entities: + - uid: 49 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 - uid: 377 components: - type: Transform @@ -7800,12 +8629,6 @@ entities: - type: Transform pos: 2.5,0.5 parent: 2 - - uid: 7764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 2 - uid: 7766 components: - type: Transform @@ -7816,18 +8639,6 @@ entities: - type: Transform pos: 23.5,43.5 parent: 2 - - uid: 7769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 2 - - uid: 7779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - uid: 7870 components: - type: Transform @@ -7863,19 +8674,24 @@ entities: - type: Transform pos: 106.5,-20.5 parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 2002 + - uid: 7965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,26.5 + pos: 3.5,24.5 parent: 2 - - uid: 2003 + - uid: 8030 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,24.5 + pos: 3.5,26.5 parent: 2 - proto: AirlockHeadOfPersonnelGlassLocked entities: @@ -7978,15 +8794,15 @@ entities: parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 1062 + - uid: 2115 components: - type: Transform - pos: 14.5,19.5 + pos: 14.5,28.5 parent: 2 - - uid: 2115 + - uid: 4811 components: - type: Transform - pos: 14.5,28.5 + pos: 14.5,19.5 parent: 2 - proto: AirlockMaintChapelLocked entities: @@ -8220,10 +9036,23 @@ entities: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 11018 + - uid: 13323 components: - type: Transform - pos: 71.5,22.5 + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-22.5 parent: 2 - proto: AirlockMaintMedLocked entities: @@ -8281,19 +9110,18 @@ entities: - type: Transform pos: 56.5,4.5 parent: 2 -- proto: AirlockMaintSalvageLocked +- proto: AirlockMaintSecLocked entities: - - uid: 7972 + - uid: 365 components: - type: Transform - pos: 10.5,19.5 + pos: 39.5,37.5 parent: 2 -- proto: AirlockMaintSecLocked - entities: - - uid: 2491 + - uid: 3206 components: - type: Transform - pos: 33.5,31.5 + rot: 3.141592653589793 rad + pos: 33.5,32.5 parent: 2 - uid: 7737 components: @@ -8315,6 +9143,26 @@ entities: parent: 2 - proto: AirlockMedicalGlassLocked entities: + - uid: 599 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 - uid: 5011 components: - type: Transform @@ -8337,6 +9185,11 @@ entities: parent: 2 - proto: AirlockMedicalLocked entities: + - uid: 1146 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 - uid: 11898 components: - type: Transform @@ -8344,6 +9197,11 @@ entities: parent: 2 - proto: AirlockMedicalMorgueLocked entities: + - uid: 1025 + components: + - type: Transform + pos: 72.5,0.5 + parent: 2 - uid: 11848 components: - type: Transform @@ -8351,31 +9209,39 @@ entities: parent: 2 - proto: AirlockQuartermasterGlassLocked entities: - - uid: 2084 + - uid: 191 components: - type: Transform - pos: 12.5,29.5 + pos: 8.5,20.5 parent: 2 -- proto: AirlockResearchDirectorGlassLocked +- proto: AirlockQuartermasterLocked entities: - - uid: 5232 + - uid: 2136 components: - type: Transform - pos: 62.5,12.5 + rot: 3.141592653589793 rad + pos: 5.5,17.5 parent: 2 -- proto: AirlockResearchDirectorLocked +- proto: AirlockResearchDirectorGlassLocked entities: - - uid: 5253 + - uid: 907 components: - type: Transform + rot: 1.5707963267948966 rad pos: 52.5,24.5 parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 437 + - uid: 7836 components: - type: Transform - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: 8.5,29.5 parent: 2 - proto: AirlockScienceGlassLocked entities: @@ -8408,28 +9274,64 @@ entities: parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 2323 + - uid: 2402 components: - type: Transform - pos: 38.5,30.5 + pos: 37.5,22.5 parent: 2 - - uid: 2324 + - uid: 3215 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 7774 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 2402 + - uid: 8408 components: - type: Transform - pos: 37.5,22.5 + rot: 3.141592653589793 rad + pos: 35.5,31.5 parent: 2 - proto: AirlockSecurityLocked entities: + - uid: 1831 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 - uid: 7736 components: - type: Transform pos: -0.5,-2.5 parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 - proto: AirlockServiceLocked entities: - uid: 555 @@ -8451,21 +9353,6 @@ entities: parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 575 - components: - - type: Transform - pos: 53.5,-1.5 - parent: 2 - - uid: 576 - components: - - type: Transform - pos: 53.5,0.5 - parent: 2 - - uid: 598 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 2 - uid: 2910 components: - type: Transform @@ -8476,35 +9363,57 @@ entities: - type: Transform pos: 77.5,-2.5 parent: 2 -- proto: AirlockVirologyLocked +- proto: AirSensor entities: - - uid: 599 + - uid: 30 components: - type: Transform - pos: 66.5,-7.5 + pos: 18.5,20.5 parent: 2 - - uid: 600 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14754 + - uid: 185 components: - type: Transform - pos: 63.5,-5.5 + pos: 59.5,18.5 parent: 2 - - uid: 601 + - uid: 371 components: - type: Transform - pos: 72.5,0.5 + rot: 3.141592653589793 rad + pos: 11.5,25.5 parent: 2 -- proto: AirSensor - entities: - - uid: 185 + - type: DeviceNetwork + deviceLists: + - 14737 + - 5 + - uid: 1812 components: - type: Transform - pos: 59.5,18.5 + rot: -1.5707963267948966 rad + pos: 39.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - uid: 2125 components: - type: Transform pos: -3.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 2265 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - uid: 4554 components: - type: Transform @@ -8535,11 +9444,6 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 7843 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - uid: 8008 components: - type: Transform @@ -8560,6 +9464,15 @@ entities: - type: Transform pos: 26.5,-5.5 parent: 2 + - uid: 9456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - uid: 9589 components: - type: Transform @@ -8670,11 +9583,6 @@ entities: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 12522 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - uid: 12529 components: - type: Transform @@ -8735,6 +9643,132 @@ entities: - type: Transform pos: 67.5,13.5 parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - uid: 13511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13515 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 14061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 14065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 14066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 14547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,30.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14614 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - uid: 14671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 - proto: AltarSpawner entities: - uid: 2526 @@ -8800,11 +9834,13 @@ entities: rot: 3.141592653589793 rad pos: 10.5,11.5 parent: 2 - - uid: 671 + - uid: 598 components: + - type: MetaData + name: Service/Chem Maint APC - type: Transform rot: 3.141592653589793 rad - pos: 55.5,37.5 + pos: 49.5,-14.5 parent: 2 - uid: 681 components: @@ -8838,6 +9874,22 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 + - uid: 1177 + components: + - type: MetaData + name: Singulo APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 2 + - uid: 1316 + components: + - type: MetaData + name: Departures APC + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 2 - uid: 1539 components: - type: MetaData @@ -8872,21 +9924,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-15.5 parent: 2 - - uid: 1815 - components: - - type: MetaData - name: Detective's Office APC - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 1948 - components: - - type: MetaData - name: Perma Brig APC - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,29.5 - parent: 2 - uid: 2378 components: - type: MetaData @@ -8930,21 +9967,36 @@ entities: - type: Transform pos: 69.5,47.5 parent: 2 - - uid: 3407 + - uid: 3221 components: - type: MetaData - name: Maint West APC + name: Perma APC + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 3250 + components: + - type: MetaData + name: Detective APC - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-8.5 + pos: 40.5,20.5 parent: 2 - - uid: 4113 + - uid: 3333 components: - type: MetaData - name: Departures APC + name: Visitor Dock APC - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 + - uid: 3407 + components: + - type: MetaData + name: Maint West APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 parent: 2 - uid: 4116 components: @@ -8985,22 +10037,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 4815 - components: - - type: MetaData - name: Cargo Desk APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 2 - - uid: 4829 - components: - - type: MetaData - name: Grav Gen APC - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,35.5 - parent: 2 - uid: 4877 components: - type: MetaData @@ -9133,14 +10169,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 5577 - components: - - type: MetaData - name: Singulo APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 - parent: 2 - uid: 5648 components: - type: MetaData @@ -9215,14 +10243,6 @@ entities: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 6358 - components: - - type: MetaData - name: Maint South APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 2 - uid: 6522 components: - type: MetaData @@ -9260,13 +10280,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 6873 - components: - - type: MetaData - name: Maint North APC - - type: Transform - pos: 47.5,28.5 - parent: 2 - uid: 6954 components: - type: MetaData @@ -9282,20 +10295,21 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 - - uid: 7473 + - uid: 8061 components: - type: MetaData - name: Arrivals APC + name: Camera Server APC - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-15.5 + rot: -1.5707963267948966 rad + pos: 33.5,36.5 parent: 2 - - uid: 8585 + - uid: 8228 components: - type: MetaData - name: Camera Server Room APC + name: Cargo Desk APC - type: Transform - pos: 30.5,38.5 + rot: 3.141592653589793 rad + pos: 18.5,19.5 parent: 2 - uid: 9020 components: @@ -9348,6 +10362,13 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,6.5 parent: 2 + - uid: 10970 + components: + - type: MetaData + name: Interrogation APC + - type: Transform + pos: 42.5,32.5 + parent: 2 - uid: 12151 components: - type: MetaData @@ -9356,6 +10377,14 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,23.5 parent: 2 + - uid: 12522 + components: + - type: MetaData + name: Grav Gen APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 - uid: 12934 components: - type: MetaData @@ -9363,10 +10392,50 @@ entities: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 13609 + - uid: 12937 components: + - type: MetaData + name: Arrivals APC - type: Transform - pos: 58.5,32.5 + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 13497 + components: + - type: MetaData + name: North Maint APC + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14150 + components: + - type: MetaData + name: AI Access APC + - type: Transform + pos: 72.5,24.5 + parent: 2 + - uid: 14405 + components: + - type: MetaData + name: AI Core Entrance APC + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 14434 + components: + - type: MetaData + name: AI Core Inner APC + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,28.5 + parent: 2 + - uid: 14691 + components: + - type: MetaData + name: Quartermaster APC + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 parent: 2 - proto: APCElectronics entities: @@ -9423,24 +10492,24 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 323 + - uid: 8254 components: - type: MetaData - name: Cargo Bay APC + name: Salvage APC - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,25.5 + pos: 10.5,33.5 parent: 2 -- proto: APCSuperCapacity - entities: - - uid: 2333 + - uid: 13690 components: - type: MetaData - name: Security APC + name: Cargo Bay APC - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,25.5 + rot: 3.141592653589793 rad + pos: 13.5,19.5 parent: 2 +- proto: APCSuperCapacity + entities: - uid: 4928 components: - type: MetaData @@ -9448,39 +10517,76 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 + - uid: 14639 + components: + - type: MetaData + name: Security APC + - type: Transform + pos: 35.5,29.5 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 13576 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 - proto: ArtistCircuitBoard entities: - - uid: 12661 + - uid: 14277 components: - type: Transform - pos: 52.427402,31.810074 + pos: 84.42593,28.765135 parent: 2 - proto: AsimovCircuitBoard entities: - - uid: 13649 + - uid: 14276 components: - type: Transform - pos: 52.427402,31.622574 + pos: 85.47454,28.607038 parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 - uid: 136 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 373 + - uid: 258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 608 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 1854 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-10.5 + pos: -10.5,2.5 parent: 2 - uid: 2027 components: @@ -9488,6 +10594,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 + - uid: 2609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 2 - uid: 5262 components: - type: Transform @@ -9500,23 +10624,35 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - - uid: 6592 + - uid: 6876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 + rot: 1.5707963267948966 rad + pos: 87.5,4.5 parent: 2 - - uid: 6874 + - uid: 10982 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,24.5 + pos: 3.5,27.5 parent: 2 - - uid: 6876 + - uid: 14979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 + rot: 3.141592653589793 rad + pos: 55.5,51.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -9690,18 +10826,11 @@ entities: - type: Transform pos: 15.5,-23.5 parent: 2 - - uid: 2120 + - uid: 6910 components: - type: Transform - pos: 12.5,21.5 + pos: 13.5,20.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - proto: BananaPhoneInstrument entities: - uid: 9600 @@ -9772,11 +10901,6 @@ entities: parent: 2 - proto: Beaker entities: - - uid: 366 - components: - - type: Transform - pos: 37.43033,35.332123 - parent: 2 - uid: 4247 components: - type: Transform @@ -9809,10 +10933,10 @@ entities: - type: Transform pos: 36.5,42.5 parent: 2 - - uid: 411 + - uid: 2014 components: - type: Transform - pos: 13.5,31.5 + pos: 6.5,15.5 parent: 2 - uid: 2250 components: @@ -9824,15 +10948,10 @@ entities: - type: Transform pos: 29.5,20.5 parent: 2 - - uid: 2309 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - - uid: 2310 + - uid: 4365 components: - type: Transform - pos: 41.5,31.5 + pos: 59.5,40.5 parent: 2 - uid: 5445 components: @@ -9849,15 +10968,20 @@ entities: - type: Transform pos: 77.5,-12.5 parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 - uid: 9623 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 11840 + - uid: 10765 components: - type: Transform - pos: 59.5,-4.5 + pos: 63.5,4.5 parent: 2 - uid: 12245 components: @@ -9919,10 +11043,10 @@ entities: - type: Transform pos: 107.5,-23.5 parent: 2 - - uid: 13111 + - uid: 13114 components: - type: Transform - pos: 62.5,-4.5 + pos: 66.5,4.5 parent: 2 - uid: 13470 components: @@ -10009,22 +11133,22 @@ entities: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 11822 + - uid: 11299 components: - type: Transform - pos: 66.5,4.5 + pos: 63.5,4.5 parent: 2 - - uid: 11826 + - uid: 11822 components: - type: Transform - pos: 60.5,4.5 + pos: 66.5,4.5 parent: 2 - uid: 11847 components: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 13114 + - uid: 14659 components: - type: Transform pos: 62.5,-4.5 @@ -10038,22 +11162,36 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 2312 + - uid: 5253 components: - type: Transform - pos: 41.5,32.5 + rot: -1.5707963267948966 rad + pos: 59.5,32.5 parent: 2 - - uid: 2313 + - uid: 6333 components: - type: Transform - pos: 41.5,31.5 + rot: -1.5707963267948966 rad + pos: 59.5,40.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,20.5 parent: 2 - proto: BedsheetQM entities: - - uid: 252 + - uid: 2012 components: - type: Transform - pos: 13.5,31.5 + pos: 6.5,15.5 parent: 2 - proto: BedsheetRainbow entities: @@ -10146,10 +11284,10 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 6672 + - uid: 13612 components: - type: Transform - pos: 36.5,35.5 + pos: 57.5,41.5 parent: 2 - uid: 13653 components: @@ -10168,10 +11306,10 @@ entities: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 384 + - uid: 895 components: - type: Transform - pos: 5.5,23.5 + pos: 7.5,36.5 parent: 2 - uid: 4257 components: @@ -10198,15 +11336,15 @@ entities: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 7462 + - uid: 8067 components: - type: Transform - pos: 5.5,27.5 + pos: 4.5,23.5 parent: 2 - - uid: 7618 + - uid: 8103 components: - type: Transform - pos: 5.5,15.5 + pos: 4.5,27.5 parent: 2 - uid: 12890 components: @@ -10232,14 +11370,6 @@ entities: parent: 2 - proto: BlockGameArcade entities: - - uid: 1812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 2 - - type: SpamEmitSound - enabled: False - uid: 6617 components: - type: Transform @@ -10248,6 +11378,12 @@ entities: parent: 2 - type: SpamEmitSound enabled: False + - uid: 14655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,39.5 + parent: 2 - proto: Bonfire entities: - uid: 12709 @@ -10294,11 +11430,21 @@ entities: - type: Transform pos: 10.5,7.5 parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 57.5,34.5 + parent: 2 - uid: 5100 components: - type: Transform pos: 29.5,6.5 parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 57.5,33.5 + parent: 2 - proto: BoozeDispenser entities: - uid: 2921 @@ -10345,15 +11491,10 @@ entities: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 13607 + - uid: 14630 components: - type: Transform - pos: 59.5,31.5 - parent: 2 - - uid: 13608 - components: - - type: Transform - pos: 60.5,31.5 + pos: 82.5,31.5 parent: 2 - proto: BoxBeaker entities: @@ -10367,7 +11508,7 @@ entities: - uid: 8432 components: - type: Transform - pos: 41.499786,24.789263 + pos: 39.509068,21.682957 parent: 2 - proto: BoxBodyBag entities: @@ -10378,6 +11519,11 @@ entities: parent: 2 - proto: BoxFlare entities: + - uid: 7714 + components: + - type: Transform + pos: 4.504114,40.66977 + parent: 2 - uid: 8690 components: - type: Transform @@ -10385,10 +11531,10 @@ entities: parent: 2 - proto: BoxFlashbang entities: - - uid: 8433 + - uid: 6340 components: - type: Transform - pos: 40.45291,22.492388 + pos: 36.349575,28.40067 parent: 2 - uid: 8689 components: @@ -10424,8 +11570,27 @@ entities: - type: Transform pos: -1.3771312,-12.370462 parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 14568 + components: + - type: Transform + pos: 89.77968,28.605122 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 14155 + components: + - type: Transform + pos: 71.5,23.5 + parent: 2 - proto: BoxFolderRed entities: + - uid: 3138 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 - uid: 6900 components: - type: Transform @@ -10453,6 +11618,11 @@ entities: - type: Transform pos: 55.05479,-10.418922 parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 51.652344,4.5527577 + parent: 2 - proto: BoxFolderYellow entities: - uid: 50 @@ -10470,12 +11640,17 @@ entities: - type: Transform pos: 19.48426,-2.579442 parent: 2 + - uid: 14766 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 - proto: BoxHandcuff entities: - - uid: 8434 + - uid: 12242 components: - type: Transform - pos: 40.562286,22.648638 + pos: 36.634296,28.185242 parent: 2 - proto: BoxHeadset entities: @@ -10498,10 +11673,10 @@ entities: - type: Transform pos: 6.475267,-3.36308 parent: 2 - - uid: 2151 + - uid: 403 components: - type: Transform - pos: 10.494422,21.679125 + pos: 11.492475,20.667053 parent: 2 - uid: 5733 components: @@ -10529,10 +11704,10 @@ entities: parent: 2 - proto: BoxSechud entities: - - uid: 8691 + - uid: 7681 components: - type: Transform - pos: 41.4396,22.65098 + pos: 36.641243,28.595247 parent: 2 - proto: BoxSterileMask entities: @@ -10550,10 +11725,10 @@ entities: parent: 2 - proto: BoxZiptie entities: - - uid: 8435 + - uid: 2131 components: - type: Transform - pos: 41.124786,22.492388 + pos: 36.363464,27.983711 parent: 2 - proto: BrbSign entities: @@ -10565,7 +11740,7 @@ entities: - uid: 12269 components: - type: Transform - pos: 17.562185,24.7009 + pos: 20.494055,24.776628 parent: 2 - proto: BriefcaseBrown entities: @@ -10632,19 +11807,70 @@ entities: - uid: 2382 components: - type: Transform - pos: 47.47656,-6.4677296 + pos: 46.49411,-7.5341444 parent: 2 -- proto: CableApcExtension +- proto: ButtonFrameCaution entities: - - uid: 42 + - uid: 2045 components: - type: Transform - pos: 11.5,2.5 + rot: 1.5707963267948966 rad + pos: 52.5,33.5 parent: 2 - - uid: 51 + - uid: 8428 components: - type: Transform - pos: 6.5,15.5 + pos: 31.77084,21.463516 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.777786,17.53082 + parent: 2 + - uid: 10991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 6862 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 42 + components: + - type: Transform + pos: 11.5,2.5 parent: 2 - uid: 59 components: @@ -10656,16 +11882,66 @@ entities: - type: Transform pos: 9.5,-26.5 parent: 2 + - uid: 78 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 - uid: 92 components: - type: Transform pos: 19.5,-14.5 parent: 2 + - uid: 130 + components: + - type: Transform + pos: 55.5,49.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 55.5,50.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 - uid: 255 components: - type: Transform pos: 59.5,-3.5 parent: 2 + - uid: 349 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 - uid: 420 components: - type: Transform @@ -10676,6 +11952,16 @@ entities: - type: Transform pos: 20.5,-14.5 parent: 2 + - uid: 482 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 52.5,-11.5 + parent: 2 - uid: 675 components: - type: Transform @@ -10711,60 +11997,195 @@ entities: - type: Transform pos: 37.5,-42.5 parent: 2 + - uid: 953 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 2 - uid: 1009 components: - type: Transform pos: 11.5,-38.5 parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 19.5,-57.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 25.5,-57.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 - uid: 1173 components: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 - uid: 1194 components: - type: Transform - pos: -15.5,15.5 + pos: 19.5,24.5 parent: 2 - - uid: 1307 + - uid: 1208 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 1319 components: - type: Transform - pos: -7.5,15.5 + pos: 9.5,24.5 parent: 2 - uid: 1323 components: - type: Transform - pos: -11.5,15.5 + pos: 6.5,16.5 parent: 2 - - uid: 1327 + - uid: 1699 components: - type: Transform - pos: -12.5,15.5 + pos: 52.5,-12.5 parent: 2 - - uid: 1328 + - uid: 1738 components: - type: Transform - pos: -13.5,15.5 + pos: 38.5,-12.5 parent: 2 - - uid: 1329 + - uid: 1739 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1815 components: - type: Transform - pos: -14.5,15.5 + pos: 41.5,31.5 parent: 2 - uid: 1940 components: - type: Transform pos: 45.5,-28.5 parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 - uid: 2074 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 2135 + - uid: 2087 components: - type: Transform - pos: 12.5,18.5 + pos: 9.5,23.5 parent: 2 - uid: 2140 components: @@ -10776,6 +12197,51 @@ entities: - type: Transform pos: 13.5,18.5 parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -10796,6 +12262,11 @@ entities: - type: Transform pos: 52.5,-9.5 parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 - uid: 2438 components: - type: Transform @@ -10806,6 +12277,31 @@ entities: - type: Transform pos: 45.5,-26.5 parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 2 - uid: 2610 components: - type: Transform @@ -10816,6 +12312,246 @@ entities: - type: Transform pos: 45.5,-27.5 parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 56.5,36.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 - uid: 3284 components: - type: Transform @@ -10841,15 +12577,25 @@ entities: - type: Transform pos: 45.5,-32.5 parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 - uid: 3404 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 3461 + - uid: 3428 components: - type: Transform - pos: -17.5,16.5 + pos: 69.5,29.5 parent: 2 - uid: 3515 components: @@ -10886,11 +12632,6 @@ entities: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 4001 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - uid: 4005 components: - type: Transform @@ -10906,15 +12647,15 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 4026 + - uid: 4040 components: - type: Transform - pos: -8.5,15.5 + pos: 46.5,-25.5 parent: 2 - - uid: 4040 + - uid: 4113 components: - type: Transform - pos: 46.5,-25.5 + pos: -6.5,-7.5 parent: 2 - uid: 4190 components: @@ -10951,6 +12692,11 @@ entities: - type: Transform pos: 47.5,-33.5 parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 - uid: 4294 components: - type: Transform @@ -10961,6 +12707,31 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 - uid: 4677 components: - type: Transform @@ -11216,6 +12987,11 @@ entities: - type: Transform pos: 11.5,-34.5 parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 - uid: 4746 components: - type: Transform @@ -11321,15 +13097,10 @@ entities: - type: Transform pos: 18.5,-24.5 parent: 2 - - uid: 4767 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 4827 + - uid: 4791 components: - type: Transform - pos: -17.5,15.5 + pos: 8.5,16.5 parent: 2 - uid: 4882 components: @@ -11626,10 +13397,10 @@ entities: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 5105 + - uid: 5045 components: - type: Transform - pos: 38.5,-10.5 + pos: 5.5,40.5 parent: 2 - uid: 5121 components: @@ -11686,20 +13457,15 @@ entities: - type: Transform pos: 60.5,-3.5 parent: 2 - - uid: 5283 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - uid: 5286 + - uid: 5287 components: - type: Transform - pos: -6.5,15.5 + pos: 9.5,16.5 parent: 2 - - uid: 5296 + - uid: 5297 components: - type: Transform - pos: -10.5,15.5 + pos: 57.5,50.5 parent: 2 - uid: 5315 components: @@ -11796,16 +13562,6 @@ entities: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 5580 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 2 - - uid: 5581 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - uid: 5582 components: - type: Transform @@ -11976,6 +13732,36 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 - uid: 6460 components: - type: Transform @@ -12041,6 +13827,11 @@ entities: - type: Transform pos: 22.5,-17.5 parent: 2 + - uid: 6592 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 - uid: 6687 components: - type: Transform @@ -12321,60 +14112,45 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 - - uid: 6829 - components: - - type: Transform - pos: -4.5,15.5 - parent: 2 - - uid: 6830 + - uid: 6781 components: - type: Transform - pos: 3.5,15.5 + pos: 29.5,-52.5 parent: 2 - - uid: 6831 + - uid: 6816 components: - type: Transform - pos: -2.5,15.5 + pos: -20.5,-16.5 parent: 2 - - uid: 6836 + - uid: 6825 components: - type: Transform - pos: -0.5,15.5 + pos: 29.5,-50.5 parent: 2 - - uid: 6837 + - uid: 6829 components: - type: Transform - pos: -1.5,15.5 + pos: 29.5,-48.5 parent: 2 - - uid: 6853 + - uid: 6841 components: - type: Transform - pos: -3.5,15.5 + pos: -23.5,-13.5 parent: 2 - uid: 6855 components: - type: Transform - pos: -5.5,15.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - pos: 8.5,17.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - pos: 8.5,15.5 + pos: 29.5,-55.5 parent: 2 - uid: 6869 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 6870 + - uid: 6904 components: - type: Transform - pos: 9.5,18.5 + pos: 20.5,-57.5 parent: 2 - uid: 6920 components: @@ -12936,6 +14712,36 @@ entities: - type: Transform pos: 35.5,9.5 parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 - uid: 7273 components: - type: Transform @@ -12991,141 +14797,86 @@ entities: - type: Transform pos: 24.5,-27.5 parent: 2 - - uid: 7346 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - uid: 7376 components: - type: Transform pos: 41.5,-24.5 parent: 2 - - uid: 7452 - components: - - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 7453 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 7454 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 7588 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 7589 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 2 - - uid: 7590 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 - - uid: 7592 + - uid: 7435 components: - type: Transform - pos: -16.5,-13.5 + pos: -17.5,-0.5 parent: 2 - - uid: 7593 + - uid: 7436 components: - type: Transform - pos: -17.5,-13.5 + pos: -21.5,-0.5 parent: 2 - - uid: 7594 + - uid: 7437 components: - type: Transform - pos: -18.5,-13.5 + pos: -12.5,1.5 parent: 2 - - uid: 7596 + - uid: 7438 components: - type: Transform - pos: -19.5,-13.5 + pos: -23.5,-2.5 parent: 2 - - uid: 7597 + - uid: 7439 components: - type: Transform - pos: -20.5,-13.5 + pos: -19.5,-0.5 parent: 2 - - uid: 7598 + - uid: 7440 components: - type: Transform - pos: -19.5,-12.5 + pos: -23.5,-5.5 parent: 2 - - uid: 7599 + - uid: 7442 components: - type: Transform - pos: -14.5,-13.5 + pos: -23.5,-6.5 parent: 2 - - uid: 7600 + - uid: 7443 components: - type: Transform - pos: -13.5,-13.5 + pos: -21.5,-16.5 parent: 2 - - uid: 7601 + - uid: 7449 components: - type: Transform - pos: -12.5,-13.5 + pos: -22.5,-3.5 parent: 2 - - uid: 7602 + - uid: 7452 components: - type: Transform - pos: -11.5,-13.5 + pos: 13.5,16.5 parent: 2 - - uid: 7603 + - uid: 7453 components: - type: Transform - pos: -10.5,-13.5 + pos: 12.5,16.5 parent: 2 - - uid: 7604 + - uid: 7454 components: - type: Transform - pos: -9.5,-13.5 + pos: 12.5,17.5 parent: 2 - - uid: 7605 + - uid: 7551 components: - type: Transform - pos: -8.5,-13.5 + pos: -11.5,-0.5 parent: 2 - - uid: 7606 + - uid: 7589 components: - type: Transform - pos: -7.5,-13.5 + pos: -8.5,-0.5 parent: 2 - uid: 7607 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 7608 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 2 - - uid: 7613 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - uid: 7614 components: - type: Transform @@ -13351,31 +15102,6 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 7661 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 7665 - components: - - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 7673 - components: - - type: Transform - pos: 5.5,15.5 - parent: 2 - - uid: 7677 - components: - - type: Transform - pos: 8.5,16.5 - parent: 2 - - uid: 7680 - components: - - type: Transform - pos: 1.5,15.5 - parent: 2 - uid: 7682 components: - type: Transform @@ -13481,85 +15207,100 @@ entities: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 7714 + - uid: 7713 components: - type: Transform - pos: 7.5,15.5 + pos: -13.5,-0.5 parent: 2 - - uid: 7823 + - uid: 7719 components: - type: Transform - pos: 11.5,-39.5 + pos: -12.5,-0.5 parent: 2 - - uid: 7885 + - uid: 7723 components: - type: Transform - pos: 4.5,15.5 + pos: -10.5,0.5 parent: 2 - - uid: 7964 + - uid: 7724 components: - type: Transform - pos: 7.5,17.5 + pos: -14.5,-0.5 parent: 2 - - uid: 7965 + - uid: 7727 components: - type: Transform - pos: 6.5,17.5 + pos: 7.5,21.5 parent: 2 - - uid: 7966 + - uid: 7742 components: - type: Transform - pos: 5.5,17.5 + pos: -10.5,-0.5 parent: 2 - - uid: 7967 + - uid: 7746 components: - type: Transform - pos: 5.5,18.5 + pos: -9.5,-0.5 parent: 2 - - uid: 8024 + - uid: 7748 components: - type: Transform - pos: 14.5,18.5 + pos: -15.5,-0.5 parent: 2 - - uid: 8025 + - uid: 7823 components: - type: Transform - pos: 15.5,18.5 + pos: 11.5,-39.5 parent: 2 - - uid: 8026 + - uid: 7824 components: - type: Transform - pos: 16.5,18.5 + pos: -23.5,-10.5 parent: 2 - - uid: 8027 + - uid: 7841 components: - type: Transform - pos: 17.5,18.5 + pos: 4.5,26.5 parent: 2 - - uid: 8028 + - uid: 7876 components: - type: Transform - pos: 16.5,23.5 + pos: 15.5,36.5 parent: 2 - - uid: 8029 + - uid: 7888 components: - type: Transform - pos: 17.5,23.5 + pos: 13.5,-50.5 parent: 2 - - uid: 8030 + - uid: 7942 components: - type: Transform - pos: 18.5,23.5 + pos: -23.5,-12.5 parent: 2 - - uid: 8031 + - uid: 7972 components: - type: Transform - pos: 19.5,23.5 + pos: 7.5,38.5 parent: 2 - - uid: 8032 + - uid: 8024 components: - type: Transform - pos: 19.5,22.5 + pos: 14.5,18.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: 17.5,18.5 parent: 2 - uid: 8033 components: @@ -13616,26 +15357,11 @@ entities: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 8044 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - - uid: 8045 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - uid: 8046 components: - type: Transform pos: 14.5,25.5 parent: 2 - - uid: 8047 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - uid: 8048 components: - type: Transform @@ -13656,11 +15382,6 @@ entities: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 8052 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - uid: 8053 components: - type: Transform @@ -13696,25 +15417,10 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 8060 - components: - - type: Transform - pos: 8.5,24.5 - parent: 2 - - uid: 8061 - components: - - type: Transform - pos: 8.5,23.5 - parent: 2 - uid: 8062 components: - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 8063 - components: - - type: Transform - pos: 8.5,21.5 + pos: 39.5,41.5 parent: 2 - uid: 8064 components: @@ -13731,11 +15437,6 @@ entities: - type: Transform pos: 12.5,22.5 parent: 2 - - uid: 8067 - components: - - type: Transform - pos: 12.5,21.5 - parent: 2 - uid: 8068 components: - type: Transform @@ -13766,20 +15467,10 @@ entities: - type: Transform pos: 12.5,28.5 parent: 2 - - uid: 8074 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - uid: 8075 components: - type: Transform - pos: 12.5,30.5 - parent: 2 - - uid: 8076 - components: - - type: Transform - pos: 12.5,31.5 + pos: 4.5,24.5 parent: 2 - uid: 8077 components: @@ -13796,35 +15487,10 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 - - uid: 8080 - components: - - type: Transform - pos: 9.5,29.5 - parent: 2 - - uid: 8081 - components: - - type: Transform - pos: 9.5,30.5 - parent: 2 - uid: 8082 components: - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 8083 - components: - - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 8084 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 8085 - components: - - type: Transform - pos: 6.5,31.5 + pos: 13.5,-48.5 parent: 2 - uid: 8086 components: @@ -13901,61 +15567,11 @@ entities: - type: Transform pos: 22.5,27.5 parent: 2 - - uid: 8101 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - - uid: 8102 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 8104 - components: - - type: Transform - pos: 11.5,33.5 - parent: 2 - - uid: 8105 - components: - - type: Transform - pos: 11.5,34.5 - parent: 2 - - uid: 8106 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - uid: 8107 - components: - - type: Transform - pos: 11.5,36.5 - parent: 2 - - uid: 8108 - components: - - type: Transform - pos: 13.5,35.5 - parent: 2 - uid: 8109 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 8110 - components: - - type: Transform - pos: 13.5,37.5 - parent: 2 - - uid: 8111 - components: - - type: Transform - pos: 13.5,38.5 - parent: 2 - uid: 8112 components: - type: Transform @@ -14131,125 +15747,90 @@ entities: - type: Transform pos: 6.5,10.5 parent: 2 - - uid: 8178 - components: - - type: Transform - pos: 11.5,-40.5 - parent: 2 - - uid: 8285 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 8305 - components: - - type: Transform - pos: 52.5,-8.5 - parent: 2 - - uid: 8347 - components: - - type: Transform - pos: 63.5,48.5 - parent: 2 - - uid: 8389 - components: - - type: Transform - pos: 36.5,29.5 - parent: 2 - - uid: 8391 + - uid: 8164 components: - type: Transform - pos: 36.5,30.5 + pos: 16.5,-40.5 parent: 2 - - uid: 8392 + - uid: 8174 components: - type: Transform - pos: 37.5,30.5 + pos: 29.5,-49.5 parent: 2 - - uid: 8393 + - uid: 8178 components: - type: Transform - pos: 38.5,30.5 + pos: 11.5,-40.5 parent: 2 - - uid: 8394 + - uid: 8189 components: - type: Transform - pos: 40.5,30.5 + pos: 3.5,26.5 parent: 2 - - uid: 8395 + - uid: 8220 components: - type: Transform - pos: 40.5,31.5 + pos: 13.5,-46.5 parent: 2 - - uid: 8396 + - uid: 8221 components: - type: Transform - pos: 39.5,30.5 + pos: 13.5,-47.5 parent: 2 - - uid: 8397 + - uid: 8222 components: - type: Transform - pos: 40.5,32.5 + pos: 13.5,-45.5 parent: 2 - - uid: 8398 + - uid: 8285 components: - type: Transform - pos: 40.5,33.5 + pos: 41.5,21.5 parent: 2 - - uid: 8399 + - uid: 8305 components: - type: Transform - pos: 40.5,34.5 + pos: 52.5,-8.5 parent: 2 - - uid: 8400 + - uid: 8347 components: - type: Transform - pos: 39.5,34.5 + pos: 63.5,48.5 parent: 2 - - uid: 8401 + - uid: 8358 components: - type: Transform - pos: 38.5,34.5 + pos: 37.5,18.5 parent: 2 - - uid: 8402 + - uid: 8385 components: - type: Transform - pos: 37.5,34.5 + pos: 35.5,28.5 parent: 2 - - uid: 8403 + - uid: 8386 components: - type: Transform - pos: 40.5,35.5 + pos: 35.5,24.5 parent: 2 - - uid: 8404 + - uid: 8387 components: - type: Transform - pos: 41.5,35.5 + pos: 35.5,25.5 parent: 2 - - uid: 8405 + - uid: 8388 components: - type: Transform - pos: 41.5,36.5 + pos: 35.5,26.5 parent: 2 - - uid: 8406 + - uid: 8394 components: - type: Transform - pos: 41.5,32.5 + pos: 36.5,18.5 parent: 2 - uid: 8407 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 8408 - components: - - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 8409 - components: - - type: Transform - pos: 42.5,33.5 + pos: 59.5,36.5 parent: 2 - uid: 8448 components: @@ -14294,22 +15875,7 @@ entities: - uid: 8472 components: - type: Transform - pos: 37.5,25.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 8474 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: 34.5,25.5 + pos: 35.5,27.5 parent: 2 - uid: 8476 components: @@ -14346,11 +15912,6 @@ entities: - type: Transform pos: 31.5,29.5 parent: 2 - - uid: 8483 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - uid: 8484 components: - type: Transform @@ -14411,21 +15972,11 @@ entities: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 8496 - components: - - type: Transform - pos: 40.5,18.5 - parent: 2 - uid: 8497 components: - type: Transform pos: 39.5,18.5 parent: 2 - - uid: 8498 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - uid: 8499 components: - type: Transform @@ -14586,10 +16137,15 @@ entities: - type: Transform pos: 39.5,26.5 parent: 2 - - uid: 8703 + - uid: 8661 components: - type: Transform - pos: 47.5,28.5 + pos: 55.5,32.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 56.5,37.5 parent: 2 - uid: 8704 components: @@ -14621,11 +16177,6 @@ entities: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 8713 - components: - - type: Transform - pos: 46.5,27.5 - parent: 2 - uid: 8714 components: - type: Transform @@ -14701,6 +16252,11 @@ entities: - type: Transform pos: 45.5,41.5 parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 - uid: 9131 components: - type: Transform @@ -14906,11 +16462,6 @@ entities: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 9175 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - uid: 9176 components: - type: Transform @@ -14929,7 +16480,7 @@ entities: - uid: 9179 components: - type: Transform - pos: 30.5,34.5 + pos: 54.5,39.5 parent: 2 - uid: 9180 components: @@ -15161,11 +16712,6 @@ entities: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 9233 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - uid: 9234 components: - type: Transform @@ -15176,25 +16722,10 @@ entities: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 9236 - components: - - type: Transform - pos: 31.5,32.5 - parent: 2 - uid: 9237 components: - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 9238 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 9239 - components: - - type: Transform - pos: 34.5,32.5 + pos: 58.5,32.5 parent: 2 - uid: 9240 components: @@ -15211,11 +16742,6 @@ entities: - type: Transform pos: 34.5,35.5 parent: 2 - - uid: 9243 - components: - - type: Transform - pos: 34.5,36.5 - parent: 2 - uid: 9244 components: - type: Transform @@ -15406,16 +16932,6 @@ entities: - type: Transform pos: 49.5,48.5 parent: 2 - - uid: 9296 - components: - - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 9297 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 9298 components: - type: Transform @@ -15571,16 +17087,6 @@ entities: - type: Transform pos: 69.5,28.5 parent: 2 - - uid: 9333 - components: - - type: Transform - pos: 69.5,29.5 - parent: 2 - - uid: 9334 - components: - - type: Transform - pos: 69.5,30.5 - parent: 2 - uid: 9335 components: - type: Transform @@ -15646,6 +17152,11 @@ entities: - type: Transform pos: 70.5,39.5 parent: 2 + - uid: 9454 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 - uid: 9694 components: - type: Transform @@ -15711,21 +17222,6 @@ entities: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 9707 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - - uid: 9708 - components: - - type: Transform - pos: 52.5,-12.5 - parent: 2 - - uid: 9709 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - uid: 9710 components: - type: Transform @@ -16211,21 +17707,6 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 9956 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: 52.5,-18.5 - parent: 2 - - uid: 9958 - components: - - type: Transform - pos: 53.5,-18.5 - parent: 2 - uid: 9959 components: - type: Transform @@ -16646,6 +18127,11 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 - uid: 10103 components: - type: Transform @@ -17336,6 +18822,11 @@ entities: - type: Transform pos: 41.5,6.5 parent: 2 + - uid: 10928 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 - uid: 10932 components: - type: Transform @@ -18021,6 +19512,16 @@ entities: - type: Transform pos: 61.5,0.5 parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 - uid: 11750 components: - type: Transform @@ -18621,6 +20122,21 @@ entities: - type: Transform pos: 70.5,-17.5 parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 - uid: 12500 components: - type: Transform @@ -18911,6 +20427,36 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 + - uid: 12666 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 - uid: 12949 components: - type: Transform @@ -19051,3323 +20597,3758 @@ entities: - type: Transform pos: 43.5,-48.5 parent: 2 - - uid: 13438 + - uid: 13140 components: - type: Transform - pos: 11.5,-41.5 + pos: 18.5,19.5 parent: 2 - - uid: 13449 + - uid: 13146 components: - type: Transform - pos: 11.5,-42.5 + pos: -18.5,-0.5 parent: 2 - - uid: 13466 + - uid: 13147 components: - type: Transform - pos: 10.5,-42.5 + pos: -20.5,-0.5 parent: 2 - - uid: 13530 + - uid: 13148 components: - type: Transform - pos: 55.5,37.5 + pos: -23.5,-0.5 parent: 2 - - uid: 13531 + - uid: 13149 components: - type: Transform - pos: 54.5,37.5 + pos: -23.5,-1.5 parent: 2 - - uid: 13532 + - uid: 13150 components: - type: Transform - pos: 54.5,36.5 + pos: -23.5,-4.5 parent: 2 - - uid: 13533 + - uid: 13152 components: - type: Transform - pos: 54.5,35.5 + pos: -23.5,-3.5 parent: 2 - - uid: 13534 + - uid: 13181 components: - type: Transform - pos: 54.5,34.5 + pos: -23.5,-8.5 parent: 2 - - uid: 13535 + - uid: 13182 components: - type: Transform - pos: 55.5,34.5 + pos: -23.5,-7.5 parent: 2 - - uid: 13536 + - uid: 13244 components: - type: Transform - pos: 56.5,34.5 + pos: -22.5,-16.5 parent: 2 - - uid: 13537 + - uid: 13247 components: - type: Transform - pos: 57.5,34.5 + pos: -23.5,-18.5 parent: 2 - - uid: 13538 + - uid: 13252 components: - type: Transform - pos: 58.5,34.5 + pos: -6.5,-17.5 parent: 2 - - uid: 13539 + - uid: 13253 components: - type: Transform - pos: 56.5,35.5 + pos: -6.5,-16.5 parent: 2 - - uid: 13543 + - uid: 13254 components: - type: Transform - pos: 56.5,30.5 + pos: -6.5,-15.5 parent: 2 - - uid: 13544 + - uid: 13256 components: - type: Transform - pos: 56.5,29.5 + pos: -6.5,-14.5 parent: 2 - - uid: 13545 + - uid: 13262 components: - type: Transform - pos: 56.5,28.5 + pos: -20.5,-9.5 parent: 2 - - uid: 13546 + - uid: 13272 components: - type: Transform - pos: 55.5,30.5 + pos: -8.5,-16.5 parent: 2 - - uid: 13547 + - uid: 13278 components: - type: Transform - pos: 54.5,30.5 + pos: -10.5,1.5 parent: 2 - - uid: 13548 + - uid: 13280 components: - type: Transform - pos: 53.5,30.5 + pos: -12.5,0.5 parent: 2 - - uid: 13549 + - uid: 13304 components: - type: Transform - pos: 52.5,30.5 + pos: -21.5,-9.5 parent: 2 - - uid: 13550 + - uid: 13438 components: - type: Transform - pos: 57.5,30.5 + pos: 11.5,-41.5 parent: 2 - - uid: 13551 + - uid: 13449 components: - type: Transform - pos: 58.5,30.5 + pos: 11.5,-42.5 parent: 2 - - uid: 13552 + - uid: 13466 components: - type: Transform - pos: 59.5,30.5 + pos: 10.5,-42.5 parent: 2 - - uid: 13553 + - uid: 13509 components: - type: Transform - pos: 60.5,30.5 + pos: 54.5,32.5 parent: 2 - - uid: 13554 + - uid: 13513 components: - type: Transform - pos: 59.5,34.5 + pos: 57.5,40.5 parent: 2 - - uid: 13555 + - uid: 13516 components: - type: Transform - pos: 60.5,34.5 + pos: 58.5,40.5 parent: 2 - - uid: 13556 + - uid: 13528 components: - type: Transform - pos: 61.5,34.5 + pos: 57.5,32.5 parent: 2 - - uid: 13557 + - uid: 13570 components: - type: Transform - pos: 62.5,34.5 + pos: 47.5,28.5 parent: 2 - - uid: 13558 + - uid: 13669 components: - type: Transform - pos: 62.5,33.5 + pos: -23.5,-20.5 parent: 2 - - uid: 13559 + - uid: 13670 components: - type: Transform - pos: 62.5,32.5 + pos: -23.5,-21.5 parent: 2 - - uid: 13560 + - uid: 13671 components: - type: Transform - pos: 62.5,35.5 + pos: -23.5,-22.5 parent: 2 - - uid: 13561 + - uid: 13672 components: - type: Transform - pos: 62.5,36.5 + pos: -23.5,-19.5 parent: 2 - - uid: 13562 + - uid: 13673 components: - type: Transform - pos: 62.5,37.5 + pos: -24.5,-22.5 parent: 2 - - uid: 13563 + - uid: 13674 components: - type: Transform - pos: 62.5,38.5 + pos: -25.5,-22.5 parent: 2 - - uid: 13564 + - uid: 13675 components: - type: Transform - pos: 62.5,39.5 + pos: -26.5,-22.5 parent: 2 - - uid: 13565 + - uid: 13676 components: - type: Transform - pos: 61.5,39.5 + pos: -24.5,-20.5 parent: 2 - - uid: 13566 + - uid: 13677 components: - type: Transform - pos: 61.5,40.5 + pos: -25.5,-20.5 parent: 2 - - uid: 13567 + - uid: 13678 components: - type: Transform - pos: 60.5,40.5 + pos: -26.5,-20.5 parent: 2 - - uid: 13568 + - uid: 13706 components: - type: Transform - pos: 59.5,40.5 + pos: 3.5,24.5 parent: 2 - - uid: 13569 + - uid: 13707 components: - type: Transform - pos: 59.5,41.5 + pos: 13.5,-49.5 parent: 2 - - uid: 13570 + - uid: 13711 components: - type: Transform - pos: 58.5,41.5 + pos: 6.5,-22.5 parent: 2 - - uid: 13571 + - uid: 13712 components: - type: Transform - pos: 57.5,41.5 + pos: 6.5,-21.5 parent: 2 - - uid: 13572 + - uid: 13713 components: - type: Transform - pos: 56.5,41.5 + pos: 6.5,-20.5 parent: 2 - - uid: 13573 + - uid: 13714 components: - type: Transform - pos: 55.5,41.5 + pos: 6.5,-19.5 parent: 2 - - uid: 13574 + - uid: 13784 components: - type: Transform - pos: 54.5,41.5 + pos: -4.5,-21.5 parent: 2 - - uid: 13575 + - uid: 13854 components: - type: Transform - pos: 53.5,41.5 + pos: -22.5,-22.5 parent: 2 - - uid: 13576 + - uid: 13855 components: - type: Transform - pos: 53.5,40.5 + pos: -21.5,-22.5 parent: 2 - - uid: 13577 + - uid: 13856 components: - type: Transform - pos: 52.5,40.5 + pos: -20.5,-22.5 parent: 2 - - uid: 13578 + - uid: 13857 components: - type: Transform - pos: 51.5,40.5 + pos: -19.5,-22.5 parent: 2 - - uid: 13579 + - uid: 13858 components: - type: Transform - pos: 51.5,39.5 + pos: -18.5,-22.5 parent: 2 - - uid: 13580 + - uid: 13859 components: - type: Transform - pos: 50.5,39.5 + pos: -17.5,-22.5 parent: 2 - - uid: 13581 + - uid: 13860 components: - type: Transform - pos: 50.5,38.5 + pos: -15.5,-22.5 parent: 2 - - uid: 13582 + - uid: 13861 components: - type: Transform - pos: 50.5,37.5 + pos: -14.5,-22.5 parent: 2 - - uid: 13583 + - uid: 13862 components: - type: Transform - pos: 50.5,36.5 + pos: -13.5,-22.5 parent: 2 - - uid: 13584 + - uid: 13863 components: - type: Transform - pos: 50.5,35.5 + pos: -12.5,-22.5 parent: 2 - - uid: 13585 + - uid: 13864 components: - type: Transform - pos: 50.5,34.5 + pos: -11.5,-22.5 parent: 2 - - uid: 13586 + - uid: 13865 components: - type: Transform - pos: 50.5,33.5 + pos: -10.5,-22.5 parent: 2 - - uid: 13587 + - uid: 13866 components: - type: Transform - pos: 50.5,32.5 + pos: -16.5,-22.5 parent: 2 - - uid: 13588 + - uid: 13867 components: - type: Transform - pos: 53.5,34.5 + pos: -8.5,-22.5 parent: 2 - - uid: 13589 + - uid: 13868 components: - type: Transform - pos: 52.5,34.5 + pos: -7.5,-22.5 parent: 2 - - uid: 13590 + - uid: 13869 components: - type: Transform - pos: 51.5,34.5 + pos: -9.5,-22.5 parent: 2 - - uid: 13612 + - uid: 13871 components: - type: Transform - pos: 58.5,31.5 + pos: -6.5,-18.5 parent: 2 - - uid: 13613 + - uid: 13872 components: - type: Transform - pos: 58.5,32.5 + pos: -6.5,-19.5 parent: 2 - - uid: 13711 + - uid: 13874 components: - type: Transform - pos: 6.5,-22.5 + pos: -3.5,-21.5 parent: 2 - - uid: 13712 + - uid: 13876 components: - type: Transform - pos: 6.5,-21.5 + pos: 1.5,-16.5 parent: 2 - - uid: 13713 + - uid: 13877 components: - type: Transform - pos: 6.5,-20.5 + pos: 1.5,-17.5 parent: 2 - - uid: 13714 + - uid: 13878 components: - type: Transform - pos: 6.5,-19.5 + pos: 1.5,-18.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 5386 + - uid: 13879 components: - type: Transform - pos: 50.555935,8.595494 + pos: 1.5,-19.5 parent: 2 - - uid: 5387 + - uid: 13880 components: - type: Transform - pos: 50.555935,8.595494 + pos: 1.5,-20.5 parent: 2 - - uid: 5627 + - uid: 13881 components: - type: Transform - pos: 17.749475,-23.290428 + pos: 1.5,-21.5 parent: 2 - - uid: 11130 + - uid: 13882 components: - type: Transform - pos: 54.504898,-15.262592 + pos: 0.5,-21.5 parent: 2 -- proto: CableApcStack1 - entities: - - uid: 6180 + - uid: 13883 components: - type: Transform - pos: 84.31913,7.409586 + pos: -0.5,-21.5 parent: 2 -- proto: CableHV - entities: - - uid: 11 + - uid: 13884 components: - type: Transform - pos: 13.5,-12.5 + pos: -1.5,-21.5 parent: 2 - - uid: 29 + - uid: 13885 components: - type: Transform - pos: 12.5,33.5 + pos: -2.5,-21.5 parent: 2 - - uid: 61 + - uid: 14069 components: - type: Transform - pos: 15.5,-13.5 + pos: -5.5,-21.5 parent: 2 - - uid: 63 + - uid: 14070 components: - type: Transform - pos: 16.5,-11.5 + pos: -6.5,-21.5 parent: 2 - - uid: 64 + - uid: 14120 components: - type: Transform - pos: 15.5,-11.5 + pos: 72.5,21.5 parent: 2 - - uid: 65 + - uid: 14121 components: - type: Transform - pos: 14.5,-11.5 + pos: 72.5,24.5 parent: 2 - - uid: 66 + - uid: 14122 components: - type: Transform - pos: 13.5,-11.5 + pos: 74.5,23.5 parent: 2 - - uid: 318 + - uid: 14123 components: - type: Transform - pos: 64.5,15.5 + pos: 72.5,22.5 parent: 2 - - uid: 319 + - uid: 14136 components: - type: Transform - pos: 63.5,15.5 + pos: 71.5,20.5 parent: 2 - - uid: 591 + - uid: 14137 components: - type: Transform - pos: 60.5,19.5 + pos: 72.5,20.5 parent: 2 - - uid: 603 + - uid: 14138 components: - type: Transform - pos: 42.5,41.5 + pos: 73.5,20.5 parent: 2 - - uid: 628 + - uid: 14139 components: - type: Transform - pos: 60.5,18.5 + pos: 74.5,20.5 parent: 2 - - uid: 669 + - uid: 14140 components: - type: Transform - pos: 60.5,20.5 + pos: 70.5,20.5 parent: 2 - - uid: 803 + - uid: 14141 components: - type: Transform - pos: 23.5,-37.5 + pos: 69.5,20.5 parent: 2 - - uid: 828 + - uid: 14142 components: - type: Transform - pos: 24.5,-36.5 + pos: 69.5,21.5 parent: 2 - - uid: 829 + - uid: 14143 components: - type: Transform - pos: 19.5,-39.5 + pos: 69.5,22.5 parent: 2 - - uid: 830 + - uid: 14144 components: - type: Transform - pos: 17.5,-41.5 + pos: 69.5,23.5 parent: 2 - - uid: 1015 + - uid: 14147 components: - type: Transform - pos: 23.5,-36.5 + pos: 72.5,23.5 parent: 2 - - uid: 1026 + - uid: 14148 components: - type: Transform - pos: 25.5,-42.5 + pos: 73.5,23.5 parent: 2 - - uid: 1027 + - uid: 14444 components: - type: Transform - pos: 25.5,-41.5 + pos: 80.5,32.5 parent: 2 - - uid: 1223 + - uid: 14445 components: - type: Transform - pos: 62.5,15.5 + pos: 80.5,33.5 parent: 2 - - uid: 1230 + - uid: 14446 components: - type: Transform - pos: 61.5,15.5 + pos: 81.5,33.5 parent: 2 - - uid: 1231 + - uid: 14447 components: - type: Transform - pos: 60.5,15.5 + pos: 82.5,33.5 parent: 2 - - uid: 1256 + - uid: 14448 components: - type: Transform - pos: 64.5,18.5 + pos: 80.5,31.5 parent: 2 - - uid: 1275 + - uid: 14449 components: - type: Transform - pos: 60.5,16.5 + pos: 80.5,30.5 parent: 2 - - uid: 1469 + - uid: 14450 components: - type: Transform - pos: 25.5,-36.5 + pos: 81.5,30.5 parent: 2 - - uid: 1941 + - uid: 14451 components: - type: Transform - pos: 24.5,-28.5 + pos: 82.5,30.5 parent: 2 - - uid: 2332 + - uid: 14452 components: - type: Transform - pos: 43.5,41.5 + pos: 81.5,29.5 parent: 2 - - uid: 2387 + - uid: 14453 components: - type: Transform - pos: 25.5,-28.5 + pos: 81.5,28.5 parent: 2 - - uid: 2711 + - uid: 14454 components: - type: Transform - pos: 117.5,-15.5 + pos: 81.5,27.5 parent: 2 - - uid: 2832 + - uid: 14455 components: - type: Transform - pos: 23.5,-28.5 + pos: 88.5,28.5 parent: 2 - - uid: 2988 + - uid: 14456 components: - type: Transform - pos: 22.5,4.5 + pos: 88.5,29.5 parent: 2 - - uid: 2989 + - uid: 14457 components: - type: Transform - pos: 22.5,6.5 + pos: 88.5,30.5 parent: 2 - - uid: 3012 + - uid: 14458 components: - type: Transform - pos: 22.5,9.5 + pos: 87.5,30.5 parent: 2 - - uid: 3980 + - uid: 14459 components: - type: Transform - pos: 23.5,-41.5 + pos: 86.5,30.5 parent: 2 - - uid: 4020 + - uid: 14460 components: - type: Transform - pos: 26.5,-42.5 + pos: 85.5,30.5 parent: 2 - - uid: 4123 + - uid: 14461 components: - type: Transform - pos: 64.5,17.5 + pos: 84.5,30.5 parent: 2 - - uid: 4127 + - uid: 14462 components: - type: Transform - pos: 60.5,21.5 + pos: 89.5,30.5 parent: 2 - - uid: 4128 + - uid: 14463 components: - type: Transform - pos: 60.5,22.5 + pos: 90.5,30.5 parent: 2 - - uid: 4129 + - uid: 14464 components: - type: Transform - pos: 60.5,25.5 + pos: 91.5,30.5 parent: 2 - - uid: 4130 + - uid: 14465 components: - type: Transform - pos: 60.5,24.5 + pos: 92.5,30.5 parent: 2 - - uid: 4131 + - uid: 14466 components: - type: Transform - pos: 60.5,23.5 + pos: 92.5,31.5 parent: 2 - - uid: 4132 + - uid: 14467 components: - type: Transform - pos: 59.5,25.5 + pos: 92.5,32.5 parent: 2 - - uid: 4133 + - uid: 14468 components: - type: Transform - pos: 58.5,25.5 + pos: 93.5,32.5 parent: 2 - - uid: 4134 + - uid: 14469 components: - type: Transform - pos: 57.5,25.5 + pos: 94.5,32.5 parent: 2 - - uid: 4135 + - uid: 14470 components: - type: Transform - pos: 56.5,25.5 + pos: 95.5,32.5 parent: 2 - - uid: 4188 + - uid: 14471 components: - type: Transform - pos: 64.5,19.5 + pos: 96.5,32.5 parent: 2 - - uid: 4213 + - uid: 14472 components: - type: Transform - pos: 22.5,8.5 + pos: 96.5,31.5 parent: 2 - - uid: 4218 + - uid: 14473 components: - type: Transform - pos: 22.5,10.5 + pos: 92.5,29.5 parent: 2 - - uid: 4227 + - uid: 14474 components: - type: Transform - pos: 22.5,7.5 + pos: 92.5,28.5 parent: 2 - - uid: 4307 + - uid: 14475 components: - type: Transform - pos: 17.5,-40.5 + pos: 93.5,28.5 parent: 2 - - uid: 4308 + - uid: 14476 components: - type: Transform - pos: 16.5,-37.5 + pos: 94.5,28.5 parent: 2 - - uid: 4335 + - uid: 14477 components: - type: Transform - pos: 17.5,-39.5 + pos: 95.5,28.5 parent: 2 - - uid: 4336 + - uid: 14478 components: - type: Transform - pos: 18.5,-39.5 + pos: 96.5,28.5 parent: 2 - - uid: 4337 + - uid: 14479 components: - type: Transform - pos: 23.5,-42.5 + pos: 96.5,29.5 parent: 2 - - uid: 4504 + - uid: 14625 components: - type: Transform - pos: 25.5,-40.5 + pos: 64.5,45.5 parent: 2 - - uid: 4505 + - uid: 14626 components: - type: Transform - pos: 25.5,-39.5 + pos: 64.5,44.5 parent: 2 - - uid: 4506 + - uid: 14634 components: - type: Transform - pos: 24.5,-39.5 + pos: 79.5,33.5 parent: 2 - - uid: 4507 + - uid: 14635 components: - type: Transform - pos: 23.5,-39.5 + pos: 82.5,34.5 parent: 2 - - uid: 4508 + - uid: 14636 components: - type: Transform - pos: 23.5,-38.5 + pos: 81.5,26.5 parent: 2 - - uid: 4509 + - uid: 14637 components: - type: Transform - pos: 23.5,-40.5 + pos: 81.5,25.5 parent: 2 - - uid: 4510 + - uid: 14638 components: - type: Transform - pos: 23.5,-43.5 + pos: 81.5,24.5 parent: 2 - - uid: 4511 + - uid: 14640 components: - type: Transform - pos: 22.5,-43.5 + pos: 35.5,29.5 parent: 2 - - uid: 4512 + - uid: 14681 components: - type: Transform - pos: 21.5,-43.5 + pos: 13.5,19.5 parent: 2 - - uid: 4513 + - uid: 14682 components: - type: Transform - pos: 20.5,-43.5 + pos: 13.5,20.5 parent: 2 - - uid: 4514 + - uid: 14683 components: - type: Transform - pos: 19.5,-43.5 + pos: 13.5,21.5 parent: 2 - - uid: 4515 + - uid: 14684 components: - type: Transform - pos: 19.5,-41.5 + pos: 14.5,21.5 parent: 2 - - uid: 4516 + - uid: 14692 components: - type: Transform - pos: 19.5,-42.5 + pos: 6.5,17.5 parent: 2 - - uid: 4517 + - uid: 14693 components: - type: Transform - pos: 19.5,-40.5 + pos: 6.5,18.5 parent: 2 - - uid: 4518 + - uid: 14694 components: - type: Transform - pos: 17.5,-42.5 + pos: 5.5,18.5 parent: 2 - - uid: 4519 + - uid: 14695 components: - type: Transform - pos: 16.5,-42.5 + pos: 7.5,18.5 parent: 2 - - uid: 4520 + - uid: 14696 components: - type: Transform - pos: 26.5,-36.5 + pos: 8.5,18.5 parent: 2 - - uid: 4521 + - uid: 14697 components: - type: Transform - pos: 27.5,-36.5 + pos: 8.5,19.5 parent: 2 - - uid: 4522 + - uid: 14699 components: - type: Transform - pos: 28.5,-36.5 + pos: 6.5,15.5 parent: 2 - - uid: 4523 + - uid: 14700 components: - type: Transform - pos: 29.5,-36.5 + pos: 5.5,15.5 parent: 2 - - uid: 4524 + - uid: 14715 components: - type: Transform - pos: 30.5,-36.5 + pos: 10.5,33.5 parent: 2 - - uid: 4525 + - uid: 14716 components: - type: Transform - pos: 31.5,-36.5 + pos: 8.5,33.5 parent: 2 - - uid: 4526 + - uid: 14717 components: - type: Transform - pos: 31.5,-37.5 + pos: 9.5,33.5 parent: 2 - - uid: 4527 + - uid: 14718 components: - type: Transform - pos: 31.5,-38.5 + pos: 7.5,33.5 parent: 2 - - uid: 4528 + - uid: 14719 components: - type: Transform - pos: 30.5,-38.5 + pos: 6.5,33.5 parent: 2 - - uid: 4529 + - uid: 14720 components: - type: Transform - pos: 30.5,-39.5 + pos: 5.5,33.5 parent: 2 - - uid: 4530 + - uid: 14721 components: - type: Transform - pos: 30.5,-40.5 + pos: 5.5,34.5 parent: 2 - - uid: 4531 + - uid: 14722 components: - type: Transform - pos: 30.5,-41.5 + pos: 5.5,35.5 parent: 2 - - uid: 4532 + - uid: 14723 components: - type: Transform - pos: 30.5,-42.5 + pos: 5.5,36.5 parent: 2 - - uid: 4533 + - uid: 14728 components: - type: Transform - pos: 30.5,-43.5 + pos: 52.5,-13.5 parent: 2 - - uid: 4534 + - uid: 14729 components: - type: Transform - pos: 30.5,-44.5 + pos: 8.5,32.5 parent: 2 - - uid: 4535 + - uid: 14730 components: - type: Transform - pos: 26.5,-35.5 + pos: 8.5,31.5 parent: 2 - - uid: 4536 + - uid: 14732 components: - type: Transform - pos: 26.5,-34.5 + pos: 6.5,32.5 parent: 2 - - uid: 4537 + - uid: 14733 components: - type: Transform - pos: 26.5,-33.5 + pos: 6.5,31.5 parent: 2 - - uid: 4538 + - uid: 14743 components: - type: Transform - pos: 26.5,-32.5 + pos: 6.5,38.5 parent: 2 - - uid: 4541 + - uid: 14744 components: - type: Transform - pos: 25.5,-32.5 + pos: 5.5,38.5 parent: 2 - - uid: 4542 + - uid: 14763 components: - type: Transform - pos: 27.5,-32.5 + pos: 9.5,18.5 parent: 2 - - uid: 4543 + - uid: 14905 components: - type: Transform - pos: 25.5,-31.5 + pos: 8.5,30.5 parent: 2 - - uid: 4544 + - uid: 14906 components: - type: Transform - pos: 26.5,-31.5 + pos: 12.5,29.5 parent: 2 - - uid: 4545 + - uid: 14907 components: - type: Transform - pos: 27.5,-31.5 + pos: 12.5,30.5 parent: 2 - - uid: 4546 + - uid: 14908 components: - type: Transform - pos: 25.5,-30.5 + pos: 9.5,21.5 parent: 2 - - uid: 4547 + - uid: 14909 components: - type: Transform - pos: 26.5,-30.5 + pos: 8.5,21.5 parent: 2 - - uid: 4548 + - uid: 14915 components: - type: Transform - pos: 27.5,-30.5 + pos: 18.5,18.5 parent: 2 - - uid: 4549 + - uid: 14931 components: - type: Transform - pos: 26.5,-29.5 + pos: 36.5,34.5 parent: 2 - - uid: 4550 + - uid: 14932 components: - type: Transform - pos: 26.5,-28.5 + pos: 33.5,32.5 parent: 2 - - uid: 4568 + - uid: 14936 components: - type: Transform - pos: 64.5,16.5 + pos: 31.5,36.5 parent: 2 - - uid: 4573 + - uid: 14937 components: - type: Transform - pos: 60.5,17.5 + pos: 32.5,36.5 parent: 2 - - uid: 4585 + - uid: 14938 components: - type: Transform - pos: 22.5,-28.5 + pos: 33.5,36.5 parent: 2 - - uid: 4586 + - uid: 14939 components: - type: Transform - pos: 22.5,-27.5 + pos: 41.5,41.5 parent: 2 - - uid: 4588 + - uid: 14940 components: - type: Transform - pos: 22.5,-26.5 + pos: 42.5,41.5 parent: 2 - - uid: 4589 + - uid: 14941 components: - type: Transform - pos: 22.5,-25.5 + pos: 43.5,41.5 parent: 2 - - uid: 4590 + - uid: 14942 components: - type: Transform - pos: 22.5,-24.5 + pos: 44.5,41.5 parent: 2 - - uid: 4591 + - uid: 14943 components: - type: Transform - pos: 22.5,-23.5 + pos: 40.5,41.5 parent: 2 - - uid: 4592 + - uid: 15008 components: - type: Transform - pos: 21.5,-26.5 + pos: 43.5,-12.5 parent: 2 - - uid: 4593 + - uid: 15032 components: - type: Transform - pos: 20.5,-26.5 + pos: 39.5,-12.5 parent: 2 - - uid: 4594 + - uid: 15033 components: - type: Transform - pos: 19.5,-26.5 + pos: 39.5,-7.5 parent: 2 - - uid: 4595 + - uid: 15034 components: - type: Transform - pos: 18.5,-26.5 + pos: 39.5,-9.5 parent: 2 - - uid: 4596 + - uid: 15035 components: - type: Transform - pos: 17.5,-26.5 + pos: 40.5,-12.5 parent: 2 - - uid: 4597 + - uid: 15036 components: - type: Transform - pos: 16.5,-26.5 + pos: 41.5,-12.5 parent: 2 - - uid: 4598 +- proto: CableApcStack + entities: + - uid: 5386 components: - type: Transform - pos: 15.5,-26.5 + pos: 50.555935,8.595494 parent: 2 - - uid: 4599 + - uid: 5387 components: - type: Transform - pos: 14.5,-26.5 + pos: 50.555935,8.595494 parent: 2 - - uid: 4600 + - uid: 5627 components: - type: Transform - pos: 13.5,-26.5 + pos: 17.749475,-23.290428 parent: 2 - - uid: 4601 + - uid: 11130 components: - type: Transform - pos: 12.5,-26.5 + pos: 54.504898,-15.262592 parent: 2 - - uid: 4602 +- proto: CableApcStack1 + entities: + - uid: 6180 components: - type: Transform - pos: 11.5,-26.5 + pos: 84.31913,7.409586 parent: 2 - - uid: 4603 +- proto: CableHV + entities: + - uid: 11 components: - type: Transform - pos: 10.5,-26.5 + pos: 13.5,-12.5 parent: 2 - - uid: 4604 + - uid: 61 components: - type: Transform - pos: 10.5,-25.5 + pos: 15.5,-13.5 parent: 2 - - uid: 4781 + - uid: 63 components: - type: Transform - pos: 21.5,-40.5 + pos: 16.5,-11.5 parent: 2 - - uid: 4783 + - uid: 64 components: - type: Transform - pos: 21.5,-39.5 + pos: 15.5,-11.5 parent: 2 - - uid: 4784 + - uid: 65 components: - type: Transform - pos: 21.5,-38.5 + pos: 14.5,-11.5 parent: 2 - - uid: 4785 + - uid: 66 components: - type: Transform - pos: 21.5,-37.5 + pos: 13.5,-11.5 parent: 2 - - uid: 4786 + - uid: 72 components: - type: Transform - pos: 21.5,-36.5 + pos: 13.5,36.5 parent: 2 - - uid: 4787 + - uid: 75 components: - type: Transform - pos: 21.5,-35.5 + pos: 13.5,35.5 parent: 2 - - uid: 4788 + - uid: 603 components: - type: Transform - pos: 20.5,-35.5 + pos: 42.5,41.5 parent: 2 - - uid: 4789 + - uid: 628 components: - type: Transform - pos: 19.5,-35.5 + pos: 60.5,18.5 parent: 2 - - uid: 4790 + - uid: 803 components: - type: Transform - pos: 18.5,-35.5 + pos: 23.5,-37.5 parent: 2 - - uid: 4791 + - uid: 828 components: - type: Transform - pos: 18.5,-34.5 + pos: 24.5,-36.5 parent: 2 - - uid: 4792 + - uid: 830 components: - type: Transform - pos: 18.5,-33.5 + pos: 17.5,-41.5 parent: 2 - - uid: 4793 + - uid: 1015 components: - type: Transform - pos: 18.5,-32.5 + pos: 23.5,-36.5 parent: 2 - - uid: 4794 + - uid: 1469 components: - type: Transform - pos: 18.5,-31.5 + pos: 25.5,-36.5 parent: 2 - - uid: 4795 + - uid: 1941 components: - type: Transform - pos: 18.5,-30.5 + pos: 24.5,-28.5 parent: 2 - - uid: 4796 + - uid: 2019 components: - type: Transform - pos: 18.5,-29.5 + pos: 18.5,-41.5 parent: 2 - - uid: 4797 + - uid: 2020 components: - type: Transform - pos: 18.5,-28.5 + pos: 17.5,-34.5 parent: 2 - - uid: 4798 + - uid: 2025 components: - type: Transform - pos: 18.5,-27.5 + pos: 17.5,-38.5 parent: 2 - - uid: 4801 + - uid: 2030 components: - type: Transform - pos: -13.5,-33.5 + pos: 17.5,-35.5 parent: 2 - - uid: 4802 + - uid: 2054 components: - type: Transform - pos: -13.5,-32.5 + pos: 14.5,-41.5 parent: 2 - - uid: 4803 + - uid: 2127 components: - type: Transform - pos: -13.5,-31.5 + pos: 17.5,-33.5 parent: 2 - - uid: 4804 + - uid: 2319 components: - type: Transform - pos: -11.5,-33.5 + pos: 45.5,34.5 parent: 2 - - uid: 4805 + - uid: 2324 components: - type: Transform - pos: -11.5,-32.5 + pos: 45.5,38.5 parent: 2 - - uid: 4806 + - uid: 2332 components: - type: Transform - pos: -11.5,-31.5 + pos: 43.5,41.5 parent: 2 - - uid: 4807 + - uid: 2347 components: - type: Transform - pos: -12.5,-33.5 + pos: 45.5,37.5 parent: 2 - - uid: 4808 + - uid: 2353 components: - type: Transform - pos: -12.5,-34.5 + pos: 45.5,35.5 parent: 2 - - uid: 4809 + - uid: 2354 components: - type: Transform - pos: -8.5,-33.5 + pos: 45.5,32.5 parent: 2 - - uid: 4810 + - uid: 2355 components: - type: Transform - pos: -12.5,-36.5 + pos: 45.5,33.5 parent: 2 - - uid: 4816 + - uid: 2356 components: - type: Transform - pos: -12.5,-37.5 + pos: 45.5,31.5 parent: 2 - - uid: 4817 + - uid: 2360 components: - type: Transform - pos: -11.5,-37.5 + pos: 45.5,30.5 parent: 2 - - uid: 4818 + - uid: 2361 components: - type: Transform - pos: -11.5,-38.5 + pos: 45.5,29.5 parent: 2 - - uid: 4819 + - uid: 2362 components: - type: Transform - pos: -11.5,-39.5 + pos: 45.5,28.5 parent: 2 - - uid: 4820 + - uid: 2366 components: - type: Transform - pos: -13.5,-39.5 + pos: 45.5,27.5 parent: 2 - - uid: 4821 + - uid: 2380 components: - type: Transform - pos: -13.5,-38.5 + pos: 45.5,36.5 parent: 2 - - uid: 4822 + - uid: 2387 components: - type: Transform - pos: -13.5,-37.5 + pos: 25.5,-28.5 parent: 2 - - uid: 4823 + - uid: 2564 components: - type: Transform - pos: -9.5,-40.5 + pos: 69.5,-12.5 parent: 2 - - uid: 4824 + - uid: 2636 components: - type: Transform - pos: -9.5,-39.5 + pos: 70.5,-12.5 parent: 2 - - uid: 4825 + - uid: 2711 components: - type: Transform - pos: -9.5,-38.5 + pos: 117.5,-15.5 parent: 2 - - uid: 4826 + - uid: 2831 components: - type: Transform - pos: -9.5,-37.5 + pos: 14.5,37.5 parent: 2 - - uid: 4828 + - uid: 2832 components: - type: Transform - pos: -7.5,-40.5 + pos: 23.5,-28.5 parent: 2 - - uid: 4830 + - uid: 2891 components: - type: Transform - pos: -7.5,-39.5 + pos: 15.5,37.5 parent: 2 - - uid: 4831 + - uid: 2988 components: - type: Transform - pos: -7.5,-38.5 + pos: 22.5,4.5 parent: 2 - - uid: 4832 + - uid: 2989 components: - type: Transform - pos: -7.5,-37.5 + pos: 22.5,6.5 parent: 2 - - uid: 4833 + - uid: 3012 components: - type: Transform - pos: -9.5,-33.5 + pos: 22.5,9.5 parent: 2 - - uid: 4834 + - uid: 3163 components: - type: Transform - pos: -9.5,-32.5 + pos: 67.5,19.5 parent: 2 - - uid: 4835 + - uid: 3165 components: - type: Transform - pos: -9.5,-31.5 + pos: 31.5,33.5 parent: 2 - - uid: 4836 + - uid: 3171 components: - type: Transform - pos: -9.5,-30.5 + pos: 30.5,33.5 parent: 2 - - uid: 4837 + - uid: 3183 components: - type: Transform - pos: -7.5,-33.5 + pos: 35.5,33.5 parent: 2 - - uid: 4838 + - uid: 3184 components: - type: Transform - pos: -7.5,-32.5 + pos: 36.5,33.5 parent: 2 - - uid: 4839 + - uid: 3980 components: - type: Transform - pos: -7.5,-31.5 + pos: 23.5,-41.5 parent: 2 - - uid: 4840 + - uid: 4123 components: - type: Transform - pos: -7.5,-30.5 + pos: 64.5,17.5 parent: 2 - - uid: 4841 + - uid: 4129 components: - type: Transform - pos: -5.5,-33.5 + pos: 60.5,25.5 parent: 2 - - uid: 4842 + - uid: 4213 components: - type: Transform - pos: -5.5,-32.5 + pos: 22.5,8.5 parent: 2 - - uid: 4843 + - uid: 4218 components: - type: Transform - pos: -5.5,-31.5 + pos: 22.5,10.5 parent: 2 - - uid: 4844 + - uid: 4227 components: - type: Transform - pos: -3.5,-33.5 + pos: 22.5,7.5 parent: 2 - - uid: 4845 + - uid: 4307 components: - type: Transform - pos: -3.5,-32.5 + pos: 15.5,-38.5 parent: 2 - - uid: 4846 + - uid: 4308 components: - type: Transform - pos: -3.5,-31.5 + pos: 17.5,-37.5 parent: 2 - - uid: 4847 + - uid: 4337 components: - type: Transform - pos: -5.5,-39.5 + pos: 23.5,-42.5 parent: 2 - - uid: 4848 + - uid: 4507 components: - type: Transform - pos: -5.5,-38.5 + pos: 23.5,-39.5 parent: 2 - - uid: 4849 + - uid: 4508 components: - type: Transform - pos: -5.5,-37.5 + pos: 23.5,-38.5 parent: 2 - - uid: 4850 + - uid: 4509 components: - type: Transform - pos: -3.5,-39.5 + pos: 23.5,-40.5 parent: 2 - - uid: 4851 + - uid: 4510 components: - type: Transform - pos: -3.5,-38.5 + pos: 23.5,-43.5 parent: 2 - - uid: 4852 + - uid: 4511 components: - type: Transform - pos: -3.5,-37.5 + pos: 22.5,-43.5 parent: 2 - - uid: 4853 + - uid: 4512 components: - type: Transform - pos: -8.5,-34.5 + pos: 21.5,-43.5 parent: 2 - - uid: 4854 + - uid: 4513 components: - type: Transform - pos: -8.5,-37.5 + pos: 20.5,-43.5 parent: 2 - - uid: 4855 + - uid: 4514 components: - type: Transform - pos: -8.5,-36.5 + pos: 19.5,-43.5 parent: 2 - - uid: 4856 + - uid: 4515 components: - type: Transform - pos: -4.5,-37.5 + pos: 19.5,-41.5 parent: 2 - - uid: 4857 + - uid: 4516 components: - type: Transform - pos: -4.5,-36.5 + pos: 19.5,-42.5 parent: 2 - - uid: 4858 + - uid: 4520 components: - type: Transform - pos: -4.5,-33.5 + pos: 26.5,-36.5 parent: 2 - - uid: 4859 + - uid: 4521 components: - type: Transform - pos: -4.5,-34.5 + pos: 27.5,-36.5 parent: 2 - - uid: 4860 + - uid: 4522 components: - type: Transform - pos: -15.5,-35.5 + pos: 28.5,-36.5 parent: 2 - - uid: 4861 + - uid: 4523 components: - type: Transform - pos: -14.5,-35.5 + pos: 29.5,-36.5 parent: 2 - - uid: 4862 + - uid: 4524 components: - type: Transform - pos: -1.5,-35.5 + pos: 30.5,-36.5 parent: 2 - - uid: 4863 + - uid: 4525 components: - type: Transform - pos: -0.5,-35.5 + pos: 31.5,-36.5 parent: 2 - - uid: 4864 + - uid: 4526 components: - type: Transform - pos: 0.5,-35.5 + pos: 31.5,-37.5 parent: 2 - - uid: 4865 + - uid: 4527 components: - type: Transform - pos: 1.5,-35.5 + pos: 31.5,-38.5 parent: 2 - - uid: 4866 + - uid: 4528 components: - type: Transform - pos: 2.5,-35.5 + pos: 30.5,-38.5 parent: 2 - - uid: 4867 + - uid: 4529 components: - type: Transform - pos: 2.5,-34.5 + pos: 30.5,-39.5 parent: 2 - - uid: 4868 + - uid: 4530 components: - type: Transform - pos: 3.5,-34.5 + pos: 30.5,-40.5 parent: 2 - - uid: 4869 + - uid: 4531 components: - type: Transform - pos: 4.5,-34.5 + pos: 30.5,-41.5 parent: 2 - - uid: 4870 + - uid: 4532 components: - type: Transform - pos: 4.5,-35.5 + pos: 30.5,-42.5 parent: 2 - - uid: 4871 + - uid: 4533 components: - type: Transform - pos: 4.5,-36.5 + pos: 30.5,-43.5 parent: 2 - - uid: 4908 + - uid: 4534 components: - type: Transform - pos: 22.5,5.5 + pos: 30.5,-44.5 parent: 2 - - uid: 5146 + - uid: 4535 components: - type: Transform - pos: 41.5,41.5 + pos: 26.5,-35.5 parent: 2 - - uid: 5421 + - uid: 4536 components: - type: Transform - pos: 14.5,33.5 + pos: 26.5,-34.5 parent: 2 - - uid: 5743 + - uid: 4537 components: - type: Transform - pos: 12.5,34.5 + pos: 26.5,-33.5 parent: 2 - - uid: 5873 + - uid: 4538 components: - type: Transform - pos: 63.5,48.5 + pos: 26.5,-32.5 parent: 2 - - uid: 5903 + - uid: 4541 components: - type: Transform - pos: 4.5,-33.5 + pos: 25.5,-32.5 parent: 2 - - uid: 5904 + - uid: 4542 components: - type: Transform - pos: 4.5,-32.5 + pos: 27.5,-32.5 parent: 2 - - uid: 5905 + - uid: 4543 components: - type: Transform - pos: 4.5,-31.5 + pos: 25.5,-31.5 parent: 2 - - uid: 5906 + - uid: 4544 components: - type: Transform - pos: 4.5,-30.5 + pos: 26.5,-31.5 parent: 2 - - uid: 5907 + - uid: 4545 components: - type: Transform - pos: 4.5,-29.5 + pos: 27.5,-31.5 parent: 2 - - uid: 5908 + - uid: 4546 components: - type: Transform - pos: 4.5,-28.5 + pos: 25.5,-30.5 parent: 2 - - uid: 5909 + - uid: 4547 components: - type: Transform - pos: 4.5,-27.5 + pos: 26.5,-30.5 parent: 2 - - uid: 5910 + - uid: 4548 components: - type: Transform - pos: 4.5,-26.5 + pos: 27.5,-30.5 parent: 2 - - uid: 5911 + - uid: 4549 components: - type: Transform - pos: 4.5,-25.5 + pos: 26.5,-29.5 parent: 2 - - uid: 5912 + - uid: 4550 components: - type: Transform - pos: 4.5,-24.5 + pos: 26.5,-28.5 parent: 2 - - uid: 5913 + - uid: 4585 components: - type: Transform - pos: 4.5,-23.5 + pos: 22.5,-28.5 parent: 2 - - uid: 5922 + - uid: 4586 components: - type: Transform - pos: 5.5,-23.5 + pos: 22.5,-27.5 parent: 2 - - uid: 5923 + - uid: 4588 components: - type: Transform - pos: 6.5,-23.5 + pos: 22.5,-26.5 parent: 2 - - uid: 5924 + - uid: 4589 components: - type: Transform - pos: 7.5,-23.5 + pos: 22.5,-25.5 parent: 2 - - uid: 5925 + - uid: 4590 components: - type: Transform - pos: 8.5,-23.5 + pos: 22.5,-24.5 parent: 2 - - uid: 5926 + - uid: 4591 components: - type: Transform - pos: 9.5,-23.5 + pos: 22.5,-23.5 parent: 2 - - uid: 5927 + - uid: 4592 components: - type: Transform - pos: 10.5,-23.5 + pos: 21.5,-26.5 parent: 2 - - uid: 5928 + - uid: 4593 components: - type: Transform - pos: 11.5,-23.5 + pos: 20.5,-26.5 parent: 2 - - uid: 5929 + - uid: 4594 components: - type: Transform - pos: 11.5,-22.5 + pos: 19.5,-26.5 parent: 2 - - uid: 5930 + - uid: 4595 components: - type: Transform - pos: 11.5,-21.5 + pos: 18.5,-26.5 parent: 2 - - uid: 5931 + - uid: 4596 components: - type: Transform - pos: 11.5,-20.5 + pos: 17.5,-26.5 parent: 2 - - uid: 5932 + - uid: 4597 components: - type: Transform - pos: 10.5,-20.5 + pos: 16.5,-26.5 parent: 2 - - uid: 5933 + - uid: 4598 components: - type: Transform - pos: 10.5,-19.5 + pos: 15.5,-26.5 parent: 2 - - uid: 5934 + - uid: 4599 components: - type: Transform - pos: 10.5,-18.5 + pos: 14.5,-26.5 parent: 2 - - uid: 5935 + - uid: 4600 components: - type: Transform - pos: 10.5,-17.5 + pos: 13.5,-26.5 parent: 2 - - uid: 5936 + - uid: 4601 components: - type: Transform - pos: 10.5,-16.5 + pos: 12.5,-26.5 parent: 2 - - uid: 5937 + - uid: 4602 components: - type: Transform - pos: 10.5,-15.5 + pos: 11.5,-26.5 parent: 2 - - uid: 5938 + - uid: 4603 components: - type: Transform - pos: 9.5,-15.5 + pos: 10.5,-26.5 parent: 2 - - uid: 5939 + - uid: 4604 components: - type: Transform - pos: 8.5,-15.5 + pos: 10.5,-25.5 parent: 2 - - uid: 5940 + - uid: 4781 components: - type: Transform - pos: 7.5,-15.5 + pos: 21.5,-40.5 parent: 2 - - uid: 5941 + - uid: 4783 components: - type: Transform - pos: 6.5,-15.5 + pos: 21.5,-39.5 parent: 2 - - uid: 5942 + - uid: 4784 components: - type: Transform - pos: 5.5,-15.5 + pos: 21.5,-38.5 parent: 2 - - uid: 5943 + - uid: 4785 components: - type: Transform - pos: 4.5,-15.5 + pos: 21.5,-37.5 parent: 2 - - uid: 5944 + - uid: 4786 components: - type: Transform - pos: 3.5,-15.5 + pos: 21.5,-36.5 parent: 2 - - uid: 5945 + - uid: 4787 components: - type: Transform - pos: 2.5,-15.5 + pos: 21.5,-35.5 parent: 2 - - uid: 5946 + - uid: 4788 components: - type: Transform - pos: 1.5,-15.5 + pos: 20.5,-35.5 parent: 2 - - uid: 5947 + - uid: 4789 components: - type: Transform - pos: 1.5,-14.5 + pos: 19.5,-35.5 parent: 2 - - uid: 5948 + - uid: 4790 components: - type: Transform - pos: 1.5,-13.5 + pos: 18.5,-35.5 parent: 2 - - uid: 5949 + - uid: 4792 components: - type: Transform - pos: 1.5,-12.5 + pos: 18.5,-33.5 parent: 2 - - uid: 5950 + - uid: 4793 components: - type: Transform - pos: 1.5,-11.5 + pos: 18.5,-32.5 parent: 2 - - uid: 5951 + - uid: 4794 components: - type: Transform - pos: 1.5,-10.5 + pos: 18.5,-31.5 parent: 2 - - uid: 5952 + - uid: 4795 components: - type: Transform - pos: 1.5,-9.5 + pos: 18.5,-30.5 parent: 2 - - uid: 5953 + - uid: 4796 components: - type: Transform - pos: 2.5,-9.5 + pos: 18.5,-29.5 parent: 2 - - uid: 5954 + - uid: 4797 components: - type: Transform - pos: 3.5,-9.5 + pos: 18.5,-28.5 parent: 2 - - uid: 5955 + - uid: 4798 components: - type: Transform - pos: 4.5,-9.5 + pos: 18.5,-27.5 parent: 2 - - uid: 5956 + - uid: 4801 components: - type: Transform - pos: 5.5,-9.5 + pos: -13.5,-33.5 parent: 2 - - uid: 5957 + - uid: 4802 components: - type: Transform - pos: 6.5,-9.5 + pos: -13.5,-32.5 parent: 2 - - uid: 5958 + - uid: 4803 components: - type: Transform - pos: 6.5,-8.5 + pos: -13.5,-31.5 parent: 2 - - uid: 5959 + - uid: 4804 components: - type: Transform - pos: 10.5,-14.5 + pos: -11.5,-33.5 parent: 2 - - uid: 5960 + - uid: 4805 components: - type: Transform - pos: 10.5,-13.5 + pos: -11.5,-32.5 parent: 2 - - uid: 5961 + - uid: 4806 components: - type: Transform - pos: 11.5,-13.5 + pos: -11.5,-31.5 parent: 2 - - uid: 5962 + - uid: 4807 components: - type: Transform - pos: 12.5,-13.5 + pos: -12.5,-33.5 parent: 2 - - uid: 5963 + - uid: 4808 components: - type: Transform - pos: 13.5,-13.5 + pos: -12.5,-34.5 parent: 2 - - uid: 5970 + - uid: 4809 components: - type: Transform - pos: 16.5,-13.5 + pos: -8.5,-33.5 parent: 2 - - uid: 5971 + - uid: 4810 components: - type: Transform - pos: 16.5,-14.5 + pos: -12.5,-36.5 parent: 2 - - uid: 5972 + - uid: 4816 components: - type: Transform - pos: 12.5,-21.5 + pos: -12.5,-37.5 parent: 2 - - uid: 5973 + - uid: 4817 components: - type: Transform - pos: 13.5,-21.5 + pos: -11.5,-37.5 parent: 2 - - uid: 5974 + - uid: 4818 components: - type: Transform - pos: 14.5,-21.5 + pos: -11.5,-38.5 parent: 2 - - uid: 5975 + - uid: 4819 components: - type: Transform - pos: 15.5,-21.5 + pos: -11.5,-39.5 parent: 2 - - uid: 5976 + - uid: 4820 components: - type: Transform - pos: 16.5,-21.5 + pos: -13.5,-39.5 parent: 2 - - uid: 5977 + - uid: 4821 components: - type: Transform - pos: 17.5,-21.5 + pos: -13.5,-38.5 parent: 2 - - uid: 5978 + - uid: 4822 components: - type: Transform - pos: 18.5,-21.5 + pos: -13.5,-37.5 parent: 2 - - uid: 5979 + - uid: 4823 components: - type: Transform - pos: 19.5,-21.5 + pos: -9.5,-40.5 parent: 2 - - uid: 5980 + - uid: 4824 components: - type: Transform - pos: 20.5,-21.5 + pos: -9.5,-39.5 parent: 2 - - uid: 5981 + - uid: 4825 components: - type: Transform - pos: 21.5,-21.5 + pos: -9.5,-38.5 parent: 2 - - uid: 5982 + - uid: 4826 components: - type: Transform - pos: 22.5,-21.5 + pos: -9.5,-37.5 parent: 2 - - uid: 5983 + - uid: 4828 components: - type: Transform - pos: 23.5,-21.5 + pos: -7.5,-40.5 parent: 2 - - uid: 5984 + - uid: 4830 components: - type: Transform - pos: 24.5,-21.5 + pos: -7.5,-39.5 parent: 2 - - uid: 5985 + - uid: 4831 components: - type: Transform - pos: 25.5,-21.5 + pos: -7.5,-38.5 parent: 2 - - uid: 5986 + - uid: 4832 components: - type: Transform - pos: 25.5,-20.5 + pos: -7.5,-37.5 parent: 2 - - uid: 5987 + - uid: 4833 components: - type: Transform - pos: 27.5,-21.5 + pos: -9.5,-33.5 parent: 2 - - uid: 5988 + - uid: 4834 components: - type: Transform - pos: 28.5,-21.5 + pos: -9.5,-32.5 parent: 2 - - uid: 5989 + - uid: 4835 components: - type: Transform - pos: 29.5,-21.5 + pos: -9.5,-31.5 parent: 2 - - uid: 5990 + - uid: 4836 components: - type: Transform - pos: 30.5,-21.5 + pos: -9.5,-30.5 parent: 2 - - uid: 5991 + - uid: 4837 components: - type: Transform - pos: 30.5,-20.5 + pos: -7.5,-33.5 parent: 2 - - uid: 5992 + - uid: 4838 components: - type: Transform - pos: 30.5,-19.5 + pos: -7.5,-32.5 parent: 2 - - uid: 5993 + - uid: 4839 components: - type: Transform - pos: 31.5,-19.5 + pos: -7.5,-31.5 parent: 2 - - uid: 5994 + - uid: 4840 components: - type: Transform - pos: 32.5,-19.5 + pos: -7.5,-30.5 parent: 2 - - uid: 5995 + - uid: 4841 components: - type: Transform - pos: 33.5,-19.5 + pos: -5.5,-33.5 parent: 2 - - uid: 5996 + - uid: 4842 components: - type: Transform - pos: 34.5,-19.5 + pos: -5.5,-32.5 parent: 2 - - uid: 5997 + - uid: 4843 components: - type: Transform - pos: 35.5,-19.5 + pos: -5.5,-31.5 parent: 2 - - uid: 5998 + - uid: 4844 components: - type: Transform - pos: 36.5,-19.5 + pos: -3.5,-33.5 parent: 2 - - uid: 5999 + - uid: 4845 components: - type: Transform - pos: 37.5,-19.5 + pos: -3.5,-32.5 parent: 2 - - uid: 6000 + - uid: 4846 components: - type: Transform - pos: 38.5,-19.5 + pos: -3.5,-31.5 parent: 2 - - uid: 6001 + - uid: 4847 components: - type: Transform - pos: 39.5,-19.5 + pos: -5.5,-39.5 parent: 2 - - uid: 6002 + - uid: 4848 components: - type: Transform - pos: 40.5,-19.5 + pos: -5.5,-38.5 parent: 2 - - uid: 6003 + - uid: 4849 components: - type: Transform - pos: 41.5,-19.5 + pos: -5.5,-37.5 parent: 2 - - uid: 6004 + - uid: 4850 components: - type: Transform - pos: 41.5,-18.5 + pos: -3.5,-39.5 parent: 2 - - uid: 6016 + - uid: 4851 components: - type: Transform - pos: 42.5,-18.5 + pos: -3.5,-38.5 parent: 2 - - uid: 6017 + - uid: 4852 components: - type: Transform - pos: 43.5,-18.5 + pos: -3.5,-37.5 parent: 2 - - uid: 6018 + - uid: 4853 components: - type: Transform - pos: 44.5,-18.5 + pos: -8.5,-34.5 parent: 2 - - uid: 6019 + - uid: 4854 components: - type: Transform - pos: 45.5,-18.5 + pos: -8.5,-37.5 parent: 2 - - uid: 6020 + - uid: 4855 components: - type: Transform - pos: 46.5,-18.5 + pos: -8.5,-36.5 parent: 2 - - uid: 6021 + - uid: 4856 components: - type: Transform - pos: 47.5,-18.5 + pos: -4.5,-37.5 parent: 2 - - uid: 6022 + - uid: 4857 components: - type: Transform - pos: 48.5,-18.5 + pos: -4.5,-36.5 parent: 2 - - uid: 6023 + - uid: 4858 components: - type: Transform - pos: 49.5,-18.5 + pos: -4.5,-33.5 parent: 2 - - uid: 6024 + - uid: 4859 components: - type: Transform - pos: 50.5,-18.5 + pos: -4.5,-34.5 parent: 2 - - uid: 6028 + - uid: 4860 components: - type: Transform - pos: 51.5,-18.5 + pos: -15.5,-35.5 parent: 2 - - uid: 6029 + - uid: 4861 components: - type: Transform - pos: 52.5,-18.5 + pos: -14.5,-35.5 parent: 2 - - uid: 6030 + - uid: 4862 components: - type: Transform - pos: 52.5,-17.5 + pos: -1.5,-35.5 parent: 2 - - uid: 6031 + - uid: 4863 components: - type: Transform - pos: 52.5,-16.5 + pos: -0.5,-35.5 parent: 2 - - uid: 6032 + - uid: 4864 components: - type: Transform - pos: 52.5,-15.5 + pos: 0.5,-35.5 parent: 2 - - uid: 6033 + - uid: 4865 components: - type: Transform - pos: 52.5,-14.5 + pos: 1.5,-35.5 parent: 2 - - uid: 6034 + - uid: 4866 components: - type: Transform - pos: 52.5,-13.5 + pos: 2.5,-35.5 parent: 2 - - uid: 6035 + - uid: 4867 components: - type: Transform - pos: 52.5,-12.5 + pos: 2.5,-34.5 parent: 2 - - uid: 6036 + - uid: 4868 components: - type: Transform - pos: 52.5,-11.5 + pos: 3.5,-34.5 parent: 2 - - uid: 6037 + - uid: 4869 components: - type: Transform - pos: 52.5,-10.5 + pos: 4.5,-34.5 parent: 2 - - uid: 6038 + - uid: 4870 components: - type: Transform - pos: 53.5,-18.5 + pos: 4.5,-35.5 parent: 2 - - uid: 6039 + - uid: 4871 components: - type: Transform - pos: 54.5,-18.5 + pos: 4.5,-36.5 parent: 2 - - uid: 6040 + - uid: 4908 components: - type: Transform - pos: 55.5,-18.5 + pos: 22.5,5.5 parent: 2 - - uid: 6041 + - uid: 5146 components: - type: Transform - pos: 56.5,-18.5 + pos: 41.5,41.5 parent: 2 - - uid: 6042 + - uid: 5726 components: - type: Transform - pos: 57.5,-18.5 + pos: 50.5,-19.5 parent: 2 - - uid: 6044 + - uid: 5745 components: - type: Transform - pos: 57.5,-19.5 + pos: 50.5,-18.5 parent: 2 - - uid: 6045 + - uid: 5873 components: - type: Transform - pos: 58.5,-19.5 + pos: 63.5,48.5 parent: 2 - - uid: 6046 + - uid: 5903 components: - type: Transform - pos: 59.5,-19.5 + pos: 4.5,-33.5 parent: 2 - - uid: 6048 + - uid: 5904 components: - type: Transform - pos: 60.5,-19.5 + pos: 4.5,-32.5 parent: 2 - - uid: 6049 + - uid: 5905 components: - type: Transform - pos: 61.5,-19.5 + pos: 4.5,-31.5 parent: 2 - - uid: 6050 + - uid: 5906 components: - type: Transform - pos: 62.5,-19.5 + pos: 4.5,-30.5 parent: 2 - - uid: 6051 + - uid: 5907 components: - type: Transform - pos: 63.5,-19.5 + pos: 4.5,-29.5 parent: 2 - - uid: 6052 + - uid: 5908 components: - type: Transform - pos: 64.5,-19.5 + pos: 4.5,-28.5 parent: 2 - - uid: 6053 + - uid: 5909 components: - type: Transform - pos: 65.5,-19.5 + pos: 4.5,-27.5 parent: 2 - - uid: 6054 + - uid: 5910 components: - type: Transform - pos: 66.5,-19.5 + pos: 4.5,-26.5 parent: 2 - - uid: 6055 + - uid: 5911 components: - type: Transform - pos: 67.5,-19.5 + pos: 4.5,-25.5 parent: 2 - - uid: 6056 + - uid: 5912 components: - type: Transform - pos: 68.5,-19.5 + pos: 4.5,-24.5 parent: 2 - - uid: 6057 + - uid: 5913 components: - type: Transform - pos: 69.5,-19.5 + pos: 4.5,-23.5 parent: 2 - - uid: 6058 + - uid: 5922 components: - type: Transform - pos: 69.5,-18.5 + pos: 5.5,-23.5 parent: 2 - - uid: 6059 + - uid: 5923 components: - type: Transform - pos: 69.5,-17.5 + pos: 6.5,-23.5 parent: 2 - - uid: 6060 + - uid: 5924 components: - type: Transform - pos: 69.5,-16.5 + pos: 7.5,-23.5 parent: 2 - - uid: 6061 + - uid: 5925 components: - type: Transform - pos: 70.5,-16.5 + pos: 8.5,-23.5 parent: 2 - - uid: 6062 + - uid: 5926 components: - type: Transform - pos: 71.5,-16.5 + pos: 9.5,-23.5 parent: 2 - - uid: 6063 + - uid: 5927 components: - type: Transform - pos: 71.5,-15.5 + pos: 10.5,-23.5 parent: 2 - - uid: 6064 + - uid: 5928 components: - type: Transform - pos: 71.5,-14.5 + pos: 11.5,-23.5 parent: 2 - - uid: 6065 + - uid: 5929 components: - type: Transform - pos: 71.5,-13.5 + pos: 11.5,-22.5 parent: 2 - - uid: 6066 + - uid: 5930 components: - type: Transform - pos: 70.5,-13.5 + pos: 11.5,-21.5 parent: 2 - - uid: 6067 + - uid: 5931 components: - type: Transform - pos: 69.5,-13.5 + pos: 11.5,-20.5 parent: 2 - - uid: 6070 + - uid: 5932 components: - type: Transform - pos: 72.5,-15.5 + pos: 10.5,-20.5 parent: 2 - - uid: 6071 + - uid: 5933 components: - type: Transform - pos: 73.5,-15.5 + pos: 10.5,-19.5 parent: 2 - - uid: 6072 + - uid: 5934 components: - type: Transform - pos: 74.5,-15.5 + pos: 10.5,-18.5 parent: 2 - - uid: 6073 + - uid: 5935 components: - type: Transform - pos: 75.5,-15.5 + pos: 10.5,-17.5 parent: 2 - - uid: 6074 + - uid: 5936 components: - type: Transform - pos: 76.5,-15.5 + pos: 10.5,-16.5 parent: 2 - - uid: 6075 + - uid: 5937 components: - type: Transform - pos: 77.5,-15.5 + pos: 10.5,-15.5 parent: 2 - - uid: 6076 + - uid: 5938 components: - type: Transform - pos: 78.5,-15.5 + pos: 9.5,-15.5 parent: 2 - - uid: 6077 + - uid: 5939 components: - type: Transform - pos: 79.5,-15.5 + pos: 8.5,-15.5 parent: 2 - - uid: 6078 + - uid: 5940 components: - type: Transform - pos: 80.5,-15.5 + pos: 7.5,-15.5 parent: 2 - - uid: 6079 + - uid: 5941 components: - type: Transform - pos: 81.5,-15.5 + pos: 6.5,-15.5 parent: 2 - - uid: 6080 + - uid: 5942 components: - type: Transform - pos: 82.5,-15.5 + pos: 5.5,-15.5 parent: 2 - - uid: 6081 + - uid: 5943 components: - type: Transform - pos: 83.5,-15.5 + pos: 4.5,-15.5 parent: 2 - - uid: 6082 + - uid: 5944 components: - type: Transform - pos: 84.5,-15.5 + pos: 3.5,-15.5 parent: 2 - - uid: 6083 + - uid: 5945 components: - type: Transform - pos: 85.5,-15.5 + pos: 2.5,-15.5 parent: 2 - - uid: 6084 + - uid: 5946 components: - type: Transform - pos: 86.5,-15.5 + pos: 1.5,-15.5 parent: 2 - - uid: 6087 + - uid: 5947 components: - type: Transform - pos: 86.5,-14.5 + pos: 1.5,-14.5 parent: 2 - - uid: 6088 + - uid: 5948 components: - type: Transform - pos: 86.5,-13.5 + pos: 1.5,-13.5 parent: 2 - - uid: 6089 + - uid: 5949 components: - type: Transform - pos: 86.5,-12.5 + pos: 1.5,-12.5 parent: 2 - - uid: 6090 + - uid: 5950 components: - type: Transform - pos: 86.5,-11.5 + pos: 1.5,-11.5 parent: 2 - - uid: 6091 + - uid: 5951 components: - type: Transform - pos: 86.5,-10.5 + pos: 1.5,-10.5 parent: 2 - - uid: 6092 + - uid: 5952 components: - type: Transform - pos: 86.5,-9.5 + pos: 1.5,-9.5 parent: 2 - - uid: 6093 + - uid: 5953 components: - type: Transform - pos: 86.5,-8.5 + pos: 2.5,-9.5 parent: 2 - - uid: 6094 + - uid: 5954 components: - type: Transform - pos: 86.5,-7.5 + pos: 3.5,-9.5 parent: 2 - - uid: 6096 + - uid: 5955 components: - type: Transform - pos: 86.5,-6.5 + pos: 4.5,-9.5 parent: 2 - - uid: 6097 + - uid: 5956 components: - type: Transform - pos: 86.5,-5.5 + pos: 5.5,-9.5 parent: 2 - - uid: 6098 + - uid: 5957 components: - type: Transform - pos: 86.5,-4.5 + pos: 6.5,-9.5 parent: 2 - - uid: 6100 + - uid: 5958 components: - type: Transform - pos: 86.5,-3.5 + pos: 6.5,-8.5 parent: 2 - - uid: 6101 + - uid: 5959 components: - type: Transform - pos: 86.5,-2.5 + pos: 10.5,-14.5 parent: 2 - - uid: 6102 + - uid: 5960 components: - type: Transform - pos: 85.5,-2.5 + pos: 10.5,-13.5 parent: 2 - - uid: 6103 + - uid: 5961 components: - type: Transform - pos: 84.5,-2.5 + pos: 11.5,-13.5 parent: 2 - - uid: 6104 + - uid: 5962 components: - type: Transform - pos: 84.5,-1.5 + pos: 12.5,-13.5 parent: 2 - - uid: 6105 + - uid: 5963 components: - type: Transform - pos: 84.5,-0.5 + pos: 13.5,-13.5 parent: 2 - - uid: 6106 + - uid: 5970 components: - type: Transform - pos: 84.5,0.5 + pos: 16.5,-13.5 parent: 2 - - uid: 6107 + - uid: 5971 components: - type: Transform - pos: 84.5,1.5 + pos: 16.5,-14.5 parent: 2 - - uid: 6108 + - uid: 5972 components: - type: Transform - pos: 84.5,2.5 + pos: 12.5,-21.5 parent: 2 - - uid: 6109 + - uid: 5973 components: - type: Transform - pos: 84.5,3.5 + pos: 13.5,-21.5 parent: 2 - - uid: 6110 + - uid: 5974 components: - type: Transform - pos: 84.5,4.5 + pos: 14.5,-21.5 parent: 2 - - uid: 6111 + - uid: 5975 components: - type: Transform - pos: 83.5,4.5 + pos: 15.5,-21.5 parent: 2 - - uid: 6112 + - uid: 5976 components: - type: Transform - pos: 82.5,4.5 + pos: 16.5,-21.5 parent: 2 - - uid: 6139 + - uid: 5977 components: - type: Transform - pos: 66.5,19.5 + pos: 17.5,-21.5 parent: 2 - - uid: 6141 + - uid: 5978 components: - type: Transform - pos: 81.5,4.5 + pos: 18.5,-21.5 parent: 2 - - uid: 6142 + - uid: 5979 components: - type: Transform - pos: 81.5,5.5 + pos: 19.5,-21.5 parent: 2 - - uid: 6143 + - uid: 5980 components: - type: Transform - pos: 81.5,6.5 + pos: 20.5,-21.5 parent: 2 - - uid: 6144 + - uid: 5981 components: - type: Transform - pos: 81.5,7.5 + pos: 21.5,-21.5 parent: 2 - - uid: 6145 + - uid: 5982 components: - type: Transform - pos: 81.5,8.5 + pos: 22.5,-21.5 parent: 2 - - uid: 6146 + - uid: 5983 components: - type: Transform - pos: 81.5,9.5 + pos: 23.5,-21.5 parent: 2 - - uid: 6147 + - uid: 5984 components: - type: Transform - pos: 81.5,10.5 + pos: 24.5,-21.5 parent: 2 - - uid: 6148 + - uid: 5985 components: - type: Transform - pos: 81.5,11.5 + pos: 25.5,-21.5 parent: 2 - - uid: 6149 + - uid: 5986 components: - type: Transform - pos: 81.5,12.5 + pos: 25.5,-20.5 parent: 2 - - uid: 6150 + - uid: 5987 components: - type: Transform - pos: 80.5,12.5 + pos: 27.5,-21.5 parent: 2 - - uid: 6151 + - uid: 5988 components: - type: Transform - pos: 79.5,12.5 + pos: 28.5,-21.5 parent: 2 - - uid: 6152 + - uid: 5989 components: - type: Transform - pos: 78.5,12.5 + pos: 29.5,-21.5 parent: 2 - - uid: 6153 + - uid: 5990 components: - type: Transform - pos: 77.5,12.5 + pos: 30.5,-21.5 parent: 2 - - uid: 6154 + - uid: 5991 components: - type: Transform - pos: 76.5,12.5 + pos: 30.5,-20.5 parent: 2 - - uid: 6155 + - uid: 5992 components: - type: Transform - pos: 75.5,12.5 + pos: 30.5,-19.5 parent: 2 - - uid: 6156 + - uid: 5993 components: - type: Transform - pos: 74.5,12.5 + pos: 31.5,-19.5 parent: 2 - - uid: 6157 + - uid: 5994 components: - type: Transform - pos: 74.5,11.5 + pos: 32.5,-19.5 parent: 2 - - uid: 6159 + - uid: 5995 components: - type: Transform - pos: 74.5,10.5 + pos: 33.5,-19.5 parent: 2 - - uid: 6160 + - uid: 5996 components: - type: Transform - pos: 73.5,10.5 + pos: 34.5,-19.5 parent: 2 - - uid: 6161 + - uid: 5997 components: - type: Transform - pos: 72.5,10.5 + pos: 35.5,-19.5 parent: 2 - - uid: 6162 + - uid: 5998 components: - type: Transform - pos: 71.5,10.5 + pos: 36.5,-19.5 parent: 2 - - uid: 6163 + - uid: 5999 components: - type: Transform - pos: 70.5,10.5 + pos: 37.5,-19.5 parent: 2 - - uid: 6164 + - uid: 6000 components: - type: Transform - pos: 69.5,10.5 + pos: 38.5,-19.5 parent: 2 - - uid: 6165 + - uid: 6001 components: - type: Transform - pos: 68.5,10.5 + pos: 39.5,-19.5 parent: 2 - - uid: 6166 + - uid: 6002 components: - type: Transform - pos: 67.5,10.5 + pos: 40.5,-19.5 parent: 2 - - uid: 6167 + - uid: 6004 components: - type: Transform - pos: 67.5,9.5 + pos: 41.5,-18.5 parent: 2 - - uid: 6168 + - uid: 6016 components: - type: Transform - pos: 67.5,8.5 + pos: 42.5,-18.5 parent: 2 - - uid: 6169 + - uid: 6017 components: - type: Transform - pos: 74.5,13.5 + pos: 43.5,-18.5 parent: 2 - - uid: 6170 + - uid: 6018 components: - type: Transform - pos: 74.5,14.5 + pos: 44.5,-18.5 parent: 2 - - uid: 6171 + - uid: 6019 components: - type: Transform - pos: 74.5,15.5 + pos: 45.5,-18.5 parent: 2 - - uid: 6173 + - uid: 6020 components: - type: Transform - pos: 74.5,16.5 + pos: 46.5,-18.5 parent: 2 - - uid: 6174 + - uid: 6021 components: - type: Transform - pos: 74.5,17.5 + pos: 47.5,-18.5 parent: 2 - - uid: 6175 + - uid: 6022 components: - type: Transform - pos: 74.5,18.5 + pos: 48.5,-18.5 parent: 2 - - uid: 6176 + - uid: 6023 components: - type: Transform - pos: 73.5,18.5 + pos: 49.5,-18.5 parent: 2 - - uid: 6177 + - uid: 6028 components: - type: Transform - pos: 72.5,18.5 + pos: 52.5,-18.5 parent: 2 - - uid: 6178 + - uid: 6030 components: - type: Transform - pos: 71.5,18.5 + pos: 52.5,-17.5 parent: 2 - - uid: 6179 + - uid: 6031 components: - type: Transform - pos: 70.5,18.5 + pos: 52.5,-16.5 parent: 2 - - uid: 6181 + - uid: 6032 components: - type: Transform - pos: 69.5,18.5 + pos: 52.5,-15.5 parent: 2 - - uid: 6182 + - uid: 6033 components: - type: Transform - pos: 68.5,18.5 + pos: 52.5,-14.5 parent: 2 - - uid: 6183 + - uid: 6034 components: - type: Transform - pos: 67.5,18.5 + pos: 52.5,-13.5 parent: 2 - - uid: 6184 + - uid: 6035 components: - type: Transform - pos: 67.5,19.5 + pos: 52.5,-12.5 parent: 2 - - uid: 6185 + - uid: 6036 components: - type: Transform - pos: 67.5,20.5 + pos: 52.5,-11.5 parent: 2 - - uid: 6186 + - uid: 6037 components: - type: Transform - pos: 67.5,21.5 + pos: 52.5,-10.5 parent: 2 - - uid: 6187 + - uid: 6044 components: - type: Transform - pos: 67.5,22.5 + pos: 57.5,-19.5 parent: 2 - - uid: 6188 + - uid: 6045 components: - type: Transform - pos: 67.5,23.5 + pos: 58.5,-19.5 parent: 2 - - uid: 6189 + - uid: 6046 components: - type: Transform - pos: 67.5,24.5 + pos: 59.5,-19.5 parent: 2 - - uid: 6190 + - uid: 6048 components: - type: Transform - pos: 66.5,24.5 + pos: 60.5,-19.5 parent: 2 - - uid: 6191 + - uid: 6049 components: - type: Transform - pos: 66.5,25.5 + pos: 61.5,-19.5 parent: 2 - - uid: 6192 + - uid: 6050 components: - type: Transform - pos: 66.5,26.5 + pos: 62.5,-19.5 parent: 2 - - uid: 6193 + - uid: 6051 components: - type: Transform - pos: 66.5,27.5 + pos: 63.5,-19.5 parent: 2 - - uid: 6194 + - uid: 6052 components: - type: Transform - pos: 66.5,28.5 + pos: 64.5,-19.5 parent: 2 - - uid: 6195 + - uid: 6053 components: - type: Transform - pos: 66.5,29.5 + pos: 65.5,-19.5 parent: 2 - - uid: 6200 + - uid: 6054 components: - type: Transform - pos: 66.5,30.5 + pos: 66.5,-19.5 parent: 2 - - uid: 6201 + - uid: 6055 components: - type: Transform - pos: 66.5,31.5 + pos: 67.5,-19.5 parent: 2 - - uid: 6202 + - uid: 6056 components: - type: Transform - pos: 66.5,32.5 + pos: 68.5,-19.5 parent: 2 - - uid: 6203 + - uid: 6057 components: - type: Transform - pos: 66.5,33.5 + pos: 69.5,-19.5 parent: 2 - - uid: 6204 + - uid: 6058 components: - type: Transform - pos: 66.5,34.5 + pos: 69.5,-18.5 parent: 2 - - uid: 6205 + - uid: 6059 components: - type: Transform - pos: 66.5,35.5 + pos: 69.5,-17.5 parent: 2 - - uid: 6206 + - uid: 6060 components: - type: Transform - pos: 66.5,36.5 + pos: 69.5,-16.5 parent: 2 - - uid: 6207 + - uid: 6061 components: - type: Transform - pos: 66.5,37.5 + pos: 70.5,-16.5 parent: 2 - - uid: 6208 + - uid: 6062 components: - type: Transform - pos: 66.5,38.5 + pos: 71.5,-16.5 parent: 2 - - uid: 6213 + - uid: 6063 components: - type: Transform - pos: 66.5,39.5 + pos: 71.5,-15.5 parent: 2 - - uid: 6214 + - uid: 6064 components: - type: Transform - pos: 66.5,40.5 + pos: 71.5,-14.5 parent: 2 - - uid: 6215 + - uid: 6065 components: - type: Transform - pos: 66.5,41.5 + pos: 71.5,-13.5 parent: 2 - - uid: 6216 + - uid: 6067 components: - type: Transform - pos: 66.5,42.5 + pos: 69.5,-13.5 parent: 2 - - uid: 6217 + - uid: 6070 components: - type: Transform - pos: 67.5,42.5 + pos: 72.5,-15.5 parent: 2 - - uid: 6218 + - uid: 6071 components: - type: Transform - pos: 68.5,42.5 + pos: 73.5,-15.5 parent: 2 - - uid: 6219 + - uid: 6072 components: - type: Transform - pos: 69.5,42.5 + pos: 74.5,-15.5 parent: 2 - - uid: 6220 + - uid: 6073 components: - type: Transform - pos: 69.5,43.5 + pos: 75.5,-15.5 parent: 2 - - uid: 6221 + - uid: 6074 components: - type: Transform - pos: 69.5,44.5 + pos: 76.5,-15.5 parent: 2 - - uid: 6222 + - uid: 6075 components: - type: Transform - pos: 70.5,44.5 + pos: 77.5,-15.5 parent: 2 - - uid: 6223 + - uid: 6076 components: - type: Transform - pos: 71.5,44.5 + pos: 78.5,-15.5 parent: 2 - - uid: 6224 + - uid: 6077 components: - type: Transform - pos: 71.5,45.5 + pos: 79.5,-15.5 parent: 2 - - uid: 6225 + - uid: 6078 components: - type: Transform - pos: 72.5,45.5 + pos: 80.5,-15.5 parent: 2 - - uid: 6226 + - uid: 6079 components: - type: Transform - pos: 73.5,45.5 + pos: 81.5,-15.5 parent: 2 - - uid: 6227 + - uid: 6080 components: - type: Transform - pos: 74.5,45.5 + pos: 82.5,-15.5 parent: 2 - - uid: 6228 + - uid: 6081 components: - type: Transform - pos: 75.5,45.5 + pos: 83.5,-15.5 parent: 2 - - uid: 6229 + - uid: 6082 components: - type: Transform - pos: 77.5,47.5 + pos: 84.5,-15.5 parent: 2 - - uid: 6230 + - uid: 6083 components: - type: Transform - pos: 77.5,48.5 + pos: 85.5,-15.5 parent: 2 - - uid: 6231 + - uid: 6084 components: - type: Transform - pos: 77.5,49.5 + pos: 86.5,-15.5 parent: 2 - - uid: 6232 + - uid: 6087 components: - type: Transform - pos: 79.5,47.5 + pos: 86.5,-14.5 parent: 2 - - uid: 6233 + - uid: 6088 components: - type: Transform - pos: 79.5,48.5 + pos: 86.5,-13.5 parent: 2 - - uid: 6234 + - uid: 6089 components: - type: Transform - pos: 79.5,49.5 + pos: 86.5,-12.5 parent: 2 - - uid: 6235 + - uid: 6090 components: - type: Transform - pos: 77.5,41.5 + pos: 86.5,-11.5 parent: 2 - - uid: 6236 + - uid: 6091 components: - type: Transform - pos: 77.5,42.5 + pos: 86.5,-10.5 parent: 2 - - uid: 6237 + - uid: 6092 components: - type: Transform - pos: 77.5,43.5 + pos: 86.5,-9.5 parent: 2 - - uid: 6239 + - uid: 6093 components: - type: Transform - pos: 79.5,41.5 + pos: 86.5,-8.5 parent: 2 - - uid: 6240 + - uid: 6094 components: - type: Transform - pos: 79.5,42.5 + pos: 86.5,-7.5 parent: 2 - - uid: 6241 + - uid: 6096 components: - type: Transform - pos: 79.5,43.5 + pos: 86.5,-6.5 parent: 2 - - uid: 6242 + - uid: 6097 components: - type: Transform - pos: 78.5,43.5 + pos: 86.5,-5.5 parent: 2 - - uid: 6243 + - uid: 6098 components: - type: Transform - pos: 78.5,44.5 + pos: 86.5,-4.5 parent: 2 - - uid: 6244 + - uid: 6100 components: - type: Transform - pos: 78.5,46.5 + pos: 86.5,-3.5 parent: 2 - - uid: 6245 + - uid: 6101 components: - type: Transform - pos: 78.5,47.5 + pos: 86.5,-2.5 parent: 2 - - uid: 6246 + - uid: 6102 components: - type: Transform - pos: 81.5,47.5 + pos: 85.5,-2.5 parent: 2 - - uid: 6247 + - uid: 6103 components: - type: Transform - pos: 81.5,48.5 + pos: 84.5,-2.5 parent: 2 - - uid: 6248 + - uid: 6104 components: - type: Transform - pos: 81.5,49.5 + pos: 84.5,-1.5 parent: 2 - - uid: 6249 + - uid: 6105 components: - type: Transform - pos: 81.5,50.5 + pos: 84.5,-0.5 parent: 2 - - uid: 6250 + - uid: 6106 components: - type: Transform - pos: 83.5,47.5 + pos: 84.5,0.5 parent: 2 - - uid: 6251 + - uid: 6107 components: - type: Transform - pos: 83.5,48.5 + pos: 84.5,1.5 parent: 2 - - uid: 6252 + - uid: 6108 components: - type: Transform - pos: 83.5,49.5 + pos: 84.5,2.5 parent: 2 - - uid: 6253 + - uid: 6109 components: - type: Transform - pos: 83.5,50.5 + pos: 84.5,3.5 parent: 2 - - uid: 6254 + - uid: 6110 components: - type: Transform - pos: 82.5,47.5 + pos: 84.5,4.5 parent: 2 - - uid: 6255 + - uid: 6111 components: - type: Transform - pos: 82.5,46.5 + pos: 83.5,4.5 parent: 2 - - uid: 6256 + - uid: 6112 components: - type: Transform - pos: 81.5,40.5 + pos: 82.5,4.5 parent: 2 - - uid: 6257 + - uid: 6141 components: - type: Transform - pos: 81.5,41.5 + pos: 81.5,4.5 parent: 2 - - uid: 6258 + - uid: 6142 components: - type: Transform - pos: 81.5,42.5 + pos: 81.5,5.5 parent: 2 - - uid: 6259 + - uid: 6143 components: - type: Transform - pos: 81.5,43.5 + pos: 81.5,6.5 parent: 2 - - uid: 6260 + - uid: 6144 components: - type: Transform - pos: 83.5,40.5 + pos: 81.5,7.5 parent: 2 - - uid: 6261 + - uid: 6145 components: - type: Transform - pos: 83.5,41.5 + pos: 81.5,8.5 parent: 2 - - uid: 6262 + - uid: 6146 components: - type: Transform - pos: 83.5,42.5 + pos: 81.5,9.5 parent: 2 - - uid: 6263 + - uid: 6147 components: - type: Transform - pos: 83.5,43.5 + pos: 81.5,10.5 parent: 2 - - uid: 6264 + - uid: 6148 components: - type: Transform - pos: 82.5,43.5 + pos: 81.5,11.5 parent: 2 - - uid: 6265 + - uid: 6149 components: - type: Transform - pos: 82.5,44.5 + pos: 81.5,12.5 parent: 2 - - uid: 6266 + - uid: 6150 components: - type: Transform - pos: 85.5,47.5 + pos: 80.5,12.5 parent: 2 - - uid: 6267 + - uid: 6151 components: - type: Transform - pos: 85.5,48.5 + pos: 79.5,12.5 parent: 2 - - uid: 6268 + - uid: 6152 components: - type: Transform - pos: 85.5,49.5 + pos: 78.5,12.5 parent: 2 - - uid: 6269 + - uid: 6153 components: - type: Transform - pos: 86.5,47.5 + pos: 77.5,12.5 parent: 2 - - uid: 6270 + - uid: 6154 components: - type: Transform - pos: 86.5,46.5 + pos: 76.5,12.5 parent: 2 - - uid: 6271 + - uid: 6155 components: - type: Transform - pos: 87.5,47.5 + pos: 75.5,12.5 parent: 2 - - uid: 6272 + - uid: 6156 components: - type: Transform - pos: 87.5,48.5 + pos: 74.5,12.5 parent: 2 - - uid: 6273 + - uid: 6157 components: - type: Transform - pos: 87.5,49.5 + pos: 74.5,11.5 parent: 2 - - uid: 6274 + - uid: 6159 components: - type: Transform - pos: 85.5,41.5 + pos: 74.5,10.5 parent: 2 - - uid: 6275 + - uid: 6160 components: - type: Transform - pos: 85.5,42.5 + pos: 73.5,10.5 parent: 2 - - uid: 6276 + - uid: 6161 components: - type: Transform - pos: 85.5,43.5 + pos: 72.5,10.5 parent: 2 - - uid: 6277 + - uid: 6162 components: - type: Transform - pos: 87.5,41.5 + pos: 71.5,10.5 parent: 2 - - uid: 6278 + - uid: 6163 components: - type: Transform - pos: 87.5,42.5 + pos: 70.5,10.5 parent: 2 - - uid: 6279 + - uid: 6164 components: - type: Transform - pos: 87.5,43.5 + pos: 69.5,10.5 parent: 2 - - uid: 6280 + - uid: 6165 components: - type: Transform - pos: 86.5,43.5 + pos: 68.5,10.5 parent: 2 - - uid: 6281 + - uid: 6166 components: - type: Transform - pos: 86.5,44.5 + pos: 67.5,10.5 parent: 2 - - uid: 6282 + - uid: 6167 components: - type: Transform - pos: 89.5,45.5 + pos: 67.5,9.5 parent: 2 - - uid: 6283 + - uid: 6168 components: - type: Transform - pos: 88.5,45.5 + pos: 67.5,8.5 parent: 2 - - uid: 6285 + - uid: 6169 components: - type: Transform - pos: 67.5,43.5 + pos: 74.5,13.5 parent: 2 - - uid: 6286 + - uid: 6170 components: - type: Transform - pos: 67.5,44.5 + pos: 74.5,14.5 parent: 2 - - uid: 6287 + - uid: 6171 components: - type: Transform - pos: 67.5,45.5 + pos: 74.5,15.5 parent: 2 - - uid: 6288 + - uid: 6173 components: - type: Transform - pos: 67.5,46.5 + pos: 74.5,16.5 parent: 2 - - uid: 6289 + - uid: 6174 components: - type: Transform - pos: 66.5,46.5 + pos: 74.5,17.5 parent: 2 - - uid: 6290 + - uid: 6175 components: - type: Transform - pos: 65.5,46.5 + pos: 74.5,18.5 parent: 2 - - uid: 6291 + - uid: 6176 components: - type: Transform - pos: 64.5,46.5 + pos: 73.5,18.5 parent: 2 - - uid: 6292 + - uid: 6177 components: - type: Transform - pos: 63.5,46.5 + pos: 72.5,18.5 parent: 2 - - uid: 6293 + - uid: 6178 components: - type: Transform - pos: 63.5,47.5 + pos: 71.5,18.5 parent: 2 - - uid: 6294 + - uid: 6179 components: - type: Transform - pos: 62.5,48.5 + pos: 70.5,18.5 parent: 2 - - uid: 6295 + - uid: 6181 components: - type: Transform - pos: 61.5,48.5 + pos: 69.5,18.5 parent: 2 - - uid: 6296 + - uid: 6182 components: - type: Transform - pos: 60.5,48.5 + pos: 68.5,18.5 parent: 2 - - uid: 6297 + - uid: 6183 components: - type: Transform - pos: 59.5,48.5 + pos: 67.5,18.5 parent: 2 - - uid: 6298 + - uid: 6185 components: - type: Transform - pos: 58.5,48.5 + pos: 67.5,20.5 parent: 2 - - uid: 6299 + - uid: 6186 components: - type: Transform - pos: 57.5,48.5 + pos: 67.5,21.5 parent: 2 - - uid: 6300 + - uid: 6187 components: - type: Transform - pos: 56.5,48.5 + pos: 67.5,22.5 parent: 2 - - uid: 6301 + - uid: 6188 components: - type: Transform - pos: 55.5,48.5 + pos: 67.5,23.5 parent: 2 - - uid: 6302 + - uid: 6189 components: - type: Transform - pos: 54.5,48.5 + pos: 67.5,24.5 parent: 2 - - uid: 6303 + - uid: 6190 components: - type: Transform - pos: 53.5,48.5 + pos: 66.5,24.5 parent: 2 - - uid: 6304 + - uid: 6191 components: - type: Transform - pos: 52.5,48.5 + pos: 66.5,25.5 parent: 2 - - uid: 6305 + - uid: 6192 components: - type: Transform - pos: 51.5,48.5 + pos: 66.5,26.5 parent: 2 - - uid: 6306 + - uid: 6193 components: - type: Transform - pos: 50.5,48.5 + pos: 66.5,27.5 parent: 2 - - uid: 6307 + - uid: 6194 components: - type: Transform - pos: 49.5,48.5 + pos: 66.5,28.5 parent: 2 - - uid: 6310 + - uid: 6195 components: - type: Transform - pos: 49.5,47.5 + pos: 66.5,29.5 parent: 2 - - uid: 6311 + - uid: 6200 components: - type: Transform - pos: 48.5,47.5 + pos: 66.5,30.5 parent: 2 - - uid: 6312 + - uid: 6201 components: - type: Transform - pos: 47.5,47.5 + pos: 66.5,31.5 parent: 2 - - uid: 6313 + - uid: 6202 components: - type: Transform - pos: 46.5,47.5 + pos: 66.5,32.5 parent: 2 - - uid: 6314 + - uid: 6203 components: - type: Transform - pos: 46.5,46.5 + pos: 66.5,33.5 parent: 2 - - uid: 6315 + - uid: 6204 components: - type: Transform - pos: 45.5,46.5 + pos: 66.5,34.5 parent: 2 - - uid: 6317 + - uid: 6205 components: - type: Transform - pos: 47.5,26.5 + pos: 66.5,35.5 parent: 2 - - uid: 6318 + - uid: 6206 components: - type: Transform - pos: 44.5,46.5 + pos: 66.5,36.5 parent: 2 - - uid: 6319 + - uid: 6207 components: - type: Transform - pos: 44.5,45.5 + pos: 66.5,37.5 parent: 2 - - uid: 6320 + - uid: 6208 components: - type: Transform - pos: 44.5,44.5 + pos: 66.5,38.5 parent: 2 - - uid: 6321 + - uid: 6213 components: - type: Transform - pos: 44.5,43.5 + pos: 66.5,39.5 parent: 2 - - uid: 6322 + - uid: 6214 components: - type: Transform - pos: 44.5,42.5 + pos: 66.5,40.5 parent: 2 - - uid: 6323 + - uid: 6215 components: - type: Transform - pos: 44.5,41.5 + pos: 66.5,41.5 parent: 2 - - uid: 6324 + - uid: 6216 components: - type: Transform - pos: 44.5,40.5 + pos: 66.5,42.5 parent: 2 - - uid: 6325 + - uid: 6217 components: - type: Transform - pos: 44.5,39.5 + pos: 67.5,42.5 parent: 2 - - uid: 6326 + - uid: 6218 components: - type: Transform - pos: 45.5,39.5 + pos: 68.5,42.5 parent: 2 - - uid: 6327 + - uid: 6219 components: - type: Transform - pos: 45.5,38.5 + pos: 69.5,42.5 parent: 2 - - uid: 6328 + - uid: 6220 components: - type: Transform - pos: 45.5,37.5 + pos: 69.5,43.5 parent: 2 - - uid: 6329 + - uid: 6221 components: - type: Transform - pos: 45.5,36.5 + pos: 69.5,44.5 parent: 2 - - uid: 6330 + - uid: 6222 components: - type: Transform - pos: 45.5,35.5 + pos: 70.5,44.5 parent: 2 - - uid: 6331 + - uid: 6223 components: - type: Transform - pos: 45.5,34.5 + pos: 71.5,44.5 parent: 2 - - uid: 6332 + - uid: 6224 components: - type: Transform - pos: 45.5,33.5 + pos: 71.5,45.5 parent: 2 - - uid: 6333 + - uid: 6225 components: - type: Transform - pos: 45.5,32.5 + pos: 72.5,45.5 parent: 2 - - uid: 6334 + - uid: 6226 components: - type: Transform - pos: 45.5,31.5 + pos: 73.5,45.5 parent: 2 - - uid: 6335 + - uid: 6227 components: - type: Transform - pos: 45.5,30.5 + pos: 74.5,45.5 parent: 2 - - uid: 6336 + - uid: 6228 components: - type: Transform - pos: 45.5,29.5 + pos: 75.5,45.5 parent: 2 - - uid: 6337 + - uid: 6229 components: - type: Transform - pos: 45.5,28.5 + pos: 77.5,47.5 parent: 2 - - uid: 6338 + - uid: 6230 components: - type: Transform - pos: 44.5,28.5 + pos: 77.5,48.5 parent: 2 - - uid: 6339 + - uid: 6231 components: - type: Transform - pos: 43.5,28.5 + pos: 77.5,49.5 parent: 2 - - uid: 6340 + - uid: 6232 components: - type: Transform - pos: 46.5,28.5 + pos: 79.5,47.5 parent: 2 - - uid: 6341 + - uid: 6233 components: - type: Transform - pos: 46.5,27.5 + pos: 79.5,48.5 parent: 2 - - uid: 6343 + - uid: 6234 components: - type: Transform - pos: 47.5,27.5 + pos: 79.5,49.5 parent: 2 - - uid: 6344 + - uid: 6235 components: - type: Transform - pos: 48.5,27.5 + pos: 77.5,41.5 parent: 2 - - uid: 6345 + - uid: 6236 components: - type: Transform - pos: 49.5,27.5 + pos: 77.5,42.5 parent: 2 - - uid: 6346 + - uid: 6237 components: - type: Transform - pos: 50.5,27.5 + pos: 77.5,43.5 parent: 2 - - uid: 6347 + - uid: 6239 components: - type: Transform - pos: 47.5,25.5 + pos: 79.5,41.5 parent: 2 - - uid: 6348 + - uid: 6240 components: - type: Transform - pos: 47.5,24.5 + pos: 79.5,42.5 parent: 2 - - uid: 6349 + - uid: 6241 components: - type: Transform - pos: 47.5,23.5 + pos: 79.5,43.5 parent: 2 - - uid: 6350 + - uid: 6242 components: - type: Transform - pos: 47.5,22.5 + pos: 78.5,43.5 parent: 2 - - uid: 6351 + - uid: 6243 components: - type: Transform - pos: 47.5,21.5 + pos: 78.5,44.5 parent: 2 - - uid: 6352 + - uid: 6244 components: - type: Transform - pos: 47.5,20.5 + pos: 78.5,46.5 parent: 2 - - uid: 6353 + - uid: 6245 components: - type: Transform - pos: 47.5,19.5 + pos: 78.5,47.5 parent: 2 - - uid: 6354 + - uid: 6246 components: - type: Transform - pos: 47.5,18.5 + pos: 81.5,47.5 parent: 2 - - uid: 6355 + - uid: 6247 components: - type: Transform - pos: 47.5,17.5 + pos: 81.5,48.5 parent: 2 - - uid: 6356 + - uid: 6248 components: - type: Transform - pos: 47.5,16.5 + pos: 81.5,49.5 parent: 2 - - uid: 6357 + - uid: 6249 components: - type: Transform - pos: 47.5,15.5 + pos: 81.5,50.5 parent: 2 - - uid: 6359 + - uid: 6250 components: - type: Transform - pos: 47.5,14.5 + pos: 83.5,47.5 parent: 2 - - uid: 6360 + - uid: 6251 components: - type: Transform - pos: 46.5,14.5 + pos: 83.5,48.5 parent: 2 - - uid: 6361 + - uid: 6252 components: - type: Transform - pos: 45.5,14.5 + pos: 83.5,49.5 parent: 2 - - uid: 6362 + - uid: 6253 components: - type: Transform - pos: 44.5,14.5 + pos: 83.5,50.5 parent: 2 - - uid: 6363 + - uid: 6254 components: - type: Transform - pos: 43.5,14.5 + pos: 82.5,47.5 parent: 2 - - uid: 6364 + - uid: 6255 components: - type: Transform - pos: 42.5,14.5 + pos: 82.5,46.5 parent: 2 - - uid: 6365 + - uid: 6256 components: - type: Transform - pos: 41.5,14.5 + pos: 81.5,40.5 parent: 2 - - uid: 6366 + - uid: 6257 components: - type: Transform - pos: 41.5,13.5 + pos: 81.5,41.5 parent: 2 - - uid: 6367 + - uid: 6258 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 81.5,43.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 83.5,41.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 83.5,42.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: 83.5,43.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 85.5,48.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 85.5,49.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 86.5,47.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 87.5,47.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 87.5,49.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: 85.5,42.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 85.5,43.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: 87.5,41.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: 87.5,42.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: 87.5,43.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 86.5,43.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 89.5,45.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 88.5,45.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 67.5,43.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 63.5,47.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: 54.5,48.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: 53.5,48.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 52.5,48.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 51.5,48.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 46.5,47.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 44.5,45.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 44.5,44.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 44.5,42.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 6367 components: - type: Transform pos: 41.5,12.5 @@ -22757,11 +24738,6 @@ entities: - type: Transform pos: 22.5,-14.5 parent: 2 - - uid: 6767 - components: - - type: Transform - pos: 15.5,-42.5 - parent: 2 - uid: 6897 components: - type: Transform @@ -22872,36 +24848,6 @@ entities: - type: Transform pos: 11.5,18.5 parent: 2 - - uid: 7167 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 7168 - components: - - type: Transform - pos: 15.5,33.5 - parent: 2 - - uid: 7169 - components: - - type: Transform - pos: 15.5,32.5 - parent: 2 - - uid: 7170 - components: - - type: Transform - pos: 15.5,31.5 - parent: 2 - - uid: 7171 - components: - - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 7173 components: - type: Transform @@ -23122,20 +25068,35 @@ entities: - type: Transform pos: 14.5,28.5 parent: 2 - - uid: 8304 + - uid: 7782 components: - type: Transform - pos: 43.5,27.5 + pos: 8.5,15.5 parent: 2 - - uid: 8446 + - uid: 7967 components: - type: Transform - pos: 16.5,-36.5 + pos: 13.5,-41.5 parent: 2 - - uid: 8447 + - uid: 7968 components: - type: Transform - pos: 16.5,-35.5 + pos: 16.5,-41.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: 8.5,16.5 parent: 2 - uid: 8818 components: @@ -23362,50 +25323,25 @@ entities: - type: Transform pos: 34.5,33.5 parent: 2 - - uid: 9454 + - uid: 9458 components: - type: Transform - pos: 34.5,32.5 + pos: 30.5,32.5 parent: 2 - - uid: 9455 + - uid: 9459 components: - type: Transform - pos: 33.5,32.5 + pos: 29.5,32.5 parent: 2 - - uid: 9456 + - uid: 9460 components: - type: Transform - pos: 32.5,32.5 + pos: 28.5,32.5 parent: 2 - - uid: 9457 + - uid: 9462 components: - type: Transform - pos: 31.5,32.5 - parent: 2 - - uid: 9458 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9459 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 9460 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 9461 - components: - - type: Transform - pos: 14.5,36.5 - parent: 2 - - uid: 9462 - components: - - type: Transform - pos: 15.5,36.5 + pos: 15.5,36.5 parent: 2 - uid: 9463 components: @@ -23847,10 +25783,10 @@ entities: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 12296 + - uid: 11811 components: - type: Transform - pos: 65.5,19.5 + pos: 10.5,16.5 parent: 2 - uid: 12596 components: @@ -24102,6 +26038,21 @@ entities: - type: Transform pos: 112.5,-15.5 parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 - uid: 12807 components: - type: Transform @@ -24237,11 +26188,6 @@ entities: - type: Transform pos: 40.5,-46.5 parent: 2 - - uid: 13156 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 2 - uid: 13157 components: - type: Transform @@ -24277,11 +26223,6 @@ entities: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 13186 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 2 - uid: 13187 components: - type: Transform @@ -24492,100 +26433,85 @@ entities: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 13497 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 13498 + - uid: 13689 components: - type: Transform - pos: 56.5,27.5 + pos: 9.5,16.5 parent: 2 - - uid: 13499 + - uid: 13693 components: - type: Transform - pos: 56.5,28.5 + pos: 16.5,-38.5 parent: 2 - - uid: 13500 + - uid: 14396 components: - type: Transform - pos: 56.5,30.5 + pos: 79.5,33.5 parent: 2 - - uid: 13501 + - uid: 14397 components: - type: Transform - pos: 56.5,31.5 + pos: 79.5,34.5 parent: 2 - - uid: 13502 + - uid: 14398 components: - type: Transform - pos: 56.5,32.5 + pos: 80.5,34.5 parent: 2 - - uid: 13503 + - uid: 14582 components: - type: Transform - pos: 56.5,33.5 - parent: 2 - - uid: 13504 - components: - - type: Transform - pos: 56.5,34.5 - parent: 2 - - uid: 13505 - components: - - type: Transform - pos: 56.5,29.5 + pos: 45.5,41.5 parent: 2 - - uid: 13506 + - uid: 14583 components: - type: Transform - pos: 55.5,34.5 + pos: 45.5,40.5 parent: 2 - - uid: 13507 + - uid: 14727 components: - type: Transform - pos: 54.5,34.5 + pos: 41.5,-19.5 parent: 2 - - uid: 13508 + - uid: 14929 components: - type: Transform - pos: 54.5,35.5 + pos: 37.5,33.5 parent: 2 - - uid: 13509 + - uid: 14930 components: - type: Transform - pos: 54.5,36.5 + pos: 37.5,34.5 parent: 2 - - uid: 13510 + - uid: 15021 components: - type: Transform - pos: 54.5,37.5 + pos: 51.5,-19.5 parent: 2 - - uid: 13511 + - uid: 15022 components: - type: Transform - pos: 54.5,38.5 + pos: 55.5,-19.5 parent: 2 - - uid: 13512 + - uid: 15023 components: - type: Transform - pos: 55.5,38.5 + pos: 54.5,-19.5 parent: 2 - - uid: 13513 + - uid: 15024 components: - type: Transform - pos: 56.5,38.5 + pos: 56.5,-19.5 parent: 2 - - uid: 13514 + - uid: 15025 components: - type: Transform - pos: 57.5,38.5 + pos: 53.5,-19.5 parent: 2 - - uid: 13515 + - uid: 15026 components: - type: Transform - pos: 57.5,37.5 + pos: 52.5,-19.5 parent: 2 - proto: CableHVStack entities: @@ -24612,6 +26538,21 @@ entities: parent: 2 - proto: CableMV entities: + - uid: 12 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 - uid: 57 components: - type: Transform @@ -24622,15 +26563,85 @@ entities: - type: Transform pos: 8.5,-26.5 parent: 2 - - uid: 769 + - uid: 93 components: - type: Transform - pos: 4.5,-30.5 + pos: -23.5,-3.5 parent: 2 - - uid: 850 + - uid: 94 components: - type: Transform - pos: 38.5,-10.5 + pos: -21.5,-3.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 4.5,-30.5 parent: 2 - uid: 1028 components: @@ -24657,11 +26668,141 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 - uid: 1555 components: - type: Transform pos: 41.5,-0.5 parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 - uid: 2688 components: - type: Transform @@ -24682,11 +26823,61 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 + - uid: 3131 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 - uid: 3403 components: - type: Transform pos: 22.5,8.5 parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 - uid: 3486 components: - type: Transform @@ -24707,10 +26898,15 @@ entities: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 4177 + - uid: 4020 components: - type: Transform - pos: 37.5,-10.5 + pos: 13.5,19.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 13.5,20.5 parent: 2 - uid: 4182 components: @@ -24722,6 +26918,21 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 + - uid: 4349 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 - uid: 4605 components: - type: Transform @@ -24852,26 +27063,6 @@ entities: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 4633 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 - - uid: 4634 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 2 - - uid: 4635 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 2 - - uid: 4636 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - uid: 4641 components: - type: Transform @@ -25067,6 +27258,11 @@ entities: - type: Transform pos: 3.5,-27.5 parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 - uid: 5185 components: - type: Transform @@ -25077,6 +27273,11 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 - uid: 5578 components: - type: Transform @@ -25092,6 +27293,21 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 2 + - uid: 6039 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 - uid: 6455 components: - type: Transform @@ -25117,11 +27333,26 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 - uid: 6766 components: - type: Transform pos: 14.5,-41.5 parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 - uid: 6768 components: - type: Transform @@ -25152,6 +27383,16 @@ entities: - type: Transform pos: 13.5,-46.5 parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 - uid: 6940 components: - type: Transform @@ -25537,26 +27778,6 @@ entities: - type: Transform pos: 29.5,10.5 parent: 2 - - uid: 7217 - components: - - type: Transform - pos: 12.5,34.5 - parent: 2 - - uid: 7218 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 7219 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 7220 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - uid: 7221 components: - type: Transform @@ -25572,11 +27793,6 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 - - uid: 7224 - components: - - type: Transform - pos: 13.5,35.5 - parent: 2 - uid: 7225 components: - type: Transform @@ -25637,91 +27853,11 @@ entities: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 7237 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 - - uid: 7238 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - - uid: 7239 - components: - - type: Transform - pos: 16.5,23.5 - parent: 2 - - uid: 7240 - components: - - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 7241 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 7242 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - uid: 7243 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 7244 - components: - - type: Transform - pos: 9.5,18.5 - parent: 2 - - uid: 7245 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - - uid: 7246 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - - uid: 7247 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - - uid: 7248 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 7250 - components: - - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 7251 - components: - - type: Transform - pos: 10.5,22.5 - parent: 2 - - uid: 7252 - components: - - type: Transform - pos: 11.5,22.5 - parent: 2 - - uid: 7253 - components: - - type: Transform - pos: 12.5,22.5 - parent: 2 - uid: 7254 components: - type: Transform @@ -25762,21 +27898,6 @@ entities: - type: Transform pos: 12.5,18.5 parent: 2 - - uid: 7262 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 - - uid: 7263 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 7264 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - uid: 7265 components: - type: Transform @@ -25827,11 +27948,6 @@ entities: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 7483 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - uid: 7484 components: - type: Transform @@ -25927,16 +28043,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 7503 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - - uid: 7504 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 2 - uid: 7505 components: - type: Transform @@ -25947,11 +28053,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 7507 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - uid: 7508 components: - type: Transform @@ -26007,125 +28108,70 @@ entities: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 7519 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 2 - - uid: 7520 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 2 - - uid: 7521 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 2 - - uid: 7522 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 2 - - uid: 7523 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 2 - - uid: 7524 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 2 - - uid: 7525 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - - uid: 7531 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 2 - - uid: 7532 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - - uid: 7534 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 2 - - uid: 7535 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - - uid: 7536 + - uid: 7594 components: - type: Transform - pos: -7.5,-13.5 + pos: 16.5,21.5 parent: 2 - - uid: 7537 + - uid: 7596 components: - type: Transform - pos: -8.5,-13.5 + pos: -24.5,-18.5 parent: 2 - - uid: 7538 + - uid: 7672 components: - type: Transform - pos: -9.5,-13.5 + pos: 18.5,19.5 parent: 2 - - uid: 7539 + - uid: 7849 components: - type: Transform - pos: -10.5,-13.5 + pos: 32.5,36.5 parent: 2 - - uid: 7540 + - uid: 7891 components: - type: Transform - pos: -11.5,-13.5 + pos: 15.5,-38.5 parent: 2 - - uid: 7541 + - uid: 7937 components: - type: Transform - pos: -12.5,-13.5 + pos: 40.5,20.5 parent: 2 - - uid: 7542 + - uid: 7939 components: - type: Transform - pos: -13.5,-13.5 + pos: 41.5,20.5 parent: 2 - - uid: 7543 + - uid: 7947 components: - type: Transform - pos: -14.5,-13.5 + pos: 40.5,29.5 parent: 2 - - uid: 7544 + - uid: 7953 components: - type: Transform - pos: -15.5,-13.5 + pos: 30.5,29.5 parent: 2 - - uid: 7548 + - uid: 7956 components: - type: Transform - pos: -15.5,-14.5 + pos: 29.5,29.5 parent: 2 - - uid: 7549 + - uid: 8047 components: - type: Transform - pos: -15.5,-15.5 + pos: 14.5,37.5 parent: 2 - - uid: 7781 + - uid: 8060 components: - type: Transform - pos: 16.5,-38.5 + pos: 14.5,39.5 parent: 2 - - uid: 7782 + - uid: 8199 components: - type: Transform - pos: 16.5,-37.5 + pos: 8.5,16.5 parent: 2 - uid: 8287 components: @@ -26147,11 +28193,6 @@ entities: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 8349 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - uid: 8350 components: - type: Transform @@ -26187,16 +28228,6 @@ entities: - type: Transform pos: 39.5,23.5 parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 41.5,22.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - uid: 8359 components: - type: Transform @@ -26272,45 +28303,10 @@ entities: - type: Transform pos: 33.5,30.5 parent: 2 - - uid: 8375 - components: - - type: Transform - pos: 34.5,30.5 - parent: 2 - - uid: 8376 - components: - - type: Transform - pos: 35.5,30.5 - parent: 2 - - uid: 8383 - components: - - type: Transform - pos: 36.5,30.5 - parent: 2 - - uid: 8384 - components: - - type: Transform - pos: 36.5,29.5 - parent: 2 - - uid: 8385 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 8386 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8387 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 8388 + - uid: 8392 components: - type: Transform - pos: 37.5,25.5 + pos: 32.5,29.5 parent: 2 - uid: 8456 components: @@ -26392,20 +28388,30 @@ entities: - type: Transform pos: 28.5,17.5 parent: 2 - - uid: 8536 + - uid: 8473 components: - type: Transform - pos: 37.5,26.5 + pos: 35.5,28.5 parent: 2 - - uid: 8537 + - uid: 8474 components: - type: Transform - pos: 37.5,27.5 + pos: 35.5,29.5 parent: 2 - - uid: 8538 + - uid: 8475 components: - type: Transform - pos: 37.5,28.5 + pos: 34.5,28.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 41.5,21.5 parent: 2 - uid: 8539 components: @@ -26457,6 +28463,16 @@ entities: - type: Transform pos: 31.5,17.5 parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 - uid: 8698 components: - type: Transform @@ -26582,11 +28598,6 @@ entities: - type: Transform pos: 28.5,33.5 parent: 2 - - uid: 9036 - components: - - type: Transform - pos: 27.5,34.5 - parent: 2 - uid: 9037 components: - type: Transform @@ -26602,16 +28613,6 @@ entities: - type: Transform pos: 30.5,36.5 parent: 2 - - uid: 9040 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 9041 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - uid: 9042 components: - type: Transform @@ -26712,11 +28713,6 @@ entities: - type: Transform pos: 33.5,44.5 parent: 2 - - uid: 9094 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - uid: 9095 components: - type: Transform @@ -26887,6 +28883,16 @@ entities: - type: Transform pos: 36.5,46.5 parent: 2 + - uid: 9238 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 - uid: 9253 components: - type: Transform @@ -26957,6 +28963,21 @@ entities: - type: Transform pos: 66.5,45.5 parent: 2 + - uid: 9296 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 - uid: 9474 components: - type: Transform @@ -26977,6 +28998,11 @@ entities: - type: Transform pos: 21.5,44.5 parent: 2 + - uid: 9571 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 - uid: 9638 components: - type: Transform @@ -26987,21 +29013,11 @@ entities: - type: Transform pos: 52.5,-12.5 parent: 2 - - uid: 9640 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - uid: 9641 components: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 9642 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - uid: 9643 components: - type: Transform @@ -27552,26 +29568,11 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 9857 - components: - - type: Transform - pos: 51.5,-14.5 - parent: 2 - - uid: 9858 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - uid: 9859 components: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 9860 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 - uid: 9861 components: - type: Transform @@ -27737,55 +29738,40 @@ entities: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 9896 - components: - - type: Transform - pos: 39.5,-27.5 - parent: 2 - - uid: 9897 - components: - - type: Transform - pos: 39.5,-26.5 - parent: 2 - uid: 9898 components: - type: Transform pos: 38.5,-25.5 parent: 2 - - uid: 9899 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - - uid: 9900 + - uid: 9904 components: - type: Transform - pos: 38.5,-24.5 + pos: 36.5,-22.5 parent: 2 - - uid: 9901 + - uid: 9928 components: - type: Transform - pos: 37.5,-23.5 + pos: 55.5,35.5 parent: 2 - - uid: 9902 + - uid: 10044 components: - type: Transform - pos: 37.5,-24.5 + pos: 56.5,34.5 parent: 2 - - uid: 9903 + - uid: 10130 components: - type: Transform - pos: 36.5,-23.5 + pos: 63.5,-7.5 parent: 2 - - uid: 9904 + - uid: 10136 components: - type: Transform - pos: 36.5,-22.5 + pos: 31.5,29.5 parent: 2 - - uid: 10130 + - uid: 10318 components: - type: Transform - pos: 63.5,-7.5 + pos: 36.5,33.5 parent: 2 - uid: 10672 components: @@ -28027,6 +30013,11 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 - uid: 10854 components: - type: Transform @@ -28597,6 +30588,46 @@ entities: - type: Transform pos: 65.5,0.5 parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: 66.5,40.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 - uid: 12139 components: - type: Transform @@ -28637,6 +30668,11 @@ entities: - type: Transform pos: 78.5,-14.5 parent: 2 + - uid: 12150 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 - uid: 12171 components: - type: Transform @@ -28862,6 +30898,16 @@ entities: - type: Transform pos: 21.5,-41.5 parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 - uid: 13313 components: - type: Transform @@ -29077,52118 +31123,59300 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 13517 + - uid: 13499 components: - type: Transform - pos: 57.5,37.5 + pos: 56.5,39.5 parent: 2 - - uid: 13518 + - uid: 13500 components: - type: Transform - pos: 57.5,36.5 + pos: 56.5,32.5 parent: 2 - - uid: 13519 + - uid: 13501 components: - type: Transform - pos: 58.5,36.5 + pos: 56.5,37.5 parent: 2 - - uid: 13520 + - uid: 13502 components: - type: Transform - pos: 58.5,35.5 + pos: 56.5,33.5 parent: 2 - - uid: 13521 + - uid: 13503 components: - type: Transform - pos: 58.5,34.5 + pos: 56.5,31.5 parent: 2 - - uid: 13522 + - uid: 13504 components: - type: Transform - pos: 57.5,34.5 + pos: 55.5,30.5 parent: 2 - - uid: 13523 + - uid: 13505 components: - type: Transform - pos: 56.5,34.5 + pos: 56.5,38.5 parent: 2 - - uid: 13524 + - uid: 13506 components: - type: Transform - pos: 55.5,34.5 + pos: 54.5,35.5 parent: 2 - - uid: 13525 + - uid: 13508 components: - type: Transform - pos: 54.5,34.5 + pos: 56.5,35.5 parent: 2 - uid: 13526 components: - type: Transform - pos: 54.5,35.5 + pos: 52.5,35.5 parent: 2 - uid: 13527 components: - type: Transform - pos: 54.5,36.5 + pos: 56.5,41.5 parent: 2 - - uid: 13528 + - uid: 13529 components: - type: Transform - pos: 54.5,37.5 + pos: 52.5,39.5 parent: 2 - - uid: 13529 + - uid: 13530 components: - type: Transform - pos: 55.5,37.5 + pos: 54.5,39.5 parent: 2 - - uid: 13610 + - uid: 13531 components: - type: Transform - pos: 58.5,32.5 + pos: 56.5,40.5 parent: 2 - - uid: 13611 + - uid: 13532 components: - type: Transform - pos: 58.5,33.5 + pos: 52.5,38.5 parent: 2 -- proto: CableMVStack - entities: - - uid: 5628 + - uid: 13533 components: - type: Transform - pos: 17.902254,-23.387651 + pos: 55.5,42.5 parent: 2 - - uid: 6316 + - uid: 13534 components: - type: Transform - pos: 90.66321,-10.120396 + pos: 53.5,39.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 338 + - uid: 13535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-32.5 + pos: 56.5,42.5 parent: 2 - - uid: 682 + - uid: 13536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-32.5 + pos: 57.5,42.5 parent: 2 - - uid: 886 + - uid: 13537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-32.5 + pos: 59.5,36.5 parent: 2 - - uid: 4872 + - uid: 13538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 + pos: 60.5,36.5 parent: 2 - - uid: 6284 + - uid: 13539 components: - type: Transform - pos: 71.5,45.5 + pos: 57.5,30.5 parent: 2 - - uid: 6442 + - uid: 13543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-15.5 + pos: 56.5,36.5 parent: 2 - - uid: 12647 + - uid: 13544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 112.5,-18.5 + pos: 57.5,36.5 parent: 2 - - uid: 13516 + - uid: 13546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,38.5 + pos: 58.5,36.5 parent: 2 -- proto: CandyBowl - entities: - - uid: 13078 + - uid: 13679 components: - type: Transform - pos: 54.503376,-4.6494684 + pos: -23.5,-5.5 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 11109 + - uid: 13680 components: - type: Transform - pos: 41.505302,37.40492 + pos: -23.5,-4.5 parent: 2 -- proto: CaptainIDCard - entities: - - uid: 1255 + - uid: 13681 components: - type: Transform - pos: 33.48514,41.714756 + pos: -23.5,-6.5 parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 1924 + - uid: 13701 components: - type: Transform - pos: 50.5,-27.5 + pos: -23.5,-7.5 parent: 2 - - uid: 4771 + - uid: 13702 components: - type: Transform - pos: 45.5,-37.5 + pos: -23.5,-9.5 parent: 2 - - uid: 12998 + - uid: 13703 components: - type: Transform - pos: 34.5,-45.5 + pos: -23.5,-8.5 parent: 2 -- proto: Carpet - entities: - - uid: 3 + - uid: 13705 components: - type: Transform - pos: 43.5,22.5 + pos: -23.5,-11.5 parent: 2 - - uid: 266 + - uid: 13718 components: - type: Transform - pos: 9.5,7.5 + pos: -23.5,-12.5 parent: 2 - - uid: 268 + - uid: 13719 components: - type: Transform - pos: 11.5,6.5 + pos: -23.5,-13.5 parent: 2 - - uid: 269 + - uid: 13720 components: - type: Transform - pos: 11.5,7.5 + pos: -23.5,-14.5 parent: 2 - - uid: 549 + - uid: 13721 components: - type: Transform - pos: 12.5,-2.5 + pos: -23.5,-15.5 parent: 2 - - uid: 550 + - uid: 13722 components: - type: Transform - pos: 11.5,-2.5 + pos: -23.5,-10.5 parent: 2 - - uid: 551 + - uid: 13723 components: - type: Transform - pos: 11.5,-3.5 + pos: -23.5,-16.5 parent: 2 - - uid: 552 + - uid: 13724 components: - type: Transform - pos: 12.5,-3.5 + pos: -23.5,-17.5 parent: 2 - - uid: 569 + - uid: 13725 components: - type: Transform - pos: 9.5,6.5 + pos: -23.5,-18.5 parent: 2 - - uid: 571 + - uid: 13726 components: - type: Transform - pos: 37.5,-7.5 + pos: -23.5,-19.5 parent: 2 - - uid: 936 + - uid: 13762 components: - type: Transform - pos: 36.5,-5.5 + pos: 17.5,21.5 parent: 2 - - uid: 1525 + - uid: 13788 components: - type: Transform - pos: 36.5,-7.5 + pos: -23.5,-20.5 parent: 2 - - uid: 1533 + - uid: 13789 components: - type: Transform - pos: 37.5,-3.5 + pos: -23.5,-22.5 parent: 2 - - uid: 1537 + - uid: 13790 components: - type: Transform - pos: 36.5,-3.5 + pos: -23.5,-21.5 parent: 2 - - uid: 1561 + - uid: 13792 components: - type: Transform - pos: 36.5,-4.5 + pos: -21.5,-22.5 parent: 2 - - uid: 1586 + - uid: 13793 components: - type: Transform - pos: 37.5,-5.5 + pos: -22.5,-22.5 parent: 2 - - uid: 1630 + - uid: 13794 components: - type: Transform - pos: 37.5,-6.5 + pos: -19.5,-22.5 parent: 2 - - uid: 1635 + - uid: 13795 components: - type: Transform - pos: 37.5,-4.5 + pos: -20.5,-22.5 parent: 2 - - uid: 1637 + - uid: 13796 components: - type: Transform - pos: 36.5,-6.5 + pos: -18.5,-22.5 parent: 2 - - uid: 2516 + - uid: 13797 components: - type: Transform - pos: 39.5,7.5 + pos: -17.5,-22.5 parent: 2 - - uid: 2517 + - uid: 13798 components: - type: Transform - pos: 38.5,7.5 + pos: -16.5,-22.5 parent: 2 - - uid: 2518 + - uid: 13799 components: - type: Transform - pos: 37.5,7.5 + pos: -14.5,-22.5 parent: 2 - - uid: 2519 + - uid: 13800 components: - type: Transform - pos: 36.5,7.5 + pos: -13.5,-22.5 parent: 2 - - uid: 2520 + - uid: 13801 components: - type: Transform - pos: 35.5,7.5 + pos: -15.5,-22.5 parent: 2 - - uid: 2521 + - uid: 13802 components: - type: Transform - pos: 35.5,8.5 + pos: -11.5,-22.5 parent: 2 - - uid: 2522 + - uid: 13803 components: - type: Transform - pos: 35.5,9.5 + pos: -12.5,-22.5 parent: 2 - - uid: 2523 + - uid: 13804 components: - type: Transform - pos: 35.5,6.5 + pos: -9.5,-22.5 parent: 2 - - uid: 2524 + - uid: 13805 components: - type: Transform - pos: 35.5,5.5 + pos: -8.5,-22.5 parent: 2 - - uid: 2525 + - uid: 13806 components: - type: Transform - pos: 34.5,7.5 + pos: -6.5,-22.5 parent: 2 - - uid: 2611 + - uid: 13807 components: - type: Transform - pos: 37.5,41.5 + pos: -7.5,-22.5 parent: 2 - - uid: 2612 + - uid: 13808 components: - type: Transform - pos: 36.5,41.5 + pos: -10.5,-22.5 parent: 2 - - uid: 2613 + - uid: 13809 components: - type: Transform - pos: 36.5,40.5 + pos: -5.5,-21.5 parent: 2 - - uid: 2614 + - uid: 13810 components: - type: Transform - pos: 37.5,40.5 + pos: -6.5,-21.5 parent: 2 - - uid: 2697 + - uid: 13811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,31.5 + pos: -4.5,-21.5 parent: 2 - - uid: 2698 + - uid: 13812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,31.5 + pos: -3.5,-21.5 parent: 2 - - uid: 2699 + - uid: 13813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,31.5 + pos: -2.5,-21.5 parent: 2 - - uid: 2700 + - uid: 13814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,31.5 + pos: -1.5,-21.5 parent: 2 - - uid: 2701 + - uid: 13815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,31.5 + pos: 0.5,-21.5 parent: 2 - - uid: 2702 + - uid: 13816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,31.5 + pos: -0.5,-21.5 parent: 2 - - uid: 2703 + - uid: 13817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 + pos: 1.5,-21.5 parent: 2 - - uid: 2704 + - uid: 13818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,30.5 + pos: 1.5,-20.5 parent: 2 - - uid: 2705 + - uid: 13819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,30.5 + pos: 1.5,-18.5 parent: 2 - - uid: 2706 + - uid: 13820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,31.5 + pos: 1.5,-17.5 parent: 2 - - uid: 2707 + - uid: 13821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,32.5 + pos: 1.5,-16.5 parent: 2 - - uid: 2708 + - uid: 13822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,32.5 + pos: 1.5,-15.5 parent: 2 - - uid: 2709 + - uid: 13823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 + pos: 1.5,-19.5 parent: 2 - - uid: 2710 + - uid: 13824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,31.5 + pos: 1.5,-12.5 parent: 2 - - uid: 2761 + - uid: 13825 components: - type: Transform - pos: 24.5,40.5 + pos: 1.5,-11.5 parent: 2 - - uid: 2762 + - uid: 13826 components: - type: Transform - pos: 23.5,40.5 + pos: 1.5,-14.5 parent: 2 - - uid: 2763 + - uid: 13827 components: - type: Transform - pos: 22.5,40.5 + pos: 1.5,-13.5 parent: 2 - - uid: 2764 + - uid: 14094 components: - type: Transform - pos: 21.5,40.5 + pos: 66.5,42.5 parent: 2 - - uid: 2765 + - uid: 14096 components: - type: Transform - pos: 21.5,39.5 + pos: 72.5,21.5 parent: 2 - - uid: 2766 + - uid: 14097 components: - type: Transform - pos: 22.5,39.5 + pos: 66.5,35.5 parent: 2 - - uid: 2767 + - uid: 14098 components: - type: Transform - pos: 23.5,39.5 + pos: 66.5,34.5 parent: 2 - - uid: 2768 + - uid: 14099 components: - type: Transform - pos: 24.5,39.5 + pos: 66.5,33.5 parent: 2 - - uid: 2769 + - uid: 14100 components: - type: Transform - pos: 23.5,43.5 + pos: 66.5,32.5 parent: 2 - - uid: 2770 + - uid: 14101 components: - type: Transform - pos: 22.5,43.5 + pos: 66.5,38.5 parent: 2 - - uid: 5453 + - uid: 14102 components: - type: Transform - pos: 67.5,35.5 + pos: 66.5,30.5 parent: 2 - - uid: 6529 + - uid: 14103 components: - type: Transform - pos: 43.5,20.5 + pos: 66.5,28.5 parent: 2 - - uid: 6530 + - uid: 14104 components: - type: Transform - pos: 42.5,20.5 + pos: 66.5,29.5 parent: 2 - - uid: 6531 + - uid: 14105 components: - type: Transform - pos: 42.5,19.5 + pos: 66.5,27.5 parent: 2 - - uid: 6532 + - uid: 14106 components: - type: Transform - pos: 43.5,19.5 + pos: 66.5,26.5 parent: 2 - - uid: 6533 + - uid: 14107 components: - type: Transform - pos: 43.5,18.5 + pos: 66.5,25.5 parent: 2 - - uid: 6534 + - uid: 14108 components: - type: Transform - pos: 42.5,18.5 + pos: 69.5,22.5 parent: 2 - - uid: 10807 + - uid: 14109 components: - type: Transform - pos: 26.5,47.5 + pos: 66.5,24.5 parent: 2 - - uid: 10808 + - uid: 14110 components: - type: Transform - pos: 26.5,48.5 + pos: 66.5,31.5 parent: 2 - - uid: 11009 + - uid: 14111 components: - type: Transform - pos: 27.5,47.5 + pos: 67.5,23.5 parent: 2 - - uid: 11012 + - uid: 14112 components: - type: Transform - pos: 27.5,48.5 + pos: 68.5,23.5 parent: 2 - - uid: 11013 + - uid: 14113 components: - type: Transform - pos: 28.5,47.5 + pos: 69.5,23.5 parent: 2 - - uid: 11131 + - uid: 14114 components: - type: Transform - pos: 28.5,48.5 + pos: 67.5,24.5 parent: 2 - - uid: 11940 + - uid: 14115 components: - type: Transform - pos: 44.5,22.5 + pos: 67.5,23.5 parent: 2 - - uid: 11941 + - uid: 14116 components: - type: Transform - pos: 45.5,22.5 + pos: 69.5,21.5 parent: 2 - - uid: 11942 + - uid: 14117 components: - type: Transform - pos: 45.5,23.5 + pos: 69.5,20.5 parent: 2 - - uid: 11943 + - uid: 14118 components: - type: Transform - pos: 45.5,24.5 + pos: 70.5,20.5 parent: 2 - - uid: 11944 + - uid: 14119 components: - type: Transform - pos: 44.5,23.5 + pos: 71.5,20.5 parent: 2 - - uid: 12263 + - uid: 14124 components: - type: Transform - pos: 16.5,13.5 + pos: 72.5,20.5 parent: 2 - - uid: 12264 + - uid: 14133 components: - type: Transform - pos: 15.5,13.5 + pos: 72.5,22.5 parent: 2 - - uid: 12265 + - uid: 14134 components: - type: Transform - pos: 14.5,13.5 + pos: 72.5,23.5 parent: 2 - - uid: 12266 + - uid: 14135 components: - type: Transform - pos: 16.5,15.5 + pos: 72.5,24.5 parent: 2 - - uid: 12267 + - uid: 14160 components: - type: Transform - pos: 15.5,15.5 + pos: 73.5,24.5 parent: 2 - - uid: 12268 + - uid: 14161 components: - type: Transform - pos: 14.5,15.5 + pos: 74.5,24.5 parent: 2 -- proto: CarpetBlack - entities: - - uid: 5459 + - uid: 14162 components: - type: Transform - pos: 67.5,41.5 + pos: 75.5,24.5 parent: 2 -- proto: CarpetBlue - entities: - - uid: 71 + - uid: 14163 components: - type: Transform - pos: 32.5,42.5 + pos: 75.5,23.5 parent: 2 - - uid: 73 + - uid: 14164 components: - type: Transform - pos: 34.5,40.5 + pos: 75.5,22.5 parent: 2 - - uid: 76 + - uid: 14399 components: - type: Transform - pos: 32.5,41.5 + pos: 80.5,34.5 parent: 2 - - uid: 82 + - uid: 14400 components: - type: Transform - pos: 32.5,40.5 + pos: 80.5,33.5 parent: 2 - - uid: 247 + - uid: 14402 components: - type: Transform - pos: 34.5,42.5 + pos: 80.5,31.5 parent: 2 - - uid: 248 + - uid: 14403 components: - type: Transform - pos: 34.5,41.5 + pos: 80.5,30.5 parent: 2 - - uid: 249 + - uid: 14404 components: - type: Transform - pos: 33.5,42.5 + pos: 81.5,30.5 parent: 2 - - uid: 5455 + - uid: 14406 components: - type: Transform - pos: 67.5,38.5 + pos: 80.5,32.5 parent: 2 - - uid: 5456 + - uid: 14435 components: - type: Transform - pos: 67.5,37.5 + pos: 82.5,30.5 parent: 2 - - uid: 9565 + - uid: 14436 components: - type: Transform - pos: 33.5,41.5 + pos: 83.5,30.5 parent: 2 - - uid: 9574 + - uid: 14437 components: - type: Transform - pos: 33.5,40.5 + pos: 84.5,30.5 parent: 2 -- proto: CarpetChapel - entities: - - uid: 8377 + - uid: 14438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 + pos: 85.5,30.5 parent: 2 - - uid: 8378 + - uid: 14439 components: - type: Transform - pos: 37.5,8.5 + pos: 86.5,30.5 parent: 2 - - uid: 8379 + - uid: 14440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,8.5 + pos: 87.5,30.5 parent: 2 - - uid: 8380 + - uid: 14441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 + pos: 88.5,30.5 parent: 2 - - uid: 8381 + - uid: 14442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,9.5 + pos: 88.5,29.5 parent: 2 - - uid: 8382 + - uid: 14443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,8.5 + pos: 88.5,28.5 parent: 2 - - uid: 8390 + - uid: 14532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 + pos: 89.5,30.5 parent: 2 - - uid: 8656 + - uid: 14533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 + pos: 90.5,30.5 parent: 2 - - uid: 8657 + - uid: 14534 components: - type: Transform - pos: 37.5,5.5 + pos: 91.5,30.5 parent: 2 - - uid: 8767 + - uid: 14535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,5.5 + pos: 92.5,30.5 parent: 2 - - uid: 8831 + - uid: 14536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,6.5 + pos: 93.5,30.5 parent: 2 - - uid: 8841 + - uid: 14537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,5.5 + pos: 93.5,31.5 parent: 2 - - uid: 8888 + - uid: 14538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,6.5 + pos: 93.5,29.5 parent: 2 - - uid: 9136 + - uid: 14539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + pos: 93.5,28.5 parent: 2 - - uid: 9138 + - uid: 14540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 + pos: 94.5,28.5 parent: 2 - - uid: 9139 + - uid: 14541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,8.5 + pos: 95.5,28.5 parent: 2 - - uid: 9731 + - uid: 14542 components: - type: Transform - pos: 30.5,4.5 + pos: 95.5,29.5 parent: 2 - - uid: 9732 + - uid: 14543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 + pos: 93.5,32.5 parent: 2 - - uid: 9733 + - uid: 14544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,5.5 + pos: 94.5,32.5 parent: 2 - - uid: 9734 + - uid: 14545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 + pos: 95.5,32.5 parent: 2 -- proto: CarpetGreen - entities: - - uid: 3411 + - uid: 14546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,27.5 + pos: 95.5,31.5 parent: 2 - - uid: 3445 + - uid: 14685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,28.5 + pos: 8.5,20.5 parent: 2 - - uid: 3446 + - uid: 14686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,29.5 + pos: 8.5,19.5 parent: 2 - - uid: 5463 + - uid: 14687 components: - type: Transform - pos: 69.5,36.5 + pos: 8.5,18.5 parent: 2 - - uid: 5514 + - uid: 14688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,31.5 + pos: 7.5,18.5 parent: 2 - - uid: 5515 + - uid: 14689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,32.5 + pos: 6.5,18.5 parent: 2 - - uid: 5516 + - uid: 14690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,33.5 + pos: 6.5,17.5 parent: 2 - - uid: 12679 + - uid: 14701 components: - type: Transform - pos: 105.5,-13.5 + pos: 8.5,22.5 parent: 2 - - uid: 12680 + - uid: 14702 components: - type: Transform - pos: 105.5,-12.5 + pos: 8.5,24.5 parent: 2 - - uid: 12681 + - uid: 14703 components: - type: Transform - pos: 106.5,-13.5 + pos: 8.5,25.5 parent: 2 - - uid: 12682 + - uid: 14704 components: - type: Transform - pos: 106.5,-12.5 + pos: 8.5,26.5 parent: 2 - - uid: 12683 + - uid: 14705 components: - type: Transform - pos: 107.5,-13.5 + pos: 8.5,27.5 parent: 2 - - uid: 12684 + - uid: 14706 components: - type: Transform - pos: 107.5,-12.5 + pos: 8.5,28.5 parent: 2 -- proto: CarpetOrange - entities: - - uid: 5495 + - uid: 14707 components: - type: Transform - pos: 70.5,34.5 + pos: 8.5,23.5 parent: 2 - - uid: 5496 + - uid: 14708 components: - type: Transform - pos: 70.5,33.5 + pos: 8.5,29.5 parent: 2 - - uid: 5497 + - uid: 14709 components: - type: Transform - pos: 70.5,32.5 + pos: 8.5,32.5 parent: 2 - - uid: 5498 + - uid: 14710 components: - type: Transform - pos: 70.5,27.5 + pos: 8.5,31.5 parent: 2 - - uid: 5499 + - uid: 14711 components: - type: Transform - pos: 70.5,28.5 + pos: 8.5,33.5 parent: 2 - - uid: 5500 + - uid: 14712 components: - type: Transform - pos: 70.5,29.5 + pos: 8.5,30.5 parent: 2 -- proto: CarpetPink - entities: - - uid: 1240 + - uid: 14713 components: - type: Transform - pos: 5.5,-13.5 + pos: 9.5,33.5 parent: 2 - - uid: 1244 + - uid: 14714 components: - type: Transform - pos: 5.5,-12.5 + pos: 10.5,33.5 parent: 2 - - uid: 5457 + - uid: 14731 components: - type: Transform - pos: 67.5,39.5 + pos: 9.5,18.5 parent: 2 - - uid: 5682 + - uid: 14856 components: - type: Transform - pos: 6.5,-13.5 + pos: 66.5,46.5 parent: 2 - - uid: 13066 + - uid: 14857 components: - type: Transform - pos: 6.5,-12.5 + pos: 65.5,46.5 parent: 2 - - uid: 13067 + - uid: 14858 components: - type: Transform - pos: 7.5,-13.5 + pos: 64.5,46.5 parent: 2 - - uid: 13068 + - uid: 14859 components: - type: Transform - pos: 7.5,-12.5 + pos: 64.5,45.5 parent: 2 - - uid: 13069 + - uid: 14860 components: - type: Transform - pos: 4.5,-13.5 + pos: 64.5,44.5 parent: 2 - - uid: 13070 + - uid: 14861 components: - type: Transform - pos: 4.5,-12.5 + pos: 64.5,43.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5454 + - uid: 14862 components: - type: Transform - pos: 67.5,36.5 + pos: 64.5,42.5 parent: 2 -- proto: CarpetSBlue - entities: - - uid: 5458 + - uid: 14863 components: - type: Transform - pos: 67.5,40.5 + pos: 63.5,42.5 parent: 2 - - uid: 5462 + - uid: 14864 components: - type: Transform - pos: 69.5,39.5 + pos: 62.5,42.5 parent: 2 - - uid: 10284 + - uid: 14865 components: - type: Transform - pos: 18.5,-3.5 + pos: 62.5,41.5 parent: 2 - - uid: 10285 + - uid: 14866 components: - type: Transform - pos: 18.5,-2.5 + pos: 62.5,40.5 parent: 2 - - uid: 10286 + - uid: 14867 components: - type: Transform - pos: 19.5,-3.5 + pos: 62.5,39.5 parent: 2 - - uid: 10287 + - uid: 14868 components: - type: Transform - pos: 19.5,-2.5 + pos: 62.5,37.5 parent: 2 - - uid: 10288 + - uid: 14869 components: - type: Transform - pos: 20.5,-3.5 + pos: 62.5,36.5 parent: 2 - - uid: 10289 + - uid: 14870 components: - type: Transform - pos: 20.5,-2.5 + pos: 62.5,35.5 parent: 2 -- proto: Catwalk - entities: - - uid: 245 + - uid: 14871 components: - type: Transform - pos: -15.5,16.5 + pos: 62.5,34.5 parent: 2 - - uid: 592 + - uid: 14872 components: - type: Transform - pos: 14.5,-21.5 + pos: 62.5,33.5 parent: 2 - - uid: 593 + - uid: 14873 components: - type: Transform - pos: 13.5,-21.5 + pos: 62.5,32.5 parent: 2 - - uid: 594 + - uid: 14874 components: - type: Transform - pos: 4.5,-31.5 + pos: 62.5,38.5 parent: 2 - - uid: 595 + - uid: 14875 components: - type: Transform - pos: 4.5,-32.5 + pos: 61.5,42.5 parent: 2 - - uid: 1374 + - uid: 14876 components: - type: Transform - pos: -1.5,-35.5 + pos: 60.5,42.5 parent: 2 - - uid: 1375 + - uid: 14877 components: - type: Transform - pos: -2.5,-35.5 + pos: 60.5,43.5 parent: 2 - - uid: 1376 + - uid: 14878 components: - type: Transform - pos: -3.5,-35.5 + pos: 60.5,44.5 parent: 2 - - uid: 1377 + - uid: 14879 components: - type: Transform - pos: -4.5,-35.5 + pos: 59.5,44.5 parent: 2 - - uid: 1378 + - uid: 14880 components: - type: Transform - pos: -4.5,-34.5 + pos: 58.5,44.5 parent: 2 - - uid: 1379 + - uid: 14881 components: - type: Transform - pos: -4.5,-33.5 + pos: 57.5,44.5 parent: 2 - - uid: 1380 + - uid: 14882 components: - type: Transform - pos: -4.5,-32.5 + pos: 56.5,44.5 parent: 2 - - uid: 1381 + - uid: 14883 components: - type: Transform - pos: -4.5,-31.5 + pos: 54.5,44.5 parent: 2 - - uid: 1382 + - uid: 14884 components: - type: Transform - pos: -4.5,-36.5 + pos: 53.5,44.5 parent: 2 - - uid: 1383 + - uid: 14885 components: - type: Transform - pos: -4.5,-37.5 + pos: 55.5,44.5 parent: 2 - - uid: 1384 + - uid: 14886 components: - type: Transform - pos: -4.5,-38.5 + pos: 52.5,43.5 parent: 2 - - uid: 1385 + - uid: 14887 components: - type: Transform - pos: -4.5,-39.5 + pos: 51.5,43.5 parent: 2 - - uid: 1398 + - uid: 14888 components: - type: Transform - pos: -5.5,-35.5 + pos: 52.5,44.5 parent: 2 - - uid: 1399 + - uid: 14889 components: - type: Transform - pos: -6.5,-35.5 + pos: 50.5,43.5 parent: 2 - - uid: 1400 + - uid: 14890 components: - type: Transform - pos: -7.5,-35.5 + pos: 50.5,42.5 parent: 2 - - uid: 1401 + - uid: 14891 components: - type: Transform - pos: -8.5,-35.5 + pos: 50.5,40.5 parent: 2 - - uid: 1402 + - uid: 14892 components: - type: Transform - pos: -8.5,-36.5 + pos: 50.5,39.5 parent: 2 - - uid: 1403 + - uid: 14893 components: - type: Transform - pos: -8.5,-37.5 + pos: 50.5,41.5 parent: 2 - - uid: 1404 + - uid: 14894 components: - type: Transform - pos: -8.5,-38.5 + pos: 50.5,38.5 parent: 2 - - uid: 1405 + - uid: 14895 components: - type: Transform - pos: -8.5,-39.5 + pos: 62.5,31.5 parent: 2 - - uid: 1406 + - uid: 14927 components: - type: Transform - pos: -8.5,-40.5 + pos: 36.5,34.5 parent: 2 - - uid: 1407 + - uid: 14928 components: - type: Transform - pos: -8.5,-34.5 + pos: 37.5,34.5 parent: 2 - - uid: 1408 + - uid: 14933 components: - type: Transform - pos: -8.5,-33.5 + pos: 26.5,34.5 parent: 2 - - uid: 1409 + - uid: 14934 components: - type: Transform - pos: -8.5,-32.5 + pos: 26.5,35.5 parent: 2 - - uid: 1410 + - uid: 14935 components: - type: Transform - pos: -8.5,-31.5 + pos: 33.5,36.5 parent: 2 - - uid: 1411 + - uid: 14944 components: - type: Transform - pos: -8.5,-30.5 + pos: 14.5,40.5 parent: 2 - - uid: 1428 + - uid: 14945 components: - type: Transform - pos: -9.5,-35.5 + pos: 14.5,41.5 parent: 2 - - uid: 1429 + - uid: 14946 components: - type: Transform - pos: -10.5,-35.5 + pos: 14.5,42.5 parent: 2 - - uid: 1430 + - uid: 14947 components: - type: Transform - pos: -11.5,-35.5 + pos: 13.5,42.5 parent: 2 - - uid: 1431 + - uid: 14948 components: - type: Transform - pos: -12.5,-35.5 + pos: 15.5,42.5 parent: 2 - - uid: 1432 + - uid: 14977 components: - type: Transform - pos: -12.5,-34.5 + pos: 17.5,-39.5 parent: 2 - - uid: 1433 + - uid: 14981 components: - type: Transform - pos: -12.5,-33.5 + pos: 18.5,-39.5 parent: 2 - - uid: 1434 + - uid: 14982 components: - type: Transform - pos: -12.5,-32.5 + pos: 19.5,-39.5 parent: 2 - - uid: 1435 + - uid: 14983 components: - type: Transform - pos: -12.5,-31.5 + pos: 20.5,-39.5 parent: 2 - - uid: 1436 + - uid: 15003 components: - type: Transform - pos: -12.5,-36.5 + pos: 52.5,-13.5 parent: 2 - - uid: 1437 + - uid: 15030 components: - type: Transform - pos: -12.5,-37.5 + pos: 37.5,-12.5 parent: 2 - - uid: 1438 + - uid: 15031 components: - type: Transform - pos: -12.5,-38.5 + pos: 38.5,-12.5 parent: 2 - - uid: 1439 +- proto: CableMVStack + entities: + - uid: 5628 components: - type: Transform - pos: -12.5,-39.5 + pos: 17.902254,-23.387651 parent: 2 - - uid: 1440 + - uid: 6316 components: - type: Transform - pos: -13.5,-35.5 + pos: 90.66321,-10.120396 parent: 2 - - uid: 1441 +- proto: CableTerminal + entities: + - uid: 338 components: - type: Transform - pos: -14.5,-35.5 + rot: 3.141592653589793 rad + pos: 27.5,-32.5 parent: 2 - - uid: 1442 + - uid: 682 components: - type: Transform - pos: -15.5,-35.5 + rot: 3.141592653589793 rad + pos: 25.5,-32.5 parent: 2 - - uid: 1468 + - uid: 886 components: - type: Transform - pos: 21.5,-40.5 + rot: 3.141592653589793 rad + pos: 26.5,-32.5 parent: 2 - - uid: 1474 + - uid: 2120 components: - type: Transform - pos: 13.5,-38.5 + rot: -1.5707963267948966 rad + pos: 17.5,-38.5 parent: 2 - - uid: 1475 + - uid: 2908 components: - type: Transform - pos: 12.5,-38.5 + pos: 13.5,36.5 parent: 2 - - uid: 1477 + - uid: 4872 components: - type: Transform - pos: 10.5,-38.5 + rot: 1.5707963267948966 rad + pos: 2.5,-34.5 parent: 2 - - uid: 1478 + - uid: 6284 components: - type: Transform - pos: 9.5,-38.5 + pos: 71.5,45.5 parent: 2 - - uid: 1479 + - uid: 6442 components: - type: Transform - pos: 8.5,-38.5 + rot: 3.141592653589793 rad + pos: 23.5,-15.5 parent: 2 - - uid: 1486 + - uid: 7741 components: - type: Transform - pos: 21.5,-21.5 + rot: 1.5707963267948966 rad + pos: 36.5,33.5 parent: 2 - - uid: 1492 + - uid: 12647 components: - type: Transform - pos: 19.5,-21.5 + rot: 3.141592653589793 rad + pos: 112.5,-18.5 parent: 2 - - uid: 1493 + - uid: 14393 components: - type: Transform - pos: 20.5,-21.5 + rot: 3.141592653589793 rad + pos: 79.5,33.5 parent: 2 - - uid: 1519 +- proto: CandyBowl + entities: + - uid: 13078 components: - type: Transform - pos: 18.5,-21.5 + pos: 54.503376,-4.6494684 parent: 2 - - uid: 1585 +- proto: CannabisSeeds + entities: + - uid: 8395 components: - type: Transform - pos: 22.5,-21.5 + pos: 59.5,38.5 parent: 2 - - uid: 1780 +- proto: CaptainIDCard + entities: + - uid: 1255 components: - type: Transform - pos: 23.5,-21.5 + pos: 33.48514,41.714756 parent: 2 - - uid: 2297 +- proto: CarbonDioxideCanister + entities: + - uid: 1924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,34.5 + pos: 50.5,-27.5 parent: 2 - - uid: 2298 + - uid: 4771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,33.5 + pos: 45.5,-37.5 parent: 2 - - uid: 2299 + - uid: 12998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,32.5 + pos: 34.5,-45.5 parent: 2 - - uid: 3807 +- proto: Carpet + entities: + - uid: 3 components: - type: Transform - pos: 79.5,-9.5 + pos: 43.5,22.5 parent: 2 - - uid: 3904 + - uid: 266 components: - type: Transform - pos: 75.5,45.5 + pos: 9.5,7.5 parent: 2 - - uid: 3905 + - uid: 268 components: - type: Transform - pos: 76.5,45.5 + pos: 11.5,6.5 parent: 2 - - uid: 3906 + - uid: 269 components: - type: Transform - pos: 77.5,45.5 + pos: 11.5,7.5 parent: 2 - - uid: 3907 + - uid: 549 components: - type: Transform - pos: 78.5,45.5 + pos: 12.5,-2.5 parent: 2 - - uid: 3908 + - uid: 550 components: - type: Transform - pos: 78.5,46.5 + pos: 11.5,-2.5 parent: 2 - - uid: 3909 + - uid: 551 components: - type: Transform - pos: 78.5,47.5 + pos: 11.5,-3.5 parent: 2 - - uid: 3910 + - uid: 552 components: - type: Transform - pos: 78.5,48.5 + pos: 12.5,-3.5 parent: 2 - - uid: 3911 + - uid: 569 components: - type: Transform - pos: 78.5,49.5 + pos: 9.5,6.5 parent: 2 - - uid: 3912 + - uid: 571 components: - type: Transform - pos: 78.5,44.5 + pos: 37.5,-7.5 parent: 2 - - uid: 3913 + - uid: 936 components: - type: Transform - pos: 78.5,43.5 + pos: 36.5,-5.5 parent: 2 - - uid: 3914 + - uid: 1525 components: - type: Transform - pos: 78.5,42.5 + pos: 36.5,-7.5 parent: 2 - - uid: 3915 + - uid: 1533 components: - type: Transform - pos: 78.5,41.5 + pos: 37.5,-3.5 parent: 2 - - uid: 3916 + - uid: 1537 components: - type: Transform - pos: 79.5,45.5 + pos: 36.5,-3.5 parent: 2 - - uid: 3917 + - uid: 1561 components: - type: Transform - pos: 80.5,45.5 + pos: 36.5,-4.5 parent: 2 - - uid: 3918 + - uid: 1586 components: - type: Transform - pos: 81.5,45.5 + pos: 37.5,-5.5 parent: 2 - - uid: 3919 + - uid: 1630 components: - type: Transform - pos: 82.5,45.5 + pos: 37.5,-6.5 parent: 2 - - uid: 3920 + - uid: 1635 components: - type: Transform - pos: 82.5,46.5 + pos: 37.5,-4.5 parent: 2 - - uid: 3921 + - uid: 1637 components: - type: Transform - pos: 82.5,47.5 + pos: 36.5,-6.5 parent: 2 - - uid: 3922 + - uid: 2516 components: - type: Transform - pos: 82.5,48.5 + pos: 39.5,7.5 parent: 2 - - uid: 3923 + - uid: 2517 components: - type: Transform - pos: 82.5,40.5 + pos: 38.5,7.5 parent: 2 - - uid: 3924 + - uid: 2518 components: - type: Transform - pos: 82.5,49.5 + pos: 37.5,7.5 parent: 2 - - uid: 3925 + - uid: 2519 components: - type: Transform - pos: 82.5,50.5 + pos: 36.5,7.5 parent: 2 - - uid: 3926 + - uid: 2520 components: - type: Transform - pos: 82.5,41.5 + pos: 35.5,7.5 parent: 2 - - uid: 3927 + - uid: 2521 components: - type: Transform - pos: 82.5,42.5 + pos: 35.5,8.5 parent: 2 - - uid: 3928 + - uid: 2522 components: - type: Transform - pos: 82.5,43.5 + pos: 35.5,9.5 parent: 2 - - uid: 3929 + - uid: 2523 components: - type: Transform - pos: 82.5,44.5 + pos: 35.5,6.5 parent: 2 - - uid: 3930 + - uid: 2524 components: - type: Transform - pos: 83.5,45.5 + pos: 35.5,5.5 parent: 2 - - uid: 3931 + - uid: 2525 components: - type: Transform - pos: 84.5,45.5 + pos: 34.5,7.5 parent: 2 - - uid: 3932 + - uid: 2611 components: - type: Transform - pos: 85.5,45.5 + pos: 37.5,41.5 parent: 2 - - uid: 3933 + - uid: 2612 components: - type: Transform - pos: 86.5,45.5 + pos: 36.5,41.5 parent: 2 - - uid: 3934 + - uid: 2613 components: - type: Transform - pos: 86.5,44.5 + pos: 36.5,40.5 parent: 2 - - uid: 3935 + - uid: 2614 components: - type: Transform - pos: 86.5,43.5 + pos: 37.5,40.5 parent: 2 - - uid: 3936 + - uid: 2697 components: - type: Transform - pos: 86.5,42.5 + rot: -1.5707963267948966 rad + pos: 24.5,31.5 parent: 2 - - uid: 3937 + - uid: 2698 components: - type: Transform - pos: 86.5,41.5 + rot: -1.5707963267948966 rad + pos: 23.5,31.5 parent: 2 - - uid: 3938 + - uid: 2699 components: - type: Transform - pos: 86.5,46.5 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 parent: 2 - - uid: 3939 + - uid: 2700 components: - type: Transform - pos: 86.5,47.5 + rot: -1.5707963267948966 rad + pos: 21.5,31.5 parent: 2 - - uid: 3940 + - uid: 2701 components: - type: Transform - pos: 86.5,48.5 + rot: -1.5707963267948966 rad + pos: 20.5,31.5 parent: 2 - - uid: 3941 + - uid: 2702 components: - type: Transform - pos: 86.5,49.5 + rot: -1.5707963267948966 rad + pos: 19.5,31.5 parent: 2 - - uid: 3942 + - uid: 2703 components: - type: Transform - pos: 87.5,45.5 + rot: -1.5707963267948966 rad + pos: 19.5,30.5 parent: 2 - - uid: 3943 + - uid: 2704 components: - type: Transform - pos: 88.5,45.5 + rot: -1.5707963267948966 rad + pos: 18.5,30.5 parent: 2 - - uid: 3944 + - uid: 2705 components: - type: Transform - pos: 89.5,45.5 + rot: -1.5707963267948966 rad + pos: 17.5,30.5 parent: 2 - - uid: 4440 + - uid: 2706 components: - type: Transform - pos: 4.5,-30.5 + rot: -1.5707963267948966 rad + pos: 17.5,31.5 parent: 2 - - uid: 4441 + - uid: 2707 components: - type: Transform - pos: 5.5,-30.5 + rot: -1.5707963267948966 rad + pos: 17.5,32.5 parent: 2 - - uid: 4453 + - uid: 2708 components: - type: Transform - pos: 10.5,-23.5 + rot: -1.5707963267948966 rad + pos: 18.5,32.5 parent: 2 - - uid: 4454 + - uid: 2709 components: - type: Transform - pos: 11.5,-23.5 + rot: -1.5707963267948966 rad + pos: 19.5,32.5 parent: 2 - - uid: 4776 + - uid: 2710 components: - type: Transform - pos: 30.5,-43.5 + rot: -1.5707963267948966 rad + pos: 18.5,31.5 parent: 2 - - uid: 4777 + - uid: 2761 components: - type: Transform - pos: 30.5,-42.5 + pos: 24.5,40.5 parent: 2 - - uid: 4778 + - uid: 2762 components: - type: Transform - pos: 30.5,-41.5 + pos: 23.5,40.5 parent: 2 - - uid: 4779 + - uid: 2763 components: - type: Transform - pos: 30.5,-40.5 + pos: 22.5,40.5 parent: 2 - - uid: 4780 + - uid: 2764 components: - type: Transform - pos: 30.5,-39.5 + pos: 21.5,40.5 parent: 2 - - uid: 4782 + - uid: 2765 components: - type: Transform - pos: 21.5,-39.5 + pos: 21.5,39.5 parent: 2 - - uid: 4799 + - uid: 2766 components: - type: Transform - pos: 21.5,-41.5 + pos: 22.5,39.5 parent: 2 - - uid: 4986 + - uid: 2767 components: - type: Transform - pos: 51.5,6.5 + pos: 23.5,39.5 parent: 2 - - uid: 5082 + - uid: 2768 components: - type: Transform - pos: 53.5,6.5 + pos: 24.5,39.5 parent: 2 - - uid: 5123 + - uid: 2769 components: - type: Transform - pos: 46.5,-27.5 + pos: 23.5,43.5 parent: 2 - - uid: 5145 + - uid: 2770 components: - type: Transform - pos: 46.5,6.5 + pos: 22.5,43.5 parent: 2 - - uid: 5196 + - uid: 5453 components: - type: Transform - pos: 46.5,-34.5 + pos: 67.5,35.5 parent: 2 - - uid: 5613 + - uid: 6529 components: - type: Transform - pos: 35.5,-40.5 + pos: 43.5,20.5 parent: 2 - - uid: 5614 + - uid: 6530 components: - type: Transform - pos: 35.5,-39.5 + pos: 42.5,20.5 parent: 2 - - uid: 5615 + - uid: 6531 components: - type: Transform - pos: 34.5,-39.5 + pos: 42.5,19.5 parent: 2 - - uid: 5616 + - uid: 6532 components: - type: Transform - pos: 36.5,-39.5 + pos: 43.5,19.5 parent: 2 - - uid: 5623 + - uid: 6533 components: - type: Transform - pos: 11.5,-26.5 + pos: 43.5,18.5 parent: 2 - - uid: 5624 + - uid: 6534 components: - type: Transform - pos: 10.5,-26.5 + pos: 42.5,18.5 parent: 2 - - uid: 5663 + - uid: 10807 components: - type: Transform - pos: 46.5,-29.5 + pos: 26.5,47.5 parent: 2 - - uid: 5730 + - uid: 10808 components: - type: Transform - pos: 46.5,-24.5 + pos: 26.5,48.5 parent: 2 - - uid: 5860 + - uid: 11009 components: - type: Transform - pos: 16.5,-21.5 + pos: 27.5,47.5 parent: 2 - - uid: 5870 + - uid: 11012 components: - type: Transform - pos: 15.5,-21.5 + pos: 27.5,48.5 parent: 2 - - uid: 5871 + - uid: 11013 components: - type: Transform - pos: 17.5,-21.5 + pos: 28.5,47.5 parent: 2 - - uid: 5914 + - uid: 11131 components: - type: Transform - pos: 32.5,-19.5 + pos: 28.5,48.5 parent: 2 - - uid: 5915 + - uid: 11940 components: - type: Transform - pos: 33.5,-19.5 + pos: 44.5,22.5 parent: 2 - - uid: 5916 + - uid: 11941 components: - type: Transform - pos: 34.5,-19.5 + pos: 45.5,22.5 parent: 2 - - uid: 5917 + - uid: 11942 components: - type: Transform - pos: 35.5,-19.5 + pos: 45.5,23.5 parent: 2 - - uid: 5918 + - uid: 11943 components: - type: Transform - pos: 37.5,-19.5 + pos: 45.5,24.5 parent: 2 - - uid: 5919 + - uid: 11944 components: - type: Transform - pos: 38.5,-19.5 + pos: 44.5,23.5 parent: 2 - - uid: 5920 + - uid: 12263 components: - type: Transform - pos: 39.5,-19.5 + pos: 16.5,13.5 parent: 2 - - uid: 7007 + - uid: 12264 components: - type: Transform - pos: 44.5,6.5 + pos: 15.5,13.5 parent: 2 - - uid: 7012 + - uid: 12265 components: - type: Transform - pos: 47.5,6.5 + pos: 14.5,13.5 parent: 2 - - uid: 7820 + - uid: 12266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,27.5 + pos: 16.5,15.5 parent: 2 - - uid: 7860 + - uid: 12267 components: - type: Transform - pos: 46.5,-30.5 + pos: 15.5,15.5 parent: 2 - - uid: 8283 + - uid: 12268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,16.5 + pos: 14.5,15.5 parent: 2 - - uid: 8284 +- proto: CarpetBlack + entities: + - uid: 430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 + rot: 1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - - uid: 8302 + - uid: 2011 components: - type: Transform - pos: 52.5,6.5 + rot: 1.5707963267948966 rad + pos: 5.5,15.5 parent: 2 - - uid: 8311 + - uid: 5459 components: - type: Transform - pos: 50.5,6.5 + pos: 67.5,41.5 parent: 2 - - uid: 8312 + - uid: 7586 components: - type: Transform - pos: 49.5,6.5 + rot: 1.5707963267948966 rad + pos: 6.5,18.5 parent: 2 - - uid: 8313 + - uid: 7587 components: - type: Transform - pos: 45.5,6.5 + rot: 1.5707963267948966 rad + pos: 8.5,18.5 parent: 2 - - uid: 8750 + - uid: 7949 components: - type: Transform - pos: 95.5,-19.5 + rot: 1.5707963267948966 rad + pos: 5.5,16.5 parent: 2 - - uid: 8751 +- proto: CarpetBlue + entities: + - uid: 71 components: - type: Transform - pos: 96.5,-19.5 + pos: 32.5,42.5 parent: 2 - - uid: 8752 + - uid: 73 components: - type: Transform - pos: 97.5,-19.5 + pos: 34.5,40.5 parent: 2 - - uid: 8753 + - uid: 76 components: - type: Transform - pos: 98.5,-19.5 + pos: 32.5,41.5 parent: 2 - - uid: 8754 + - uid: 82 components: - type: Transform - pos: 98.5,-20.5 + pos: 32.5,40.5 parent: 2 - - uid: 8755 + - uid: 247 components: - type: Transform - pos: 97.5,-20.5 + pos: 34.5,42.5 parent: 2 - - uid: 8756 + - uid: 248 components: - type: Transform - pos: 96.5,-20.5 + pos: 34.5,41.5 parent: 2 - - uid: 8757 + - uid: 249 components: - type: Transform - pos: 95.5,-20.5 + pos: 33.5,42.5 parent: 2 - - uid: 8850 + - uid: 5455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-10.5 + pos: 67.5,38.5 parent: 2 - - uid: 8851 + - uid: 5456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-10.5 + pos: 67.5,37.5 parent: 2 - - uid: 8852 + - uid: 9565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-10.5 + pos: 33.5,41.5 parent: 2 - - uid: 8853 + - uid: 9574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-10.5 + pos: 33.5,40.5 parent: 2 - - uid: 8854 +- proto: CarpetChapel + entities: + - uid: 8377 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,27.5 + pos: 37.5,9.5 parent: 2 - - uid: 8855 + - uid: 8378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,27.5 + pos: 37.5,8.5 parent: 2 - - uid: 8856 + - uid: 8379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,27.5 + rot: 1.5707963267948966 rad + pos: 36.5,8.5 parent: 2 - - uid: 8916 + - uid: 8380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,27.5 + rot: 3.141592653589793 rad + pos: 36.5,9.5 parent: 2 - - uid: 8917 + - uid: 8381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + rot: 3.141592653589793 rad + pos: 38.5,9.5 parent: 2 - - uid: 8918 + - uid: 8382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,27.5 + rot: 1.5707963267948966 rad + pos: 38.5,8.5 parent: 2 - - uid: 8919 + - uid: 8390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,27.5 + rot: 3.141592653589793 rad + pos: 38.5,6.5 parent: 2 - - uid: 9927 + - uid: 8656 components: - type: Transform - pos: 54.5,27.5 + rot: -1.5707963267948966 rad + pos: 37.5,6.5 parent: 2 - - uid: 9928 + - uid: 8657 components: - type: Transform - pos: 58.5,27.5 + pos: 37.5,5.5 parent: 2 - - uid: 10711 + - uid: 8767 components: - type: Transform - pos: 63.5,48.5 + rot: 1.5707963267948966 rad + pos: 38.5,5.5 parent: 2 - - uid: 10712 + - uid: 8831 components: - type: Transform - pos: 62.5,48.5 + rot: 3.141592653589793 rad + pos: 36.5,6.5 parent: 2 - - uid: 10713 + - uid: 8841 components: - type: Transform - pos: 61.5,48.5 + rot: 1.5707963267948966 rad + pos: 36.5,5.5 parent: 2 - - uid: 10714 + - uid: 8888 components: - type: Transform - pos: 60.5,48.5 + rot: 3.141592653589793 rad + pos: 34.5,6.5 parent: 2 - - uid: 10715 + - uid: 9136 components: - type: Transform - pos: 59.5,48.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 10716 + - uid: 9138 components: - type: Transform - pos: 58.5,48.5 + rot: 3.141592653589793 rad + pos: 34.5,9.5 parent: 2 - - uid: 10717 + - uid: 9139 components: - type: Transform - pos: 57.5,48.5 + rot: 1.5707963267948966 rad + pos: 34.5,8.5 parent: 2 - - uid: 10718 + - uid: 9731 components: - type: Transform - pos: 56.5,48.5 + pos: 30.5,4.5 parent: 2 - - uid: 10719 + - uid: 9732 components: - type: Transform - pos: 54.5,48.5 + rot: -1.5707963267948966 rad + pos: 30.5,5.5 parent: 2 - - uid: 10720 + - uid: 9733 components: - type: Transform - pos: 53.5,48.5 + rot: 3.141592653589793 rad + pos: 31.5,5.5 parent: 2 - - uid: 10721 + - uid: 9734 components: - type: Transform - pos: 52.5,48.5 + rot: 1.5707963267948966 rad + pos: 31.5,4.5 parent: 2 - - uid: 10722 - components: +- proto: CarpetGreen + entities: + - uid: 2276 + components: - type: Transform - pos: 51.5,48.5 + pos: 67.5,27.5 parent: 2 - - uid: 10723 + - uid: 5463 components: - type: Transform - pos: 50.5,48.5 + pos: 69.5,36.5 parent: 2 - - uid: 10724 + - uid: 5514 components: - type: Transform - pos: 49.5,48.5 + rot: 3.141592653589793 rad + pos: 67.5,31.5 parent: 2 - - uid: 10725 + - uid: 5515 components: - type: Transform - pos: 55.5,48.5 + rot: 3.141592653589793 rad + pos: 67.5,32.5 parent: 2 - - uid: 10726 + - uid: 5516 components: - type: Transform - pos: 43.5,41.5 + rot: 3.141592653589793 rad + pos: 67.5,33.5 parent: 2 - - uid: 10727 + - uid: 12679 components: - type: Transform - pos: 42.5,41.5 + pos: 105.5,-13.5 parent: 2 - - uid: 10728 + - uid: 12680 components: - type: Transform - pos: 41.5,41.5 + pos: 105.5,-12.5 parent: 2 - - uid: 10729 + - uid: 12681 components: - type: Transform - pos: 40.5,41.5 + pos: 106.5,-13.5 parent: 2 - - uid: 10730 + - uid: 12682 components: - type: Transform - pos: 67.5,10.5 + pos: 106.5,-12.5 parent: 2 - - uid: 10731 + - uid: 12683 components: - type: Transform - pos: 68.5,10.5 + pos: 107.5,-13.5 parent: 2 - - uid: 10732 + - uid: 12684 components: - type: Transform - pos: 70.5,10.5 + pos: 107.5,-12.5 parent: 2 - - uid: 10733 + - uid: 14089 components: - type: Transform - pos: 69.5,10.5 + pos: 67.5,29.5 parent: 2 - - uid: 10734 + - uid: 14090 components: - type: Transform - pos: 71.5,10.5 + pos: 67.5,28.5 parent: 2 - - uid: 10736 +- proto: CarpetOrange + entities: + - uid: 3431 components: - type: Transform - pos: 73.5,10.5 + pos: 70.5,28.5 parent: 2 - - uid: 10737 + - uid: 5495 components: - type: Transform - pos: 84.5,3.5 + pos: 70.5,34.5 parent: 2 - - uid: 10738 + - uid: 5496 components: - type: Transform - pos: 83.5,4.5 + pos: 70.5,33.5 parent: 2 - - uid: 10739 + - uid: 5497 components: - type: Transform - pos: 84.5,2.5 + pos: 70.5,32.5 parent: 2 - - uid: 10740 + - uid: 5513 components: - type: Transform - pos: 84.5,1.5 + pos: 69.5,28.5 parent: 2 - - uid: 10741 + - uid: 8357 components: - type: Transform - pos: 84.5,0.5 + pos: 70.5,27.5 parent: 2 - - uid: 10742 + - uid: 8817 components: - type: Transform - pos: 84.5,-1.5 + pos: 70.5,29.5 parent: 2 - - uid: 10743 +- proto: CarpetPink + entities: + - uid: 1240 components: - type: Transform - pos: 84.5,-2.5 + pos: 5.5,-13.5 parent: 2 - - uid: 10744 + - uid: 1244 components: - type: Transform - pos: 85.5,-2.5 + pos: 5.5,-12.5 parent: 2 - - uid: 10757 + - uid: 5457 components: - type: Transform - pos: 84.5,-16.5 + pos: 67.5,39.5 parent: 2 - - uid: 10758 + - uid: 5682 components: - type: Transform - pos: 83.5,-16.5 + pos: 6.5,-13.5 parent: 2 - - uid: 10759 + - uid: 13066 components: - type: Transform - pos: 82.5,-16.5 + pos: 6.5,-12.5 parent: 2 - - uid: 10760 + - uid: 13067 components: - type: Transform - pos: 78.5,-16.5 + pos: 7.5,-13.5 parent: 2 - - uid: 10761 + - uid: 13068 components: - type: Transform - pos: 75.5,-16.5 + pos: 7.5,-12.5 parent: 2 - - uid: 10762 + - uid: 13069 components: - type: Transform - pos: 74.5,-16.5 + pos: 4.5,-13.5 parent: 2 - - uid: 10763 + - uid: 13070 components: - type: Transform - pos: 72.5,-16.5 + pos: 4.5,-12.5 parent: 2 - - uid: 10764 +- proto: CarpetPurple + entities: + - uid: 5454 components: - type: Transform - pos: 69.5,-16.5 + pos: 67.5,36.5 parent: 2 - - uid: 10765 +- proto: CarpetSBlue + entities: + - uid: 5458 components: - type: Transform - pos: 69.5,-15.5 + pos: 67.5,40.5 parent: 2 - - uid: 10766 + - uid: 5462 components: - type: Transform - pos: 69.5,-17.5 + pos: 69.5,39.5 parent: 2 - - uid: 10767 + - uid: 10284 components: - type: Transform - pos: 69.5,-18.5 + pos: 18.5,-3.5 parent: 2 - - uid: 10768 + - uid: 10285 components: - type: Transform - pos: 66.5,29.5 + pos: 18.5,-2.5 parent: 2 - - uid: 10769 + - uid: 10286 components: - type: Transform - pos: 67.5,46.5 + pos: 19.5,-3.5 parent: 2 - - uid: 10770 + - uid: 10287 components: - type: Transform - pos: 49.5,47.5 + pos: 19.5,-2.5 parent: 2 - - uid: 10771 + - uid: 10288 components: - type: Transform - pos: 63.5,47.5 + pos: 20.5,-3.5 parent: 2 - - uid: 10772 + - uid: 10289 components: - type: Transform - pos: 29.5,32.5 + pos: 20.5,-2.5 parent: 2 - - uid: 10773 +- proto: Catwalk + entities: + - uid: 8 components: - type: Transform - pos: 30.5,32.5 + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 parent: 2 - - uid: 10774 + - uid: 197 components: - type: Transform - pos: 26.5,10.5 + rot: 3.141592653589793 rad + pos: 3.5,-15.5 parent: 2 - - uid: 10775 + - uid: 198 components: - type: Transform - pos: 38.5,11.5 + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 parent: 2 - - uid: 10776 + - uid: 199 components: - type: Transform - pos: 18.5,3.5 + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 parent: 2 - - uid: 10778 + - uid: 438 components: - type: Transform - pos: 15.5,7.5 + pos: 13.5,-45.5 parent: 2 - - uid: 10779 + - uid: 576 components: - type: Transform - pos: 5.5,-28.5 + rot: 3.141592653589793 rad + pos: 42.5,-21.5 parent: 2 - - uid: 10780 + - uid: 592 components: - type: Transform - pos: 5.5,-25.5 + pos: 14.5,-21.5 parent: 2 - - uid: 10781 + - uid: 593 components: - type: Transform - pos: 8.5,-24.5 + pos: 13.5,-21.5 parent: 2 - - uid: 10782 + - uid: 594 components: - type: Transform - pos: 6.5,-24.5 + pos: 4.5,-31.5 parent: 2 - - uid: 10815 + - uid: 595 components: - type: Transform - pos: 81.5,12.5 + pos: 4.5,-32.5 parent: 2 - - uid: 10816 + - uid: 1014 components: - type: Transform - pos: 81.5,11.5 + pos: 47.5,21.5 parent: 2 - - uid: 10817 + - uid: 1298 components: - type: Transform - pos: 81.5,10.5 + rot: -1.5707963267948966 rad + pos: 28.5,-49.5 parent: 2 - - uid: 10818 + - uid: 1374 components: - type: Transform - pos: 81.5,9.5 + pos: -1.5,-35.5 parent: 2 - - uid: 10819 + - uid: 1375 components: - type: Transform - pos: 81.5,8.5 + pos: -2.5,-35.5 parent: 2 - - uid: 10820 + - uid: 1376 components: - type: Transform - pos: 81.5,7.5 + pos: -3.5,-35.5 parent: 2 - - uid: 10821 + - uid: 1377 components: - type: Transform - pos: 81.5,6.5 + pos: -4.5,-35.5 parent: 2 - - uid: 10959 + - uid: 1378 components: - type: Transform - pos: 15.5,-50.5 + pos: -4.5,-34.5 parent: 2 - - uid: 10960 + - uid: 1379 components: - type: Transform - pos: 16.5,-50.5 + pos: -4.5,-33.5 parent: 2 - - uid: 10962 + - uid: 1380 components: - type: Transform - pos: 16.5,-53.5 + pos: -4.5,-32.5 parent: 2 - - uid: 10966 + - uid: 1381 components: - type: Transform - pos: 15.5,-53.5 + pos: -4.5,-31.5 parent: 2 - - uid: 10967 + - uid: 1382 components: - type: Transform - pos: 17.5,-46.5 + pos: -4.5,-36.5 parent: 2 - - uid: 10968 + - uid: 1383 components: - type: Transform - pos: 21.5,-46.5 + pos: -4.5,-37.5 parent: 2 - - uid: 10969 + - uid: 1384 components: - type: Transform - pos: 25.5,-46.5 + pos: -4.5,-38.5 parent: 2 - - uid: 10970 + - uid: 1385 components: - type: Transform - pos: 27.5,-50.5 + pos: -4.5,-39.5 parent: 2 - - uid: 10971 + - uid: 1398 components: - type: Transform - pos: 26.5,-50.5 + pos: -5.5,-35.5 parent: 2 - - uid: 10972 + - uid: 1399 components: - type: Transform - pos: 27.5,-53.5 + pos: -6.5,-35.5 parent: 2 - - uid: 10973 + - uid: 1400 components: - type: Transform - pos: 26.5,-53.5 + pos: -7.5,-35.5 parent: 2 - - uid: 10974 + - uid: 1401 components: - type: Transform - pos: 24.5,-56.5 + pos: -8.5,-35.5 parent: 2 - - uid: 10975 + - uid: 1402 components: - type: Transform - pos: 21.5,-56.5 + pos: -8.5,-36.5 parent: 2 - - uid: 10976 + - uid: 1403 components: - type: Transform - pos: 17.5,-56.5 + pos: -8.5,-37.5 parent: 2 - - uid: 10977 + - uid: 1404 components: - type: Transform - pos: 16.5,-56.5 + pos: -8.5,-38.5 parent: 2 - - uid: 10978 + - uid: 1405 components: - type: Transform - pos: 16.5,-55.5 + pos: -8.5,-39.5 parent: 2 - - uid: 10979 + - uid: 1406 components: - type: Transform - pos: 16.5,-54.5 + pos: -8.5,-40.5 parent: 2 - - uid: 10980 + - uid: 1407 components: - type: Transform - pos: 16.5,-52.5 + pos: -8.5,-34.5 parent: 2 - - uid: 10981 + - uid: 1408 components: - type: Transform - pos: 16.5,-51.5 + pos: -8.5,-33.5 parent: 2 - - uid: 10982 + - uid: 1409 components: - type: Transform - pos: 16.5,-49.5 + pos: -8.5,-32.5 parent: 2 - - uid: 10983 + - uid: 1410 components: - type: Transform - pos: 16.5,-48.5 + pos: -8.5,-31.5 parent: 2 - - uid: 10984 + - uid: 1411 components: - type: Transform - pos: 16.5,-47.5 + pos: -8.5,-30.5 parent: 2 - - uid: 10985 + - uid: 1428 components: - type: Transform - pos: 16.5,-46.5 + pos: -9.5,-35.5 parent: 2 - - uid: 10986 + - uid: 1429 components: - type: Transform - pos: 18.5,-46.5 + pos: -10.5,-35.5 parent: 2 - - uid: 10987 + - uid: 1430 components: - type: Transform - pos: 19.5,-46.5 + pos: -11.5,-35.5 parent: 2 - - uid: 10988 + - uid: 1431 components: - type: Transform - pos: 20.5,-46.5 + pos: -12.5,-35.5 parent: 2 - - uid: 10989 + - uid: 1432 components: - type: Transform - pos: 22.5,-46.5 + pos: -12.5,-34.5 parent: 2 - - uid: 10990 + - uid: 1433 components: - type: Transform - pos: 23.5,-46.5 + pos: -12.5,-33.5 parent: 2 - - uid: 10991 + - uid: 1434 components: - type: Transform - pos: 24.5,-46.5 + pos: -12.5,-32.5 parent: 2 - - uid: 10992 + - uid: 1435 components: - type: Transform - pos: 26.5,-46.5 + pos: -12.5,-31.5 parent: 2 - - uid: 10993 + - uid: 1436 components: - type: Transform - pos: 26.5,-47.5 + pos: -12.5,-36.5 parent: 2 - - uid: 10994 + - uid: 1437 components: - type: Transform - pos: 26.5,-48.5 + pos: -12.5,-37.5 parent: 2 - - uid: 10995 + - uid: 1438 components: - type: Transform - pos: 26.5,-49.5 + pos: -12.5,-38.5 parent: 2 - - uid: 10996 + - uid: 1439 components: - type: Transform - pos: 26.5,-51.5 + pos: -12.5,-39.5 parent: 2 - - uid: 10997 + - uid: 1440 components: - type: Transform - pos: 26.5,-52.5 + pos: -13.5,-35.5 parent: 2 - - uid: 10998 + - uid: 1441 components: - type: Transform - pos: 26.5,-54.5 + pos: -14.5,-35.5 parent: 2 - - uid: 10999 + - uid: 1442 components: - type: Transform - pos: 26.5,-55.5 + pos: -15.5,-35.5 parent: 2 - - uid: 11000 + - uid: 1468 components: - type: Transform - pos: 26.5,-56.5 + pos: 21.5,-40.5 parent: 2 - - uid: 11001 + - uid: 1474 components: - type: Transform - pos: 25.5,-56.5 + pos: 13.5,-38.5 parent: 2 - - uid: 11002 + - uid: 1475 components: - type: Transform - pos: 23.5,-56.5 + pos: 12.5,-38.5 parent: 2 - - uid: 11003 + - uid: 1477 components: - type: Transform - pos: 22.5,-56.5 + pos: 10.5,-38.5 parent: 2 - - uid: 11004 + - uid: 1478 components: - type: Transform - pos: 20.5,-56.5 + pos: 9.5,-38.5 parent: 2 - - uid: 11005 + - uid: 1479 components: - type: Transform - pos: 19.5,-56.5 + pos: 8.5,-38.5 parent: 2 - - uid: 11006 + - uid: 1486 components: - type: Transform - pos: 18.5,-56.5 + pos: 21.5,-21.5 parent: 2 - - uid: 11733 + - uid: 1492 components: - type: Transform - pos: 46.5,36.5 + pos: 19.5,-21.5 parent: 2 - - uid: 11734 + - uid: 1493 components: - type: Transform - pos: 46.5,35.5 + pos: 20.5,-21.5 parent: 2 - - uid: 11735 + - uid: 1519 components: - type: Transform - pos: 46.5,34.5 + pos: 18.5,-21.5 parent: 2 - - uid: 11736 + - uid: 1585 components: - type: Transform - pos: 46.5,33.5 + pos: 22.5,-21.5 parent: 2 - - uid: 11737 + - uid: 1780 components: - type: Transform - pos: 46.5,32.5 + pos: 23.5,-21.5 parent: 2 - - uid: 11755 + - uid: 2264 components: - type: Transform - pos: 46.5,-28.5 + rot: -1.5707963267948966 rad + pos: 32.5,-47.5 parent: 2 - - uid: 12308 + - uid: 2275 components: - type: Transform - pos: 18.5,-7.5 + rot: -1.5707963267948966 rad + pos: 16.5,-49.5 parent: 2 - - uid: 12309 + - uid: 2280 components: - type: Transform - pos: 19.5,-7.5 + rot: -1.5707963267948966 rad + pos: 26.5,-49.5 parent: 2 - - uid: 12310 + - uid: 2567 components: - type: Transform - pos: 20.5,-7.5 + rot: -1.5707963267948966 rad + pos: 36.5,34.5 parent: 2 - - uid: 12311 + - uid: 3172 components: - type: Transform - pos: 21.5,-7.5 + pos: 34.5,34.5 parent: 2 - - uid: 12312 + - uid: 3174 components: - type: Transform - pos: 22.5,-6.5 + pos: 34.5,35.5 parent: 2 - - uid: 12313 + - uid: 3188 components: - type: Transform - pos: 22.5,-5.5 + pos: 45.5,33.5 parent: 2 - - uid: 12321 + - uid: 3189 components: - type: Transform - pos: 22.5,-4.5 + pos: 45.5,34.5 parent: 2 - - uid: 12322 + - uid: 3190 components: - type: Transform - pos: 22.5,-3.5 + pos: 45.5,35.5 parent: 2 - - uid: 12323 + - uid: 3191 components: - type: Transform - pos: 22.5,-2.5 + pos: 45.5,36.5 parent: 2 - - uid: 12325 + - uid: 3254 components: - type: Transform - pos: 17.5,-10.5 + pos: 47.5,25.5 parent: 2 - - uid: 12326 + - uid: 3255 components: - type: Transform - pos: 17.5,-9.5 + pos: 47.5,23.5 parent: 2 - - uid: 12328 + - uid: 3446 components: - type: Transform - pos: 17.5,-8.5 + rot: -1.5707963267948966 rad + pos: 71.5,18.5 parent: 2 - - uid: 12329 + - uid: 3807 components: - type: Transform - pos: 16.5,-11.5 + pos: 79.5,-9.5 parent: 2 - - uid: 12330 + - uid: 3904 components: - type: Transform - pos: 15.5,-11.5 + pos: 75.5,45.5 parent: 2 - - uid: 12331 + - uid: 3905 components: - type: Transform - pos: 14.5,-11.5 + pos: 76.5,45.5 parent: 2 - - uid: 12332 + - uid: 3906 components: - type: Transform - pos: 10.5,-14.5 + pos: 77.5,45.5 parent: 2 - - uid: 12336 + - uid: 3907 components: - type: Transform - pos: 10.5,-15.5 + pos: 78.5,45.5 parent: 2 - - uid: 12337 + - uid: 3908 components: - type: Transform - pos: 10.5,-16.5 + pos: 78.5,46.5 parent: 2 - - uid: 12338 + - uid: 3909 components: - type: Transform - pos: 10.5,-17.5 + pos: 78.5,47.5 parent: 2 - - uid: 12339 + - uid: 3910 components: - type: Transform - pos: 10.5,-18.5 + pos: 78.5,48.5 parent: 2 - - uid: 12340 + - uid: 3911 components: - type: Transform - pos: 10.5,-19.5 + pos: 78.5,49.5 parent: 2 - - uid: 12341 + - uid: 3912 components: - type: Transform - pos: 1.5,-10.5 + pos: 78.5,44.5 parent: 2 - - uid: 12342 + - uid: 3913 components: - type: Transform - pos: 1.5,-11.5 + pos: 78.5,43.5 parent: 2 - - uid: 12343 + - uid: 3914 components: - type: Transform - pos: 1.5,-12.5 + pos: 78.5,42.5 parent: 2 - - uid: 12344 + - uid: 3915 components: - type: Transform - pos: 1.5,-13.5 + pos: 78.5,41.5 parent: 2 - - uid: 12345 + - uid: 3916 components: - type: Transform - pos: 1.5,-8.5 + pos: 79.5,45.5 parent: 2 - - uid: 12346 + - uid: 3917 components: - type: Transform - pos: 1.5,-7.5 + pos: 80.5,45.5 parent: 2 - - uid: 12347 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 2 - - uid: 12348 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 - - uid: 12349 + - uid: 3918 components: - type: Transform - pos: 1.5,-4.5 + pos: 81.5,45.5 parent: 2 - - uid: 12350 + - uid: 3919 components: - type: Transform - pos: 1.5,-3.5 + pos: 82.5,45.5 parent: 2 - - uid: 12388 + - uid: 3920 components: - type: Transform - pos: 35.5,-16.5 + pos: 82.5,46.5 parent: 2 - - uid: 12389 + - uid: 3921 components: - type: Transform - pos: 36.5,-16.5 + pos: 82.5,47.5 parent: 2 - - uid: 12390 + - uid: 3922 components: - type: Transform - pos: 37.5,-16.5 + pos: 82.5,48.5 parent: 2 - - uid: 12393 + - uid: 3923 components: - type: Transform - pos: 38.5,-16.5 + pos: 82.5,40.5 parent: 2 - - uid: 12397 + - uid: 3924 components: - type: Transform - pos: 48.5,-18.5 + pos: 82.5,49.5 parent: 2 - - uid: 12398 + - uid: 3925 components: - type: Transform - pos: 47.5,-18.5 + pos: 82.5,50.5 parent: 2 - - uid: 12399 + - uid: 3926 components: - type: Transform - pos: 46.5,-18.5 + pos: 82.5,41.5 parent: 2 - - uid: 12400 + - uid: 3927 components: - type: Transform - pos: 45.5,-18.5 + pos: 82.5,42.5 parent: 2 - - uid: 12401 + - uid: 3928 components: - type: Transform - pos: 44.5,-18.5 + pos: 82.5,43.5 parent: 2 - - uid: 12403 + - uid: 3929 components: - type: Transform - pos: 43.5,-18.5 + pos: 82.5,44.5 parent: 2 - - uid: 12404 + - uid: 3930 components: - type: Transform - pos: 42.5,-18.5 + pos: 83.5,45.5 parent: 2 - - uid: 12405 + - uid: 3931 components: - type: Transform - pos: 41.5,-18.5 + pos: 84.5,45.5 parent: 2 - - uid: 12844 + - uid: 3932 components: - type: Transform - pos: 22.5,5.5 + pos: 85.5,45.5 parent: 2 - - uid: 12845 + - uid: 3933 components: - type: Transform - pos: 22.5,6.5 + pos: 86.5,45.5 parent: 2 - - uid: 12846 + - uid: 3934 components: - type: Transform - pos: 22.5,7.5 + pos: 86.5,44.5 parent: 2 - - uid: 13005 + - uid: 3935 components: - type: Transform - pos: 31.5,-50.5 + pos: 86.5,43.5 parent: 2 - - uid: 13006 + - uid: 3936 components: - type: Transform - pos: 32.5,-50.5 + pos: 86.5,42.5 parent: 2 - - uid: 13007 + - uid: 3937 components: - type: Transform - pos: 33.5,-50.5 + pos: 86.5,41.5 parent: 2 - - uid: 13008 + - uid: 3938 components: - type: Transform - pos: 34.5,-50.5 + pos: 86.5,46.5 parent: 2 - - uid: 13009 + - uid: 3939 components: - type: Transform - pos: 35.5,-50.5 + pos: 86.5,47.5 parent: 2 - - uid: 13010 + - uid: 3940 components: - type: Transform - pos: 36.5,-50.5 + pos: 86.5,48.5 parent: 2 - - uid: 13011 + - uid: 3941 components: - type: Transform - pos: 37.5,-50.5 + pos: 86.5,49.5 parent: 2 - - uid: 13012 + - uid: 3942 components: - type: Transform - pos: 38.5,-50.5 + pos: 87.5,45.5 parent: 2 - - uid: 13013 + - uid: 3943 components: - type: Transform - pos: 39.5,-50.5 + pos: 88.5,45.5 parent: 2 - - uid: 13014 + - uid: 3944 components: - type: Transform - pos: 40.5,-50.5 + pos: 89.5,45.5 parent: 2 - - uid: 13015 + - uid: 4272 components: - type: Transform - pos: 41.5,-50.5 + rot: -1.5707963267948966 rad + pos: 32.5,-48.5 parent: 2 - - uid: 13016 + - uid: 4323 components: - type: Transform - pos: 42.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,30.5 parent: 2 - - uid: 13017 + - uid: 4324 components: - type: Transform - pos: 43.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,31.5 parent: 2 - - uid: 13018 + - uid: 4332 components: - type: Transform - pos: 44.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,29.5 parent: 2 - - uid: 13019 + - uid: 4440 components: - type: Transform - pos: 45.5,-50.5 + pos: 4.5,-30.5 parent: 2 - - uid: 13020 + - uid: 4441 components: - type: Transform - pos: 46.5,-50.5 + pos: 5.5,-30.5 parent: 2 - - uid: 13021 + - uid: 4453 components: - type: Transform - pos: 47.5,-50.5 + pos: 10.5,-23.5 parent: 2 - - uid: 13022 + - uid: 4454 components: - type: Transform - pos: 48.5,-50.5 + pos: 11.5,-23.5 parent: 2 - - uid: 13023 + - uid: 4504 components: - type: Transform - pos: 49.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,32.5 parent: 2 - - uid: 13024 + - uid: 4519 components: - type: Transform - pos: 50.5,-50.5 + rot: 1.5707963267948966 rad + pos: 3.5,37.5 parent: 2 - - uid: 13025 + - uid: 4643 components: - type: Transform - pos: 51.5,-50.5 + rot: -1.5707963267948966 rad + pos: 11.5,35.5 parent: 2 - - uid: 13026 + - uid: 4776 components: - type: Transform - pos: 51.5,-49.5 + pos: 30.5,-43.5 parent: 2 - - uid: 13027 + - uid: 4777 components: - type: Transform - pos: 51.5,-48.5 + pos: 30.5,-42.5 parent: 2 - - uid: 13028 + - uid: 4778 components: - type: Transform - pos: 51.5,-47.5 + pos: 30.5,-41.5 parent: 2 - - uid: 13029 + - uid: 4779 components: - type: Transform - pos: 51.5,-46.5 + pos: 30.5,-40.5 parent: 2 - - uid: 13030 + - uid: 4780 components: - type: Transform - pos: 51.5,-45.5 + pos: 30.5,-39.5 parent: 2 - - uid: 13031 + - uid: 4782 components: - type: Transform - pos: 51.5,-44.5 + pos: 21.5,-39.5 parent: 2 - - uid: 13032 + - uid: 4799 components: - type: Transform - pos: 51.5,-43.5 + pos: 21.5,-41.5 parent: 2 - - uid: 13033 + - uid: 4986 components: - type: Transform - pos: 51.5,-42.5 + pos: 51.5,6.5 parent: 2 - - uid: 13034 + - uid: 5082 components: - type: Transform - pos: 50.5,-42.5 + pos: 53.5,6.5 parent: 2 - - uid: 13035 + - uid: 5105 components: - type: Transform - pos: 49.5,-42.5 + rot: 3.141592653589793 rad + pos: 41.5,-21.5 parent: 2 - - uid: 13036 + - uid: 5123 components: - type: Transform - pos: 48.5,-42.5 + pos: 46.5,-27.5 parent: 2 - - uid: 13037 + - uid: 5145 components: - type: Transform - pos: 48.5,-41.5 + pos: 46.5,6.5 parent: 2 - - uid: 13038 + - uid: 5196 components: - type: Transform - pos: 48.5,-40.5 + pos: 46.5,-34.5 parent: 2 - - uid: 13039 + - uid: 5499 components: - type: Transform - pos: 48.5,-39.5 + rot: -1.5707963267948966 rad + pos: 69.5,18.5 parent: 2 - - uid: 13040 + - uid: 5606 components: - type: Transform - pos: 48.5,-38.5 + rot: -1.5707963267948966 rad + pos: 28.5,-53.5 parent: 2 - - uid: 13041 + - uid: 5607 components: - type: Transform - pos: 48.5,-37.5 + rot: -1.5707963267948966 rad + pos: 15.5,-49.5 parent: 2 - - uid: 13042 + - uid: 5613 components: - type: Transform - pos: 48.5,-36.5 + pos: 35.5,-40.5 parent: 2 - - uid: 13436 + - uid: 5614 components: - type: Transform - pos: 46.5,-25.5 + pos: 35.5,-39.5 parent: 2 - - uid: 13437 + - uid: 5615 components: - type: Transform - pos: 46.5,-26.5 + pos: 34.5,-39.5 parent: 2 - - uid: 13439 + - uid: 5616 components: - type: Transform - pos: 46.5,-32.5 + pos: 36.5,-39.5 parent: 2 - - uid: 13441 + - uid: 5623 components: - type: Transform - pos: 46.5,-23.5 + pos: 11.5,-26.5 parent: 2 - - uid: 13447 + - uid: 5624 components: - type: Transform - pos: 46.5,-33.5 + pos: 10.5,-26.5 parent: 2 - - uid: 13450 + - uid: 5663 components: - type: Transform - pos: 46.5,-31.5 + pos: 46.5,-29.5 parent: 2 - - uid: 13493 + - uid: 5681 components: - type: Transform - pos: 14.5,-38.5 + rot: -1.5707963267948966 rad + pos: 14.5,-49.5 parent: 2 - - uid: 13682 + - uid: 5730 components: - type: Transform - pos: -14.5,16.5 + pos: 46.5,-24.5 parent: 2 - - uid: 13683 + - uid: 5746 components: - type: Transform - pos: -13.5,16.5 + rot: 3.141592653589793 rad + pos: 55.5,-19.5 parent: 2 - - uid: 13684 + - uid: 5747 components: - type: Transform - pos: -12.5,16.5 + rot: 3.141592653589793 rad + pos: 53.5,-19.5 parent: 2 - - uid: 13685 + - uid: 5860 components: - type: Transform - pos: -11.5,16.5 + pos: 16.5,-21.5 parent: 2 - - uid: 13686 + - uid: 5870 components: - type: Transform - pos: -10.5,16.5 + pos: 15.5,-21.5 parent: 2 - - uid: 13687 + - uid: 5871 components: - type: Transform - pos: -9.5,16.5 + pos: 17.5,-21.5 parent: 2 - - uid: 13688 + - uid: 5914 components: - type: Transform - pos: -8.5,16.5 + pos: 32.5,-19.5 parent: 2 - - uid: 13689 + - uid: 5915 components: - type: Transform - pos: -7.5,16.5 + pos: 33.5,-19.5 parent: 2 - - uid: 13690 + - uid: 5916 components: - type: Transform - pos: -6.5,16.5 + pos: 34.5,-19.5 parent: 2 - - uid: 13691 + - uid: 5917 components: - type: Transform - pos: -5.5,16.5 + pos: 35.5,-19.5 parent: 2 - - uid: 13692 + - uid: 5918 components: - type: Transform - pos: -4.5,16.5 + pos: 37.5,-19.5 parent: 2 - - uid: 13693 + - uid: 5919 components: - type: Transform - pos: -3.5,16.5 + pos: 38.5,-19.5 parent: 2 - - uid: 13694 + - uid: 5920 components: - type: Transform - pos: -1.5,16.5 + pos: 39.5,-19.5 parent: 2 - - uid: 13695 + - uid: 6003 components: - type: Transform - pos: -0.5,16.5 + rot: 3.141592653589793 rad + pos: 51.5,-19.5 parent: 2 - - uid: 13696 + - uid: 6010 components: - type: Transform - pos: 0.5,16.5 + rot: 3.141592653589793 rad + pos: 52.5,-19.5 parent: 2 - - uid: 13697 + - uid: 6775 components: - type: Transform - pos: 1.5,16.5 + rot: -1.5707963267948966 rad + pos: 5.5,35.5 parent: 2 - - uid: 13698 + - uid: 6791 components: - type: Transform - pos: -2.5,16.5 + rot: 3.141592653589793 rad + pos: 39.5,-21.5 parent: 2 - - uid: 13699 + - uid: 6792 components: - type: Transform - pos: 3.5,16.5 + rot: 3.141592653589793 rad + pos: 38.5,-21.5 parent: 2 - - uid: 13700 + - uid: 6823 components: - type: Transform - pos: 2.5,16.5 + rot: 3.141592653589793 rad + pos: 40.5,-21.5 parent: 2 - - uid: 13749 + - uid: 6866 components: - type: Transform - pos: 5.5,-21.5 + pos: 47.5,24.5 parent: 2 - - uid: 13750 + - uid: 7007 components: - type: Transform - pos: 6.5,-21.5 + pos: 44.5,6.5 parent: 2 - - uid: 13751 + - uid: 7012 components: - type: Transform - pos: 7.5,-21.5 + pos: 47.5,6.5 parent: 2 -- proto: Cautery - entities: - - uid: 7791 + - uid: 7253 components: - type: Transform - pos: 67.45054,-3.640809 + pos: 14.5,-41.5 parent: 2 -- proto: Chair - entities: - - uid: 38 + - uid: 7304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 + rot: -1.5707963267948966 rad + pos: 34.5,36.5 parent: 2 - - uid: 56 + - uid: 7463 components: - type: Transform - pos: -2.5,-8.5 + rot: -1.5707963267948966 rad + pos: 14.5,-53.5 parent: 2 - - uid: 84 + - uid: 7564 components: - type: Transform - pos: -8.5,-12.5 + pos: 5.5,26.5 parent: 2 - - uid: 85 + - uid: 7618 components: - type: Transform - pos: -9.5,-12.5 + rot: -1.5707963267948966 rad + pos: 27.5,-49.5 parent: 2 - - uid: 88 + - uid: 7661 components: - type: Transform - pos: -15.5,-12.5 + pos: 13.5,-42.5 parent: 2 - - uid: 790 + - uid: 7757 components: - type: Transform - pos: 19.5,-25.5 + rot: -1.5707963267948966 rad + pos: 68.5,18.5 parent: 2 - - uid: 791 + - uid: 7783 components: - type: Transform - pos: 18.5,-25.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 792 + - uid: 7818 components: - type: Transform - pos: 17.5,-25.5 + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 parent: 2 - - uid: 793 + - uid: 7820 components: - type: Transform - pos: 16.5,-25.5 + rot: -1.5707963267948966 rad + pos: 23.5,27.5 parent: 2 - - uid: 794 + - uid: 7826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 + rot: -1.5707963267948966 rad + pos: 70.5,18.5 parent: 2 - - uid: 795 + - uid: 7852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-27.5 + rot: -1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 - - uid: 796 + - uid: 7856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-27.5 + rot: -1.5707963267948966 rad + pos: 4.5,24.5 parent: 2 - - uid: 797 + - uid: 7860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-27.5 + pos: 46.5,-30.5 parent: 2 - - uid: 939 + - uid: 8029 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-34.5 + pos: 4.5,26.5 parent: 2 - - uid: 1147 + - uid: 8063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 + pos: 5.5,24.5 parent: 2 - - uid: 1554 + - uid: 8074 components: - type: Transform - pos: 54.5,15.5 + pos: 13.5,-41.5 parent: 2 - - uid: 1634 + - uid: 8283 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-4.5 + pos: 11.5,16.5 parent: 2 - - uid: 1655 + - uid: 8284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-5.5 + pos: 11.5,17.5 parent: 2 - - uid: 1833 + - uid: 8286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 + pos: 13.5,-44.5 parent: 2 - - uid: 1843 + - uid: 8302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 + pos: 52.5,6.5 parent: 2 - - uid: 1851 + - uid: 8311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,8.5 + pos: 50.5,6.5 parent: 2 - - uid: 1946 + - uid: 8312 components: - type: Transform - pos: -16.5,-12.5 + pos: 49.5,6.5 parent: 2 - - uid: 2409 + - uid: 8313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,22.5 + pos: 45.5,6.5 parent: 2 - - uid: 2493 + - uid: 8391 components: - type: Transform - pos: 30.5,30.5 + pos: 45.5,27.5 parent: 2 - - uid: 2494 + - uid: 8750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,28.5 + pos: 95.5,-19.5 parent: 2 - - uid: 5089 + - uid: 8751 components: - type: Transform - pos: 64.5,-1.5 + pos: 96.5,-19.5 parent: 2 - - uid: 5090 + - uid: 8752 components: - type: Transform - pos: 65.5,-1.5 + pos: 97.5,-19.5 parent: 2 - - uid: 5091 + - uid: 8753 components: - type: Transform - pos: 66.5,-1.5 + pos: 98.5,-19.5 parent: 2 - - uid: 5151 + - uid: 8754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 + pos: 98.5,-20.5 parent: 2 - - uid: 5173 + - uid: 8755 components: - type: Transform - pos: 55.5,15.5 + pos: 97.5,-20.5 parent: 2 - - uid: 5256 + - uid: 8756 components: - type: Transform - pos: 55.5,-9.5 + pos: 96.5,-20.5 parent: 2 - - uid: 5388 + - uid: 8757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,11.5 + pos: 95.5,-20.5 parent: 2 - - uid: 5406 + - uid: 8850 components: - type: Transform - pos: 67.5,-1.5 + rot: -1.5707963267948966 rad + pos: 103.5,-10.5 parent: 2 - - uid: 5524 + - uid: 8851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,0.5 + rot: -1.5707963267948966 rad + pos: 102.5,-10.5 parent: 2 - - uid: 5525 + - uid: 8852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,1.5 + rot: -1.5707963267948966 rad + pos: 101.5,-10.5 parent: 2 - - uid: 5848 + - uid: 8853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,18.5 + rot: -1.5707963267948966 rad + pos: 100.5,-10.5 parent: 2 - - uid: 5849 + - uid: 8854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 + rot: -1.5707963267948966 rad + pos: 22.5,27.5 parent: 2 - - uid: 7546 + - uid: 8855 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,2.5 + pos: 21.5,27.5 parent: 2 - - uid: 7713 + - uid: 8856 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-13.5 + pos: 20.5,27.5 parent: 2 - - uid: 7729 + - uid: 8916 components: - type: Transform - pos: -3.5,-8.5 + rot: -1.5707963267948966 rad + pos: 19.5,27.5 parent: 2 - - uid: 7976 + - uid: 8917 components: - type: Transform - pos: -3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,27.5 parent: 2 - - uid: 7986 + - uid: 8918 components: - type: Transform - pos: -0.5,0.5 + rot: -1.5707963267948966 rad + pos: 17.5,27.5 parent: 2 - - uid: 7987 + - uid: 8919 components: - type: Transform - pos: 0.5,0.5 + rot: -1.5707963267948966 rad + pos: 16.5,27.5 parent: 2 - - uid: 7988 + - uid: 9233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 + rot: 3.141592653589793 rad + pos: 40.5,-19.5 parent: 2 - - uid: 7989 + - uid: 10711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + pos: 63.5,48.5 parent: 2 - - uid: 7990 + - uid: 10712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 + pos: 62.5,48.5 parent: 2 - - uid: 7991 + - uid: 10713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 + pos: 61.5,48.5 parent: 2 - - uid: 7992 + - uid: 10714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,11.5 + pos: 60.5,48.5 parent: 2 - - uid: 7993 + - uid: 10715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,12.5 + pos: 59.5,48.5 parent: 2 - - uid: 7994 + - uid: 10716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 + pos: 58.5,48.5 parent: 2 - - uid: 7995 + - uid: 10717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: 57.5,48.5 parent: 2 - - uid: 7996 + - uid: 10718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 + pos: 56.5,48.5 parent: 2 - - uid: 9361 + - uid: 10719 components: - type: Transform - pos: 25.5,7.5 + pos: 54.5,48.5 parent: 2 - - uid: 10637 + - uid: 10720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,7.5 + pos: 53.5,48.5 parent: 2 - - uid: 10829 + - uid: 10721 components: - type: Transform - pos: 71.5,11.5 + pos: 52.5,48.5 parent: 2 - - uid: 10830 + - uid: 10722 components: - type: Transform - pos: 69.5,11.5 + pos: 51.5,48.5 parent: 2 - - uid: 10896 + - uid: 10723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 + pos: 50.5,48.5 parent: 2 - - uid: 10897 + - uid: 10724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,13.5 + pos: 49.5,48.5 parent: 2 - - uid: 12177 + - uid: 10725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 + pos: 55.5,48.5 parent: 2 - - uid: 12178 + - uid: 10726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 + pos: 43.5,41.5 parent: 2 - - uid: 12179 + - uid: 10727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,8.5 + pos: 42.5,41.5 parent: 2 - - uid: 12180 + - uid: 10728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,8.5 + pos: 41.5,41.5 parent: 2 - - uid: 12181 + - uid: 10729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,5.5 + pos: 40.5,41.5 parent: 2 - - uid: 12182 + - uid: 10730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 + pos: 67.5,10.5 parent: 2 - - uid: 12183 + - uid: 10731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 + pos: 68.5,10.5 parent: 2 - - uid: 12184 + - uid: 10732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,6.5 + pos: 70.5,10.5 parent: 2 -- proto: ChairMeat - entities: - - uid: 13071 + - uid: 10733 components: - type: Transform - pos: 6.5,-12.5 + pos: 69.5,10.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 190 + - uid: 10734 components: - type: Transform - pos: -2.5,-11.5 + pos: 71.5,10.5 parent: 2 - - uid: 311 + - uid: 10736 components: - type: Transform - pos: 11.5,5.5 + pos: 73.5,10.5 parent: 2 - - uid: 313 + - uid: 10737 components: - type: Transform - pos: 10.5,5.5 + pos: 84.5,3.5 parent: 2 - - uid: 314 + - uid: 10738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,3.5 + pos: 83.5,4.5 parent: 2 - - uid: 579 + - uid: 10739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-3.5 + pos: 84.5,2.5 parent: 2 - - uid: 683 + - uid: 10740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 + pos: 84.5,1.5 parent: 2 - - uid: 684 + - uid: 10741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 + pos: 84.5,0.5 parent: 2 - - uid: 1010 + - uid: 10742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.517172,-24.347618 + pos: 84.5,-1.5 parent: 2 - - uid: 1852 + - uid: 10743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,22.5 + pos: 84.5,-2.5 parent: 2 - - uid: 2480 + - uid: 10744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 + pos: 85.5,-2.5 parent: 2 - - uid: 2489 + - uid: 10757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 + pos: 84.5,-16.5 parent: 2 - - uid: 2724 + - uid: 10758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 + pos: 83.5,-16.5 parent: 2 - - uid: 2725 + - uid: 10759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,32.5 + pos: 82.5,-16.5 parent: 2 - - uid: 2726 + - uid: 10760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,30.5 + pos: 78.5,-16.5 parent: 2 - - uid: 2727 + - uid: 10761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,29.5 + pos: 75.5,-16.5 parent: 2 - - uid: 4999 + - uid: 10762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,45.5 + pos: 74.5,-16.5 parent: 2 - - uid: 5000 + - uid: 10764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,47.5 + pos: 69.5,-16.5 parent: 2 - - uid: 5001 + - uid: 10766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,47.5 + pos: 69.5,-17.5 parent: 2 - - uid: 5002 + - uid: 10767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,45.5 + pos: 69.5,-18.5 parent: 2 - - uid: 5159 + - uid: 10769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-11.5 + pos: 67.5,46.5 parent: 2 - - uid: 5321 + - uid: 10770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 + pos: 49.5,47.5 parent: 2 - - uid: 5389 + - uid: 10771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,10.5 + pos: 63.5,47.5 parent: 2 - - uid: 5742 + - uid: 10772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 + pos: 29.5,32.5 parent: 2 - - uid: 7468 + - uid: 10773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 + pos: 30.5,32.5 parent: 2 - - uid: 7710 + - uid: 10774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,24.5 + pos: 26.5,10.5 parent: 2 - - uid: 7792 + - uid: 10775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,14.5 + pos: 38.5,11.5 parent: 2 - - uid: 8253 + - uid: 10776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 + pos: 18.5,3.5 parent: 2 - - uid: 8608 + - uid: 10778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.500034,25.750826 + pos: 15.5,7.5 parent: 2 - - uid: 8658 + - uid: 10779 components: - type: Transform - pos: 50.5,2.5 + pos: 5.5,-28.5 parent: 2 - - uid: 10912 + - uid: 10780 components: - type: Transform - pos: 74.5,-1.5 + pos: 5.5,-25.5 parent: 2 - - uid: 12150 + - uid: 10781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,30.5 + pos: 8.5,-24.5 parent: 2 - - uid: 13446 + - uid: 10782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.454672,-24.238243 + pos: 6.5,-24.5 parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 940 + - uid: 10815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 + pos: 81.5,12.5 parent: 2 - - uid: 5068 + - uid: 10816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-4.5 + pos: 81.5,11.5 parent: 2 - - uid: 5069 + - uid: 10817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-4.5 + pos: 81.5,10.5 parent: 2 - - uid: 5227 + - uid: 10818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-6.5 + pos: 81.5,9.5 parent: 2 - - uid: 7075 + - uid: 10819 components: - type: Transform - pos: 44.5,3.5 + pos: 81.5,8.5 parent: 2 - - uid: 7859 + - uid: 10820 components: - type: Transform - pos: 71.5,-19.495005 + pos: 81.5,7.5 parent: 2 - - uid: 8664 + - uid: 10821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,24.5 + pos: 81.5,6.5 parent: 2 - - uid: 10670 + - uid: 10960 components: - type: Transform - pos: 62.5,9.5 + pos: 16.5,-50.5 parent: 2 - - uid: 10901 + - uid: 10962 components: - type: Transform - pos: 79.5,-6.5 + pos: 16.5,-53.5 parent: 2 - - uid: 11293 + - uid: 10966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 + pos: 15.5,-53.5 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 4971 + - uid: 10968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,47.5 + rot: -1.5707963267948966 rad + pos: 14.5,-57.5 parent: 2 -- proto: ChairWood - entities: - - uid: 1152 + - uid: 10971 components: - type: Transform - pos: 29.5,-2.5 + pos: 26.5,-50.5 parent: 2 - - uid: 1153 + - uid: 10972 components: - type: Transform - pos: 30.5,-2.5 + pos: 27.5,-53.5 parent: 2 - - uid: 1155 + - uid: 10973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 + pos: 26.5,-53.5 parent: 2 - - uid: 1166 + - uid: 10980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 + pos: 16.5,-52.5 parent: 2 - - uid: 1167 + - uid: 10981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 + pos: 16.5,-51.5 parent: 2 - - uid: 1168 + - uid: 10996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 + pos: 26.5,-51.5 parent: 2 - - uid: 1662 + - uid: 10997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-4.5 + pos: 26.5,-52.5 parent: 2 - - uid: 1664 + - uid: 11755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-4.5 + pos: 46.5,-28.5 parent: 2 - - uid: 2689 + - uid: 11883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,33.5 + pos: 74.5,20.5 parent: 2 - - uid: 2690 + - uid: 12308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,33.5 + pos: 18.5,-7.5 parent: 2 - - uid: 2691 + - uid: 12309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,32.5 + pos: 19.5,-7.5 parent: 2 - - uid: 2692 + - uid: 12310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,32.5 + pos: 20.5,-7.5 parent: 2 - - uid: 2693 + - uid: 12311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,30.5 + pos: 21.5,-7.5 parent: 2 - - uid: 2694 + - uid: 12312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,29.5 + pos: 22.5,-6.5 parent: 2 - - uid: 2695 + - uid: 12313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,29.5 + pos: 22.5,-5.5 parent: 2 - - uid: 2696 + - uid: 12321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,30.5 + pos: 22.5,-4.5 parent: 2 - - uid: 2728 + - uid: 12322 components: - type: Transform - pos: 19.5,33.56914 + pos: 22.5,-3.5 parent: 2 - - uid: 5502 + - uid: 12323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,33.5 + pos: 22.5,-2.5 parent: 2 - - uid: 5503 + - uid: 12325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,33.5 + pos: 17.5,-10.5 parent: 2 - - uid: 5504 + - uid: 12326 components: - type: Transform - pos: 70.5,34.495007 + pos: 17.5,-9.5 parent: 2 - - uid: 5511 + - uid: 12328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,29.5 + pos: 17.5,-8.5 parent: 2 - - uid: 5512 + - uid: 12329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,27.5 + pos: 16.5,-11.5 parent: 2 - - uid: 5513 + - uid: 12330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,28.5 + pos: 15.5,-11.5 parent: 2 - - uid: 6477 + - uid: 12331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 + pos: 14.5,-11.5 parent: 2 - - uid: 6478 + - uid: 12332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 10.5,-14.5 parent: 2 - - uid: 6497 + - uid: 12336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 10.5,-15.5 parent: 2 - - uid: 6504 + - uid: 12337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 + pos: 10.5,-16.5 parent: 2 - - uid: 8644 + - uid: 12338 components: - type: Transform - pos: 84.5,12.495002 + pos: 10.5,-17.5 parent: 2 - - uid: 8645 + - uid: 12339 components: - type: Transform - pos: 85.5,12.495002 + pos: 10.5,-18.5 parent: 2 - - uid: 12710 + - uid: 12340 components: - type: Transform - pos: 114.5,-16.5 + pos: 10.5,-19.5 parent: 2 - - uid: 13474 + - uid: 12341 components: - type: Transform - pos: 9.853746,-41.642406 + pos: 1.5,-10.5 parent: 2 -- proto: CheapLighter - entities: - - uid: 6631 + - uid: 12342 components: - type: Transform - pos: 37.66267,-3.4032297 + pos: 1.5,-11.5 parent: 2 - - uid: 7717 + - uid: 12343 components: - type: Transform - pos: 43.77102,20.318724 + pos: 1.5,-12.5 parent: 2 -- proto: CheapRollerBed - entities: - - uid: 8145 + - uid: 12344 components: - type: Transform - pos: 58.484226,3.6459913 + pos: 1.5,-13.5 parent: 2 - - uid: 8232 + - uid: 12345 components: - type: Transform - pos: 57.484226,3.6453457 + pos: 1.5,-8.5 parent: 2 - - uid: 8234 + - uid: 12346 components: - type: Transform - pos: 55.484226,3.6458454 + pos: 1.5,-7.5 parent: 2 - - uid: 8299 + - uid: 12347 components: - type: Transform - pos: 54.49985,3.645617 + pos: 1.5,-6.5 parent: 2 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 11921 + - uid: 12348 components: - type: Transform - pos: 70.44693,7.937353 + pos: 1.5,-5.5 parent: 2 -- proto: ChemDispenser - entities: - - uid: 5050 + - uid: 12349 components: - type: Transform - pos: 49.5,-5.5 + pos: 1.5,-4.5 parent: 2 - - type: ContainerContainer - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 5051 + - uid: 12350 components: - type: Transform - pos: 53.5,-3.5 + pos: 1.5,-3.5 parent: 2 - - type: ContainerContainer - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ChemistryHotplate - entities: - - uid: 11028 + - uid: 12388 components: - type: Transform - pos: 51.5,-7.5 + pos: 35.5,-16.5 parent: 2 -- proto: ChemMaster - entities: - - uid: 5052 + - uid: 12389 components: - type: Transform - pos: 49.5,-4.5 + pos: 36.5,-16.5 parent: 2 - - type: ContainerContainer - containers: - ChemMaster-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ChemMaster-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - outputSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 5053 + - uid: 12390 components: - type: Transform - pos: 52.5,-3.5 + pos: 37.5,-16.5 parent: 2 - - type: ContainerContainer - containers: - ChemMaster-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ChemMaster-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - outputSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ChurchOrganInstrument - entities: - - uid: 8921 + - uid: 12393 components: - type: Transform - pos: 35.5,5.5 + pos: 38.5,-16.5 parent: 2 -- proto: CigarGold - entities: - - uid: 7936 + - uid: 12397 components: - type: Transform - pos: 43.474144,20.053099 + pos: 48.5,-18.5 parent: 2 - - uid: 12104 + - uid: 12398 components: - type: Transform - pos: 17.412243,41.086063 + pos: 47.5,-18.5 parent: 2 - - uid: 12105 + - uid: 12399 components: - type: Transform - pos: 17.630993,41.086063 + pos: 46.5,-18.5 parent: 2 -- proto: CigPackGreen - entities: - - uid: 5523 + - uid: 12400 components: - type: Transform - pos: 87.481125,1.4149053 + pos: 45.5,-18.5 parent: 2 - - uid: 9307 + - uid: 12401 components: - type: Transform - pos: 69.531136,11.469878 + pos: 44.5,-18.5 parent: 2 -- proto: CircuitImprinter - entities: - - uid: 12155 + - uid: 12403 components: - type: Transform - pos: 53.5,17.5 + pos: 43.5,-18.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold -- proto: CleanerDispenser - entities: - - uid: 6875 + - uid: 12404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-4.5 + pos: 42.5,-18.5 parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 12854 + - uid: 12741 components: - type: Transform - pos: 55.5,25.5 + pos: 47.5,26.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 98 + - uid: 12844 components: - type: Transform - pos: -17.5,-12.5 + pos: 22.5,5.5 parent: 2 - - uid: 106 + - uid: 12845 components: - type: Transform - pos: -10.5,-12.5 + pos: 22.5,6.5 parent: 2 - - uid: 1480 + - uid: 12846 components: - type: Transform - pos: 24.5,-4.5 + pos: 22.5,7.5 parent: 2 - - uid: 1481 + - uid: 13005 components: - type: Transform - pos: 24.5,-5.5 + pos: 31.5,-50.5 parent: 2 - - uid: 5261 + - uid: 13006 components: - type: Transform - pos: 49.5,13.5 + pos: 32.5,-50.5 parent: 2 - - uid: 5438 + - uid: 13007 components: - type: Transform - pos: 9.5,-20.5 + pos: 33.5,-50.5 parent: 2 - - uid: 5472 + - uid: 13008 components: - type: Transform - pos: 70.5,42.5 + pos: 34.5,-50.5 parent: 2 - - uid: 5612 + - uid: 13009 components: - type: Transform - pos: 36.5,-38.5 + pos: 35.5,-50.5 parent: 2 - - uid: 5736 + - uid: 13010 components: - type: Transform - pos: 69.5,-11.5 + pos: 36.5,-50.5 parent: 2 - - uid: 5901 + - uid: 13011 components: - type: Transform - pos: 5.5,-30.5 + pos: 37.5,-50.5 parent: 2 - - uid: 7985 + - uid: 13012 components: - type: Transform - pos: -6.5,0.5 + pos: 38.5,-50.5 parent: 2 - - uid: 7997 + - uid: 13013 components: - type: Transform - pos: 3.5,5.5 + pos: 39.5,-50.5 parent: 2 - - uid: 10837 + - uid: 13014 components: - type: Transform - pos: 66.5,6.5 + pos: 40.5,-50.5 parent: 2 - - uid: 10839 + - uid: 13015 components: - type: Transform - pos: 43.5,46.5 + pos: 41.5,-50.5 parent: 2 - - uid: 13001 + - uid: 13016 components: - type: Transform - pos: 31.5,-46.5 + pos: 42.5,-50.5 parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 94 + - uid: 13017 components: - type: Transform - pos: -14.5,-12.5 + pos: 43.5,-50.5 parent: 2 - - uid: 5260 + - uid: 13018 components: - type: Transform - pos: 50.5,13.5 + pos: 44.5,-50.5 parent: 2 - - uid: 5902 + - uid: 13019 components: - type: Transform - pos: 5.5,-29.5 + pos: 45.5,-50.5 parent: 2 - - uid: 7998 + - uid: 13020 components: - type: Transform - pos: 3.5,9.5 + pos: 46.5,-50.5 parent: 2 - - uid: 10841 + - uid: 13021 components: - type: Transform - pos: 39.5,42.5 + pos: 47.5,-50.5 parent: 2 -- proto: ClosetJanitorFilled - entities: - - uid: 166 + - uid: 13022 components: - type: Transform - pos: 3.5,-3.5 + pos: 48.5,-50.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 167 + - uid: 13023 components: - type: Transform - pos: 3.5,-4.5 + pos: 49.5,-50.5 parent: 2 -- proto: ClosetL3VirologyFilled - entities: - - uid: 5213 + - uid: 13024 components: - type: Transform - pos: 78.5,-1.5 + pos: 50.5,-50.5 parent: 2 - - uid: 5214 + - uid: 13025 components: - type: Transform - pos: 76.5,-3.5 + pos: 51.5,-50.5 parent: 2 - - uid: 5215 + - uid: 13026 components: - type: Transform - pos: 76.5,-4.5 + pos: 51.5,-49.5 parent: 2 -- proto: ClosetLegal - entities: - - uid: 2712 + - uid: 13027 components: - type: Transform - pos: 18.5,33.5 + pos: 51.5,-48.5 parent: 2 -- proto: ClosetLegalFilled - entities: - - uid: 6047 + - uid: 13028 components: - type: Transform - pos: 17.5,33.5 + pos: 51.5,-47.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 10835 + - uid: 13029 components: - type: Transform - pos: 65.5,10.5 + pos: 51.5,-46.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 5437 + - uid: 13030 components: - type: Transform - pos: 9.5,-19.5 + pos: 51.5,-45.5 parent: 2 - - uid: 8342 + - uid: 13031 components: - type: Transform - pos: 23.5,6.5 + pos: 51.5,-44.5 parent: 2 - - uid: 9309 + - uid: 13032 components: - type: Transform - pos: 72.5,23.5 + pos: 51.5,-43.5 parent: 2 - - uid: 10836 + - uid: 13033 components: - type: Transform - pos: 65.5,9.5 + pos: 51.5,-42.5 parent: 2 - - uid: 13125 + - uid: 13034 components: - type: Transform - pos: 53.5,-20.5 + pos: 50.5,-42.5 parent: 2 - - uid: 13126 + - uid: 13035 components: - type: Transform - pos: 52.5,-20.5 + pos: 49.5,-42.5 parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 3687 + - uid: 13036 components: - type: Transform - pos: 51.5,13.5 + pos: 48.5,-42.5 parent: 2 - - uid: 4310 + - uid: 13037 components: - type: Transform - pos: 19.5,-34.5 + pos: 48.5,-41.5 parent: 2 - - uid: 10906 + - uid: 13038 components: - type: Transform - pos: 20.5,-34.5 + pos: 48.5,-40.5 parent: 2 - - uid: 10907 + - uid: 13039 components: - type: Transform - pos: 22.5,-34.5 + pos: 48.5,-39.5 parent: 2 - - uid: 12853 + - uid: 13040 components: - type: Transform - pos: 54.5,25.5 + pos: 48.5,-38.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 5460 + - uid: 13041 components: - type: Transform - pos: 69.5,40.5 + pos: 48.5,-37.5 parent: 2 - - uid: 5461 + - uid: 13042 components: - type: Transform - pos: 69.5,37.5 + pos: 48.5,-36.5 parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 5649 + - uid: 13248 components: - type: Transform - pos: 49.5,46.5 + rot: 3.141592653589793 rad + pos: 4.5,-15.5 parent: 2 -- proto: ClothingBackpackClown - entities: - - uid: 9611 + - uid: 13284 components: - type: Transform - pos: 27.493172,5.5327587 + pos: 47.5,22.5 parent: 2 -- proto: ClothingBeltChampion - entities: - - uid: 12103 + - uid: 13324 components: - type: Transform - pos: 17.443493,40.617313 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 parent: 2 -- proto: ClothingBeltHolster - entities: - - uid: 12241 + - uid: 13325 components: - type: Transform - pos: 89.35728,1.548007 + rot: 3.141592653589793 rad + pos: 1.5,-17.5 parent: 2 -- proto: ClothingBeltStorageWaistbag - entities: - - uid: 7821 + - uid: 13326 components: - type: Transform - pos: 20.561836,5.5983276 + rot: 3.141592653589793 rad + pos: -26.5,-1.5 parent: 2 -- proto: ClothingBeltUtility - entities: - - uid: 5735 + - uid: 13327 components: - type: Transform - pos: 72.5,-9.5 + rot: 3.141592653589793 rad + pos: -26.5,0.5 parent: 2 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 602 + - uid: 13328 components: - type: Transform - pos: 25.514921,-29.44944 + rot: 3.141592653589793 rad + pos: -26.5,-22.5 parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 872 + - uid: 13329 components: - type: Transform - pos: 33.498886,-14.418215 + rot: 3.141592653589793 rad + pos: -26.5,-20.5 parent: 2 -- proto: ClothingEyesEyepatch - entities: - - uid: 6421 + - uid: 13436 components: - type: Transform - pos: 56.63094,-14.915291 + pos: 46.5,-25.5 parent: 2 - - uid: 12219 + - uid: 13437 components: - type: Transform - pos: 15.513365,7.482489 + pos: 46.5,-26.5 parent: 2 -- proto: ClothingEyesGlasses - entities: - - uid: 5436 + - uid: 13439 components: - type: Transform - pos: 45.51781,-19.598537 + pos: 46.5,-32.5 parent: 2 - - uid: 6793 + - uid: 13441 components: - type: Transform - pos: 60.359756,25.627806 + pos: 46.5,-23.5 parent: 2 - - uid: 11827 + - uid: 13447 components: - type: Transform - pos: 60.359756,25.45593 + pos: 46.5,-33.5 parent: 2 - - uid: 12167 + - uid: 13450 components: - type: Transform - pos: 74.534454,-0.21419013 + pos: 46.5,-31.5 parent: 2 -- proto: ClothingEyesGlassesGarGiga - entities: - - uid: 8643 + - uid: 13599 components: - type: Transform - pos: 74.48007,-6.509521 + pos: 45.5,28.5 parent: 2 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 132 + - uid: 13600 components: - type: Transform - pos: 12.5,-35.5 + pos: 45.5,29.5 parent: 2 - - uid: 5718 + - uid: 13601 components: - type: Transform - pos: 73.5,-12.5 + pos: 45.5,31.5 parent: 2 - - uid: 10825 + - uid: 13602 components: - type: Transform - pos: 81.516914,11.673225 + pos: 45.5,32.5 parent: 2 - - uid: 10848 + - uid: 13603 components: - type: Transform - pos: 45.471096,27.566444 + pos: 45.5,30.5 parent: 2 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 5522 + - uid: 13728 components: - type: Transform - pos: 86.49675,1.6024053 + pos: 86.5,4.5 parent: 2 -- proto: ClothingEyesGlassesThermal - entities: - - uid: 12673 + - uid: 13749 components: - type: Transform - pos: 32.51945,-30.628448 + pos: 5.5,-21.5 parent: 2 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 11439 + - uid: 13750 components: - type: Transform - pos: 17.140316,-23.554987 + pos: 6.5,-21.5 parent: 2 -- proto: ClothingEyesHudMedical - entities: - - uid: 11422 + - uid: 13751 components: - type: Transform - pos: 55.632915,-10.387672 + pos: 7.5,-21.5 parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 1563 + - uid: 13886 components: - type: Transform - pos: 30.487595,-14.515437 + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 parent: 2 - - uid: 5630 + - uid: 13887 components: - type: Transform - pos: 17.199833,-23.332096 + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 parent: 2 -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 2891 + - uid: 13888 components: - type: Transform - pos: 10.782635,21.422426 + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 parent: 2 -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 7561 + - uid: 13889 components: - type: Transform - pos: 76.51093,-13.595224 + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 parent: 2 -- proto: ClothingHeadFishCap - entities: - - uid: 2885 + - uid: 13890 components: - type: Transform - pos: 50.47578,-20.56524 + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 parent: 2 -- proto: ClothingHeadHatAnimalCat - entities: - - uid: 12652 + - uid: 13891 components: - type: Transform - pos: 69.48217,34.466385 + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 parent: 2 -- proto: ClothingHeadHatAnimalCatBrown - entities: - - uid: 8933 + - uid: 13892 components: - type: Transform - pos: 62.47656,19.694616 + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 parent: 2 -- proto: ClothingHeadHatBunny - entities: - - uid: 9109 + - uid: 13893 components: - type: Transform - pos: 58.54981,-24.623142 + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 parent: 2 -- proto: ClothingHeadHatChickenhead - entities: - - uid: 8830 + - uid: 13895 components: - type: Transform - pos: 72.52045,21.835241 + rot: 1.5707963267948966 rad + pos: -8.5,-22.5 parent: 2 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 7557 + - uid: 13896 components: - type: Transform - rot: 0.00039844278944656253 rad - pos: 74.50803,-5.26333 + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 parent: 2 -- proto: ClothingHeadHatFez - entities: - - uid: 8843 + - uid: 13897 components: - type: Transform - pos: 90.45974,-18.462885 + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 parent: 2 -- proto: ClothingHeadHatFlowerWreath - entities: - - uid: 8829 + - uid: 13898 components: - type: Transform - pos: 84.5185,-12.681175 + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 parent: 2 -- proto: ClothingHeadHatGreysoft - entities: - - uid: 10851 + - uid: 13899 components: - type: Transform - pos: 45.45547,27.660194 + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 parent: 2 -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 10798 + - uid: 13900 components: - type: Transform - pos: 80.534454,-16.347055 + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 parent: 2 -- proto: ClothingHeadHatHardhatRed - entities: - - uid: 5719 + - uid: 13901 components: - type: Transform - pos: 73.5,-12.5 + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 parent: 2 - - uid: 10827 + - uid: 13902 components: - type: Transform - pos: 81.50129,9.6576 + rot: 1.5707963267948966 rad + pos: -16.5,-22.5 parent: 2 -- proto: ClothingHeadHatHetmanHat - entities: - - uid: 9018 + - uid: 13903 components: - type: Transform - pos: 84.40167,-5.2654653 + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 parent: 2 -- proto: ClothingHeadHatPaper - entities: - - uid: 8251 + - uid: 13904 components: - type: Transform - pos: 36.290367,33.722393 + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 parent: 2 -- proto: ClothingHeadHatPirate - entities: - - uid: 7554 + - uid: 13905 components: - type: Transform - rot: 0.00038670882349833846 rad - pos: 89.44564,-12.263381 + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 parent: 2 -- proto: ClothingHeadHatRedwizard - entities: - - uid: 6798 + - uid: 13906 components: - type: Transform - pos: 86.44191,12.5807 + rot: 1.5707963267948966 rad + pos: -20.5,-22.5 parent: 2 -- proto: ClothingHeadHatSkub - entities: - - uid: 13076 + - uid: 14088 components: - type: Transform - pos: 7.4825606,-11.600726 + pos: 76.5,23.5 parent: 2 -- proto: ClothingHeadHatSquid - entities: - - uid: 12671 + - uid: 14189 components: - type: Transform - pos: 65.725685,11.307603 + pos: 77.5,23.5 parent: 2 -- proto: ClothingHeadHatTophat - entities: - - uid: 2920 + - uid: 14190 components: - type: Transform - pos: 65.46723,-14.576903 + pos: 78.5,23.5 parent: 2 -- proto: ClothingHeadHatTrucker - entities: - - uid: 3448 + - uid: 14191 components: - type: Transform - pos: 17.59203,5.387045 + pos: 79.5,23.5 parent: 2 -- proto: ClothingHeadHatUshanka - entities: - - uid: 12674 + - uid: 14192 components: - type: Transform - pos: 74.46565,-6.1472054 + pos: 79.5,24.5 parent: 2 - - uid: 12676 + - uid: 14193 components: - type: Transform - pos: 74.46565,-6.1472054 + pos: 79.5,25.5 parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 5377 + - uid: 14194 components: - type: Transform - pos: 52.381424,11.673619 + pos: 79.5,26.5 parent: 2 -- proto: ClothingHeadHatWitch1 - entities: - - uid: 6827 + - uid: 14195 components: - type: Transform - pos: 83.46587,-12.720913 + pos: 79.5,27.5 parent: 2 -- proto: ClothingHeadHatWizard - entities: - - uid: 11158 + - uid: 14216 components: - type: Transform - pos: 86.44739,10.61898 + pos: 81.5,27.5 parent: 2 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 8425 + - uid: 14217 components: - type: Transform - pos: 38.53056,28.406826 + pos: 77.5,30.5 parent: 2 - - uid: 8426 + - uid: 14222 components: - type: Transform - pos: 38.53056,28.406826 + pos: 80.5,24.5 parent: 2 - - uid: 8427 + - uid: 14230 components: - type: Transform - pos: 38.53056,28.406826 + pos: 81.5,24.5 parent: 2 -- proto: ClothingHeadNurseHat - entities: - - uid: 12672 + - uid: 14253 components: - type: Transform - pos: 59.51385,-3.3579187 + pos: 76.5,30.5 parent: 2 -- proto: ClothingHeadsetMining - entities: - - uid: 12669 + - uid: 14254 components: - type: Transform - pos: 9.6021385,15.473721 + pos: 75.5,30.5 parent: 2 - - uid: 12670 + - uid: 14255 components: - type: Transform - pos: 9.6021385,15.473721 + pos: 74.5,30.5 parent: 2 -- proto: ClothingMaskBear - entities: - - uid: 8828 + - uid: 14256 components: - type: Transform - pos: 102.40892,-16.268303 + pos: 73.5,30.5 parent: 2 -- proto: ClothingMaskBreathMedical - entities: - - uid: 12657 + - uid: 14257 components: - type: Transform - pos: 67.39722,4.505884 + pos: 76.5,20.5 parent: 2 -- proto: ClothingMaskClown - entities: - - uid: 8292 + - uid: 14258 components: - type: Transform - pos: 27.23263,5.6674385 + pos: 76.5,21.5 parent: 2 -- proto: ClothingMaskGas - entities: - - uid: 589 + - uid: 14259 components: - type: Transform - pos: 33.50367,-14.512851 + pos: 76.5,22.5 parent: 2 - - uid: 841 + - uid: 14260 components: - type: Transform - pos: 27.626308,-29.560211 + pos: 81.5,25.5 parent: 2 - - uid: 5343 + - uid: 14329 components: - type: Transform - pos: 60.54693,25.63966 + pos: 73.5,34.5 parent: 2 - - uid: 10799 + - uid: 14335 components: - type: Transform - pos: 79.33667,-16.51893 + pos: 73.5,26.5 parent: 2 - - uid: 10800 + - uid: 14407 components: - type: Transform - pos: 79.664795,-16.36268 + rot: 3.141592653589793 rad + pos: 80.5,33.5 parent: 2 - - uid: 10824 + - uid: 14599 components: - type: Transform - pos: 81.53254,11.610725 + pos: 64.5,44.5 parent: 2 -- proto: ClothingMaskSexyMime - entities: - - uid: 8345 + - uid: 14646 components: - type: Transform - pos: 25.245346,6.3236885 + rot: 1.5707963267948966 rad + pos: 57.5,50.5 parent: 2 -- proto: ClothingMaskSterile - entities: - - uid: 11969 + - uid: 14647 components: - type: Transform - pos: 59.604156,3.672451 + rot: 1.5707963267948966 rad + pos: 55.5,50.5 parent: 2 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 12455 + - uid: 14724 components: - type: Transform - pos: 91.43456,-0.49069238 + rot: -1.5707963267948966 rad + pos: 3.5,38.5 parent: 2 -- proto: ClothingNeckCloakMoth - entities: - - uid: 9368 + - uid: 14896 components: - type: Transform - pos: 17.479858,8.394902 + pos: 60.5,43.5 parent: 2 -- proto: ClothingNeckCloakTrans - entities: - - uid: 688 + - uid: 14897 components: - type: Transform - pos: 7.491953,-13.240216 + pos: 51.5,43.5 parent: 2 - - uid: 7009 + - uid: 14898 components: - type: Transform - pos: 19.545155,5.62142 + pos: 52.5,43.5 parent: 2 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 12226 + - uid: 14899 components: - type: Transform - pos: 20.513533,26.418814 + pos: 60.5,42.5 parent: 2 -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 9606 + - uid: 14900 components: - type: Transform - pos: 25.521528,7.3736153 + pos: 61.5,42.5 parent: 2 -- proto: ClothingNeckStethoscope - entities: - - uid: 5193 + - uid: 14901 components: - type: Transform - pos: 63.38291,-10.442304 + pos: 62.5,42.5 parent: 2 - - uid: 11420 + - uid: 14902 components: - type: Transform - pos: 56.414165,-10.356422 + pos: 63.5,42.5 parent: 2 - - uid: 11967 + - uid: 14903 components: - type: Transform - pos: 64.40056,4.5256968 + pos: 64.5,42.5 parent: 2 -- proto: ClothingNeckTieRed - entities: - - uid: 8289 + - uid: 14904 components: - type: Transform - pos: 19.90453,5.512045 + pos: 61.5,36.5 parent: 2 - - uid: 12228 + - uid: 14916 components: - type: Transform - pos: 69.577194,21.53721 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 -- proto: ClothingOuterApron - entities: - - uid: 8825 + - uid: 14917 components: - type: Transform - pos: 17.68529,8.556451 + rot: 1.5707963267948966 rad + pos: 16.5,18.5 parent: 2 -- proto: ClothingOuterArmorBasic - entities: - - uid: 8413 + - uid: 14918 components: - type: Transform - pos: 38.421185,28.625576 + rot: 1.5707963267948966 rad + pos: 15.5,18.5 parent: 2 - - uid: 8414 + - uid: 14919 components: - type: Transform - pos: 38.421185,28.625576 + rot: 1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 - - uid: 8415 + - uid: 15011 components: - type: Transform - pos: 38.421185,28.625576 + rot: 3.141592653589793 rad + pos: 40.5,-12.5 parent: 2 -- proto: ClothingOuterArmorBasicSlim - entities: - - uid: 8416 + - uid: 15012 components: - type: Transform - pos: 38.62431,28.406826 + rot: 3.141592653589793 rad + pos: 41.5,-12.5 parent: 2 - - uid: 8417 + - uid: 15013 components: - type: Transform - pos: 38.62431,28.406826 + rot: 3.141592653589793 rad + pos: 42.5,-12.5 parent: 2 - - uid: 8418 + - uid: 15014 components: - type: Transform - pos: 38.62431,28.406826 + rot: 3.141592653589793 rad + pos: 44.5,-12.5 parent: 2 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 8419 + - uid: 15015 components: - type: Transform - pos: 38.37431,28.438076 + rot: 3.141592653589793 rad + pos: 45.5,-12.5 parent: 2 - - uid: 8420 + - uid: 15016 components: - type: Transform - pos: 38.37431,28.438076 + rot: 3.141592653589793 rad + pos: 46.5,-12.5 parent: 2 - - uid: 8421 + - uid: 15017 components: - type: Transform - pos: 38.37431,28.438076 + rot: 3.141592653589793 rad + pos: 43.5,-12.5 parent: 2 -- proto: ClothingOuterArmorRiot - entities: - - uid: 8422 + - uid: 15018 components: - type: Transform - pos: 38.71806,28.609951 + rot: 3.141592653589793 rad + pos: 48.5,-13.5 parent: 2 - - uid: 8423 + - uid: 15019 components: - type: Transform - pos: 38.71806,28.609951 + rot: 3.141592653589793 rad + pos: 49.5,-13.5 parent: 2 - - uid: 8424 + - uid: 15020 components: - type: Transform - pos: 38.71806,28.609951 + rot: 3.141592653589793 rad + pos: 50.5,-13.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingOuterCoatJensen - entities: - - uid: 7560 + - uid: 15027 components: - type: Transform - pos: 76.51827,-13.498972 + rot: 3.141592653589793 rad + pos: 54.5,-19.5 parent: 2 -- proto: ClothingOuterCoatLab - entities: - - uid: 5257 + - uid: 15028 components: - type: Transform - pos: 60.494953,-9.426679 + rot: 3.141592653589793 rad + pos: 57.5,-19.5 parent: 2 -- proto: ClothingOuterCoatPirate - entities: - - uid: 7553 + - uid: 15029 components: - type: Transform - pos: 89.47711,-12.560792 + rot: 3.141592653589793 rad + pos: 56.5,-19.5 parent: 2 -- proto: ClothingOuterCoatRobo - entities: - - uid: 1847 + - uid: 15043 components: - type: Transform - pos: 52.52299,8.566419 + rot: 3.141592653589793 rad + pos: 30.5,-21.5 parent: 2 -- proto: ClothingOuterCoatTrench - entities: - - uid: 7757 + - uid: 15044 components: - type: Transform - pos: 69.55329,21.631119 + rot: 3.141592653589793 rad + pos: 29.5,-21.5 parent: 2 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 9478 + - uid: 15046 components: - type: Transform - pos: 38.48357,28.698536 + rot: -1.5707963267948966 rad + pos: 13.5,-46.5 parent: 2 - - uid: 9883 + - uid: 15047 components: - type: Transform - pos: 38.48357,28.698536 + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 parent: 2 - - uid: 9884 + - uid: 15048 components: - type: Transform - pos: 38.48357,28.698536 + rot: -1.5707963267948966 rad + pos: 13.5,-48.5 parent: 2 -- proto: ClothingOuterHospitalGown - entities: - - uid: 12499 + - uid: 15049 components: - type: Transform - pos: 60.452034,-9.3230715 + rot: -1.5707963267948966 rad + pos: 13.5,-49.5 parent: 2 -- proto: ClothingOuterPonchoClassic - entities: - - uid: 8930 + - uid: 15050 components: - type: Transform - pos: 70.48266,27.712364 + rot: -1.5707963267948966 rad + pos: 13.5,-51.5 parent: 2 -- proto: ClothingOuterSkub - entities: - - uid: 13075 + - uid: 15051 components: - type: Transform - pos: 7.4669356,-11.631976 + rot: -1.5707963267948966 rad + pos: 13.5,-52.5 parent: 2 -- proto: ClothingOuterSuitChicken - entities: - - uid: 8932 + - uid: 15052 components: - type: Transform - pos: 72.52045,21.491491 + rot: -1.5707963267948966 rad + pos: 13.5,-53.5 parent: 2 -- proto: ClothingOuterSuitFire - entities: - - uid: 5721 + - uid: 15053 components: - type: Transform - pos: 73.5,-12.5 + rot: -1.5707963267948966 rad + pos: 13.5,-54.5 parent: 2 - - uid: 10849 + - uid: 15054 components: - type: Transform - pos: 45.51797,27.660194 + rot: -1.5707963267948966 rad + pos: 13.5,-55.5 parent: 2 -- proto: ClothingOuterVestHazard - entities: - - uid: 880 + - uid: 15055 components: - type: Transform - pos: 27.494364,-29.379656 + rot: -1.5707963267948966 rad + pos: 13.5,-57.5 parent: 2 - - uid: 2150 + - uid: 15056 components: - type: Transform - pos: 10.541297,21.522875 + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 parent: 2 -- proto: ClothingOuterWizard - entities: - - uid: 11159 + - uid: 15057 components: - type: Transform - pos: 86.47864,10.71273 + rot: -1.5707963267948966 rad + pos: 13.5,-56.5 parent: 2 -- proto: ClothingOuterWizardRed - entities: - - uid: 6797 + - uid: 15058 components: - type: Transform - pos: 86.50441,12.690075 + rot: -1.5707963267948966 rad + pos: 15.5,-57.5 parent: 2 -- proto: ClothingShoesBootsJack - entities: - - uid: 3615 + - uid: 15059 components: - type: Transform - pos: 18.604328,5.443143 + rot: -1.5707963267948966 rad + pos: 16.5,-57.5 parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 10306 + - uid: 15060 components: - type: Transform - pos: 8.40589,-8.309399 + rot: -1.5707963267948966 rad + pos: 17.5,-57.5 parent: 2 - - uid: 10307 + - uid: 15061 components: - type: Transform - pos: 8.56214,-8.481274 + rot: -1.5707963267948966 rad + pos: 19.5,-57.5 parent: 2 -- proto: ClothingShoesFlippers - entities: - - uid: 6828 + - uid: 15062 components: - type: Transform - pos: 1.4884543,-32.355457 + rot: -1.5707963267948966 rad + pos: 20.5,-57.5 parent: 2 -- proto: ClothingShoesLeather - entities: - - uid: 7555 + - uid: 15063 components: - type: Transform - rot: 0.0006267222343012691 rad - pos: 89.43173,-12.737588 + rot: -1.5707963267948966 rad + pos: 21.5,-57.5 parent: 2 - - uid: 7558 + - uid: 15064 components: - type: Transform - pos: 74.43015,-5.8248997 + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 5405 + - uid: 15065 components: - type: Transform - pos: 62.48992,19.519245 + rot: -1.5707963267948966 rad + pos: 23.5,-57.5 parent: 2 -- proto: ClothingShoesSlippers - entities: - - uid: 5470 + - uid: 15066 components: - type: Transform - pos: 70.5,40.5 + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 parent: 2 - - uid: 5471 + - uid: 15067 components: - type: Transform - pos: 70.5,37.5 + rot: -1.5707963267948966 rad + pos: 25.5,-57.5 parent: 2 -- proto: ClothingShoesTourist - entities: - - uid: 9349 + - uid: 15068 components: - type: Transform - pos: -10.508648,-14.809846 + rot: -1.5707963267948966 rad + pos: 26.5,-57.5 parent: 2 -- proto: ClothingShoesWizard - entities: - - uid: 6796 + - uid: 15069 components: - type: Transform - pos: 86.50441,12.3932 + rot: -1.5707963267948966 rad + pos: 18.5,-57.5 parent: 2 - - uid: 11160 + - uid: 15070 components: - type: Transform - pos: 86.46301,10.540855 + rot: -1.5707963267948966 rad + pos: 27.5,-57.5 parent: 2 -- proto: ClothingUnderSocksBee - entities: - - uid: 12287 + - uid: 15071 components: - type: Transform - pos: 8.506772,13.431249 + rot: -1.5707963267948966 rad + pos: 29.5,-57.5 parent: 2 -- proto: ClothingUnderSocksCoder - entities: - - uid: 6795 + - uid: 15072 components: - type: Transform - pos: 83.49162,-13.680252 + rot: -1.5707963267948966 rad + pos: 28.5,-57.5 parent: 2 - - uid: 8931 + - uid: 15073 components: - type: Transform - pos: 13.502279,38.53218 + rot: -1.5707963267948966 rad + pos: 29.5,-56.5 parent: 2 -- proto: ClothingUniformColorRainbow - entities: - - uid: 6826 + - uid: 15074 components: - type: Transform - pos: 83.49712,-13.314663 + rot: -1.5707963267948966 rad + pos: 29.5,-54.5 parent: 2 - - uid: 12705 + - uid: 15075 components: - type: Transform - pos: 104.58011,-15.495739 + rot: -1.5707963267948966 rad + pos: 29.5,-53.5 parent: 2 - - uid: 12706 + - uid: 15076 components: - type: Transform - pos: 104.11136,-15.495739 + rot: -1.5707963267948966 rad + pos: 29.5,-52.5 parent: 2 - - uid: 12707 + - uid: 15077 components: - type: Transform - pos: 103.67386,-15.495739 + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 parent: 2 -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 12653 + - uid: 15078 components: - type: Transform - pos: 76.476616,-13.28976 + rot: -1.5707963267948966 rad + pos: 29.5,-50.5 parent: 2 -- proto: ClothingUniformJumpsuitCossack - entities: - - uid: 8826 + - uid: 15079 components: - type: Transform - pos: 84.46417,-5.6717153 + rot: -1.5707963267948966 rad + pos: 29.5,-49.5 parent: 2 -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 7556 + - uid: 15080 components: - type: Transform - pos: 74.49265,-5.4811497 + rot: -1.5707963267948966 rad + pos: 29.5,-55.5 parent: 2 -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 881 + - uid: 15081 components: - type: Transform - pos: 27.529085,-29.483822 + rot: -1.5707963267948966 rad + pos: 29.5,-48.5 parent: 2 -- proto: ClothingUniformJumpsuitFlannel + - uid: 15082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-47.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 2 +- proto: Cautery entities: - - uid: 8290 + - uid: 7791 components: - type: Transform - pos: 19.93578,5.65267 + pos: 67.45054,-3.640809 parent: 2 -- proto: ClothingUniformJumpsuitMonasticRobeLight +- proto: Chair entities: - - uid: 12654 + - uid: 22 components: - type: Transform - pos: 30.690329,7.316777 + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 2 - - uid: 12655 + - uid: 38 components: - type: Transform - pos: 30.690329,7.316777 + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 parent: 2 - - uid: 12656 + - uid: 56 components: - type: Transform - pos: 30.690329,7.316777 + pos: -2.5,-8.5 parent: 2 -- proto: ClothingUniformJumpsuitPsychologist - entities: - - uid: 8306 + - uid: 102 components: - type: Transform - pos: 20.21703,5.52767 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 parent: 2 -- proto: ClothingUniformJumpsuitRecruitSyndie - entities: - - uid: 12496 + - uid: 334 components: - type: Transform - pos: 11.480359,-11.451806 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 2 -- proto: ClothingUniformJumpsuitRepairmanSyndie - entities: - - uid: 12675 + - uid: 790 components: - type: Transform - pos: 11.491153,-11.444116 + pos: 19.5,-25.5 parent: 2 -- proto: ClothingUniformOveralls - entities: - - uid: 8241 + - uid: 791 components: - type: Transform - pos: 17.468086,5.4733276 + pos: 18.5,-25.5 parent: 2 -- proto: ClownRecorder - entities: - - uid: 5149 + - uid: 792 components: - type: Transform - pos: 27.810755,5.5424385 + pos: 17.5,-25.5 parent: 2 -- proto: ComfyChair - entities: - - uid: 303 + - uid: 793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 + pos: 16.5,-25.5 parent: 2 - - uid: 2408 + - uid: 794 components: - type: Transform - pos: 44.5,24.5 + rot: 3.141592653589793 rad + pos: 16.5,-27.5 parent: 2 - - uid: 2527 + - uid: 795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,7.5 + rot: 3.141592653589793 rad + pos: 17.5,-27.5 parent: 2 - - uid: 2531 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-27.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-27.5 + parent: 2 + - uid: 939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,3.5 + pos: 13.5,-34.5 parent: 2 - - uid: 2720 + - uid: 1147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,31.5 + pos: 32.5,-4.5 parent: 2 - - uid: 2772 + - uid: 1554 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 1634 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,40.5 + pos: 34.5,-4.5 parent: 2 - - uid: 2773 + - uid: 1655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,39.5 + pos: 34.5,-5.5 parent: 2 - - uid: 2774 + - uid: 1833 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,40.5 + pos: 3.5,6.5 parent: 2 - - uid: 2775 + - uid: 1843 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,39.5 + pos: 3.5,7.5 parent: 2 - - uid: 5033 + - uid: 1851 components: - type: Transform - pos: 35.5,3.5 + rot: 1.5707963267948966 rad + pos: 3.5,8.5 parent: 2 - - uid: 5423 + - uid: 2409 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,42.5 + pos: 44.5,22.5 parent: 2 - - uid: 5424 + - uid: 3234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,40.5 + pos: 40.5,36.5 parent: 2 - - uid: 5425 + - uid: 5089 components: - type: Transform - pos: 33.5,43.5 + pos: 64.5,-1.5 parent: 2 - - uid: 10273 + - uid: 5090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 65.5,-1.5 parent: 2 - - uid: 10636 + - uid: 5091 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - uid: 5151 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,7.5 + pos: 29.5,2.5 parent: 2 - - uid: 11425 + - uid: 5173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,4.5 + pos: 55.5,15.5 parent: 2 - - uid: 11426 + - uid: 5256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,5.5 + pos: 55.5,-9.5 parent: 2 - - uid: 12677 + - uid: 5388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-13.5 + rot: 3.141592653589793 rad + pos: 47.5,11.5 parent: 2 - - uid: 12678 + - uid: 5406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 107.5,-13.5 + pos: 67.5,-1.5 parent: 2 -- proto: CommandmentCircuitBoard - entities: - - uid: 13760 + - uid: 5524 components: - type: Transform - pos: 52.427402,30.685076 + rot: 1.5707963267948966 rad + pos: 89.5,0.5 parent: 2 -- proto: CommsComputerCircuitboard - entities: - - uid: 12660 + - uid: 5525 components: - type: Transform - pos: 41.5,-15.5 + rot: 1.5707963267948966 rad + pos: 89.5,1.5 parent: 2 -- proto: ComputerAlert - entities: - - uid: 1163 + - uid: 5848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-33.5 + pos: 45.5,18.5 parent: 2 - - uid: 5079 + - uid: 5849 components: - type: Transform - pos: 28.5,48.5 + rot: 1.5707963267948966 rad + pos: 45.5,17.5 parent: 2 - - uid: 13443 + - uid: 7535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 + pos: -7.5,0.5 parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 152 + - uid: 7536 components: - type: Transform - pos: 64.5,25.5 + pos: -8.5,0.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8666: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: computerBodyScanner - entities: - - uid: 31 + - uid: 7538 components: - type: Transform - pos: 65.5,-3.5 + pos: -6.5,0.5 parent: 2 - - uid: 1911 + - uid: 7546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-11.5 + pos: 31.5,2.5 parent: 2 - - uid: 11401 + - uid: 7729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-11.5 + pos: -3.5,-8.5 parent: 2 - - uid: 12110 + - uid: 7976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,8.5 + pos: -3.5,-3.5 parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 7809 + - uid: 7986 components: - type: Transform - pos: 15.5,25.5 + pos: -0.5,0.5 parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 2136 + - uid: 7987 components: - type: Transform - pos: 20.5,23.5 + pos: 0.5,0.5 parent: 2 - - uid: 7741 + - uid: 7988 components: - type: Transform - pos: 11.5,28.5 + rot: 1.5707963267948966 rad + pos: 3.5,2.5 parent: 2 -- proto: ComputerCargoShuttle - entities: - - uid: 6864 + - uid: 7989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,25.5 + rot: 1.5707963267948966 rad + pos: 3.5,3.5 parent: 2 -- proto: ComputerComms - entities: - - uid: 405 + - uid: 7990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,39.5 + rot: 1.5707963267948966 rad + pos: 3.5,4.5 parent: 2 - - uid: 5059 + - uid: 7991 components: - type: Transform - pos: 27.5,48.5 + rot: 1.5707963267948966 rad + pos: 3.5,10.5 parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 7925 + - uid: 7992 components: - type: Transform - pos: 31.5,48.5 + rot: 1.5707963267948966 rad + pos: 3.5,11.5 parent: 2 - - uid: 8430 + - uid: 7993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,26.5 + rot: 1.5707963267948966 rad + pos: 3.5,12.5 parent: 2 - - uid: 9617 + - uid: 7994 components: - type: Transform - pos: 49.5,4.5 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 parent: 2 - - uid: 9619 + - uid: 7995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,2.5 + rot: -1.5707963267948966 rad + pos: 6.5,4.5 parent: 2 - - uid: 10282 + - uid: 7996 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-3.5 + pos: 6.5,5.5 parent: 2 - - uid: 11922 + - uid: 9361 components: - type: Transform - pos: 72.5,8.5 + pos: 25.5,7.5 parent: 2 - - uid: 12580 + - uid: 9642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 + pos: 78.5,5.5 parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 7981 + - uid: 10637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-5.5 + rot: -1.5707963267948966 rad + pos: 31.5,7.5 parent: 2 - - uid: 12083 + - uid: 10829 components: - type: Transform - pos: 29.5,26.5 + pos: 71.5,11.5 parent: 2 - - uid: 12090 + - uid: 10830 components: - type: Transform - pos: 45.5,25.5 + pos: 69.5,11.5 parent: 2 - - uid: 12091 + - uid: 10896 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,27.5 + pos: 64.5,14.5 parent: 2 -- proto: ComputerId - entities: - - uid: 401 + - uid: 10897 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,39.5 + pos: 63.5,13.5 parent: 2 - - uid: 4988 + - uid: 12144 components: - type: Transform - pos: 26.5,48.5 + rot: 3.141592653589793 rad + pos: 40.5,34.5 parent: 2 - - uid: 10275 + - uid: 12177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: -1.5707963267948966 rad + pos: 38.5,9.5 parent: 2 -- proto: ComputerMedicalRecords - entities: - - uid: 7725 + - uid: 12178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 + rot: -1.5707963267948966 rad + pos: 37.5,9.5 parent: 2 - - uid: 9616 + - uid: 12179 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,2.5 + pos: 37.5,8.5 parent: 2 - - uid: 11035 + - uid: 12180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 + rot: -1.5707963267948966 rad + pos: 38.5,8.5 parent: 2 - - uid: 12170 + - uid: 12181 components: - type: Transform - pos: 34.5,46.5 + rot: -1.5707963267948966 rad + pos: 38.5,5.5 parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 4042 + - uid: 12182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 + rot: -1.5707963267948966 rad + pos: 37.5,5.5 parent: 2 - - uid: 5126 + - uid: 12183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,45.5 + rot: -1.5707963267948966 rad + pos: 37.5,6.5 parent: 2 - - uid: 6898 + - uid: 12184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + rot: -1.5707963267948966 rad + pos: 38.5,6.5 parent: 2 - - uid: 13433 + - uid: 12427 components: - type: Transform - pos: 22.5,-23.5 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 parent: 2 -- proto: ComputerRadar - entities: - - uid: 5078 + - uid: 12428 components: - type: Transform - pos: 20.5,46.5 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 parent: 2 - - uid: 12821 + - uid: 13261 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,15.5 + pos: -7.5,-13.5 parent: 2 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 5304 + - uid: 13285 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,17.5 + pos: 54.5,47.5 parent: 2 - - uid: 5390 + - uid: 13286 components: - type: Transform - pos: 49.5,11.5 + rot: 3.141592653589793 rad + pos: 55.5,47.5 parent: 2 - - uid: 6474 + - uid: 13287 components: - type: Transform - pos: 50.5,25.5 + rot: 3.141592653589793 rad + pos: 57.5,47.5 parent: 2 - - uid: 10666 + - uid: 13288 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,8.5 + pos: 58.5,47.5 parent: 2 -- proto: ComputerRoboticsControl - entities: - - uid: 5652 + - uid: 14076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 12820 + - uid: 14077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,21.5 + pos: -18.5,0.5 parent: 2 -- proto: ComputerShuttleCargo - entities: - - uid: 7727 + - uid: 14587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: 30.5,17.5 parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 4305 + - uid: 14633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-36.5 + pos: 30.5,21.5 parent: 2 - - uid: 5639 + - uid: 14679 components: - type: Transform - pos: 70.5,46.5 + rot: 3.141592653589793 rad + pos: 78.5,3.5 parent: 2 - - uid: 11749 +- proto: ChairMeat + entities: + - uid: 13071 components: - type: Transform - pos: 21.5,-23.5 + pos: 6.5,-12.5 parent: 2 -- proto: ComputerStationRecords +- proto: ChairOfficeDark entities: - - uid: 2145 + - uid: 190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,17.5 + pos: -2.5,-11.5 parent: 2 - - uid: 8315 + - uid: 311 components: - type: Transform - pos: 23.5,48.5 + pos: 11.5,5.5 parent: 2 - - uid: 10274 + - uid: 313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 + pos: 10.5,5.5 parent: 2 - - uid: 12581 + - uid: 314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 + rot: 3.141592653589793 rad + pos: 10.5,3.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 8346 + - uid: 579 components: - type: Transform - pos: 24.5,48.5 + rot: 3.141592653589793 rad + pos: 16.5,-3.5 parent: 2 - - uid: 8431 + - uid: 683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,28.5 - parent: 2 - - uid: 12082 - components: - - type: Transform - pos: 30.5,26.5 + pos: 21.5,-16.5 parent: 2 - - uid: 12089 + - uid: 684 components: - type: Transform - pos: 44.5,25.5 + rot: -1.5707963267948966 rad + pos: 21.5,-18.5 parent: 2 -- proto: ComputerTelevision - entities: - - uid: 11475 + - uid: 1010 components: - type: Transform - pos: 41.5,20.5 + rot: 1.5707963267948966 rad + pos: 22.517172,-24.347618 parent: 2 -- proto: ContainmentFieldGenerator - entities: - - uid: 752 + - uid: 1852 components: - type: Transform - pos: 9.5,-26.5 + rot: 1.5707963267948966 rad + pos: 20.5,22.5 parent: 2 - - uid: 1113 + - uid: 2318 components: - type: Transform - pos: 9.5,-27.5 + pos: 37.5,18.5 parent: 2 - - uid: 1593 + - uid: 2480 components: - type: Transform - pos: 9.5,-28.5 + rot: 1.5707963267948966 rad + pos: 42.5,19.5 parent: 2 - - uid: 3979 + - uid: 2489 components: - type: Transform - pos: 25.5,-47.5 + rot: 1.5707963267948966 rad + pos: 35.5,27.5 parent: 2 - - uid: 3984 + - uid: 2724 components: - type: Transform - pos: 17.5,-55.5 + rot: -1.5707963267948966 rad + pos: 21.5,33.5 parent: 2 - - uid: 10929 + - uid: 2725 components: - type: Transform - pos: 17.5,-47.5 + rot: -1.5707963267948966 rad + pos: 21.5,32.5 parent: 2 - - uid: 10931 + - uid: 2726 components: - type: Transform - pos: 25.5,-55.5 + rot: -1.5707963267948966 rad + pos: 21.5,30.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 1319 + - uid: 2727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 + rot: -1.5707963267948966 rad + pos: 21.5,29.5 parent: 2 - - uid: 2028 + - uid: 4999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 + rot: 3.141592653589793 rad + pos: 34.5,45.5 parent: 2 - - uid: 2030 + - uid: 5000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,15.5 + rot: 3.141592653589793 rad + pos: 31.5,47.5 parent: 2 - - uid: 2037 + - uid: 5001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,27.5 + rot: 3.141592653589793 rad + pos: 23.5,47.5 parent: 2 - - uid: 2038 + - uid: 5002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,27.5 + rot: 3.141592653589793 rad + pos: 20.5,45.5 parent: 2 - - uid: 2039 + - uid: 5159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 + rot: 3.141592653589793 rad + pos: 55.5,-11.5 parent: 2 - - uid: 2040 + - uid: 5321 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 - parent: 2 - - uid: 2042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,27.5 + pos: 49.5,18.5 parent: 2 - - uid: 2051 + - uid: 5389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,23.5 + rot: 3.141592653589793 rad + pos: 50.5,10.5 parent: 2 - - uid: 2064 + - uid: 5742 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,27.5 + pos: -3.5,-10.5 parent: 2 - - uid: 2066 + - uid: 7468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 parent: 2 - - uid: 2067 + - uid: 7792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,23.5 + pos: 70.5,14.5 parent: 2 - - uid: 5285 + - uid: 8207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 + rot: 3.141592653589793 rad + pos: 18.517927,23.649218 parent: 2 - - uid: 5842 + - uid: 8608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-28.5 + rot: 3.141592653589793 rad + pos: 30.500034,25.750826 parent: 2 - - uid: 5843 + - uid: 8658 components: - type: Transform - pos: 1.5,-28.5 + pos: 50.5,2.5 parent: 2 - - uid: 5844 + - uid: 9036 components: - type: Transform - pos: 1.5,-29.5 + rot: 3.141592653589793 rad + pos: 7.5,18.5 parent: 2 - - uid: 5845 + - uid: 10912 components: - type: Transform - pos: 1.5,-30.5 + pos: 74.5,-1.5 parent: 2 - - uid: 5846 + - uid: 12728 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-31.5 + pos: 7.5,25.5 parent: 2 - - uid: 5847 + - uid: 13446 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-31.5 + pos: 30.454672,-24.238243 parent: 2 - - uid: 5850 + - uid: 14154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-31.5 + rot: -1.5707963267948966 rad + pos: 72.5,23.5 parent: 2 - - uid: 5851 + - uid: 14559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-30.5 + pos: 90.5,29.5 parent: 2 - - uid: 5852 + - uid: 14560 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-28.5 + pos: 89.5,31.5 parent: 2 - - uid: 5853 +- proto: ChairOfficeLight + entities: + - uid: 940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-27.5 + rot: 1.5707963267948966 rad + pos: 11.5,-34.5 parent: 2 - - uid: 5854 + - uid: 5068 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-26.5 + pos: 50.5,-4.5 parent: 2 - - uid: 6775 + - uid: 5069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,15.5 + pos: 53.5,-4.5 parent: 2 - - uid: 6820 + - uid: 5227 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,15.5 + pos: 81.5,-6.5 parent: 2 - - uid: 6823 + - uid: 7075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,15.5 + pos: 44.5,3.5 parent: 2 - - uid: 6825 + - uid: 7859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 + pos: 71.5,-19.495005 parent: 2 - - uid: 6844 + - uid: 8664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 + rot: 3.141592653589793 rad + pos: 64.5,24.5 parent: 2 - - uid: 6846 + - uid: 10670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,15.5 + pos: 62.5,9.5 parent: 2 - - uid: 7585 + - uid: 10901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 + pos: 79.5,-6.5 parent: 2 - - uid: 7586 + - uid: 11293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,15.5 + pos: 61.5,-11.5 parent: 2 - - uid: 7667 +- proto: ChairPilotSeat + entities: + - uid: 4971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,15.5 + rot: 3.141592653589793 rad + pos: 27.5,47.5 parent: 2 - - uid: 7671 +- proto: ChairWood + entities: + - uid: 1152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,15.5 + pos: 29.5,-2.5 parent: 2 - - uid: 7672 + - uid: 1153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 + pos: 30.5,-2.5 parent: 2 - - uid: 7841 + - uid: 1155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 parent: 2 - - uid: 7849 + - uid: 1166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,15.5 + rot: -1.5707963267948966 rad + pos: 22.5,-12.5 parent: 2 - - uid: 7875 + - uid: 1167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,-11.5 parent: 2 - - uid: 7876 + - uid: 1168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,15.5 + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 parent: 2 - - uid: 7878 + - uid: 1662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,15.5 + rot: 3.141592653589793 rad + pos: 29.5,-4.5 parent: 2 - - uid: 7879 + - uid: 1664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,15.5 + rot: 3.141592653589793 rad + pos: 30.5,-4.5 parent: 2 - - uid: 7880 + - uid: 2689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,33.5 parent: 2 - - uid: 7888 + - uid: 2690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 + rot: -1.5707963267948966 rad + pos: 24.5,33.5 parent: 2 - - uid: 7891 + - uid: 2691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,15.5 + rot: -1.5707963267948966 rad + pos: 24.5,32.5 parent: 2 - - uid: 7949 + - uid: 2692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,32.5 parent: 2 -- proto: CorporateCircuitBoard - entities: - - uid: 11861 + - uid: 2693 components: - type: Transform - pos: 52.427402,31.731949 + rot: -1.5707963267948966 rad + pos: 23.5,30.5 parent: 2 -- proto: CowToolboxFilled - entities: - - uid: 5707 + - uid: 2694 components: - type: Transform - pos: 84.5,-5.5 + rot: -1.5707963267948966 rad + pos: 23.5,29.5 parent: 2 -- proto: CrateArtifactContainer - entities: - - uid: 10439 + - uid: 2695 components: - type: Transform - pos: 62.5,22.5 + rot: -1.5707963267948966 rad + pos: 24.5,29.5 parent: 2 -- proto: CrateCoffin - entities: - - uid: 2538 + - uid: 2696 components: - type: Transform - pos: 38.5,3.5 + rot: -1.5707963267948966 rad + pos: 24.5,30.5 parent: 2 -- proto: CrateEmptySpawner - entities: - - uid: 8167 + - uid: 2728 components: - type: Transform - pos: 10.5,26.5 + pos: 19.5,33.56914 parent: 2 - - uid: 8172 + - uid: 3418 components: - type: Transform - pos: 6.5,31.5 + rot: 1.5707963267948966 rad + pos: 69.5,27.5 parent: 2 - - uid: 8177 + - uid: 5502 components: - type: Transform - pos: 12.5,24.5 + rot: 1.5707963267948966 rad + pos: 69.50498,33.5 parent: 2 -- proto: CrateEngineeringAMEJar - entities: - - uid: 5263 + - uid: 5503 components: - type: Transform - pos: 28.5,-38.5 + rot: -1.5707963267948966 rad + pos: 71.49502,33.5 parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 5235 + - uid: 5504 components: - type: Transform - pos: 28.5,-40.5 + pos: 70.5,34.495007 parent: 2 - - type: Pullable - prevFixedRotation: True -- proto: CrateEngineeringCableBulk - entities: - - uid: 782 + - uid: 6477 components: - type: Transform - pos: 20.5,-23.5 + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 5526 + - uid: 6478 components: - type: Transform - pos: 87.5,0.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateEngineeringCableLV - entities: - - uid: 12353 + - uid: 6497 components: - type: Transform - pos: 5.5,-8.5 + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 parent: 2 -- proto: CrateEngineeringCableMV - entities: - - uid: 5686 + - uid: 6504 components: - type: Transform - pos: 10.5,-31.5 + rot: -1.5707963267948966 rad + pos: 23.5,-12.5 parent: 2 -- proto: CrateEngineeringSecure - entities: - - uid: 5625 + - uid: 8440 components: - type: Transform - pos: 11.5,-25.5 + rot: -1.5707963267948966 rad + pos: 71.5,29.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 784 - - 1239 - - 1460 - - 1842 - - 2129 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateFilledSpawner - entities: - - uid: 191 + - uid: 8644 components: - type: Transform - pos: 12.5,16.5 + pos: 84.5,12.495002 parent: 2 - - uid: 7552 + - uid: 8645 components: - type: Transform - pos: 13.5,24.5 + pos: 85.5,12.495002 parent: 2 - - uid: 8165 + - uid: 12710 components: - type: Transform - pos: 11.5,24.5 + pos: 114.5,-16.5 parent: 2 - - uid: 8166 + - uid: 13474 components: - type: Transform - pos: 10.5,24.5 + pos: 9.853746,-41.642406 parent: 2 - - uid: 8168 + - uid: 14091 components: - type: Transform - pos: 11.5,26.5 + rot: -1.5707963267948966 rad + pos: 71.5,27.5 parent: 2 - - uid: 8169 +- proto: CheapLighter + entities: + - uid: 6631 components: - type: Transform - pos: 12.5,26.5 + pos: 37.66267,-3.4032297 parent: 2 - - uid: 8170 + - uid: 7717 components: - type: Transform - pos: 13.5,26.5 + pos: 43.77102,20.318724 parent: 2 - - uid: 8171 +- proto: CheapRollerBed + entities: + - uid: 8145 components: - type: Transform - pos: 6.5,30.5 + pos: 58.484226,3.6459913 parent: 2 - - uid: 8173 + - uid: 8232 components: - type: Transform - pos: 6.5,32.5 + pos: 57.484226,3.6453457 parent: 2 - - uid: 8174 + - uid: 8234 components: - type: Transform - pos: 7.5,32.5 + pos: 55.484226,3.6458454 parent: 2 -- proto: CrateFreezer - entities: - - uid: 740 + - uid: 8299 components: - type: Transform - pos: 31.5,-11.5 + pos: 54.49985,3.645617 parent: 2 - - uid: 13109 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 11921 components: - type: Transform - pos: 67.5,-5.5 + pos: 70.44693,7.937353 parent: 2 -- proto: CrateGenericSteel +- proto: ChemDispenser entities: - - uid: 3720 + - uid: 5050 components: - type: Transform - pos: 89.5,-7.5 + pos: 49.5,-5.5 parent: 2 - type: ContainerContainer containers: - entity_storage: !type:Container + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot showEnts: False occludes: True - ents: [] - labelSlot: !type:ContainerSlot + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ReagentDispenser-beaker: !type:ContainerSlot showEnts: False occludes: True ent: null - paper_label: !type:ContainerSlot + beakerSlot: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 3721 + - uid: 5051 components: - type: Transform - pos: 90.5,-7.5 + pos: 53.5,-3.5 parent: 2 - type: ContainerContainer containers: - entity_storage: !type:Container + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container showEnts: False occludes: True ents: [] - labelSlot: !type:ContainerSlot + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ReagentDispenser-beaker: !type:ContainerSlot showEnts: False occludes: True ent: null - paper_label: !type:ContainerSlot + beakerSlot: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateMaterialSteel +- proto: ChemistryHotplate entities: - - uid: 5687 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 2 - - uid: 13043 + - uid: 11028 components: - type: Transform - pos: 33.5,-52.5 + pos: 51.5,-7.5 parent: 2 -- proto: CrateMedicalSurgery +- proto: ChemMaster entities: - - uid: 5086 + - uid: 5052 components: - type: Transform - pos: 64.5,-3.5 + pos: 49.5,-4.5 parent: 2 -- proto: CrateMousetrapBoxes - entities: - - uid: 8819 + - type: ContainerContainer + containers: + ChemMaster-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ChemMaster-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5053 components: - type: Transform - pos: 9.5,-18.5 + pos: 52.5,-3.5 parent: 2 -- proto: CrateNPCChicken + - type: ContainerContainer + containers: + ChemMaster-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ChemMaster-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ChessBoard entities: - - uid: 6753 + - uid: 14078 components: - type: Transform - pos: 46.5,-10.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 -- proto: CrateNPCCow +- proto: ChurchOrganInstrument entities: - - uid: 6752 + - uid: 8921 components: - type: Transform - pos: 47.5,-10.5 + pos: 35.5,5.5 parent: 2 -- proto: CrateNPCHamlet +- proto: CigarGold entities: - - uid: 12796 + - uid: 7936 components: - type: Transform - pos: 29.5,47.5 + pos: 43.474144,20.053099 parent: 2 -- proto: CrateSecurityTrackingMindshieldImplants - entities: - - uid: 2153 + - uid: 12104 components: - type: Transform - pos: 40.5,28.5 + pos: 17.412243,41.086063 parent: 2 -- proto: CrateTrashCart - entities: - - uid: 13117 + - uid: 12105 components: - type: Transform - pos: 45.5,29.5 + pos: 17.630993,41.086063 parent: 2 - - uid: 13122 + - uid: 12753 components: - type: Transform - pos: 55.5,5.5 + pos: 6.6187644,19.547955 parent: 2 - - uid: 13123 +- proto: CigPackGreen + entities: + - uid: 5523 components: - type: Transform - pos: 23.5,8.5 + pos: 87.481125,1.4149053 parent: 2 - - uid: 13124 + - uid: 9307 components: - type: Transform - pos: 19.5,26.5 + pos: 69.531136,11.469878 parent: 2 -- proto: CrateTrashCartJani +- proto: CircuitImprinter entities: - - uid: 12906 + - uid: 12155 components: - type: Transform - pos: 6.5,-6.5 + pos: 53.5,17.5 parent: 2 -- proto: CrayonBox + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold +- proto: CleanerDispenser entities: - - uid: 4695 - components: - - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 11395 - components: - - type: Transform - pos: 25.423948,6.293049 - parent: 2 - - uid: 11396 + - uid: 6875 components: - type: Transform - pos: 30.486448,7.511799 + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 parent: 2 -- proto: CrayonRainbow +- proto: ClosetBombFilled entities: - - uid: 12700 + - uid: 2261 components: - type: Transform - pos: 106.45511,-16.386364 + pos: 36.5,21.5 parent: 2 -- proto: Crematorium - entities: - - uid: 9729 + - uid: 12854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,4.5 + pos: 55.5,25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer +- proto: ClosetEmergencyFilledRandom entities: - - uid: 8231 + - uid: 1480 components: - type: Transform - pos: 51.5,25.5 + pos: 24.5,-4.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: Crowbar - entities: - - uid: 686 + - uid: 1481 components: - type: Transform - pos: 30.5,-14.5 + pos: 24.5,-5.5 parent: 2 - - uid: 1048 + - uid: 2957 components: - type: Transform - pos: 32.504723,-30.433409 + pos: 72.5,-10.5 parent: 2 - - uid: 5326 + - uid: 3328 components: - type: Transform - pos: 55.436665,17.567713 + pos: -21.5,-11.5 parent: 2 - - uid: 5713 + - uid: 5261 components: - type: Transform - pos: 77.53034,-13.472758 + pos: 49.5,13.5 parent: 2 - - uid: 8688 + - uid: 5438 components: - type: Transform - pos: 32.5021,27.416605 + pos: 9.5,-20.5 parent: 2 - - uid: 11129 + - uid: 5472 components: - type: Transform - pos: 54.629898,-15.278217 + pos: 70.5,42.5 parent: 2 -- proto: CryogenicSleepUnit - entities: - - uid: 6934 + - uid: 5612 components: - type: Transform - pos: 22.5,17.5 + pos: 36.5,-38.5 parent: 2 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 6935 + - uid: 5901 components: - type: Transform - pos: 22.5,18.5 + pos: 5.5,-30.5 parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 6936 + - uid: 7997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,17.5 + pos: 3.5,5.5 parent: 2 -- proto: CryoPod - entities: - - uid: 11462 + - uid: 10837 components: - type: Transform - pos: 58.5,-0.5 + pos: 66.5,6.5 parent: 2 - - uid: 11774 + - uid: 10839 components: - type: Transform - pos: 60.5,-0.5 + pos: 43.5,46.5 parent: 2 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 11801 + - uid: 12478 components: - type: Transform - pos: 61.389576,-0.25500047 + pos: 56.5,47.5 parent: 2 - - uid: 11802 + - uid: 13145 components: - type: Transform - pos: 61.483326,-0.38000047 + pos: -13.5,0.5 parent: 2 -- proto: d6Dice - entities: - - uid: 316 + - uid: 13708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.493689,4.5440345 + pos: -5.5,-23.5 parent: 2 - - uid: 5505 + - uid: 14156 components: - type: Transform - pos: 70.363464,33.795147 + pos: 71.5,21.5 parent: 2 - - uid: 5506 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 7537 components: - type: Transform - pos: 70.69159,33.810772 + pos: -9.5,0.5 parent: 2 - - uid: 5517 +- proto: ClosetFireFilled + entities: + - uid: 99 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.50039,33.577915 + pos: -7.5,-14.5 parent: 2 -- proto: DefaultStationBeaconAME - entities: - - uid: 12372 + - uid: 5260 components: - type: Transform - pos: 31.5,-40.5 + pos: 50.5,13.5 parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 12378 + - uid: 5902 components: - type: Transform - pos: 68.5,14.5 + pos: 5.5,-29.5 parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 12371 + - uid: 7998 components: - type: Transform - pos: 40.5,27.5 + pos: 3.5,9.5 parent: 2 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 12370 + - uid: 10841 components: - type: Transform - pos: -14.5,-13.5 + pos: 39.5,42.5 parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 12367 + - uid: 12803 components: - type: Transform - pos: 62.5,25.5 + pos: -5.5,0.5 parent: 2 -- proto: DefaultStationBeaconAtmospherics +- proto: ClosetJanitorFilled entities: - - uid: 12366 + - uid: 166 components: - type: Transform - pos: 30.5,-26.5 + pos: 3.5,-3.5 parent: 2 -- proto: DefaultStationBeaconBar +- proto: ClosetL3JanitorFilled entities: - - uid: 11974 + - uid: 167 components: - type: Transform - pos: 32.5,-3.5 + pos: 3.5,-4.5 parent: 2 -- proto: DefaultStationBeaconBotany +- proto: ClosetL3VirologyFilled entities: - - uid: 11007 + - uid: 5213 components: - type: Transform - pos: 44.5,-3.5 + pos: 78.5,-1.5 parent: 2 -- proto: DefaultStationBeaconBridge - entities: - - uid: 12106 + - uid: 5214 components: - type: Transform - pos: 26.5,45.5 + pos: 76.5,-3.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 12365 + - uid: 5215 components: - type: Transform - pos: 32.5,23.5 + pos: 76.5,-4.5 parent: 2 -- proto: DefaultStationBeaconCaptainsQuarters +- proto: ClosetLegal entities: - - uid: 12385 + - uid: 2712 components: - type: Transform - pos: 31.5,40.5 + pos: 18.5,33.5 parent: 2 -- proto: DefaultStationBeaconCargoBay +- proto: ClosetLegalFilled entities: - - uid: 12386 + - uid: 6047 components: - type: Transform - pos: 10.5,23.5 + pos: 17.5,33.5 parent: 2 -- proto: DefaultStationBeaconCargoReception +- proto: ClosetMaintenance entities: - - uid: 12387 + - uid: 10835 components: - type: Transform - pos: 19.5,22.5 + pos: 65.5,10.5 parent: 2 -- proto: DefaultStationBeaconCERoom +- proto: ClosetMaintenanceFilledRandom entities: - - uid: 12363 + - uid: 3501 components: - type: Transform - pos: 11.5,-35.5 + pos: 37.5,36.5 parent: 2 -- proto: DefaultStationBeaconChapel - entities: - - uid: 12827 + - uid: 5437 components: - type: Transform - pos: 36.5,7.5 + pos: 9.5,-19.5 parent: 2 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 12828 + - uid: 8342 components: - type: Transform - pos: 50.5,-6.5 + pos: 23.5,6.5 parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 12364 + - uid: 10836 components: - type: Transform - pos: 57.5,-10.5 + pos: 65.5,9.5 parent: 2 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 12849 + - uid: 13125 components: - type: Transform - pos: 20.5,31.5 + pos: 53.5,-20.5 parent: 2 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 12850 + - uid: 13126 components: - type: Transform - pos: 59.5,-1.5 + pos: 52.5,-20.5 parent: 2 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 6937 + - uid: 13969 components: - type: Transform - pos: 21.5,17.5 + pos: -11.5,-23.5 parent: 2 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 12851 + - uid: 14650 components: - type: Transform - pos: 42.5,18.5 + pos: 67.5,31.5 parent: 2 -- proto: DefaultStationBeaconDisposals +- proto: ClosetRadiationSuitFilled entities: - - uid: 12852 + - uid: 3687 components: - type: Transform - pos: 0.5,-30.5 + pos: 51.5,13.5 parent: 2 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 13130 + - uid: 4310 components: - type: Transform - pos: 9.5,-6.5 + pos: 19.5,-34.5 parent: 2 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 13131 + - uid: 10906 components: - type: Transform - pos: 17.5,-4.5 + pos: 20.5,-34.5 parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 13132 + - uid: 10907 components: - type: Transform - pos: 43.5,22.5 + pos: 22.5,-34.5 parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 13133 + - uid: 12853 components: - type: Transform - pos: 3.5,-5.5 + pos: 54.5,25.5 parent: 2 -- proto: DefaultStationBeaconKitchen +- proto: ClosetSteelBase entities: - - uid: 13134 + - uid: 5460 components: - type: Transform - pos: 35.5,-9.5 + pos: 69.5,40.5 parent: 2 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 13135 + - uid: 5461 components: - type: Transform - pos: -1.5,-9.5 + pos: 69.5,37.5 parent: 2 -- proto: DefaultStationBeaconLibrary +- proto: ClosetToolFilled entities: - - uid: 13136 + - uid: 5649 components: - type: Transform - pos: 10.5,5.5 + pos: 49.5,46.5 parent: 2 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 13137 + - uid: 14734 components: - type: Transform - pos: 70.5,-3.5 + pos: 9.5,15.5 parent: 2 -- proto: DefaultStationBeaconPermaBrig +- proto: ClosetWallOrange entities: - - uid: 13138 + - uid: 13620 components: - type: Transform - pos: 39.5,33.5 + rot: -1.5707963267948966 rad + pos: 58.5,37.5 parent: 2 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 13139 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13621 + - uid: 13753 components: - type: Transform - pos: 26.5,-32.5 + rot: -1.5707963267948966 rad + pos: 58.5,35.5 parent: 2 -- proto: DefaultStationBeaconQMRoom + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14550 +- proto: ClothingBackpackClown entities: - - uid: 13140 + - uid: 9611 components: - type: Transform - pos: 12.5,30.5 + pos: 27.493172,5.5327587 parent: 2 -- proto: DefaultStationBeaconRDRoom +- proto: ClothingBeltChampion entities: - - uid: 13141 + - uid: 12103 components: - type: Transform - pos: 60.5,9.5 + pos: 17.443493,40.617313 parent: 2 -- proto: DefaultStationBeaconRND +- proto: ClothingBeltHolster entities: - - uid: 13168 + - uid: 12241 components: - type: Transform - pos: 51.5,19.5 + pos: 89.35728,1.548007 parent: 2 -- proto: DefaultStationBeaconRobotics +- proto: ClothingBeltStorageWaistbag entities: - - uid: 13169 + - uid: 7821 components: - type: Transform - pos: 51.5,10.5 + pos: 20.561836,5.5983276 parent: 2 -- proto: DefaultStationBeaconSalvage +- proto: ClothingBeltUtility entities: - - uid: 13170 + - uid: 5735 components: - type: Transform - pos: 7.5,16.5 + pos: 72.5,-9.5 parent: 2 -- proto: DefaultStationBeaconServerRoom +- proto: ClothingBeltUtilityEngineering entities: - - uid: 13171 + - uid: 602 components: - type: Transform - pos: 31.5,35.5 + pos: 25.514921,-29.44944 parent: 2 - - uid: 13172 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 872 components: - type: Transform - pos: 50.5,24.5 + pos: 33.498886,-14.418215 parent: 2 -- proto: DefaultStationBeaconSingularity +- proto: ClothingEyesEyepatch entities: - - uid: 13180 + - uid: 6421 components: - type: Transform - pos: 21.5,-38.5 + pos: 56.63094,-14.915291 parent: 2 -- proto: DefaultStationBeaconSolars + - uid: 12219 + components: + - type: Transform + pos: 15.513365,7.482489 + parent: 2 +- proto: ClothingEyesGlasses entities: - - uid: 13178 + - uid: 5436 components: - type: Transform - pos: 70.5,45.5 + pos: 45.51781,-19.598537 parent: 2 - - uid: 13179 + - uid: 6793 components: - type: Transform - pos: 3.5,-35.5 + pos: 60.359756,25.627806 parent: 2 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 13175 + - uid: 11827 components: - type: Transform - pos: 37.5,-15.5 + pos: 60.359756,25.45593 parent: 2 -- proto: DefaultStationBeaconTEG - entities: - - uid: 5665 + - uid: 12167 components: - type: Transform - pos: 41.5,-46.5 + pos: 74.534454,-0.21419013 parent: 2 -- proto: DefaultStationBeaconTelecoms +- proto: ClothingEyesGlassesGarGiga entities: - - uid: 13173 + - uid: 8643 components: - type: Transform - pos: 15.5,-17.5 + pos: 74.48007,-6.509521 parent: 2 -- proto: DefaultStationBeaconToolRoom +- proto: ClothingEyesGlassesMeson entities: - - uid: 13174 + - uid: 132 components: - type: Transform - pos: 30.5,-16.5 + pos: 12.5,-35.5 parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 13176 + - uid: 5718 components: - type: Transform - pos: 18.5,41.5 + pos: 73.5,-12.5 parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 13177 + - uid: 10825 components: - type: Transform - pos: 38.5,22.5 + pos: 81.516914,11.673225 parent: 2 -- proto: Defibrillator - entities: - - uid: 11416 + - uid: 10848 components: - type: Transform - pos: 67.479836,-4.0156612 + pos: 44.482018,28.569605 parent: 2 -- proto: DefibrillatorCabinetFilled +- proto: ClothingEyesGlassesSunglasses entities: - - uid: 9627 + - uid: 5522 components: - type: Transform - pos: 45.5,5.5 + pos: 86.49675,1.6024053 parent: 2 - - uid: 12817 +- proto: ClothingEyesGlassesThermal + entities: + - uid: 12673 components: - type: Transform - pos: 74.5,3.5 + pos: 32.51945,-30.628448 parent: 2 - - uid: 12818 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 11439 components: - type: Transform - pos: 63.5,5.5 + pos: 17.140316,-23.554987 parent: 2 - - uid: 13108 +- proto: ClothingEyesHudMedical + entities: + - uid: 11422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 + pos: 55.632915,-10.387672 parent: 2 -- proto: DeployableBarrier +- proto: ClothingHandsGlovesColorYellow entities: - - uid: 257 + - uid: 1563 components: - type: Transform - pos: 39.5,28.5 + pos: 30.487595,-14.515437 parent: 2 - - uid: 9602 + - uid: 5630 components: - type: Transform - pos: 36.5,23.5 + pos: 17.199833,-23.332096 parent: 2 -- proto: DeskBell +- proto: ClothingHandsGlovesFingerless entities: - - uid: 1566 + - uid: 2479 components: - type: Transform - pos: 34.50083,-8.541687 + pos: 11.846642,20.44815 parent: 2 -- proto: DiseaseDiagnoser +- proto: ClothingHandsGlovesPowerglove entities: - - uid: 12156 + - uid: 7561 components: - type: Transform - pos: 82.5,-7.5 + pos: 76.51093,-13.595224 parent: 2 -- proto: DisposalBend +- proto: ClothingHeadFishCap entities: - - uid: 1228 + - uid: 2885 components: - type: Transform - pos: 34.5,-9.5 + pos: 50.47578,-20.56524 parent: 2 - - uid: 2376 +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 12652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,10.5 + pos: 69.48217,34.466385 parent: 2 - - uid: 3456 +- proto: ClothingHeadHatAnimalCatBrown + entities: + - uid: 8933 components: - type: Transform - pos: 14.5,20.5 + pos: 62.47656,19.694616 parent: 2 - - uid: 5777 +- proto: ClothingHeadHatBunny + entities: + - uid: 9109 components: - type: Transform - pos: 31.5,-28.5 + pos: 58.54981,-24.623142 parent: 2 - - uid: 5778 +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 7557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-32.5 + rot: 0.00039844278944656253 rad + pos: 74.50803,-5.26333 parent: 2 - - uid: 5779 +- proto: ClothingHeadHatFez + entities: + - uid: 8843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-32.5 + pos: 90.45974,-18.462885 parent: 2 - - uid: 5780 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 8829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-33.5 + pos: 84.5185,-12.681175 parent: 2 - - uid: 5781 +- proto: ClothingHeadHatGreysoft + entities: + - uid: 10851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-34.5 + pos: 44.5341,28.569605 parent: 2 - - uid: 5782 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 10798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 + pos: 80.534454,-16.347055 parent: 2 - - uid: 5800 +- proto: ClothingHeadHatHardhatRed + entities: + - uid: 5719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-28.5 + pos: 73.5,-12.5 parent: 2 - - uid: 5820 + - uid: 10827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 + pos: 81.50129,9.6576 parent: 2 - - uid: 5821 +- proto: ClothingHeadHatHetmanHat + entities: + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 + pos: 84.40167,-5.2654653 parent: 2 - - uid: 5822 +- proto: ClothingHeadHatPirate + entities: + - uid: 7554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 + rot: 0.00038670882349833846 rad + pos: 89.44564,-12.263381 parent: 2 - - uid: 5823 +- proto: ClothingHeadHatRedwizard + entities: + - uid: 6798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 + pos: 86.44191,12.5807 parent: 2 - - uid: 5828 +- proto: ClothingHeadHatSkub + entities: + - uid: 13076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 + pos: 7.4825606,-11.600726 parent: 2 - - uid: 5829 +- proto: ClothingHeadHatSquid + entities: + - uid: 12671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 + pos: 65.725685,11.307603 parent: 2 - - uid: 5840 +- proto: ClothingHeadHatTophat + entities: + - uid: 2920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-30.5 + pos: 65.46723,-14.576903 parent: 2 - - uid: 7289 +- proto: ClothingHeadHatTrucker + entities: + - uid: 3448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-2.5 + pos: 17.59203,5.387045 parent: 2 - - uid: 7332 +- proto: ClothingHeadHatUshanka + entities: + - uid: 12674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,13.5 + pos: 74.46565,-6.1472054 parent: 2 - - uid: 7352 + - uid: 12676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,7.5 + pos: 74.46565,-6.1472054 parent: 2 - - uid: 7393 +- proto: ClothingHeadHatWelding + entities: + - uid: 5377 components: - type: Transform - pos: 29.5,-10.5 + pos: 52.381424,11.673619 parent: 2 - - uid: 7394 +- proto: ClothingHeadHatWitch1 + entities: + - uid: 6827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 + pos: 83.46587,-12.720913 parent: 2 - - uid: 7395 +- proto: ClothingHeadHatWizard + entities: + - uid: 11158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 + pos: 86.44739,10.61898 parent: 2 - - uid: 7402 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8425 components: - type: Transform - pos: 42.5,1.5 + pos: 38.53056,28.406826 parent: 2 - - uid: 7403 + - uid: 8426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 + pos: 38.53056,28.406826 parent: 2 - - uid: 7707 + - uid: 8427 components: - type: Transform - pos: 33.5,23.5 + pos: 38.53056,28.406826 parent: 2 - - uid: 7751 +- proto: ClothingHeadNurseHat + entities: + - uid: 12672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,13.5 + pos: 59.51385,-3.3579187 parent: 2 - - uid: 7761 +- proto: ClothingHeadsetMining + entities: + - uid: 2134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + pos: 5.5,31.5 parent: 2 - - uid: 7953 +- proto: ClothingMaskBear + entities: + - uid: 8828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 + pos: 102.40892,-16.268303 parent: 2 - - uid: 8263 +- proto: ClothingMaskBreathMedical + entities: + - uid: 12657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,18.5 + pos: 67.39722,4.505884 parent: 2 - - uid: 8264 +- proto: ClothingMaskClown + entities: + - uid: 8292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,18.5 + pos: 27.23263,5.6674385 parent: 2 - - uid: 8265 +- proto: ClothingMaskGas + entities: + - uid: 589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,15.5 + pos: 33.50367,-14.512851 parent: 2 - - uid: 8267 + - uid: 841 components: - type: Transform - pos: 12.5,15.5 + pos: 27.626308,-29.560211 parent: 2 - - uid: 8268 + - uid: 5343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 + pos: 60.54431,25.642796 parent: 2 - - uid: 8269 + - uid: 10799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 + pos: 79.33667,-16.51893 parent: 2 - - uid: 8927 + - uid: 10800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-9.5 + pos: 79.664795,-16.36268 parent: 2 - - uid: 9401 + - uid: 10824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,42.5 + pos: 81.53254,11.610725 parent: 2 - - uid: 9402 +- proto: ClothingMaskSexyMime + entities: + - uid: 8345 components: - type: Transform - pos: 32.5,45.5 + pos: 25.245346,6.3236885 parent: 2 - - uid: 9403 +- proto: ClothingMaskSterile + entities: + - uid: 11969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,45.5 + pos: 59.604156,3.672451 parent: 2 - - uid: 9432 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 12455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,35.5 + pos: 91.43456,-0.49069238 parent: 2 - - uid: 9433 +- proto: ClothingNeckCloakMiner + entities: + - uid: 697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,34.5 + pos: 9.5,36.5 parent: 2 - - uid: 9434 +- proto: ClothingNeckCloakMoth + entities: + - uid: 9368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,35.5 + pos: 17.479858,8.394902 parent: 2 - - uid: 10255 +- proto: ClothingNeckCloakTrans + entities: + - uid: 688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 + pos: 7.491953,-13.240216 parent: 2 - - uid: 10266 + - uid: 7009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + pos: 19.545155,5.62142 parent: 2 - - uid: 10586 +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 12226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + pos: 20.513533,26.418814 parent: 2 - - uid: 10598 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 9606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,14.5 + pos: 25.521528,7.3736153 parent: 2 - - uid: 10599 +- proto: ClothingNeckStethoscope + entities: + - uid: 5193 components: - type: Transform - pos: 58.5,22.5 + pos: 63.38291,-10.442304 parent: 2 - - uid: 10602 + - uid: 11420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,18.5 + pos: 56.414165,-10.356422 parent: 2 - - uid: 10622 + - uid: 11967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,14.5 + pos: 64.40056,4.5256968 parent: 2 - - uid: 11435 +- proto: ClothingNeckTieRed + entities: + - uid: 8289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-6.5 + pos: 19.90453,5.512045 parent: 2 - - uid: 11440 +- proto: ClothingOuterApron + entities: + - uid: 8825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 + pos: 17.68529,8.556451 parent: 2 - - uid: 11451 +- proto: ClothingOuterArmorBasic + entities: + - uid: 8413 components: - type: Transform - pos: 56.5,-0.5 + pos: 38.421185,28.625576 parent: 2 - - uid: 11452 + - uid: 8414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-0.5 + pos: 38.421185,28.625576 parent: 2 - - uid: 11453 + - uid: 8415 components: - type: Transform - pos: 43.5,0.5 + pos: 38.421185,28.625576 parent: 2 - - uid: 11454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,3.5 - parent: 2 - - uid: 11455 - components: - - type: Transform - pos: 54.5,3.5 - parent: 2 - - uid: 12440 +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 8416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 38.62431,28.406826 parent: 2 - - uid: 12456 + - uid: 8417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + pos: 38.62431,28.406826 parent: 2 - - uid: 12470 + - uid: 8418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: 38.62431,28.406826 parent: 2 -- proto: DisposalJunction +- proto: ClothingOuterArmorBulletproof entities: - - uid: 2422 + - uid: 8419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,13.5 + pos: 38.37431,28.438076 parent: 2 - - uid: 2475 + - uid: 8420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 + pos: 38.37431,28.438076 parent: 2 - - uid: 5084 + - uid: 8421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,0.5 + pos: 38.37431,28.438076 parent: 2 - - uid: 5695 +- proto: ClothingOuterArmorRiot + entities: + - uid: 8422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-25.5 + pos: 38.71806,28.609951 parent: 2 - - uid: 7401 + - uid: 8423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,0.5 + pos: 38.71806,28.609951 parent: 2 - - uid: 8343 + - uid: 8424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,0.5 + pos: 38.71806,28.609951 parent: 2 - - uid: 8821 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterCoatJensen + entities: + - uid: 7560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,0.5 + pos: 76.51827,-13.498972 parent: 2 - - uid: 9411 +- proto: ClothingOuterCoatLab + entities: + - uid: 5257 components: - type: Transform - pos: 28.5,44.5 + pos: 60.494953,-9.426679 parent: 2 - - uid: 9435 +- proto: ClothingOuterCoatPirate + entities: + - uid: 7553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 + pos: 89.47711,-12.560792 parent: 2 - - uid: 10600 +- proto: ClothingOuterCoatRobo + entities: + - uid: 1847 components: - type: Transform - pos: 58.5,18.5 + pos: 52.52299,8.566419 parent: 2 - - uid: 11456 +- proto: ClothingOuterHospitalGown + entities: + - uid: 12499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + pos: 60.452034,-9.3230715 parent: 2 -- proto: DisposalJunctionFlipped +- proto: ClothingOuterPonchoClassic entities: - - uid: 5141 + - uid: 14092 components: - type: Transform - pos: 26.5,23.5 + pos: 70.51337,28.554468 parent: 2 - - uid: 5142 +- proto: ClothingOuterSkub + entities: + - uid: 13075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 + pos: 7.4669356,-11.631976 parent: 2 - - uid: 7290 +- proto: ClothingOuterSuitFire + entities: + - uid: 5721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,0.5 + pos: 73.5,-12.5 parent: 2 - - uid: 7317 + - uid: 10849 components: - type: Transform - pos: 26.5,-11.5 + pos: 44.450768,28.725964 parent: 2 - - uid: 7400 +- proto: ClothingOuterVestHazard + entities: + - uid: 880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,0.5 + pos: 27.494364,-29.379656 parent: 2 - - uid: 10601 + - uid: 13691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 + pos: 11.523725,20.510695 parent: 2 - - uid: 11436 +- proto: ClothingOuterWizard + entities: + - uid: 11159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 + pos: 86.47864,10.71273 parent: 2 - - uid: 11460 +- proto: ClothingOuterWizardRed + entities: + - uid: 6797 components: - type: Transform - pos: 54.5,1.5 + pos: 86.50441,12.690075 parent: 2 - - uid: 12457 +- proto: ClothingShoesBootsJack + entities: + - uid: 3615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 + pos: 18.604328,5.443143 parent: 2 -- proto: DisposalPipe +- proto: ClothingShoesBootsMag entities: - - uid: 28 + - uid: 10306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 + pos: 8.40589,-8.309399 parent: 2 - - uid: 256 + - uid: 10307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,15.5 + pos: 8.56214,-8.481274 parent: 2 - - uid: 385 +- proto: ClothingShoesFlippers + entities: + - uid: 6828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,18.5 + pos: 1.4884543,-32.355457 parent: 2 - - uid: 584 +- proto: ClothingShoesLeather + entities: + - uid: 7555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 + rot: 0.0006267222343012691 rad + pos: 89.43173,-12.737588 parent: 2 - - uid: 2065 + - uid: 7558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,18.5 + pos: 74.43015,-5.8248997 parent: 2 - - uid: 2118 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 5405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 + pos: 62.48992,19.519245 parent: 2 - - uid: 2133 +- proto: ClothingShoesSlippers + entities: + - uid: 5470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,23.5 + pos: 70.5,40.5 parent: 2 - - uid: 2314 + - uid: 5471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,17.5 + pos: 70.5,37.5 parent: 2 - - uid: 2377 +- proto: ClothingShoesWizard + entities: + - uid: 6796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: 86.50441,12.3932 parent: 2 - - uid: 2380 + - uid: 11160 components: - type: Transform - pos: 33.5,22.5 + pos: 86.46301,10.540855 parent: 2 - - uid: 5534 +- proto: ClothingUnderSocksBee + entities: + - uid: 12287 components: - type: Transform - pos: 32.5,1.5 + pos: 8.506772,13.431249 parent: 2 - - uid: 5697 +- proto: ClothingUnderSocksCoder + entities: + - uid: 6795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-28.5 + pos: 83.49162,-13.680252 parent: 2 - - uid: 5698 + - uid: 8931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 + pos: 13.502279,38.53218 parent: 2 - - uid: 5699 +- proto: ClothingUniformColorRainbow + entities: + - uid: 6826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-28.5 + pos: 83.49712,-13.314663 parent: 2 - - uid: 5700 + - uid: 12705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-28.5 + pos: 104.58011,-15.495739 parent: 2 - - uid: 5770 + - uid: 12706 components: - type: Transform - pos: 31.5,-29.5 + pos: 104.11136,-15.495739 parent: 2 - - uid: 5771 + - uid: 12707 components: - type: Transform - pos: 31.5,-30.5 + pos: 103.67386,-15.495739 parent: 2 - - uid: 5772 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 12653 components: - type: Transform - pos: 31.5,-31.5 + pos: 76.476616,-13.28976 parent: 2 - - uid: 5773 +- proto: ClothingUniformJumpsuitCossack + entities: + - uid: 8826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-32.5 + pos: 84.46417,-5.6717153 parent: 2 - - uid: 5774 +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 7556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-32.5 + pos: 74.49265,-5.4811497 parent: 2 - - uid: 5775 +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-32.5 + pos: 27.529085,-29.483822 parent: 2 - - uid: 5776 +- proto: ClothingUniformJumpsuitFlannel + entities: + - uid: 8290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 + pos: 19.93578,5.65267 parent: 2 - - uid: 5784 +- proto: ClothingUniformJumpsuitMonasticRobeLight + entities: + - uid: 12654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-33.5 + pos: 30.690329,7.316777 parent: 2 - - uid: 5788 + - uid: 12655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-32.5 + pos: 30.690329,7.316777 parent: 2 - - uid: 5789 + - uid: 12656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-31.5 + pos: 30.690329,7.316777 parent: 2 - - uid: 5790 +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 8306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-30.5 + pos: 20.21703,5.52767 parent: 2 - - uid: 5791 +- proto: ClothingUniformJumpsuitRecruitSyndie + entities: + - uid: 12496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-29.5 + pos: 11.480359,-11.451806 parent: 2 - - uid: 5792 +- proto: ClothingUniformJumpsuitRepairmanSyndie + entities: + - uid: 12675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-28.5 + pos: 11.491153,-11.444116 parent: 2 - - uid: 5793 +- proto: ClothingUniformOveralls + entities: + - uid: 8241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-28.5 + pos: 17.468086,5.4733276 parent: 2 - - uid: 5794 +- proto: ClownRecorder + entities: + - uid: 5149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 + pos: 27.810755,5.5424385 parent: 2 - - uid: 5795 +- proto: ComfyChair + entities: + - uid: 303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-28.5 + pos: 12.5,4.5 parent: 2 - - uid: 5796 + - uid: 2408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-28.5 + pos: 44.5,24.5 parent: 2 - - uid: 5797 + - uid: 2527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-28.5 + pos: 34.5,7.5 parent: 2 - - uid: 5798 + - uid: 2531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 + rot: -1.5707963267948966 rad + pos: 36.5,3.5 parent: 2 - - uid: 5799 + - uid: 2720 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-28.5 + pos: 17.5,31.5 parent: 2 - - uid: 5802 + - uid: 2772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-23.5 + rot: -1.5707963267948966 rad + pos: 24.5,40.5 parent: 2 - - uid: 5803 + - uid: 2773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-22.5 + rot: -1.5707963267948966 rad + pos: 24.5,39.5 parent: 2 - - uid: 5804 + - uid: 2774 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-21.5 + pos: 21.5,40.5 parent: 2 - - uid: 5805 + - uid: 2775 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-21.5 + pos: 21.5,39.5 parent: 2 - - uid: 5806 + - uid: 5033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-21.5 + pos: 35.5,3.5 parent: 2 - - uid: 5807 + - uid: 5423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 + rot: 3.141592653589793 rad + pos: 37.5,42.5 parent: 2 - - uid: 5809 + - uid: 5424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 + rot: 3.141592653589793 rad + pos: 33.5,40.5 parent: 2 - - uid: 5810 + - uid: 5425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 + pos: 33.5,43.5 parent: 2 - - uid: 5811 + - uid: 10273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 5812 + - uid: 10636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-21.5 + pos: 29.5,7.5 parent: 2 - - uid: 5814 + - uid: 12677 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-21.5 + pos: 105.5,-13.5 parent: 2 - - uid: 5815 + - uid: 12678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + rot: -1.5707963267948966 rad + pos: 107.5,-13.5 parent: 2 - - uid: 5816 +- proto: CommandmentCircuitBoard + entities: + - uid: 14286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + pos: 86.43288,28.403772 parent: 2 - - uid: 5817 +- proto: CommsComputerCircuitboard + entities: + - uid: 12660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-21.5 + pos: 41.5,-15.5 parent: 2 - - uid: 5818 +- proto: ComputerAlert + entities: + - uid: 1163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-21.5 + pos: 10.5,-33.5 parent: 2 - - uid: 5819 + - uid: 5079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 + pos: 28.5,48.5 parent: 2 - - uid: 5825 + - uid: 13443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 + rot: 3.141592653589793 rad + pos: 30.5,-25.5 parent: 2 - - uid: 5826 +- proto: ComputerAnalysisConsole + entities: + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-23.5 + pos: 64.5,25.5 parent: 2 - - uid: 5827 + - type: DeviceLinkSource + linkedPorts: + 8666: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 31 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 + pos: 65.5,-3.5 parent: 2 - - uid: 5830 + - uid: 1911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-29.5 + rot: -1.5707963267948966 rad + pos: 62.5,-11.5 parent: 2 - - uid: 5831 + - uid: 11401 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-28.5 + pos: 66.5,-11.5 parent: 2 - - uid: 5832 + - uid: 12110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-27.5 + rot: -1.5707963267948966 rad + pos: 55.5,8.5 parent: 2 - - uid: 5833 - components: +- proto: ComputerCargoBounty + entities: + - uid: 7263 + components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-26.5 + pos: 14.5,25.5 parent: 2 - - uid: 5834 +- proto: ComputerCargoOrders + entities: + - uid: 5285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-25.5 + pos: 20.5,23.5 parent: 2 - - uid: 5835 + - uid: 7471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 + pos: 7.5,19.5 parent: 2 - - uid: 5836 +- proto: ComputerCargoShuttle + entities: + - uid: 14770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 + rot: 3.141592653589793 rad + pos: 7.5,21.5 parent: 2 - - uid: 5837 +- proto: ComputerComms + entities: + - uid: 405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-30.5 + rot: 3.141592653589793 rad + pos: 33.5,39.5 parent: 2 - - uid: 5838 + - uid: 5059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 + pos: 27.5,48.5 parent: 2 - - uid: 5841 +- proto: ComputerCrewMonitoring + entities: + - uid: 2468 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-29.5 + pos: 38.5,17.5 parent: 2 - - uid: 6848 + - uid: 7925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,23.5 + pos: 31.5,48.5 parent: 2 - - uid: 6849 + - uid: 9617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,23.5 + pos: 49.5,4.5 parent: 2 - - uid: 6850 + - uid: 9619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 + rot: 3.141592653589793 rad + pos: 44.5,2.5 parent: 2 - - uid: 6877 + - uid: 10282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,13.5 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 2 - - uid: 6878 + - uid: 11922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,14.5 + pos: 72.5,8.5 parent: 2 - - uid: 6879 + - uid: 12580 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,13.5 + pos: 20.5,-16.5 parent: 2 - - uid: 6883 +- proto: ComputerCriminalRecords + entities: + - uid: 7981 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,22.5 + pos: -1.5,-5.5 parent: 2 - - uid: 7291 + - uid: 8431 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-1.5 + pos: 36.5,17.5 parent: 2 - - uid: 7292 + - uid: 12083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-0.5 + pos: 29.5,26.5 parent: 2 - - uid: 7293 + - uid: 12090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 + pos: 45.5,25.5 parent: 2 - - uid: 7296 +- proto: ComputerId + entities: + - uid: 401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,0.5 + rot: 3.141592653589793 rad + pos: 32.5,39.5 parent: 2 - - uid: 7301 + - uid: 4988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,0.5 + pos: 26.5,48.5 parent: 2 - - uid: 7302 + - uid: 10275 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,0.5 + pos: 15.5,-3.5 parent: 2 - - uid: 7303 +- proto: ComputerMedicalRecords + entities: + - uid: 7725 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,0.5 + pos: 54.5,-11.5 parent: 2 - - uid: 7306 + - uid: 9616 components: - type: Transform - pos: 26.5,-0.5 + rot: -1.5707963267948966 rad + pos: 51.5,2.5 parent: 2 - - uid: 7307 + - uid: 11035 components: - type: Transform - pos: 26.5,-1.5 + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 parent: 2 - - uid: 7308 + - uid: 12170 components: - type: Transform - pos: 26.5,-2.5 + pos: 34.5,46.5 parent: 2 - - uid: 7309 +- proto: ComputerPowerMonitoring + entities: + - uid: 4042 components: - type: Transform - pos: 26.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-34.5 parent: 2 - - uid: 7310 + - uid: 5126 components: - type: Transform - pos: 26.5,-4.5 + rot: 1.5707963267948966 rad + pos: 19.5,45.5 parent: 2 - - uid: 7311 + - uid: 6898 components: - type: Transform - pos: 26.5,-5.5 + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 parent: 2 - - uid: 7312 + - uid: 13433 components: - type: Transform - pos: 26.5,-6.5 + pos: 22.5,-23.5 parent: 2 - - uid: 7313 +- proto: ComputerRadar + entities: + - uid: 5078 components: - type: Transform - pos: 26.5,-7.5 + pos: 20.5,46.5 parent: 2 - - uid: 7314 + - uid: 9957 components: - type: Transform - pos: 26.5,-8.5 + rot: 1.5707963267948966 rad + pos: 4.5,39.5 parent: 2 - - uid: 7315 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 5304 components: - type: Transform - pos: 26.5,-9.5 + rot: 3.141592653589793 rad + pos: 51.5,17.5 parent: 2 - - uid: 7316 + - uid: 5390 components: - type: Transform - pos: 26.5,-10.5 + pos: 49.5,11.5 parent: 2 - - uid: 7318 + - uid: 6474 components: - type: Transform - pos: 26.5,-12.5 + pos: 50.5,25.5 parent: 2 - - uid: 7319 + - uid: 10666 components: - type: Transform - pos: 26.5,-13.5 + rot: 3.141592653589793 rad + pos: 62.5,8.5 parent: 2 - - uid: 7320 +- proto: ComputerRoboticsControl + entities: + - uid: 5652 components: - type: Transform - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: 61.5,8.5 parent: 2 - - uid: 7321 +- proto: ComputerSalvageExpedition + entities: + - uid: 5046 components: - type: Transform - pos: 26.5,-15.5 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 2 - - uid: 7322 +- proto: ComputerShuttleCargo + entities: + - uid: 7879 components: - type: Transform - pos: 26.5,-16.5 + rot: 1.5707963267948966 rad + pos: 6.5,25.5 parent: 2 - - uid: 7323 +- proto: ComputerSolarControl + entities: + - uid: 4305 components: - type: Transform - pos: 26.5,-17.5 + rot: 1.5707963267948966 rad + pos: 2.5,-36.5 parent: 2 - - uid: 7324 + - uid: 5639 components: - type: Transform - pos: 26.5,-18.5 + pos: 70.5,46.5 parent: 2 - - uid: 7325 + - uid: 11749 components: - type: Transform - pos: 26.5,-19.5 + pos: 21.5,-23.5 parent: 2 - - uid: 7326 +- proto: ComputerStationRecords + entities: + - uid: 2145 components: - type: Transform - pos: 26.5,-20.5 + rot: -1.5707963267948966 rad + pos: 43.5,17.5 parent: 2 - - uid: 7330 + - uid: 8315 components: - type: Transform - pos: 22.5,14.5 + pos: 23.5,48.5 parent: 2 - - uid: 7333 + - uid: 10274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,13.5 + rot: -1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 7334 + - uid: 12581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,13.5 - parent: 2 - - uid: 7335 - components: - - type: Transform - pos: 19.5,12.5 + pos: 20.5,-18.5 parent: 2 - - uid: 7336 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2469 components: - type: Transform - pos: 19.5,11.5 + rot: 3.141592653589793 rad + pos: 37.5,17.5 parent: 2 - - uid: 7337 + - uid: 8346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,10.5 + pos: 24.5,48.5 parent: 2 - - uid: 7338 + - uid: 12082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 + pos: 30.5,26.5 parent: 2 - - uid: 7339 + - uid: 12089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 + pos: 44.5,25.5 parent: 2 - - uid: 7340 +- proto: ComputerTelevision + entities: + - uid: 8498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + rot: 1.5707963267948966 rad + pos: 41.5,18.5 parent: 2 - - uid: 7341 +- proto: ContainmentFieldGenerator + entities: + - uid: 752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,10.5 + anchored: False + pos: 9.5,-26.5 parent: 2 - - uid: 7343 + - type: Physics + bodyType: Dynamic + - uid: 1113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,10.5 + anchored: False + pos: 9.5,-27.5 parent: 2 - - uid: 7345 + - type: Physics + bodyType: Dynamic + - uid: 1289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,10.5 + pos: 26.5,-38.5 parent: 2 - - uid: 7347 + - uid: 1593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,10.5 + anchored: False + pos: 9.5,-28.5 parent: 2 - - uid: 7348 + - type: Physics + bodyType: Dynamic + - uid: 3979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,10.5 + pos: 25.5,-47.5 parent: 2 - - uid: 7349 + - uid: 3984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: 17.5,-55.5 parent: 2 - - uid: 7350 + - uid: 10929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,10.5 + pos: 17.5,-47.5 parent: 2 - - uid: 7351 + - uid: 10931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,10.5 + pos: 25.5,-55.5 parent: 2 - - uid: 7353 +- proto: ConveyorBelt + entities: + - uid: 450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 + rot: 3.141592653589793 rad + pos: 7.5,35.5 parent: 2 - - uid: 7354 + - uid: 944 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: 7.5,38.5 parent: 2 - - uid: 7355 + - uid: 967 components: - type: Transform - pos: 19.5,9.5 + rot: -1.5707963267948966 rad + pos: 8.5,34.5 parent: 2 - - uid: 7358 + - uid: 999 components: - type: Transform - pos: 5.5,9.5 + rot: 3.141592653589793 rad + pos: 7.5,36.5 parent: 2 - - uid: 7359 + - uid: 2037 components: - type: Transform - pos: 5.5,8.5 + rot: 1.5707963267948966 rad + pos: 7.5,27.5 parent: 2 - - uid: 7360 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2040 components: - type: Transform - pos: 5.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,23.5 parent: 2 - - uid: 7361 + - uid: 2041 components: - type: Transform - pos: 5.5,6.5 + rot: 1.5707963267948966 rad + pos: 6.5,27.5 parent: 2 - - uid: 7362 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2042 components: - type: Transform - pos: 5.5,5.5 + rot: 1.5707963267948966 rad + pos: 5.5,27.5 parent: 2 - - uid: 7363 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2051 components: - type: Transform - pos: 5.5,4.5 + rot: -1.5707963267948966 rad + pos: 5.5,23.5 parent: 2 - - uid: 7367 + - uid: 2064 components: - type: Transform - pos: 5.5,3.5 + rot: 1.5707963267948966 rad + pos: 4.5,27.5 parent: 2 - - uid: 7368 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2066 components: - type: Transform - pos: 5.5,2.5 + rot: -1.5707963267948966 rad + pos: 4.5,23.5 parent: 2 - - uid: 7369 + - uid: 2067 components: - type: Transform - pos: 5.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.5,23.5 parent: 2 - - uid: 7370 + - uid: 5842 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: 2.5,-28.5 parent: 2 - - uid: 7371 + - uid: 5843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + pos: 1.5,-28.5 parent: 2 - - uid: 7372 + - uid: 5844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 + pos: 1.5,-29.5 parent: 2 - - uid: 7373 + - uid: 5845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 + pos: 1.5,-30.5 parent: 2 - - uid: 7374 + - uid: 5846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,0.5 + pos: 1.5,-31.5 parent: 2 - - uid: 7375 + - uid: 5847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,0.5 + pos: 0.5,-31.5 parent: 2 - - uid: 7377 + - uid: 5850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-31.5 parent: 2 - - uid: 7378 + - uid: 5851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-30.5 parent: 2 - - uid: 7379 + - uid: 5852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-28.5 parent: 2 - - uid: 7380 + - uid: 5853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-27.5 parent: 2 - - uid: 7381 + - uid: 5854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-26.5 parent: 2 - - uid: 7382 + - uid: 8239 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,0.5 + pos: 3.5,23.5 parent: 2 - - uid: 7383 + - uid: 12384 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,0.5 + pos: 7.5,34.5 parent: 2 - - uid: 7384 + - uid: 13731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,27.5 parent: 2 - - uid: 7385 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 14660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,0.5 + rot: 3.141592653589793 rad + pos: 7.5,37.5 parent: 2 - - uid: 7386 +- proto: CorporateCircuitBoard + entities: + - uid: 14278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,0.5 + pos: 84.53704,28.653946 parent: 2 - - uid: 7387 +- proto: CowToolboxFilled + entities: + - uid: 5707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,0.5 + pos: 84.5,-5.5 parent: 2 - - uid: 7388 +- proto: CrateArtifactContainer + entities: + - uid: 10439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,0.5 + pos: 62.5,22.5 parent: 2 - - uid: 7389 +- proto: CrateCoffin + entities: + - uid: 2538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,0.5 + pos: 38.5,3.5 parent: 2 - - uid: 7396 +- proto: CrateEmptySpawner + entities: + - uid: 8167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-10.5 + pos: 10.5,26.5 parent: 2 - - uid: 7399 + - uid: 8177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-0.5 + pos: 12.5,24.5 parent: 2 - - uid: 7404 + - uid: 8526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,0.5 + pos: 10.5,24.5 parent: 2 - - uid: 7405 + - uid: 13001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,0.5 + pos: 11.5,31.5 parent: 2 - - uid: 7406 +- proto: CrateEngineeringAMEJar + entities: + - uid: 5263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,0.5 + pos: 28.5,-38.5 parent: 2 - - uid: 7407 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 5235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 + pos: 28.5,-40.5 parent: 2 - - uid: 7408 + - type: Pullable + prevFixedRotation: True +- proto: CrateEngineeringCableBulk + entities: + - uid: 782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,0.5 + pos: 20.5,-23.5 parent: 2 - - uid: 7457 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 5526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 + pos: 87.5,0.5 parent: 2 - - uid: 7458 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateEngineeringCableLV + entities: + - uid: 2223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,19.5 + pos: 49.5,28.5 parent: 2 - - uid: 7459 + - uid: 12353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,23.5 + pos: 5.5,-8.5 parent: 2 - - uid: 7567 +- proto: CrateEngineeringCableMV + entities: + - uid: 5686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,21.5 + pos: 10.5,-31.5 parent: 2 - - uid: 7571 +- proto: CrateEngineeringSecure + entities: + - uid: 5625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 + pos: 11.5,-25.5 parent: 2 - - uid: 7572 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 784 + - 1239 + - 1460 + - 1842 + - 2129 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFilledSpawner + entities: + - uid: 6861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 + pos: 9.5,26.5 parent: 2 - - uid: 7681 + - uid: 6864 components: - type: Transform - pos: 33.5,19.5 + pos: 9.5,24.5 parent: 2 - - uid: 7774 + - uid: 8165 components: - type: Transform - pos: 33.5,21.5 + pos: 11.5,24.5 parent: 2 - - uid: 7780 + - uid: 8168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,18.5 + pos: 11.5,26.5 parent: 2 - - uid: 7956 + - uid: 9306 components: - type: Transform - pos: 33.5,20.5 + pos: 11.5,30.5 parent: 2 - - uid: 8270 + - uid: 11164 components: - type: Transform - pos: 12.5,14.5 + pos: 13.5,31.5 parent: 2 - - uid: 8271 + - uid: 14775 components: - type: Transform - pos: 11.5,16.5 + pos: 12.5,26.5 parent: 2 - - uid: 8275 + - uid: 14777 components: - type: Transform - pos: 11.5,17.5 + pos: 13.5,30.5 parent: 2 - - uid: 8278 +- proto: CrateFreezer + entities: + - uid: 740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 + pos: 31.5,-11.5 parent: 2 - - uid: 8279 + - uid: 13109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,18.5 + pos: 67.5,-5.5 parent: 2 - - uid: 8280 +- proto: CrateGenericSteel + entities: + - uid: 3720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,19.5 + pos: 89.5,-7.5 parent: 2 - - uid: 8281 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 3721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 + pos: 90.5,-7.5 parent: 2 - - uid: 8282 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateMaterialSteel + entities: + - uid: 5687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 + pos: 11.5,-31.5 parent: 2 - - uid: 8928 + - uid: 13043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-0.5 + pos: 33.5,-52.5 parent: 2 - - uid: 8929 +- proto: CrateMedicalSurgery + entities: + - uid: 5086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-1.5 + pos: 64.5,-3.5 parent: 2 - - uid: 8973 +- proto: CrateMousetrapBoxes + entities: + - uid: 8819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-2.5 + pos: 9.5,-18.5 parent: 2 - - uid: 8974 +- proto: CrateNPCChicken + entities: + - uid: 6753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-3.5 + pos: 46.5,-10.5 parent: 2 - - uid: 8975 +- proto: CrateNPCCow + entities: + - uid: 6752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-4.5 + pos: 47.5,-10.5 parent: 2 - - uid: 8976 +- proto: CrateNPCHamlet + entities: + - uid: 12796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-5.5 + pos: 29.5,47.5 parent: 2 - - uid: 8977 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 2153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-6.5 + pos: 40.5,28.5 parent: 2 - - uid: 8978 +- proto: CrateTrashCart + entities: + - uid: 7822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-7.5 + pos: 44.5,27.5 parent: 2 - - uid: 8979 + - uid: 13122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-8.5 + pos: 55.5,5.5 parent: 2 - - uid: 9405 + - uid: 13123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,42.5 + pos: 23.5,8.5 parent: 2 - - uid: 9406 + - uid: 13124 components: - type: Transform - pos: 32.5,43.5 + pos: 19.5,26.5 parent: 2 - - uid: 9407 +- proto: CrateTrashCartJani + entities: + - uid: 12906 components: - type: Transform - pos: 32.5,44.5 + pos: 6.5,-6.5 parent: 2 - - uid: 9408 +- proto: CrayonBox + entities: + - uid: 4695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,45.5 + pos: 20.5,15.5 parent: 2 - - uid: 9409 + - uid: 11395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,45.5 + pos: 25.423948,6.293049 parent: 2 - - uid: 9410 + - uid: 11396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,45.5 + pos: 30.486448,7.511799 parent: 2 - - uid: 9412 + - uid: 13631 components: - type: Transform - pos: 28.5,43.5 + pos: 55.5,31.5 parent: 2 - - uid: 9413 +- proto: CrayonRainbow + entities: + - uid: 12700 components: - type: Transform - pos: 28.5,42.5 + pos: 106.45511,-16.386364 parent: 2 - - uid: 9414 +- proto: Crematorium + entities: + - uid: 9729 components: - type: Transform - pos: 28.5,41.5 + rot: 1.5707963267948966 rad + pos: 29.5,4.5 parent: 2 - - uid: 9415 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 8231 components: - type: Transform - pos: 28.5,40.5 + pos: 51.5,25.5 parent: 2 - - uid: 9416 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 686 components: - type: Transform - pos: 28.5,39.5 + pos: 30.5,-14.5 parent: 2 - - uid: 9417 + - uid: 1048 components: - type: Transform - pos: 28.5,38.5 + pos: 32.504723,-30.433409 parent: 2 - - uid: 9418 + - uid: 5326 components: - type: Transform - pos: 28.5,37.5 + pos: 55.436665,17.567713 parent: 2 - - uid: 9419 + - uid: 5713 components: - type: Transform - pos: 28.5,36.5 + pos: 77.53034,-13.472758 parent: 2 - - uid: 9421 + - uid: 8688 components: - type: Transform - pos: 26.5,24.5 + pos: 32.5021,27.416605 parent: 2 - - uid: 9422 + - uid: 11129 components: - type: Transform - pos: 26.5,25.5 + pos: 54.629898,-15.278217 parent: 2 - - uid: 9423 +- proto: CryogenicSleepUnit + entities: + - uid: 3187 components: - type: Transform - pos: 26.5,26.5 + rot: 1.5707963267948966 rad + pos: 53.5,32.5 parent: 2 - - uid: 9424 + - uid: 6934 components: - type: Transform - pos: 26.5,27.5 + pos: 22.5,17.5 parent: 2 - - uid: 9425 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 6935 components: - type: Transform - pos: 26.5,28.5 + pos: 22.5,18.5 parent: 2 - - uid: 9426 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 6936 components: - type: Transform - pos: 26.5,29.5 + rot: 3.141592653589793 rad + pos: 20.5,17.5 parent: 2 - - uid: 9427 +- proto: CryoPod + entities: + - uid: 11462 components: - type: Transform - pos: 26.5,30.5 + pos: 58.5,-0.5 parent: 2 - - uid: 9428 + - uid: 11774 components: - type: Transform - pos: 26.5,31.5 + pos: 60.5,-0.5 parent: 2 - - uid: 9429 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 11801 components: - type: Transform - pos: 26.5,32.5 + pos: 61.389576,-0.25500047 parent: 2 - - uid: 9430 + - uid: 11802 components: - type: Transform - pos: 26.5,33.5 + pos: 61.483326,-0.38000047 parent: 2 - - uid: 10256 +- proto: CurtainsOrangeOpen + entities: + - uid: 8076 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 6.5,15.5 parent: 2 - - uid: 10257 +- proto: d6Dice + entities: + - uid: 316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 + rot: 3.141592653589793 rad + pos: 11.493689,4.5440345 parent: 2 - - uid: 10258 + - uid: 5505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + pos: 70.363464,33.795147 parent: 2 - - uid: 10259 + - uid: 5506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 + pos: 70.69159,33.810772 parent: 2 - - uid: 10260 + - uid: 5517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: 3.141592653589793 rad + pos: 70.50039,33.577915 parent: 2 - - uid: 10261 +- proto: DefaultStationBeaconAICore + entities: + - uid: 14515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 + pos: 85.5,30.5 parent: 2 - - uid: 10262 +- proto: DefaultStationBeaconAME + entities: + - uid: 12372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 31.5,-40.5 parent: 2 - - uid: 10263 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 12378 components: - type: Transform - pos: 12.5,-2.5 + pos: 68.5,14.5 parent: 2 - - uid: 10264 +- proto: DefaultStationBeaconArmory + entities: + - uid: 12371 components: - type: Transform - pos: 12.5,-1.5 + pos: 40.5,27.5 parent: 2 - - uid: 10265 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 14028 components: - type: Transform - pos: 12.5,-0.5 + pos: -23.5,-12.5 parent: 2 - - uid: 10587 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 12367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,12.5 + pos: 62.5,25.5 parent: 2 - - uid: 10588 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 12366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,13.5 + pos: 30.5,-26.5 parent: 2 - - uid: 10589 +- proto: DefaultStationBeaconBar + entities: + - uid: 11974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,21.5 + pos: 32.5,-3.5 parent: 2 - - uid: 10590 +- proto: DefaultStationBeaconBotany + entities: + - uid: 11007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,20.5 + pos: 44.5,-3.5 parent: 2 - - uid: 10591 +- proto: DefaultStationBeaconBridge + entities: + - uid: 12106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,19.5 + pos: 26.5,45.5 parent: 2 - - uid: 10592 +- proto: DefaultStationBeaconBrig + entities: + - uid: 12365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,17.5 + pos: 32.5,23.5 parent: 2 - - uid: 10593 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 12385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 + pos: 31.5,40.5 parent: 2 - - uid: 10594 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 12386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,15.5 + pos: 10.5,23.5 parent: 2 - - uid: 10595 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 12387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 + pos: 19.5,22.5 parent: 2 - - uid: 10596 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 12363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 + pos: 11.5,-35.5 parent: 2 - - uid: 10597 +- proto: DefaultStationBeaconChapel + entities: + - uid: 12827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + pos: 36.5,7.5 parent: 2 - - uid: 10603 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 12828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,18.5 + pos: 50.5,-6.5 parent: 2 - - uid: 10604 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 12364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,18.5 + pos: 57.5,-10.5 parent: 2 - - uid: 10605 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 12849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,18.5 + pos: 20.5,31.5 parent: 2 - - uid: 10606 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 12850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,18.5 + pos: 59.5,-1.5 parent: 2 - - uid: 10607 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 6937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 + pos: 21.5,17.5 parent: 2 - - uid: 10608 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 12851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,18.5 + pos: 42.5,18.5 parent: 2 - - uid: 10609 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 12852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,18.5 + pos: 0.5,-30.5 parent: 2 - - uid: 10610 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 13729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + pos: 86.5,4.5 parent: 2 - - uid: 10611 +- proto: DefaultStationBeaconEvac + entities: + - uid: 4139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,14.5 + pos: -7.5,-0.5 parent: 2 - - uid: 10612 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 13130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,14.5 + pos: 9.5,-6.5 parent: 2 - - uid: 10613 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 13131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 + pos: 17.5,-4.5 parent: 2 - - uid: 10614 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 13132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 + pos: 43.5,22.5 parent: 2 - - uid: 10615 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 13133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + pos: 3.5,-5.5 parent: 2 - - uid: 10616 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 13134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,14.5 + pos: 35.5,-9.5 parent: 2 - - uid: 10617 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 13135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,14.5 + pos: -1.5,-9.5 parent: 2 - - uid: 10618 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 13136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,14.5 + pos: 10.5,5.5 parent: 2 - - uid: 10619 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 13137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,14.5 + pos: 70.5,-3.5 parent: 2 - - uid: 10620 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 13518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,14.5 + pos: 56.5,36.5 parent: 2 - - uid: 10621 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 13139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,14.5 + pos: 26.5,-32.5 parent: 2 - - uid: 10623 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 14772 components: - type: Transform - pos: 41.5,13.5 + pos: 7.5,18.5 parent: 2 - - uid: 10624 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 13141 components: - type: Transform - pos: 41.5,12.5 + pos: 60.5,9.5 parent: 2 - - uid: 10625 +- proto: DefaultStationBeaconRND + entities: + - uid: 13168 components: - type: Transform - pos: 41.5,11.5 + pos: 51.5,19.5 parent: 2 - - uid: 10626 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 13169 components: - type: Transform - pos: 41.5,10.5 + pos: 51.5,10.5 parent: 2 - - uid: 10627 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 14771 components: - type: Transform - pos: 41.5,9.5 + pos: 7.5,33.5 parent: 2 - - uid: 10628 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 2288 components: - type: Transform - pos: 41.5,8.5 + pos: 31.5,36.5 parent: 2 - - uid: 10629 + - uid: 13171 components: - type: Transform - pos: 41.5,7.5 + pos: 31.5,35.5 parent: 2 - - uid: 10630 + - uid: 13172 components: - type: Transform - pos: 41.5,6.5 + pos: 50.5,24.5 parent: 2 - - uid: 10631 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 13180 components: - type: Transform - pos: 41.5,5.5 + pos: 21.5,-38.5 parent: 2 - - uid: 10632 +- proto: DefaultStationBeaconSolars + entities: + - uid: 13178 components: - type: Transform - pos: 41.5,4.5 + pos: 70.5,45.5 parent: 2 - - uid: 10633 + - uid: 13179 components: - type: Transform - pos: 41.5,3.5 + pos: 3.5,-35.5 parent: 2 - - uid: 10634 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 13175 components: - type: Transform - pos: 41.5,2.5 + pos: 37.5,-15.5 parent: 2 - - uid: 11441 +- proto: DefaultStationBeaconTEG + entities: + - uid: 5665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 + pos: 41.5,-46.5 parent: 2 - - uid: 11442 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 13173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-8.5 + pos: 15.5,-17.5 parent: 2 - - uid: 11443 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 13174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 + pos: 30.5,-16.5 parent: 2 - - uid: 11444 +- proto: DefaultStationBeaconVault + entities: + - uid: 13176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 + pos: 18.5,41.5 parent: 2 - - uid: 11445 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 13177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 + pos: 38.5,22.5 parent: 2 - - uid: 11446 +- proto: Defibrillator + entities: + - uid: 11416 components: - type: Transform - pos: 56.5,-5.5 + pos: 67.479836,-4.0156612 parent: 2 - - uid: 11447 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 9627 components: - type: Transform - pos: 56.5,-4.5 + pos: 45.5,5.5 parent: 2 - - uid: 11448 + - uid: 12817 components: - type: Transform - pos: 56.5,-3.5 + pos: 74.5,3.5 parent: 2 - - uid: 11449 + - uid: 12818 components: - type: Transform - pos: 56.5,-2.5 + pos: 63.5,5.5 parent: 2 - - uid: 11450 + - uid: 13108 components: - type: Transform - pos: 56.5,-1.5 + rot: 1.5707963267948966 rad + pos: 59.5,-10.5 parent: 2 - - uid: 11458 +- proto: DeployableBarrier + entities: + - uid: 257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 + pos: 39.5,28.5 parent: 2 - - uid: 11459 + - uid: 9602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,2.5 + pos: 36.5,23.5 parent: 2 - - uid: 11461 +- proto: DeskBell + entities: + - uid: 1566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,0.5 + pos: 34.50083,-8.541687 parent: 2 - - uid: 11463 + - uid: 14993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-0.5 + pos: 51.458427,1.5715649 parent: 2 - - uid: 11464 +- proto: DiseaseDiagnoser + entities: + - uid: 12156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-0.5 + pos: 82.5,-7.5 parent: 2 - - uid: 11466 +- proto: DiseaseSwab + entities: + - uid: 13754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-0.5 + pos: 56.618065,41.538536 parent: 2 - - uid: 11467 + - uid: 13755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 + pos: 56.451397,41.674046 parent: 2 - - uid: 11468 +- proto: DisposalBend + entities: + - uid: 1228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-0.5 + pos: 34.5,-9.5 parent: 2 - - uid: 11469 + - uid: 2376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,10.5 parent: 2 - - uid: 11470 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-0.5 + rot: -1.5707963267948966 rad + pos: 33.5,23.5 parent: 2 - - uid: 11471 + - uid: 5777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 + pos: 31.5,-28.5 parent: 2 - - uid: 11473 + - uid: 5778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-0.5 + rot: -1.5707963267948966 rad + pos: 31.5,-32.5 parent: 2 - - uid: 11474 + - uid: 5779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 26.5,-32.5 parent: 2 - - uid: 11479 + - uid: 5780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,1.5 + rot: 3.141592653589793 rad + pos: 26.5,-33.5 parent: 2 - - uid: 11480 + - uid: 5781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,1.5 + rot: 3.141592653589793 rad + pos: 16.5,-34.5 parent: 2 - - uid: 11481 + - uid: 5782 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,1.5 + pos: 17.5,-34.5 parent: 2 - - uid: 11482 + - uid: 5800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,1.5 + rot: 1.5707963267948966 rad + pos: 17.5,-28.5 parent: 2 - - uid: 11483 + - uid: 5820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,1.5 + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 parent: 2 - - uid: 11484 + - uid: 5821 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,1.5 + pos: 11.5,-23.5 parent: 2 - - uid: 11485 + - uid: 5822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,1.5 + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 parent: 2 - - uid: 11486 + - uid: 5823 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,1.5 + pos: 8.5,-24.5 parent: 2 - - uid: 11487 + - uid: 5828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,1.5 + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 parent: 2 - - uid: 11488 + - uid: 5829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,1.5 + pos: 5.5,-30.5 parent: 2 - - uid: 11489 + - uid: 5840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,1.5 + rot: 3.141592653589793 rad + pos: 2.5,-30.5 parent: 2 - - uid: 11490 + - uid: 7289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,1.5 + rot: 3.141592653589793 rad + pos: 35.5,-2.5 parent: 2 - - uid: 11491 + - uid: 7332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,1.5 + rot: 1.5707963267948966 rad + pos: 19.5,13.5 parent: 2 - - uid: 11492 + - uid: 7352 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,1.5 + pos: 19.5,7.5 parent: 2 - - uid: 11493 + - uid: 7393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,1.5 + pos: 29.5,-10.5 parent: 2 - - uid: 11494 + - uid: 7394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,1.5 + rot: 1.5707963267948966 rad + pos: 27.5,-10.5 parent: 2 - - uid: 11495 + - uid: 7395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,1.5 + pos: 27.5,-11.5 parent: 2 - - uid: 11496 + - uid: 7402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,1.5 + pos: 42.5,1.5 parent: 2 - - uid: 11497 + - uid: 7403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,1.5 + rot: 3.141592653589793 rad + pos: 41.5,1.5 parent: 2 - - uid: 11498 + - uid: 7601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,1.5 + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 parent: 2 - - uid: 11499 + - uid: 7751 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,1.5 + pos: 26.5,13.5 parent: 2 - - uid: 11500 + - uid: 8263 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,1.5 + pos: 14.5,18.5 parent: 2 - - uid: 11501 + - uid: 8264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,1.5 + rot: 1.5707963267948966 rad + pos: 11.5,18.5 parent: 2 - - uid: 11502 + - uid: 8265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 + rot: 3.141592653589793 rad + pos: 11.5,15.5 parent: 2 - - uid: 11503 + - uid: 8267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 + pos: 12.5,15.5 parent: 2 - - uid: 11504 + - uid: 8268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,1.5 + pos: 12.5,13.5 parent: 2 - - uid: 11776 + - uid: 8269 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-0.5 + pos: 11.5,13.5 parent: 2 - - uid: 12169 + - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-13.5 + pos: 33.5,-9.5 parent: 2 - - uid: 12426 + - uid: 9401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 + rot: -1.5707963267948966 rad + pos: 32.5,42.5 parent: 2 - - uid: 12427 + - uid: 9402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 + pos: 32.5,45.5 parent: 2 - - uid: 12428 + - uid: 9403 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-14.5 + pos: 28.5,45.5 parent: 2 - - uid: 12429 + - uid: 9432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 + rot: -1.5707963267948966 rad + pos: 28.5,35.5 parent: 2 - - uid: 12430 + - uid: 9433 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-14.5 + pos: 26.5,34.5 parent: 2 - - uid: 12431 + - uid: 9434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-14.5 + pos: 27.5,35.5 parent: 2 - - uid: 12432 + - uid: 10255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 2 - - uid: 12433 + - uid: 10266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 + rot: 3.141592653589793 rad + pos: 12.5,-3.5 parent: 2 - - uid: 12434 + - uid: 10586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 12435 + - uid: 10598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 + rot: -1.5707963267948966 rad + pos: 58.5,14.5 parent: 2 - - uid: 12436 + - uid: 10599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 + pos: 58.5,22.5 parent: 2 - - uid: 12437 + - uid: 10602 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-14.5 + pos: 50.5,18.5 parent: 2 - - uid: 12438 + - uid: 10622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-14.5 + pos: 41.5,14.5 parent: 2 - - uid: 12439 + - uid: 11435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + pos: 53.5,-6.5 parent: 2 - - uid: 12441 + - uid: 11440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-12.5 + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 parent: 2 - - uid: 12442 + - uid: 11451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-11.5 + pos: 56.5,-0.5 parent: 2 - - uid: 12443 + - uid: 11452 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-10.5 + pos: 43.5,-0.5 parent: 2 - - uid: 12444 + - uid: 11453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 + pos: 43.5,0.5 parent: 2 - - uid: 12445 + - uid: 11454 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-8.5 + pos: 52.5,3.5 parent: 2 - - uid: 12446 + - uid: 11455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-7.5 + pos: 54.5,3.5 parent: 2 - - uid: 12448 + - uid: 12470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 parent: 2 - - uid: 12450 + - uid: 13156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 + rot: 1.5707963267948966 rad + pos: 14.5,23.5 parent: 2 - - uid: 12451 + - uid: 13583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-4.5 + pos: 33.5,31.5 parent: 2 - - uid: 12452 + - uid: 14178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + rot: -1.5707963267948966 rad + pos: 79.5,23.5 parent: 2 - - uid: 12453 + - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 + pos: 46.5,-6.5 parent: 2 - - uid: 12454 +- proto: DisposalJunction + entities: + - uid: 2422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-1.5 + rot: -1.5707963267948966 rad + pos: 22.5,13.5 parent: 2 - - uid: 12458 + - uid: 2475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,10.5 parent: 2 - - uid: 12460 + - uid: 5084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + pos: 12.5,0.5 parent: 2 - - uid: 12461 + - uid: 5695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 + rot: 3.141592653589793 rad + pos: 26.5,-25.5 parent: 2 - - uid: 12463 + - uid: 7401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 + rot: -1.5707963267948966 rad + pos: 42.5,0.5 parent: 2 - - uid: 12464 + - uid: 8343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 + rot: -1.5707963267948966 rad + pos: 32.5,0.5 parent: 2 - - uid: 12465 + - uid: 8821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 + rot: -1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - - uid: 12466 + - uid: 9411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 28.5,44.5 parent: 2 - - uid: 12467 + - uid: 9435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + rot: -1.5707963267948966 rad + pos: 27.5,34.5 parent: 2 - - uid: 12468 + - uid: 10600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 58.5,18.5 parent: 2 - - uid: 12469 + - uid: 11456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 parent: 2 - - uid: 12482 +- proto: DisposalJunctionFlipped + entities: + - uid: 1333 components: - type: Transform - pos: 27.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 parent: 2 - - uid: 12491 + - uid: 5141 components: - type: Transform - pos: 27.5,1.5 + pos: 26.5,23.5 parent: 2 - - uid: 12837 + - uid: 5142 components: - type: Transform - pos: 26.5,-27.5 + rot: -1.5707963267948966 rad + pos: 33.5,0.5 parent: 2 - - uid: 12838 + - uid: 7290 components: - type: Transform - pos: 26.5,-26.5 + rot: -1.5707963267948966 rad + pos: 35.5,0.5 parent: 2 -- proto: DisposalTrunk - entities: - - uid: 183 + - uid: 7317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,22.5 + pos: 26.5,-11.5 parent: 2 - - uid: 184 + - uid: 7400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 + rot: -1.5707963267948966 rad + pos: 41.5,0.5 parent: 2 - - uid: 1227 + - uid: 9857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-10.5 + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 parent: 2 - - uid: 2132 + - uid: 10601 components: - type: Transform - pos: 36.5,19.5 + rot: -1.5707963267948966 rad + pos: 54.5,14.5 parent: 2 - - uid: 2320 + - uid: 11436 components: - type: Transform - pos: 4.5,13.5 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 parent: 2 - - uid: 3263 + - uid: 11460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,20.5 + pos: 54.5,1.5 parent: 2 - - uid: 5143 +- proto: DisposalPipe + entities: + - uid: 28 components: - type: Transform - pos: 32.5,2.5 + rot: 3.141592653589793 rad + pos: 26.5,16.5 parent: 2 - - uid: 5692 + - uid: 256 components: - type: Transform - pos: 16.5,-33.5 + rot: 3.141592653589793 rad + pos: 26.5,15.5 parent: 2 - - uid: 5693 + - uid: 359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 parent: 2 - - uid: 5694 + - uid: 385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 + rot: 3.141592653589793 rad + pos: 26.5,18.5 parent: 2 - - uid: 5839 + - uid: 584 components: - type: Transform - pos: 2.5,-28.5 + rot: 3.141592653589793 rad + pos: 26.5,-24.5 parent: 2 - - uid: 5878 + - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 2 - - uid: 5969 - components: - - type: Transform - pos: 22.5,15.5 + pos: 23.5,13.5 parent: 2 - - uid: 6008 + - uid: 2133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,42.5 + rot: -1.5707963267948966 rad + pos: 31.5,23.5 parent: 2 - - uid: 7288 + - uid: 2314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 + rot: 3.141592653589793 rad + pos: 26.5,17.5 parent: 2 - - uid: 7392 + - uid: 2377 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-11.5 + pos: 4.5,12.5 parent: 2 - - uid: 7398 + - uid: 5534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-1.5 + pos: 32.5,1.5 parent: 2 - - uid: 9404 + - uid: 5697 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,44.5 + pos: 27.5,-28.5 parent: 2 - - uid: 9420 + - uid: 5698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 + rot: 1.5707963267948966 rad + pos: 28.5,-28.5 parent: 2 - - uid: 10254 + - uid: 5699 components: - type: Transform - pos: 20.5,-2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-28.5 parent: 2 - - uid: 10585 + - uid: 5700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 + rot: 1.5707963267948966 rad + pos: 30.5,-28.5 parent: 2 - - uid: 11434 + - uid: 5770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 + pos: 31.5,-29.5 parent: 2 - - uid: 11437 + - uid: 5771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-9.5 + pos: 31.5,-30.5 parent: 2 - - uid: 11457 + - uid: 5772 components: - type: Transform - pos: 52.5,4.5 + pos: 31.5,-31.5 parent: 2 - - uid: 11478 + - uid: 5773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,1.5 + pos: 30.5,-32.5 parent: 2 - - uid: 12422 + - uid: 5774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 + rot: -1.5707963267948966 rad + pos: 29.5,-32.5 parent: 2 - - uid: 12471 + - uid: 5775 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: 28.5,-32.5 parent: 2 - - uid: 12479 + - uid: 5776 components: - type: Transform - pos: 27.5,3.5 + rot: -1.5707963267948966 rad + pos: 27.5,-32.5 parent: 2 -- proto: DisposalUnit - entities: - - uid: 394 + - uid: 5784 components: - type: Transform - pos: 4.5,13.5 + rot: 3.141592653589793 rad + pos: 17.5,-33.5 parent: 2 - - uid: 1150 + - uid: 5788 components: - type: Transform - pos: 25.5,5.5 + rot: 3.141592653589793 rad + pos: 17.5,-32.5 parent: 2 - - uid: 1229 + - uid: 5789 components: - type: Transform - pos: 34.5,-10.5 + rot: 3.141592653589793 rad + pos: 17.5,-31.5 parent: 2 - - uid: 1321 + - uid: 5790 components: - type: Transform - pos: 29.5,-11.5 + rot: 3.141592653589793 rad + pos: 17.5,-30.5 parent: 2 - - uid: 1531 + - uid: 5791 components: - type: Transform - pos: 36.5,-2.5 + rot: 3.141592653589793 rad + pos: 17.5,-29.5 parent: 2 - - uid: 2152 + - uid: 5792 components: - type: Transform - pos: 13.5,20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-28.5 parent: 2 - - uid: 2477 + - uid: 5793 components: - type: Transform - pos: 36.5,19.5 + rot: 1.5707963267948966 rad + pos: 19.5,-28.5 parent: 2 - - uid: 4697 + - uid: 5794 components: - type: Transform - pos: 22.5,15.5 + rot: 1.5707963267948966 rad + pos: 20.5,-28.5 parent: 2 - - uid: 4979 + - uid: 5795 components: - type: Transform - pos: 27.5,44.5 + rot: 1.5707963267948966 rad + pos: 21.5,-28.5 parent: 2 - - uid: 5047 + - uid: 5796 components: - type: Transform - pos: 52.5,4.5 + rot: 1.5707963267948966 rad + pos: 22.5,-28.5 parent: 2 - - uid: 5075 + - uid: 5797 components: - type: Transform - pos: 53.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 parent: 2 - - uid: 5150 + - uid: 5798 components: - type: Transform - pos: 32.5,2.5 + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 parent: 2 - - uid: 5209 + - uid: 5799 components: - type: Transform - pos: 70.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 parent: 2 - - uid: 5228 + - uid: 5802 components: - type: Transform - pos: 82.5,-3.5 + rot: 3.141592653589793 rad + pos: 26.5,-23.5 parent: 2 - - uid: 5341 + - uid: 5803 components: - type: Transform - pos: 57.5,22.5 + rot: 3.141592653589793 rad + pos: 26.5,-22.5 parent: 2 - - uid: 5392 + - uid: 5804 components: - type: Transform - pos: 55.5,11.5 + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 parent: 2 - - uid: 5411 + - uid: 5805 components: - type: Transform - pos: 30.5,42.5 + rot: 1.5707963267948966 rad + pos: 24.5,-21.5 parent: 2 - - uid: 6427 + - uid: 5806 components: - type: Transform - pos: 17.5,7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 parent: 2 - - uid: 7297 + - uid: 5807 components: - type: Transform - pos: 27.5,-33.5 + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 parent: 2 - - uid: 7300 + - uid: 5809 components: - type: Transform - pos: 16.5,-33.5 + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 parent: 2 - - uid: 7397 + - uid: 5810 components: - type: Transform - pos: 41.5,-1.5 + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 parent: 2 - - uid: 8361 + - uid: 5811 components: - type: Transform - pos: 27.5,-25.5 + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 parent: 2 - - uid: 8848 + - uid: 5812 components: - type: Transform - pos: 105.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 parent: 2 - - uid: 8857 + - uid: 5814 components: - type: Transform - pos: 100.5,-10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 parent: 2 - - uid: 9431 + - uid: 5815 components: - type: Transform - pos: 28.5,34.5 + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 parent: 2 - - uid: 10069 + - uid: 5816 components: - type: Transform - pos: 54.5,-9.5 + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 parent: 2 - - uid: 10118 + - uid: 5817 components: - type: Transform - pos: 50.5,17.5 + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 parent: 2 - - uid: 10253 + - uid: 5818 components: - type: Transform - pos: 20.5,-2.5 + rot: 1.5707963267948966 rad + pos: 13.5,-21.5 parent: 2 - - uid: 11433 + - uid: 5819 components: - type: Transform - pos: 81.5,1.5 + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 parent: 2 - - uid: 12421 + - uid: 5825 components: - type: Transform - pos: -21.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 parent: 2 - - uid: 12478 + - uid: 5826 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: 10.5,-23.5 parent: 2 - - uid: 12492 + - uid: 5827 components: - type: Transform - pos: 27.5,3.5 + rot: 3.141592653589793 rad + pos: 11.5,-22.5 parent: 2 -- proto: DisposalYJunction - entities: - - uid: 2442 + - uid: 5830 components: - type: Transform - pos: 5.5,10.5 + rot: 3.141592653589793 rad + pos: 5.5,-29.5 parent: 2 - - uid: 5696 + - uid: 5831 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-28.5 + pos: 5.5,-28.5 parent: 2 - - uid: 5801 + - uid: 5832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 + rot: 3.141592653589793 rad + pos: 5.5,-27.5 parent: 2 - - uid: 7305 + - uid: 5833 components: - type: Transform - pos: 26.5,0.5 + rot: 3.141592653589793 rad + pos: 5.5,-26.5 parent: 2 - - uid: 7356 + - uid: 5834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 + rot: 3.141592653589793 rad + pos: 5.5,-25.5 parent: 2 - - uid: 8820 + - uid: 5835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,0.5 + pos: 6.5,-24.5 parent: 2 -- proto: DogBed - entities: - - uid: 41 + - uid: 5836 components: - type: Transform - pos: 12.5,31.5 + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 parent: 2 - - uid: 9716 + - uid: 5837 components: - type: Transform - pos: 51.5,-8.5 + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 parent: 2 - - uid: 10280 + - uid: 5838 components: - type: Transform - pos: 19.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 parent: 2 -- proto: DonkpocketBoxSpawner - entities: - - uid: 11431 + - uid: 5841 components: - type: Transform - pos: 76.5,4.5 + rot: 3.141592653589793 rad + pos: 2.5,-29.5 parent: 2 -- proto: DoorElectronics - entities: - - uid: 1046 + - uid: 6848 components: - type: Transform - pos: 32.489098,-30.527159 + rot: -1.5707963267948966 rad + pos: 27.5,23.5 parent: 2 - - uid: 1047 + - uid: 6849 components: - type: Transform - pos: 32.489098,-30.324034 + rot: -1.5707963267948966 rad + pos: 29.5,23.5 parent: 2 - - uid: 5440 + - uid: 6850 components: - type: Transform - pos: 9.474669,-14.422774 + rot: -1.5707963267948966 rad + pos: 32.5,23.5 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 5530 + - uid: 6877 components: - type: Transform - pos: 64.522316,20.63157 + rot: 1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 -- proto: DresserCaptainFilled - entities: - - uid: 10279 + - uid: 6878 components: - type: Transform - pos: 37.5,40.5 + rot: 3.141592653589793 rad + pos: 26.5,14.5 parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 13469 + - uid: 6879 components: - type: Transform - pos: 9.5,-40.5 + rot: 1.5707963267948966 rad + pos: 25.5,13.5 parent: 2 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 1179 + - uid: 6883 components: - type: Transform - pos: 58.5,-10.5 + rot: 3.141592653589793 rad + pos: 26.5,22.5 parent: 2 - - type: Storage - storedItems: - 542: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 542 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 9438 + - uid: 6905 components: - type: Transform - pos: 18.5,-5.5 + pos: 14.5,22.5 parent: 2 - - type: Storage - storedItems: - 544: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 544 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 386 + - uid: 6906 components: - type: Transform - pos: 45.5,22.5 + pos: 14.5,21.5 parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 941 + - uid: 6907 components: - type: Transform - pos: 13.5,30.5 + pos: 14.5,20.5 parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 565 + - uid: 7291 components: - type: Transform - pos: 60.5,11.5 + rot: 3.141592653589793 rad + pos: 35.5,-1.5 parent: 2 - - type: Storage - storedItems: - 4300: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 4300 -- proto: DrinkFlask - entities: - - uid: 9223 + - uid: 7292 components: - type: Transform - pos: 37.68926,43.584465 + rot: 3.141592653589793 rad + pos: 35.5,-0.5 parent: 2 -- proto: DrinkFlaskBar - entities: - - uid: 12497 + - uid: 7293 components: - type: Transform - pos: 63.594597,-16.258825 + rot: 1.5707963267948966 rad + pos: 34.5,0.5 parent: 2 -- proto: DrinkGlass - entities: - - uid: 11829 + - uid: 7296 components: - type: Transform - pos: 67.3298,-14.594364 + rot: 1.5707963267948966 rad + pos: 31.5,0.5 parent: 2 - - uid: 11831 + - uid: 7301 components: - type: Transform - pos: 67.6423,-14.594364 + rot: 1.5707963267948966 rad + pos: 30.5,0.5 parent: 2 -- proto: DrinkGoldenCup - entities: - - uid: 12097 + - uid: 7302 components: - type: Transform - pos: 19.490185,41.41655 + rot: 1.5707963267948966 rad + pos: 29.5,0.5 parent: 2 -- proto: DrinkHotCoco - entities: - - uid: 5451 + - uid: 7303 components: - type: Transform - pos: 71.508354,37.570084 + rot: 1.5707963267948966 rad + pos: 28.5,0.5 parent: 2 -- proto: DrinkLemonadeGlass - entities: - - uid: 5452 + - uid: 7306 components: - type: Transform - pos: 71.477104,40.663834 + pos: 26.5,-0.5 parent: 2 -- proto: DrinkMugDog - entities: - - uid: 11968 + - uid: 7307 components: - type: Transform - pos: 55.92937,-10.550333 + pos: 26.5,-1.5 parent: 2 -- proto: DrinkMugRainbow - entities: - - uid: 12701 + - uid: 7308 components: - type: Transform - pos: 107.25198,-16.370739 + pos: 26.5,-2.5 parent: 2 -- proto: DrinkShaker - entities: - - uid: 590 + - uid: 7309 components: - type: Transform - pos: 38.536613,-9.567179 + pos: 26.5,-3.5 parent: 2 - - uid: 11828 + - uid: 7310 components: - type: Transform - pos: 67.47043,-15.094364 + pos: 26.5,-4.5 parent: 2 -- proto: DrinkWaterCup - entities: - - uid: 5644 + - uid: 7311 components: - type: Transform - pos: 16.679596,-23.530558 + pos: 26.5,-5.5 parent: 2 - - uid: 5645 + - uid: 7312 components: - type: Transform - pos: 16.678108,-23.473524 + pos: 26.5,-6.5 parent: 2 - - uid: 5646 + - uid: 7313 components: - type: Transform - pos: 16.67348,-23.408709 + pos: 26.5,-7.5 parent: 2 - - uid: 5647 + - uid: 7314 components: - type: Transform - pos: 16.678108,-23.343895 + pos: 26.5,-8.5 parent: 2 - - uid: 10898 + - uid: 7315 components: - type: Transform - pos: 64.36203,13.455295 + pos: 26.5,-9.5 parent: 2 - - uid: 10899 + - uid: 7316 components: - type: Transform - pos: 64.36203,13.580295 + pos: 26.5,-10.5 parent: 2 - - uid: 10900 + - uid: 7318 components: - type: Transform - pos: 64.36203,13.72092 + pos: 26.5,-12.5 parent: 2 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 6809 + - uid: 7319 components: - type: Transform - pos: 57.63163,-13.7188425 + pos: 26.5,-13.5 parent: 2 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 7304 + - uid: 7320 components: - type: Transform - pos: 52.427402,31.544449 + pos: 26.5,-14.5 parent: 2 -- proto: EmergencyLight - entities: - - uid: 1547 + - uid: 7321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-14.5 + pos: 26.5,-15.5 parent: 2 - - uid: 7742 + - uid: 7322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-14.5 + pos: 26.5,-16.5 parent: 2 - - uid: 11333 + - uid: 7323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,33.5 + pos: 26.5,-17.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12374 + - uid: 7324 components: - type: Transform - pos: 10.5,1.5 + pos: 26.5,-18.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12375 + - uid: 7325 components: - type: Transform - pos: 36.5,1.5 + pos: 26.5,-19.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12376 + - uid: 7326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-0.5 + pos: 26.5,-20.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12377 + - uid: 7330 components: - type: Transform - pos: 16.5,-33.5 + pos: 22.5,14.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12379 + - uid: 7333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,25.5 + rot: 1.5707963267948966 rad + pos: 21.5,13.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12380 + - uid: 7334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,44.5 + rot: 1.5707963267948966 rad + pos: 20.5,13.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12381 + - uid: 7335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,21.5 + pos: 19.5,12.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12382 + - uid: 7336 components: - type: Transform - pos: 33.5,15.5 + pos: 19.5,11.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12383 + - uid: 7337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,18.5 + pos: 18.5,10.5 parent: 2 - - type: ActiveEmergencyLight -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 9622 + - uid: 7338 components: - type: Transform - pos: 45.379837,4.5137033 + rot: -1.5707963267948966 rad + pos: 17.5,10.5 parent: 2 -- proto: Emitter - entities: - - uid: 748 + - uid: 7339 components: - type: Transform - pos: 9.5,-29.5 + rot: -1.5707963267948966 rad + pos: 16.5,10.5 parent: 2 - - uid: 749 + - uid: 7340 components: - type: Transform - pos: 9.5,-30.5 + rot: -1.5707963267948966 rad + pos: 15.5,10.5 parent: 2 - - uid: 10875 + - uid: 7341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-47.5 + rot: -1.5707963267948966 rad + pos: 14.5,10.5 parent: 2 - - uid: 10876 + - uid: 7343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-55.5 + rot: -1.5707963267948966 rad + pos: 13.5,10.5 parent: 2 - - uid: 10904 + - uid: 7345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-47.5 + pos: 12.5,10.5 parent: 2 - - uid: 10958 + - uid: 7347 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-55.5 + pos: 10.5,10.5 parent: 2 - - uid: 10963 + - uid: 7348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-58.5 + rot: -1.5707963267948966 rad + pos: 9.5,10.5 parent: 2 - - uid: 10965 + - uid: 7349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-58.5 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 parent: 2 -- proto: EncryptionKeyCargo - entities: - - uid: 412 - components: - - type: Transform - parent: 5183 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 413 + - uid: 7350 components: - type: Transform - parent: 10443 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 414 + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - uid: 7351 components: - type: Transform - parent: 12111 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 535 + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 7353 components: - type: Transform - parent: 533 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 421 + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 7354 components: - type: Transform - parent: 12112 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 422 + pos: 19.5,8.5 + parent: 2 + - uid: 7355 components: - type: Transform - parent: 12232 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 423 + pos: 19.5,9.5 + parent: 2 + - uid: 7358 components: - type: Transform - parent: 12233 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 424 + pos: 5.5,9.5 + parent: 2 + - uid: 7359 components: - type: Transform - parent: 12395 - - type: Physics - canCollide: False -- proto: ExosuitFabricator - entities: - - uid: 12579 + pos: 5.5,8.5 + parent: 2 + - uid: 7360 components: - type: Transform - pos: 51.5,11.5 + pos: 5.5,7.5 parent: 2 -- proto: ExplosivesSignMed - entities: - - uid: 10438 + - uid: 7361 components: - type: Transform - pos: 61.5,28.5 + pos: 5.5,6.5 parent: 2 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 315 + - uid: 7362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,4.5 + pos: 5.5,5.5 parent: 2 - - uid: 582 + - uid: 7363 components: - type: Transform - pos: 21.5,-4.5 + pos: 5.5,4.5 parent: 2 - - uid: 783 + - uid: 7367 components: - type: Transform - pos: 20.5,-22.5 + pos: 5.5,3.5 parent: 2 - - uid: 1947 + - uid: 7368 components: - type: Transform - pos: 32.5,-29.5 + pos: 5.5,2.5 parent: 2 - - uid: 5111 + - uid: 7369 components: - type: Transform - pos: 52.5,12.5 + pos: 5.5,1.5 parent: 2 - - uid: 5336 + - uid: 7370 components: - type: Transform - pos: 53.5,22.5 + rot: -1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - - uid: 5337 + - uid: 7371 components: - type: Transform - pos: 50.5,22.5 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 parent: 2 - - uid: 5347 + - uid: 7372 components: - type: Transform - pos: 62.5,21.5 + rot: -1.5707963267948966 rad + pos: 8.5,0.5 parent: 2 - - uid: 5348 + - uid: 7373 components: - type: Transform - pos: 68.5,12.5 + rot: -1.5707963267948966 rad + pos: 9.5,0.5 parent: 2 - - uid: 5658 + - uid: 7374 components: - type: Transform - pos: 29.5,-33.5 + rot: -1.5707963267948966 rad + pos: 10.5,0.5 parent: 2 - - uid: 5659 + - uid: 7375 components: - type: Transform - pos: 23.5,-33.5 + rot: -1.5707963267948966 rad + pos: 11.5,0.5 parent: 2 - - uid: 6026 + - uid: 7377 components: - type: Transform - pos: 8.5,-13.5 + rot: -1.5707963267948966 rad + pos: 13.5,0.5 parent: 2 - - uid: 6069 + - uid: 7378 components: - type: Transform - pos: 14.5,2.5 + rot: -1.5707963267948966 rad + pos: 14.5,0.5 parent: 2 - - uid: 6635 + - uid: 7379 components: - type: Transform - pos: 40.5,-5.5 + rot: -1.5707963267948966 rad + pos: 15.5,0.5 parent: 2 - - uid: 7818 + - uid: 7380 components: - type: Transform - pos: -21.5,-15.5 + rot: -1.5707963267948966 rad + pos: 16.5,0.5 parent: 2 - - uid: 7833 + - uid: 7381 components: - type: Transform - pos: -9.5,-15.5 + rot: -1.5707963267948966 rad + pos: 17.5,0.5 parent: 2 - - uid: 8985 + - uid: 7382 components: - type: Transform - pos: 36.5,16.5 + rot: -1.5707963267948966 rad + pos: 18.5,0.5 parent: 2 - - uid: 9399 + - uid: 7383 components: - type: Transform - pos: 33.5,47.5 + rot: -1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 - - uid: 9628 + - uid: 7384 components: - type: Transform - pos: 47.5,5.5 + rot: -1.5707963267948966 rad + pos: 20.5,0.5 parent: 2 - - uid: 11066 + - uid: 7385 components: - type: Transform - pos: 14.5,11.5 + rot: -1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 -- proto: FaxMachineBase - entities: - - uid: 1622 + - uid: 7386 components: - type: Transform - pos: 63.5,10.5 + rot: -1.5707963267948966 rad + pos: 22.5,0.5 parent: 2 - - type: FaxMachine - name: RD Office - - uid: 1649 + - uid: 7387 components: - type: Transform - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: 23.5,0.5 parent: 2 - - type: FaxMachine - name: Library - - uid: 2134 + - uid: 7388 components: - type: Transform - pos: 11.5,31.5 + rot: -1.5707963267948966 rad + pos: 24.5,0.5 parent: 2 - - type: FaxMachine - name: QM Office - - uid: 2394 + - uid: 7389 components: - type: Transform - pos: 12.5,-33.5 + rot: -1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - - type: FaxMachine - name: CE Office - - uid: 7566 + - uid: 7396 components: - type: Transform - pos: 45.5,24.5 + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - - type: FaxMachine - name: HoS Office - - uid: 7728 + - uid: 7399 components: - type: Transform - pos: -1.5,-11.5 + rot: 3.141592653589793 rad + pos: 41.5,-0.5 parent: 2 - - type: FaxMachine - name: Law Office - - uid: 7745 + - uid: 7404 components: - type: Transform - pos: 20.5,24.5 + rot: 1.5707963267948966 rad + pos: 40.5,0.5 parent: 2 - - type: FaxMachine - name: Cargo - - uid: 8320 + - uid: 7405 components: - type: Transform - pos: 36.5,25.5 + rot: 1.5707963267948966 rad + pos: 39.5,0.5 parent: 2 - - type: FaxMachine - name: Security - - uid: 9006 + - uid: 7406 components: - type: Transform - pos: 18.5,29.5 + rot: 1.5707963267948966 rad + pos: 38.5,0.5 parent: 2 - - type: FaxMachine - name: Court House - - uid: 10070 + - uid: 7407 components: - type: Transform - pos: 58.5,-9.5 + rot: 1.5707963267948966 rad + pos: 37.5,0.5 parent: 2 - - type: FaxMachine - name: CMO Office - - uid: 10271 + - uid: 7408 components: - type: Transform - pos: 18.5,-2.5 + rot: 1.5707963267948966 rad + pos: 36.5,0.5 parent: 2 - - type: FaxMachine - name: HoP Office - - uid: 11947 + - uid: 7450 components: - type: Transform - pos: 23.5,40.5 + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 parent: 2 - - type: FaxMachine - name: Conference Room -- proto: FaxMachineCaptain - entities: - - uid: 1465 + - uid: 7457 components: - type: Transform - pos: 30.5,41.5 + rot: -1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 -- proto: filingCabinet - entities: - - uid: 12092 + - uid: 7458 components: - type: Transform - pos: 17.5,23.5 + rot: 3.141592653589793 rad + pos: 26.5,19.5 parent: 2 -- proto: filingCabinetDrawerRandom - entities: - - uid: 108 + - uid: 7459 components: - type: Transform - pos: -3.5,-12.5 + rot: -1.5707963267948966 rad + pos: 30.5,23.5 parent: 2 - - uid: 9005 + - uid: 7473 components: - type: Transform - pos: 19.5,29.5 + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 parent: 2 - - uid: 10659 + - uid: 7520 components: - type: Transform - pos: 63.5,11.5 + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 parent: 2 - - uid: 12607 + - uid: 7521 components: - type: Transform - pos: 73.5,-0.5 + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 -- proto: filingCabinetRandom - entities: - - uid: 7834 + - uid: 7522 components: - type: Transform - pos: 41.5,19.5 + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 parent: 2 - - uid: 8445 + - uid: 7523 components: - type: Transform - pos: 36.5,24.5 + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 - - uid: 10276 + - uid: 7524 components: - type: Transform - pos: 15.5,-5.5 + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 parent: 2 -- proto: filingCabinetTallRandom - entities: - - uid: 5198 + - uid: 7525 components: - type: Transform - pos: 60.5,-11.5 + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 2 -- proto: FireAlarm - entities: - - uid: 5 + - uid: 7531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,24.5 + pos: -20.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 12522 - - 8237 - - 8238 - - uid: 194 + - uid: 7534 components: - type: Transform - pos: 15.5,11.5 + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 36 - - 6952 - - 11245 - - 11244 - - 12449 - - 6931 - - 6930 - - 11247 - - 11246 - - uid: 1016 + - uid: 7539 components: - type: Transform - pos: 29.5,-34.5 + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 1018 - - 12396 - - 5620 - - 5619 - - 5656 - - 5657 - - 5617 - - 5618 - - 831 - - 802 - - 5621 - - 5622 - - uid: 1657 + - uid: 7541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-8.5 + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 6641 - - 6644 - - 6643 - - 6642 - - 6636 - - 1514 - - 742 - - 873 - - 554 - - 558 - - 1511 - - 1515 - - 1513 - - 12834 - - uid: 2123 + - uid: 7542 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-13.5 + pos: -7.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - - uid: 2474 + - uid: 7543 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,22.5 + pos: -10.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 12559 - - 10413 - - 10414 - - 10415 - - uid: 4049 + - uid: 7567 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-33.5 + pos: 26.5,21.5 parent: 2 - - type: DeviceList - devices: - - 5657 - - 5656 - - 1018 - - 169 - - 1024 - - 5684 - - uid: 5077 + - uid: 7571 components: - type: Transform - pos: 35.5,2.5 + rot: 3.141592653589793 rad + pos: 4.5,11.5 parent: 2 - - type: DeviceList - devices: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - - uid: 6633 + - uid: 7572 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-13.5 + pos: 26.5,20.5 parent: 2 - - type: DeviceList - devices: - - 1511 - - 1515 - - 1513 - - 6645 - - 6637 - - uid: 6634 + - uid: 7599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 + pos: -22.5,-1.5 parent: 2 - - type: DeviceList - devices: - - 1514 - - 742 - - 873 - - 554 - - 558 - - 6638 - - 6523 - - 1510 - - uid: 6683 + - uid: 7602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-8.5 + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 6523 - - 1510 - - 6509 - - 6568 - - 12077 - - 6684 - - uid: 7662 + - uid: 7604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - - uid: 7842 + - uid: 7946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 + pos: 33.5,29.5 parent: 2 - - type: DeviceList - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - - uid: 8005 + - uid: 8270 components: - type: Transform - pos: 13.5,2.5 + pos: 12.5,14.5 parent: 2 - - type: DeviceList - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - uid: 8006 + - uid: 8271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 + pos: 11.5,16.5 parent: 2 - - type: DeviceList - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - uid: 8007 + - uid: 8275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 + pos: 11.5,17.5 parent: 2 - - type: DeviceList - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - uid: 8316 + - uid: 8278 components: - type: Transform - pos: 21.5,2.5 + rot: -1.5707963267948966 rad + pos: 12.5,18.5 parent: 2 - - type: DeviceList - devices: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - - uid: 8920 + - uid: 8279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 + rot: -1.5707963267948966 rad + pos: 13.5,18.5 parent: 2 - - type: DeviceList - devices: - - 8923 - - 6801 - - 6802 - - 6803 - - 6790 - - 6799 - - 6800 - - 10206 - - 10205 - - 5093 - - uid: 9588 + - uid: 8280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 + rot: 3.141592653589793 rad + pos: 14.5,19.5 parent: 2 - - type: DeviceList - devices: - - 9586 - - 9585 - - 9584 - - 9589 - - uid: 10208 + - uid: 8281 components: - type: Transform - pos: 23.5,-8.5 + rot: 3.141592653589793 rad + pos: 11.5,12.5 parent: 2 - - type: DeviceList - devices: - - 10216 - - 10205 - - 10206 - - uid: 10956 + - uid: 8282 components: - type: Transform - pos: 16.5,-32.5 + rot: 3.141592653589793 rad + pos: 11.5,11.5 parent: 2 - - type: DeviceList - devices: - - 8659 - - uid: 10964 + - uid: 8496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 + pos: 33.5,30.5 parent: 2 - - type: DeviceList - devices: - - 1103 - - 1104 - - 11472 - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12516 - - 12085 - - 9586 - - 9585 - - 9584 - - uid: 11507 + - uid: 8928 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-2.5 + pos: 33.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 11509 - - 11526 - - 11527 - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 3983 - - 2993 - - 2994 - - 11321 - - 11320 - - 11319 - - 8293 - - 8291 - - 5026 - - 5144 - - 4919 - - 7011 - - 6509 - - 6568 - - uid: 12153 + - uid: 8929 components: - type: Transform - pos: 55.5,4.5 + rot: 3.141592653589793 rad + pos: 33.5,-1.5 parent: 2 - - type: DeviceList - devices: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - - uid: 12154 + - uid: 8973 components: - type: Transform - pos: 69.5,3.5 + rot: 3.141592653589793 rad + pos: 33.5,-2.5 parent: 2 - - type: DeviceList - devices: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - - uid: 12474 + - uid: 8974 components: - type: Transform - pos: 19.5,16.5 + rot: 3.141592653589793 rad + pos: 33.5,-3.5 parent: 2 - - type: DeviceList - devices: - - 11247 - - 11246 - - 12472 - - 11264 - - 11263 - - 6928 - - 6929 - - 6930 - - 6931 - - uid: 12477 + - uid: 8975 components: - type: Transform - pos: 28.5,16.5 + rot: 3.141592653589793 rad + pos: 33.5,-4.5 parent: 2 - - type: DeviceList - devices: - - 11264 - - 11263 - - 1103 - - 1104 - - 11472 - - 12475 - - 6928 - - 6929 - - 3457 - - 3458 - - 3459 - - 9352 - - 9353 - - 9351 - - uid: 12483 + - uid: 8976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,8.5 + rot: 3.141592653589793 rad + pos: 33.5,-5.5 parent: 2 - - type: DeviceList - devices: - - 11746 - - 8293 - - 8291 - - 5026 - - 11321 - - 11320 - - 11319 - - 11251 - - 11252 - - 11253 - - 9364 - - 9363 - - 9362 - - uid: 12487 + - uid: 8977 components: - type: Transform - pos: 44.5,16.5 + rot: 3.141592653589793 rad + pos: 33.5,-6.5 parent: 2 - - type: DeviceList - devices: - - 12485 - - 9364 - - 9363 - - 9362 - - 11251 - - 11252 - - 11253 - - 11413 - - 9351 - - 9353 - - 9352 - - 12087 - - uid: 12489 + - uid: 8978 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-8.5 + pos: 33.5,-7.5 parent: 2 - - type: DeviceList - devices: - - 12077 - - 11858 - - 12075 - - 12490 - - 12076 - - uid: 12517 + - uid: 8979 components: - type: Transform - pos: 22.5,26.5 + rot: 3.141592653589793 rad + pos: 33.5,-8.5 parent: 2 - - type: DeviceList - devices: - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12518 - - uid: 12521 + - uid: 9405 components: - type: Transform - pos: 18.5,25.5 + rot: 1.5707963267948966 rad + pos: 31.5,42.5 parent: 2 - - type: DeviceList - devices: - - 12519 - - 12086 - - 8237 - - 8238 - - uid: 12549 + - uid: 9406 components: - type: Transform - pos: 49.5,22.5 + pos: 32.5,43.5 parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - uid: 12556 + - uid: 9407 components: - type: Transform - pos: 61.5,16.5 + pos: 32.5,44.5 parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 12554 - - 1252 - - 1162 - - 6473 - - uid: 12557 + - uid: 9408 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,19.5 + pos: 31.5,45.5 parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 -- proto: FireAxeCabinetFilled - entities: - - uid: 1571 + - uid: 9409 components: - type: Transform - pos: 31.5,-22.5 + rot: -1.5707963267948966 rad + pos: 30.5,45.5 parent: 2 - - uid: 5428 + - uid: 9410 components: - type: Transform - pos: 30.514431,43.46267 + rot: -1.5707963267948966 rad + pos: 29.5,45.5 parent: 2 -- proto: FireExtinguisher - entities: - - uid: 5722 + - uid: 9412 components: - type: Transform - pos: 73.5,-12.5 + pos: 28.5,43.5 parent: 2 - - uid: 10797 + - uid: 9413 components: - type: Transform - pos: 80.48026,-16.378305 + pos: 28.5,42.5 parent: 2 - - uid: 10826 + - uid: 9414 components: - type: Transform - pos: 81.454414,9.641975 + pos: 28.5,41.5 parent: 2 - - uid: 10850 + - uid: 9415 components: - type: Transform - pos: 45.471096,27.597694 + pos: 28.5,40.5 parent: 2 -- proto: FirelockEdge - entities: - - uid: 36 + - uid: 9416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 + pos: 28.5,39.5 parent: 2 - - uid: 102 + - uid: 9417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 + pos: 28.5,38.5 parent: 2 - - uid: 131 + - uid: 9418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 28.5,37.5 parent: 2 - - uid: 253 + - uid: 9419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 + pos: 28.5,36.5 parent: 2 - - uid: 802 + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-38.5 + pos: 26.5,24.5 parent: 2 - - uid: 831 + - uid: 9422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-38.5 + pos: 26.5,25.5 parent: 2 - - uid: 1103 + - uid: 9423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,15.5 + pos: 26.5,26.5 parent: 2 - - uid: 1104 + - uid: 9424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,15.5 + pos: 26.5,27.5 parent: 2 - - uid: 2315 + - uid: 9425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,1.5 + pos: 26.5,28.5 parent: 2 - - uid: 2993 + - uid: 9426 components: - type: Transform - pos: 50.5,1.5 + pos: 26.5,29.5 parent: 2 - - uid: 2994 + - uid: 9427 components: - type: Transform - pos: 49.5,1.5 + pos: 26.5,30.5 parent: 2 - - uid: 3457 + - uid: 9428 components: - type: Transform - pos: 25.5,17.5 + pos: 26.5,31.5 parent: 2 - - uid: 3458 + - uid: 9429 components: - type: Transform - pos: 26.5,17.5 + pos: 26.5,32.5 parent: 2 - - uid: 3459 + - uid: 9430 components: - type: Transform - pos: 27.5,17.5 + pos: 26.5,33.5 parent: 2 - - uid: 3983 + - uid: 9709 components: - type: Transform - pos: 51.5,1.5 + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 parent: 2 - - uid: 4557 + - uid: 10256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-38.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 4558 + - uid: 10257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-38.5 + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 - - uid: 4560 + - uid: 10258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-38.5 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 4561 + - uid: 10259 components: - type: Transform - pos: 38.5,-36.5 + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 parent: 2 - - uid: 4565 + - uid: 10260 components: - type: Transform - pos: 39.5,-36.5 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - - uid: 4566 + - uid: 10261 components: - type: Transform - pos: 40.5,-36.5 + rot: 1.5707963267948966 rad + pos: 14.5,-3.5 parent: 2 - - uid: 5026 + - uid: 10262 components: - type: Transform - pos: 42.5,3.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - - uid: 5093 + - uid: 10263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 + pos: 12.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8920 - - uid: 5176 + - uid: 10264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-3.5 + pos: 12.5,-1.5 parent: 2 - - uid: 5188 + - uid: 10265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-3.5 + pos: 12.5,-0.5 parent: 2 - - uid: 5190 + - uid: 10587 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-3.5 + pos: 54.5,12.5 parent: 2 - - uid: 5617 + - uid: 10588 components: - type: Transform - pos: 31.5,-36.5 + rot: 3.141592653589793 rad + pos: 54.5,13.5 parent: 2 - - uid: 5618 + - uid: 10589 components: - type: Transform - pos: 32.5,-36.5 + rot: 3.141592653589793 rad + pos: 58.5,21.5 parent: 2 - - uid: 5619 + - uid: 10590 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-30.5 + pos: 58.5,20.5 parent: 2 - - uid: 5620 + - uid: 10591 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-30.5 + pos: 58.5,19.5 parent: 2 - - uid: 5621 + - uid: 10592 components: - type: Transform - pos: 17.5,-28.5 + rot: 3.141592653589793 rad + pos: 58.5,17.5 parent: 2 - - uid: 5622 + - uid: 10593 components: - type: Transform - pos: 18.5,-28.5 + rot: 3.141592653589793 rad + pos: 58.5,16.5 parent: 2 - - uid: 5899 + - uid: 10594 components: - type: Transform - pos: 4.5,-27.5 + rot: 3.141592653589793 rad + pos: 58.5,15.5 parent: 2 - - uid: 5900 + - uid: 10595 components: - type: Transform - pos: 5.5,-27.5 + rot: 1.5707963267948966 rad + pos: 57.5,14.5 parent: 2 - - uid: 6616 + - uid: 10596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-1.5 + rot: 1.5707963267948966 rad + pos: 56.5,14.5 parent: 2 - - uid: 6641 + - uid: 10597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 55.5,14.5 parent: 2 - - uid: 6642 + - uid: 10603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-2.5 + rot: 1.5707963267948966 rad + pos: 51.5,18.5 parent: 2 - - uid: 6643 + - uid: 10604 components: - type: Transform - pos: 35.5,-0.5 + rot: 1.5707963267948966 rad + pos: 52.5,18.5 parent: 2 - - uid: 6644 + - uid: 10605 components: - type: Transform - pos: 33.5,-0.5 + rot: 1.5707963267948966 rad + pos: 53.5,18.5 parent: 2 - - uid: 6790 + - uid: 10606 components: - type: Transform - pos: 27.5,-1.5 + rot: 1.5707963267948966 rad + pos: 54.5,18.5 parent: 2 - - uid: 6799 + - uid: 10607 components: - type: Transform - pos: 26.5,-1.5 + rot: 1.5707963267948966 rad + pos: 55.5,18.5 parent: 2 - - uid: 6800 + - uid: 10608 components: - type: Transform - pos: 25.5,-1.5 + rot: 1.5707963267948966 rad + pos: 56.5,18.5 parent: 2 - - uid: 6801 + - uid: 10609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-3.5 + rot: 1.5707963267948966 rad + pos: 57.5,18.5 parent: 2 - - uid: 6802 + - uid: 10610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-3.5 - parent: 2 - - uid: 6803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + rot: 1.5707963267948966 rad + pos: 53.5,14.5 parent: 2 - - uid: 6854 + - uid: 10611 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 52.5,14.5 parent: 2 - - uid: 6928 + - uid: 10612 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,13.5 + pos: 51.5,14.5 parent: 2 - - uid: 6929 + - uid: 10613 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,14.5 + pos: 50.5,14.5 parent: 2 - - uid: 6930 + - uid: 10614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,10.5 + rot: 1.5707963267948966 rad + pos: 49.5,14.5 parent: 2 - - uid: 6931 + - uid: 10615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,10.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 6952 + - uid: 10616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,10.5 + pos: 47.5,14.5 parent: 2 - - uid: 7663 + - uid: 10617 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 46.5,14.5 parent: 2 - - uid: 7709 + - uid: 10618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,0.5 + rot: 1.5707963267948966 rad + pos: 45.5,14.5 parent: 2 - - uid: 7746 + - uid: 10619 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-12.5 + pos: 44.5,14.5 parent: 2 - - uid: 7747 + - uid: 10620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-13.5 + pos: 43.5,14.5 parent: 2 - - uid: 7748 + - uid: 10621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-14.5 + pos: 42.5,14.5 parent: 2 - - uid: 7749 + - uid: 10623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 + pos: 41.5,13.5 parent: 2 - - uid: 7750 + - uid: 10624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 41.5,12.5 parent: 2 - - uid: 7889 + - uid: 10625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 + pos: 41.5,11.5 parent: 2 - - uid: 7895 + - uid: 10626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: 41.5,10.5 parent: 2 - - uid: 7938 + - uid: 10627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,1.5 + pos: 41.5,9.5 parent: 2 - - uid: 7950 + - uid: 10628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 41.5,8.5 parent: 2 - - uid: 8003 + - uid: 10629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,0.5 + pos: 41.5,7.5 parent: 2 - - uid: 8004 + - uid: 10630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 41.5,6.5 parent: 2 - - uid: 8291 + - uid: 10631 components: - type: Transform - pos: 41.5,3.5 + pos: 41.5,5.5 parent: 2 - - uid: 8293 + - uid: 10632 components: - type: Transform - pos: 40.5,3.5 + pos: 41.5,4.5 parent: 2 - - uid: 9362 + - uid: 10633 components: - type: Transform - pos: 40.5,13.5 + pos: 41.5,3.5 parent: 2 - - uid: 9363 + - uid: 10634 components: - type: Transform - pos: 41.5,13.5 + pos: 41.5,2.5 parent: 2 - - uid: 9364 + - uid: 11441 components: - type: Transform - pos: 42.5,13.5 + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 parent: 2 - - uid: 9584 + - uid: 11442 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,28.5 + pos: 56.5,-8.5 parent: 2 - - uid: 9585 + - uid: 11443 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,28.5 + pos: 56.5,-7.5 parent: 2 - - uid: 9586 + - uid: 11444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,28.5 + rot: 1.5707963267948966 rad + pos: 55.5,-6.5 parent: 2 - - uid: 11244 + - uid: 11445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 + rot: 1.5707963267948966 rad + pos: 54.5,-6.5 parent: 2 - - uid: 11245 + - uid: 11446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 + pos: 56.5,-5.5 parent: 2 - - uid: 11246 + - uid: 11447 components: - type: Transform - pos: 18.5,12.5 + pos: 56.5,-4.5 parent: 2 - - uid: 11247 + - uid: 11448 components: - type: Transform - pos: 19.5,12.5 + pos: 56.5,-3.5 parent: 2 - - uid: 11248 + - uid: 11449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,22.5 + pos: 56.5,-2.5 parent: 2 - - uid: 11249 + - uid: 11450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,21.5 + pos: 56.5,-1.5 parent: 2 - - uid: 11250 + - uid: 11458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,20.5 + rot: -1.5707963267948966 rad + pos: 53.5,3.5 parent: 2 - - uid: 11251 + - uid: 11459 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,11.5 + pos: 54.5,2.5 parent: 2 - - uid: 11252 + - uid: 11461 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,11.5 + pos: 54.5,0.5 parent: 2 - - uid: 11253 + - uid: 11463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,11.5 + rot: 1.5707963267948966 rad + pos: 53.5,-0.5 parent: 2 - - uid: 11254 + - uid: 11464 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-1.5 + pos: 52.5,-0.5 parent: 2 - - uid: 11255 + - uid: 11466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-0.5 + pos: 51.5,-0.5 parent: 2 - - uid: 11256 + - uid: 11467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,0.5 + pos: 50.5,-0.5 parent: 2 - - uid: 11263 + - uid: 11468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 + rot: 1.5707963267948966 rad + pos: 49.5,-0.5 parent: 2 - - uid: 11264 + - uid: 11469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,13.5 + rot: 1.5707963267948966 rad + pos: 48.5,-0.5 parent: 2 - - uid: 11317 + - uid: 11470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 + rot: 1.5707963267948966 rad + pos: 47.5,-0.5 parent: 2 - - uid: 11319 + - uid: 11474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - - uid: 11320 + - uid: 11479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 + rot: -1.5707963267948966 rad + pos: 80.5,1.5 parent: 2 - - uid: 11321 + - uid: 11480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,1.5 + rot: -1.5707963267948966 rad + pos: 79.5,1.5 parent: 2 - - uid: 11322 + - uid: 11481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,23.5 + rot: -1.5707963267948966 rad + pos: 78.5,1.5 parent: 2 - - uid: 11323 + - uid: 11482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 + rot: -1.5707963267948966 rad + pos: 77.5,1.5 parent: 2 - - uid: 11324 + - uid: 11483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,25.5 + rot: -1.5707963267948966 rad + pos: 76.5,1.5 parent: 2 - - uid: 11325 + - uid: 11484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-3.5 + rot: -1.5707963267948966 rad + pos: 75.5,1.5 parent: 2 - - uid: 11332 + - uid: 11485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-3.5 + rot: -1.5707963267948966 rad + pos: 74.5,1.5 parent: 2 - - uid: 11355 + - uid: 11486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-3.5 + rot: -1.5707963267948966 rad + pos: 73.5,1.5 parent: 2 - - uid: 11413 + - uid: 11487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,12.5 + rot: -1.5707963267948966 rad + pos: 72.5,1.5 parent: 2 - - uid: 11472 + - uid: 11488 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 + rot: -1.5707963267948966 rad + pos: 71.5,1.5 parent: 2 - - uid: 11505 + - uid: 11489 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + pos: 70.5,1.5 parent: 2 - - uid: 11506 + - uid: 11490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,0.5 + pos: 69.5,1.5 parent: 2 - - uid: 11526 + - uid: 11491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-2.5 + rot: -1.5707963267948966 rad + pos: 68.5,1.5 parent: 2 - - uid: 11527 + - uid: 11492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 + rot: -1.5707963267948966 rad + pos: 67.5,1.5 parent: 2 - - uid: 12142 + - uid: 11493 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,33.5 + pos: 66.5,1.5 parent: 2 - - uid: 12143 + - uid: 11494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,32.5 + pos: 65.5,1.5 parent: 2 - - uid: 12144 + - uid: 11495 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,31.5 + pos: 64.5,1.5 parent: 2 - - uid: 12158 + - uid: 11496 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,0.5 + pos: 63.5,1.5 parent: 2 - - uid: 12159 + - uid: 11497 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,1.5 + pos: 62.5,1.5 parent: 2 - - uid: 12161 + - uid: 11498 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,2.5 + pos: 61.5,1.5 parent: 2 - - uid: 12834 + - uid: 11499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-5.5 + pos: 60.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 1657 -- proto: FirelockElectronics - entities: - - uid: 1045 + - uid: 11500 components: - type: Transform - pos: 32.473473,-30.370909 + rot: -1.5707963267948966 rad + pos: 59.5,1.5 parent: 2 -- proto: FirelockGlass - entities: - - uid: 169 + - uid: 11501 components: - type: Transform - pos: 21.5,-29.5 + rot: -1.5707963267948966 rad + pos: 58.5,1.5 parent: 2 - - uid: 554 + - uid: 11502 components: - type: Transform - pos: 37.5,-4.5 + rot: -1.5707963267948966 rad + pos: 57.5,1.5 parent: 2 - - uid: 558 + - uid: 11503 components: - type: Transform - pos: 37.5,-3.5 + rot: -1.5707963267948966 rad + pos: 56.5,1.5 parent: 2 - - uid: 742 + - uid: 11504 components: - type: Transform - pos: 37.5,-6.5 + rot: -1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 873 + - uid: 11776 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: 55.5,-0.5 parent: 2 - - uid: 1018 + - uid: 12425 components: - type: Transform - pos: 21.5,-33.5 + rot: 3.141592653589793 rad + pos: 46.5,-1.5 parent: 2 - - uid: 1024 + - uid: 12458 components: - type: Transform - pos: 31.5,-29.5 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 parent: 2 - - uid: 1162 + - uid: 12460 components: - type: Transform - pos: 53.5,14.5 + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 parent: 2 - - uid: 1252 + - uid: 12461 components: - type: Transform - pos: 53.5,13.5 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 parent: 2 - - uid: 1510 + - uid: 12464 components: - type: Transform - pos: 40.5,-7.5 + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 parent: 2 - - uid: 1511 + - uid: 12465 components: - type: Transform - pos: 34.5,-8.5 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 parent: 2 - - uid: 1513 + - uid: 12466 components: - type: Transform - pos: 36.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 parent: 2 - - uid: 1514 + - uid: 12467 components: - type: Transform - pos: 37.5,-7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 parent: 2 - - uid: 1515 + - uid: 12468 components: - type: Transform - pos: 35.5,-8.5 + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 parent: 2 - - uid: 4919 + - uid: 12469 components: - type: Transform - pos: 39.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 parent: 2 - - uid: 5144 + - uid: 12482 components: - type: Transform - pos: 39.5,1.5 + pos: 27.5,2.5 parent: 2 - - uid: 5656 + - uid: 12491 components: - type: Transform - pos: 26.5,-34.5 + pos: 27.5,1.5 parent: 2 - - uid: 5657 + - uid: 12837 components: - type: Transform - pos: 31.5,-33.5 + pos: 26.5,-27.5 parent: 2 - - uid: 6473 + - uid: 12838 components: - type: Transform - pos: 53.5,15.5 + pos: 26.5,-26.5 parent: 2 - - uid: 6509 + - uid: 13586 components: - type: Transform - pos: 43.5,-2.5 + pos: 33.5,28.5 parent: 2 - - uid: 6523 + - uid: 13587 components: - type: Transform - pos: 40.5,-6.5 + pos: 33.5,27.5 parent: 2 - - uid: 6568 + - uid: 13588 components: - type: Transform - pos: 44.5,-2.5 + pos: 33.5,26.5 parent: 2 - - uid: 6645 + - uid: 13589 components: - type: Transform - pos: 38.5,-8.5 + pos: 33.5,25.5 parent: 2 - - uid: 7011 + - uid: 13590 components: - type: Transform - pos: 39.5,-0.5 + pos: 33.5,24.5 parent: 2 - - uid: 7740 + - uid: 14130 components: - type: Transform - pos: -2.5,-2.5 + rot: 1.5707963267948966 rad + pos: 76.5,23.5 parent: 2 - - uid: 8237 + - uid: 14158 components: - type: Transform - pos: 16.5,22.5 + rot: 1.5707963267948966 rad + pos: 75.5,23.5 parent: 2 - - uid: 8238 + - uid: 14176 components: - type: Transform - pos: 16.5,20.5 + rot: 1.5707963267948966 rad + pos: 77.5,23.5 parent: 2 - - uid: 8823 + - uid: 14177 components: - type: Transform - pos: 49.5,-19.5 + rot: 1.5707963267948966 rad + pos: 78.5,23.5 parent: 2 - - uid: 9351 + - uid: 14179 components: - type: Transform - pos: 38.5,13.5 + rot: 3.141592653589793 rad + pos: 79.5,24.5 parent: 2 - - uid: 9352 + - uid: 14180 components: - type: Transform - pos: 38.5,15.5 + rot: 3.141592653589793 rad + pos: 79.5,25.5 parent: 2 - - uid: 9353 + - uid: 14181 components: - type: Transform - pos: 38.5,14.5 + rot: 3.141592653589793 rad + pos: 79.5,26.5 parent: 2 - - uid: 10205 + - uid: 14182 components: - type: Transform - pos: 24.5,-11.5 + rot: 3.141592653589793 rad + pos: 79.5,27.5 parent: 2 - - uid: 10206 + - uid: 14183 components: - type: Transform - pos: 24.5,-10.5 + rot: 3.141592653589793 rad + pos: 79.5,28.5 parent: 2 - - uid: 10413 + - uid: 14184 components: - type: Transform - pos: 58.5,21.5 + rot: 3.141592653589793 rad + pos: 79.5,29.5 parent: 2 - - uid: 10414 + - uid: 15009 components: - type: Transform - pos: 59.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,-2.5 parent: 2 - - uid: 10415 + - uid: 15037 components: - type: Transform - pos: 60.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,-3.5 parent: 2 - - uid: 10416 + - uid: 15038 components: - type: Transform - pos: 58.5,16.5 + rot: 3.141592653589793 rad + pos: 46.5,-4.5 parent: 2 - - uid: 10417 + - uid: 15039 components: - type: Transform - pos: 59.5,16.5 + rot: 3.141592653589793 rad + pos: 46.5,-5.5 parent: 2 - - uid: 10418 +- proto: DisposalTrunk + entities: + - uid: 183 components: - type: Transform - pos: 60.5,16.5 + rot: 1.5707963267948966 rad + pos: 57.5,22.5 parent: 2 - - uid: 10735 + - uid: 184 components: - type: Transform - pos: 61.5,-8.5 + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 - - uid: 11016 + - uid: 358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 + pos: -1.5,0.5 parent: 2 - - uid: 11243 + - uid: 1227 components: - type: Transform - pos: 16.5,-2.5 + rot: 3.141592653589793 rad + pos: 34.5,-10.5 parent: 2 - - uid: 11265 + - uid: 2320 components: - type: Transform - pos: 7.5,-15.5 + pos: 4.5,13.5 parent: 2 - - uid: 11266 + - uid: 5143 components: - type: Transform - pos: 7.5,-16.5 + pos: 32.5,2.5 parent: 2 - - uid: 11267 + - uid: 5692 components: - type: Transform - pos: 1.5,-14.5 + pos: 16.5,-33.5 parent: 2 - - uid: 11268 + - uid: 5693 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 parent: 2 - - uid: 11271 + - uid: 5694 components: - type: Transform - pos: 52.5,-16.5 + rot: -1.5707963267948966 rad + pos: 27.5,-25.5 parent: 2 - - uid: 11272 + - uid: 5839 components: - type: Transform - pos: 47.5,-17.5 + pos: 2.5,-28.5 parent: 2 - - uid: 11273 + - uid: 5878 components: - type: Transform - pos: 43.5,43.5 + rot: 1.5707963267948966 rad + pos: 17.5,7.5 parent: 2 - - uid: 11274 + - uid: 5969 components: - type: Transform - pos: 44.5,43.5 + pos: 22.5,15.5 parent: 2 - - uid: 11279 + - uid: 6008 components: - type: Transform - pos: 40.5,42.5 + rot: 1.5707963267948966 rad + pos: 30.5,42.5 parent: 2 - - uid: 11280 + - uid: 7288 components: - type: Transform - pos: 40.5,41.5 + rot: -1.5707963267948966 rad + pos: 36.5,-2.5 parent: 2 - - uid: 11283 + - uid: 7392 components: - type: Transform - pos: 44.5,40.5 + rot: 3.141592653589793 rad + pos: 29.5,-11.5 parent: 2 - - uid: 11284 + - uid: 7398 components: - type: Transform - pos: 45.5,40.5 + rot: 3.141592653589793 rad + pos: 41.5,-1.5 parent: 2 - - uid: 11285 + - uid: 7540 components: - type: Transform - pos: 50.5,48.5 + rot: 3.141592653589793 rad + pos: -22.5,-2.5 parent: 2 - - uid: 11286 + - uid: 8849 components: - type: Transform - pos: 62.5,48.5 + rot: -1.5707963267948966 rad + pos: 15.5,23.5 parent: 2 - - uid: 11287 + - uid: 9404 components: - type: Transform - pos: 72.5,18.5 + rot: 1.5707963267948966 rad + pos: 27.5,44.5 parent: 2 - - uid: 11288 + - uid: 9420 components: - type: Transform - pos: 74.5,14.5 + rot: -1.5707963267948966 rad + pos: 28.5,34.5 parent: 2 - - uid: 11294 + - uid: 10254 components: - type: Transform - pos: 86.5,-13.5 + pos: 20.5,-2.5 parent: 2 - - uid: 11295 + - uid: 10585 components: - type: Transform - pos: 83.5,-15.5 + rot: -1.5707963267948966 rad + pos: 55.5,11.5 parent: 2 - - uid: 11296 + - uid: 11434 components: - type: Transform - pos: 72.5,-15.5 + rot: 3.141592653589793 rad + pos: 53.5,-7.5 parent: 2 - - uid: 11297 + - uid: 11437 components: - type: Transform - pos: 83.5,-16.5 + rot: 1.5707963267948966 rad + pos: 54.5,-9.5 parent: 2 - - uid: 11298 + - uid: 11457 components: - type: Transform - pos: 72.5,-16.5 + pos: 52.5,4.5 parent: 2 - - uid: 11299 + - uid: 11478 components: - type: Transform - pos: 71.5,-12.5 + rot: -1.5707963267948966 rad + pos: 81.5,1.5 parent: 2 - - uid: 11300 + - uid: 12479 components: - type: Transform - pos: 58.5,-19.5 + pos: 27.5,3.5 parent: 2 - - uid: 11301 + - uid: 13581 components: - type: Transform - pos: 68.5,-19.5 + rot: 1.5707963267948966 rad + pos: 32.5,31.5 parent: 2 - - uid: 11329 + - uid: 14126 components: - type: Transform - pos: 12.5,-21.5 + rot: 1.5707963267948966 rad + pos: 74.5,23.5 parent: 2 - - uid: 11334 + - uid: 14185 components: - type: Transform - pos: 7.5,-23.5 + pos: 79.5,30.5 parent: 2 - - uid: 11335 + - uid: 15040 components: - type: Transform - pos: 7.5,-24.5 + rot: -1.5707963267948966 rad + pos: 47.5,-6.5 parent: 2 - - uid: 11349 +- proto: DisposalUnit + entities: + - uid: 374 components: - type: Transform - pos: 51.5,-16.5 + pos: 15.5,23.5 parent: 2 - - uid: 11351 + - uid: 394 components: - type: Transform - pos: 88.5,-17.5 + pos: 4.5,13.5 parent: 2 - - uid: 11353 + - uid: 469 components: - type: Transform - pos: 67.5,25.5 + pos: -22.5,-2.5 parent: 2 - - uid: 11354 + - uid: 1150 components: - type: Transform - pos: 66.5,25.5 + pos: 25.5,5.5 parent: 2 - - uid: 11379 + - uid: 1229 components: - type: Transform - pos: 72.5,11.5 + pos: 34.5,-10.5 parent: 2 - - uid: 11383 + - uid: 1321 components: - type: Transform - pos: 72.5,10.5 + pos: 29.5,-11.5 parent: 2 - - uid: 11384 + - uid: 1531 components: - type: Transform - pos: 65.5,7.5 + pos: 36.5,-2.5 parent: 2 - - uid: 11385 + - uid: 4697 components: - type: Transform - pos: 66.5,7.5 + pos: 22.5,15.5 parent: 2 - - uid: 11386 + - uid: 4979 components: - type: Transform - pos: 76.5,12.5 + pos: 27.5,44.5 parent: 2 - - uid: 11391 + - uid: 5047 components: - type: Transform - pos: 23.5,9.5 + pos: 52.5,4.5 parent: 2 - - uid: 11392 + - uid: 5075 components: - type: Transform - pos: 22.5,9.5 + pos: 53.5,-7.5 parent: 2 - - uid: 11393 + - uid: 5150 components: - type: Transform - pos: 21.5,3.5 + pos: 32.5,2.5 parent: 2 - - uid: 11412 + - uid: 5209 components: - type: Transform - pos: 48.5,6.5 + pos: 70.5,8.5 parent: 2 - - uid: 11531 + - uid: 5228 components: - type: Transform - pos: 73.5,14.5 + pos: 82.5,-3.5 parent: 2 - - uid: 11754 + - uid: 5341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 + pos: 57.5,22.5 parent: 2 - - uid: 11810 + - uid: 5392 components: - type: Transform - pos: 30.5,11.5 + pos: 55.5,11.5 parent: 2 - - uid: 11858 + - uid: 5411 components: - type: Transform - pos: 50.5,-3.5 + pos: 30.5,42.5 parent: 2 - - uid: 12075 + - uid: 6427 components: - type: Transform - pos: 54.5,-4.5 + pos: 17.5,7.5 parent: 2 - - uid: 12076 + - uid: 7297 components: - type: Transform - pos: 54.5,-5.5 + pos: 27.5,-33.5 parent: 2 - - uid: 12077 + - uid: 7300 components: - type: Transform - pos: 48.5,-7.5 + pos: 16.5,-33.5 parent: 2 - - uid: 12085 + - uid: 7397 components: - type: Transform - pos: 28.5,25.5 + pos: 41.5,-1.5 parent: 2 - - uid: 12086 + - uid: 8361 components: - type: Transform - pos: 21.5,22.5 + pos: 27.5,-25.5 parent: 2 - - uid: 12087 + - uid: 8435 components: - type: Transform - pos: 48.5,18.5 + pos: 32.5,31.5 parent: 2 - - uid: 12394 + - uid: 8848 components: - type: Transform - pos: 49.5,-18.5 + pos: 105.5,-10.5 parent: 2 - - uid: 13442 + - uid: 8857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 + pos: 100.5,-10.5 parent: 2 - - uid: 13452 + - uid: 9431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-24.5 + pos: 28.5,34.5 parent: 2 -- proto: Fireplace - entities: - - uid: 380 + - uid: 10069 components: - type: Transform - pos: 36.5,43.5 + pos: 54.5,-9.5 parent: 2 -- proto: Flash - entities: - - uid: 4987 + - uid: 10118 components: - type: Transform - pos: 30.4376,48.510555 + pos: 50.5,17.5 parent: 2 -- proto: FlashlightLantern - entities: - - uid: 5714 + - uid: 10253 components: - type: Transform - pos: 76.49909,-12.519633 + pos: 20.5,-2.5 parent: 2 - - uid: 10814 + - uid: 11433 components: - type: Transform - pos: 81.401146,12.491636 + pos: 81.5,1.5 parent: 2 -- proto: Floodlight - entities: - - uid: 4500 + - uid: 12492 components: - type: Transform - pos: 34.356434,-54.33789 + pos: 27.5,3.5 parent: 2 -- proto: FloorDrain - entities: - - uid: 741 + - uid: 13277 components: - type: Transform - pos: 30.5,-11.5 + pos: -1.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 1859 + - uid: 14125 components: - type: Transform - pos: 12.5,12.5 + pos: 74.5,23.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 5254 + - uid: 14186 components: - type: Transform - pos: 78.5,-0.5 + pos: 79.5,30.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 6865 + - uid: 15042 components: - type: Transform - pos: 40.5,35.5 + pos: 47.5,-6.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 8960 +- proto: DisposalYJunction + entities: + - uid: 2442 components: - type: Transform - pos: 102.5,-13.5 + pos: 5.5,10.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 10447 + - uid: 5696 components: - type: Transform - pos: 51.5,15.5 + rot: 3.141592653589793 rad + pos: 26.5,-28.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11900 + - uid: 5801 components: - type: Transform - pos: 78.5,10.5 + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 12288 + - uid: 7305 components: - type: Transform - pos: 51.5,-5.5 + pos: 26.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 12290 + - uid: 7356 components: - type: Transform - pos: 4.5,-4.5 + rot: -1.5707963267948966 rad + pos: 19.5,10.5 parent: 2 - - type: Fixtures - fixtures: {} -- proto: FoodBanana - entities: - - uid: 9595 + - uid: 8820 components: - type: Transform - pos: 27.618341,6.6818295 + rot: 1.5707963267948966 rad + pos: 5.5,0.5 parent: 2 - - uid: 9596 +- proto: DogBed + entities: + - uid: 8393 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 36.5,19.5 parent: 2 - - uid: 9597 + - uid: 9716 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 51.5,-8.5 parent: 2 - - uid: 9598 + - uid: 10280 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 19.5,-5.5 parent: 2 - - uid: 9599 + - uid: 14739 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 5.5,15.5 parent: 2 -- proto: FoodBowlBig +- proto: DonkpocketBoxSpawner entities: - - uid: 5507 + - uid: 11431 components: - type: Transform - pos: 70.488464,33.529522 + pos: 76.5,4.5 parent: 2 -- proto: FoodBowlBigTrash +- proto: DoorElectronics entities: - - uid: 5881 + - uid: 1046 components: - type: Transform - pos: -0.3447714,-23.649889 + pos: 32.489098,-30.527159 parent: 2 -- proto: FoodBoxDonkpocket - entities: - - uid: 8862 + - uid: 1047 components: - type: Transform - pos: 107.64995,-11.344688 + pos: 32.489098,-30.324034 parent: 2 -- proto: FoodBoxDonkpocketBerry - entities: - - uid: 8863 + - uid: 5440 components: - type: Transform - pos: 107.3062,-11.344688 + pos: 9.474669,-14.422774 parent: 2 -- proto: FoodBoxDonkpocketPizza +- proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 8861 + - uid: 5530 components: - type: Transform - pos: 107.35307,-10.954063 + pos: 74.515,18.613554 parent: 2 -- proto: FoodBoxDonut + - type: GasTank + toggleActionEntity: 5500 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5500 +- proto: DresserCaptainFilled entities: - - uid: 4982 + - uid: 10279 components: - type: Transform - pos: 33.510082,46.65118 + pos: 37.5,40.5 parent: 2 - - uid: 6761 +- proto: DresserChiefEngineerFilled + entities: + - uid: 13469 components: - type: Transform - pos: 37.49929,-7.4188547 + pos: 9.5,-40.5 parent: 2 -- proto: FoodBreadBananaSlice +- proto: DresserChiefMedicalOfficerFilled entities: - - uid: 8651 + - uid: 1179 components: - type: Transform - rot: 4.008621544926427E-05 rad - pos: 83.58996,8.734995 + pos: 58.5,-10.5 parent: 2 -- proto: FoodCakeChocolateSlice + - type: Storage + storedItems: + 542: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 542 +- proto: DresserHeadOfPersonnelFilled entities: - - uid: 10832 + - uid: 9438 components: - type: Transform - rot: 3.7838042771909386E-05 rad - pos: 70.43763,11.734996 + pos: 18.5,-5.5 parent: 2 -- proto: FoodCartCold + - type: Storage + storedItems: + 544: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 544 +- proto: DresserHeadOfSecurityFilled entities: - - uid: 1551 + - uid: 386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 + pos: 45.5,22.5 parent: 2 -- proto: FoodCondimentBottleEnzyme +- proto: DresserQuarterMasterFilled entities: - - uid: 296 + - uid: 14963 components: - type: Transform - pos: 36.20302,-12.346379 + pos: 6.5,16.5 parent: 2 - - uid: 363 +- proto: DresserResearchDirectorFilled + entities: + - uid: 565 components: - type: Transform - pos: 36.093643,-12.174504 + pos: 60.5,11.5 parent: 2 - - uid: 6868 + - type: Storage + storedItems: + 4300: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 4300 +- proto: DrinkFlask + entities: + - uid: 9223 components: - type: Transform - pos: 40.839993,34.745388 + pos: 37.68926,43.584465 parent: 2 -- proto: FoodFrozenPopsicleTrash +- proto: DrinkFlaskBar entities: - - uid: 5885 + - uid: 12497 components: - type: Transform - pos: 1.6864786,-25.212389 + pos: 63.594597,-16.258825 parent: 2 -- proto: FoodFrozenSnowconeRainbow +- proto: DrinkGlass entities: - - uid: 12702 + - uid: 11829 components: - type: Transform - pos: 106.40823,-18.308239 + pos: 67.3298,-14.594364 parent: 2 - - uid: 12703 + - uid: 11831 components: - type: Transform - pos: 106.54886,-18.401989 + pos: 67.6423,-14.594364 parent: 2 - - uid: 12704 +- proto: DrinkGoldenCup + entities: + - uid: 12097 components: - type: Transform - pos: 106.68948,-18.276989 + pos: 19.490185,41.41655 parent: 2 -- proto: FoodFrozenSnowconeTrash +- proto: DrinkHotCoco entities: - - uid: 5884 + - uid: 5451 components: - type: Transform - pos: -0.0010213852,-26.399889 + pos: 71.508354,37.570084 parent: 2 -- proto: FoodMeat +- proto: DrinkHotCoffee entities: - - uid: 566 + - uid: 8334 components: - type: Transform - pos: 31.219597,-12.667201 + pos: 34.950523,17.590809 parent: 2 - - uid: 1176 +- proto: DrinkLemonadeGlass + entities: + - uid: 5452 components: - type: Transform - pos: 31.625847,-12.667201 + pos: 71.477104,40.663834 parent: 2 - - uid: 1178 +- proto: DrinkMugBlack + entities: + - uid: 8212 components: - type: Transform - pos: 31.657097,-12.292201 + pos: 6.3375144,19.735584 parent: 2 - - uid: 1496 +- proto: DrinkMugDog + entities: + - uid: 11968 components: - type: Transform - pos: 31.422722,-12.542201 + pos: 55.92937,-10.550333 parent: 2 - - uid: 1535 + - uid: 14631 components: - type: Transform - pos: 31.453972,-12.339076 + pos: 74.58324,22.689823 parent: 2 -- proto: FoodPieBananaCream +- proto: DrinkMugMetal entities: - - uid: 9590 + - uid: 14600 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 55.15004,41.505497 parent: 2 - - uid: 9591 + - uid: 14663 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 5.063261,40.729393 parent: 2 - - uid: 9592 - components: +- proto: DrinkMugOne + entities: + - uid: 12405 + components: - type: Transform - pos: 27.383966,6.5099545 + pos: 78.602234,4.557168 parent: 2 - - uid: 9593 + - uid: 14567 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 89.5,28.5 parent: 2 - - uid: 9594 +- proto: DrinkMugRainbow + entities: + - uid: 12701 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 107.25198,-16.370739 parent: 2 -- proto: FoodPlateSmallTrash +- proto: DrinkShaker entities: - - uid: 5882 + - uid: 590 components: - type: Transform - pos: 2.1083536,-26.524889 + pos: 38.536613,-9.567179 parent: 2 - - uid: 5883 + - uid: 11828 components: - type: Transform - pos: -0.9697714,-25.884264 + pos: 67.47043,-15.094364 parent: 2 -- proto: FoodPoppy +- proto: DrinkWaterCup entities: - - uid: 12099 + - uid: 5644 components: - type: Transform - pos: 19.740185,41.04155 + pos: 16.679596,-23.530558 parent: 2 -- proto: FoodShakerPepper - entities: - - uid: 6758 + - uid: 5645 components: - type: Transform - pos: 33.484684,-5.5126047 + pos: 16.678108,-23.473524 parent: 2 -- proto: FoodShakerSalt - entities: - - uid: 6655 + - uid: 5646 components: - type: Transform - pos: 33.71906,-5.5126047 + pos: 16.67348,-23.408709 parent: 2 -- proto: FoodSnackChocolate - entities: - - uid: 12495 + - uid: 5647 components: - type: Transform - pos: 11.536887,-11.535692 + pos: 16.678108,-23.343895 parent: 2 -- proto: FoodTinBeansTrash - entities: - - uid: 5886 + - uid: 10898 components: - type: Transform - pos: -1.0166464,-26.540514 + pos: 64.36203,13.455295 parent: 2 - - uid: 5887 + - uid: 10899 components: - type: Transform - pos: 0.4677286,-25.024889 + pos: 64.36203,13.580295 parent: 2 -- proto: FoodTinMRE - entities: - - uid: 5711 + - uid: 10900 components: - type: Transform - pos: 77.34284,-13.410258 + pos: 64.36203,13.72092 parent: 2 -- proto: FoodTinMRETrash +- proto: DrinkWhiskeyBottleFull entities: - - uid: 5888 + - uid: 6809 components: - type: Transform - pos: 0.8896036,-25.587389 + pos: 57.63163,-13.7188425 parent: 2 -- proto: FoodTinPeachesMaint +- proto: DungeonMasterCircuitBoard entities: - - uid: 5476 + - uid: 14279 components: - type: Transform - pos: 67.5,38.5 + pos: 84.42593,28.556656 parent: 2 -- proto: ForkPlastic +- proto: ElectricGuitarInstrument entities: - - uid: 6759 + - uid: 14550 components: - type: Transform - pos: 33.59406,-4.5126047 - parent: 2 -- proto: GasFilterFlipped + parent: 13753 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyLight entities: - - uid: 3290 + - uid: 323 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-25.5 + pos: 10.5,21.5 parent: 2 - - uid: 3294 + - uid: 1547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-27.5 + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 parent: 2 - - uid: 3297 + - uid: 11333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-29.5 + rot: -1.5707963267948966 rad + pos: 27.5,33.5 parent: 2 - - uid: 3309 + - type: ActiveEmergencyLight + - uid: 12374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-31.5 + pos: 10.5,1.5 parent: 2 - - uid: 3310 + - type: ActiveEmergencyLight + - uid: 12375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-23.5 + pos: 36.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3455 + - type: ActiveEmergencyLight + - uid: 12376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-33.5 + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 parent: 2 - - uid: 4903 + - type: ActiveEmergencyLight + - uid: 12377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-39.5 + pos: 16.5,-33.5 parent: 2 - - uid: 11767 + - type: ActiveEmergencyLight + - uid: 12379 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,0.5 + pos: 36.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasMinerCarbonDioxide - entities: - - uid: 5220 + - type: ActiveEmergencyLight + - uid: 12380 components: - type: Transform - pos: 49.5,-27.5 + rot: 3.141592653589793 rad + pos: 25.5,44.5 parent: 2 -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 7285 + - type: ActiveEmergencyLight + - uid: 12382 components: - type: Transform - pos: 49.5,-23.5 + pos: 33.5,15.5 parent: 2 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 5529 + - type: ActiveEmergencyLight + - uid: 12383 components: - type: Transform - pos: 49.5,-25.5 + rot: -1.5707963267948966 rad + pos: 60.5,18.5 parent: 2 -- proto: GasMinerWaterVapor - entities: - - uid: 5132 + - type: ActiveEmergencyLight + - uid: 14641 components: - type: Transform - pos: 49.5,-29.5 + rot: 3.141592653589793 rad + pos: 73.5,22.5 parent: 2 -- proto: GasMixer - entities: - - uid: 2072 + - uid: 14642 components: - type: Transform - pos: 43.5,-27.5 + pos: 79.5,31.5 parent: 2 - - uid: 3970 + - uid: 14644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-34.5 + pos: 94.5,33.5 parent: 2 -- proto: GasMixerFlipped - entities: - - uid: 1557 + - uid: 14645 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-30.5 + pos: 94.5,27.5 parent: 2 - - uid: 1570 + - uid: 14778 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-22.5 + pos: 6.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1933 + - uid: 14974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-32.5 + rot: 1.5707963267948966 rad + pos: 53.5,36.5 parent: 2 - - uid: 3521 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 9622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-28.5 + pos: 45.379837,4.5137033 parent: 2 - - uid: 4924 +- proto: Emitter + entities: + - uid: 748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-40.5 + anchored: False + pos: 9.5,-29.5 parent: 2 -- proto: GasOutletInjector - entities: - - uid: 95 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-29.5 + anchored: False + pos: 9.5,-30.5 parent: 2 - - uid: 1220 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 10875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-25.5 + rot: 1.5707963267948966 rad + pos: 14.5,-47.5 parent: 2 - - uid: 4120 + - uid: 10876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-31.5 + rot: 1.5707963267948966 rad + pos: 14.5,-55.5 parent: 2 - - uid: 4176 + - uid: 10904 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-23.5 + pos: 28.5,-47.5 parent: 2 - - uid: 4189 + - uid: 10958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-27.5 + pos: 28.5,-55.5 parent: 2 - - uid: 4355 + - uid: 10963 components: - type: Transform - pos: 35.5,-32.5 + rot: 3.141592653589793 rad + pos: 17.5,-58.5 parent: 2 - - uid: 4434 + - uid: 10965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-33.5 + rot: 3.141592653589793 rad + pos: 25.5,-58.5 parent: 2 - - uid: 12882 +- proto: EncryptionKeyCargo + entities: + - uid: 412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 2 -- proto: GasPassiveVent + parent: 5183 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand entities: - - uid: 3951 + - uid: 413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3953 + parent: 10443 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4102 + parent: 12111 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 535 components: - type: Transform - pos: 50.5,-29.5 - parent: 2 - - uid: 4107 + parent: 533 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 421 components: - type: Transform - pos: 50.5,-33.5 - parent: 2 - - uid: 4118 + parent: 12112 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 422 components: - type: Transform - pos: 50.5,-27.5 - parent: 2 - - uid: 4119 + parent: 12232 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 423 components: - type: Transform - pos: 50.5,-23.5 + parent: 12233 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 424 + components: + - type: Transform + parent: 12395 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 12579 + components: + - type: Transform + pos: 51.5,11.5 parent: 2 - - uid: 4179 +- proto: ExplosivesSignMed + entities: + - uid: 10438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-35.5 + pos: 61.5,28.5 parent: 2 - - uid: 4354 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 315 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-30.5 + pos: 7.5,4.5 parent: 2 - - uid: 4432 + - uid: 582 components: - type: Transform - pos: 50.5,-31.5 + pos: 21.5,-4.5 parent: 2 - - uid: 4433 + - uid: 783 components: - type: Transform - pos: 50.5,-25.5 + pos: 20.5,-22.5 parent: 2 - - uid: 5265 + - uid: 1947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-9.5 + pos: 32.5,-29.5 parent: 2 - - uid: 8677 + - uid: 4177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,33.5 + pos: 6.5,36.5 parent: 2 - - uid: 10426 + - uid: 5111 components: - type: Transform - pos: 63.5,28.5 + pos: 52.5,12.5 parent: 2 - - uid: 10427 + - uid: 5336 components: - type: Transform - pos: 64.5,28.5 + pos: 53.5,22.5 parent: 2 - - uid: 11587 + - uid: 5337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-48.5 + pos: 50.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11588 + - uid: 5347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-48.5 + pos: 62.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeBend - entities: - - uid: 34 + - uid: 5348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-35.5 + pos: 68.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 87 + - uid: 5658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,2.5 + pos: 29.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 383 + - uid: 5659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 + pos: 23.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 387 + - uid: 6026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-25.5 + pos: 8.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 393 + - uid: 6069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 + pos: 14.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 746 + - uid: 6635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-34.5 + pos: 40.5,-5.5 parent: 2 - - uid: 889 + - uid: 8985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 + pos: 36.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 891 + - uid: 9399 components: - type: Transform - pos: 27.5,-25.5 + pos: 33.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1039 + - uid: 9628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-24.5 + pos: 47.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1040 + - uid: 11066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 + pos: 14.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1149 + - uid: 14569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,0.5 + rot: -1.5707963267948966 rad + pos: 87.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1235 +- proto: FaxMachineBase + entities: + - uid: 1622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 + pos: 63.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1236 + - type: FaxMachine + name: RD Office + - uid: 1649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-48.5 + pos: 8.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1258 + - type: FaxMachine + name: Library + - uid: 2394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-47.5 + pos: 12.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1306 + - type: FaxMachine + name: CE Office + - uid: 7566 components: - type: Transform - pos: 31.5,-32.5 + pos: 45.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1456 + - type: FaxMachine + name: HoS Office + - uid: 7668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 + pos: 15.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1506 + - type: FaxMachine + name: Cargo + - uid: 7728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-1.5 + pos: -1.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1534 + - type: FaxMachine + name: Law Office + - uid: 8080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,1.5 + pos: 9.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1685 + - type: FaxMachine + name: Quartermaster + - uid: 8320 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - type: FaxMachine + name: Security + - uid: 9006 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - type: FaxMachine + name: Court House + - uid: 10070 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - type: FaxMachine + name: CMO Office + - uid: 10271 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - type: FaxMachine + name: HoP Office + - uid: 11002 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - type: FaxMachine + name: Engineering + - uid: 11947 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - type: FaxMachine + name: Conference Room + - uid: 14996 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - type: FaxMachine + name: Medical + - uid: 14997 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - type: FaxMachine + name: Science +- proto: FaxMachineCaptain + entities: + - uid: 1465 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 108 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 7834 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 5198 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 194 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 36 + - 6952 + - 11245 + - 11244 + - 12449 + - 6931 + - 6930 + - 11247 + - 11246 + - uid: 1016 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 1018 + - 12396 + - 5620 + - 5619 + - 5656 + - 5657 + - 5617 + - 5618 + - 831 + - 802 + - 5621 + - 5622 + - uid: 1657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 6641 + - 6644 + - 6643 + - 6642 + - 6636 + - 1514 + - 742 + - 873 + - 554 + - 558 + - 1511 + - 1515 + - 1513 + - 12834 + - uid: 2123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 193 + - 241 + - 14065 + - 14064 + - uid: 2474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 12559 + - 10413 + - 10414 + - 10415 + - uid: 4049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 5657 + - 5656 + - 1018 + - 169 + - 1024 + - 5684 + - uid: 5077 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 1511 + - 1515 + - 1513 + - 6645 + - 6637 + - uid: 6634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 1514 + - 742 + - 873 + - 554 + - 558 + - 6638 + - 6523 + - 1510 + - uid: 6683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 6523 + - 1510 + - 6509 + - 6568 + - 12077 + - 6684 + - uid: 7013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 30 + - 8238 + - 29 + - 12086 + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + - 13967 + - 13894 + - 13973 + - 14066 + - 192 + - 1317 + - uid: 8005 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - uid: 8006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - uid: 8007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - uid: 8316 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + - uid: 8920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 8923 + - 6801 + - 6802 + - 6803 + - 6790 + - 6799 + - 6800 + - 10206 + - 10205 + - 5093 + - uid: 9588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 9586 + - 9585 + - 9584 + - 9589 + - 9236 + - 13510 + - uid: 10208 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 10216 + - 10205 + - 10206 + - uid: 10956 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 8659 + - uid: 10964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1103 + - 1104 + - 11472 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12516 + - 12085 + - 9586 + - 9585 + - 9584 + - uid: 11507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 11509 + - 11526 + - 11527 + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 3983 + - 2993 + - 2994 + - 11321 + - 11320 + - 11319 + - 8293 + - 8291 + - 5026 + - 5144 + - 4919 + - 7011 + - 6509 + - 6568 + - 14994 + - 14992 + - 12161 + - uid: 12153 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12162 + - uid: 12154 + components: + - type: Transform + pos: 69.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12162 + - 9896 + - 9897 + - 9858 + - uid: 12474 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11247 + - 11246 + - 12472 + - 11264 + - 11263 + - 6928 + - 6929 + - 6930 + - 6931 + - uid: 12477 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11264 + - 11263 + - 1103 + - 1104 + - 11472 + - 12475 + - 6928 + - 6929 + - 3457 + - 3458 + - 3459 + - 9352 + - 9353 + - 9351 + - uid: 12483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 11746 + - 8293 + - 8291 + - 5026 + - 11321 + - 11320 + - 11319 + - 11251 + - 11252 + - 11253 + - 9364 + - 9363 + - 9362 + - uid: 12487 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 12485 + - 9364 + - 9363 + - 9362 + - 11251 + - 11252 + - 11253 + - 11413 + - 9351 + - 9353 + - 9352 + - 12087 + - uid: 12489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 12077 + - 11858 + - 12075 + - 12490 + - 12076 + - uid: 12517 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12518 + - uid: 12549 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 12550 + - 12087 + - uid: 12556 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10416 + - 10417 + - 10418 + - 12554 + - 1252 + - 1162 + - 6473 + - uid: 12557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 10416 + - 10417 + - 10418 + - 185 + - 10413 + - 10414 + - 10415 + - uid: 14041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 14063 + - 14061 + - 14062 + - 13974 + - 13975 + - 13976 + - 13979 + - 13978 + - 13977 + - 13983 + - 13982 + - 13981 + - uid: 14737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 8106 + - 14672 + - 29 + - 8238 + - 371 +- proto: FireAxeCabinetFilled + entities: + - uid: 1571 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,44.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 5722 + components: + - type: Transform + pos: 73.5,-12.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + pos: 80.48026,-16.378305 + parent: 2 + - uid: 10826 + components: + - type: Transform + pos: 81.454414,9.641975 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 44.52368,28.548758 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-38.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-38.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 2315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-38.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-38.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-38.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8920 + - uid: 5176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-3.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-3.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-30.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 6928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 7709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 7938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9587 + - 9588 + - uid: 9362 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,28.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - uid: 11244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,11.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-3.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-3.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-3.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,12.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-2.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1657 + - uid: 13507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9587 + - 9588 + - uid: 13514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13977 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13978 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13979 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - uid: 14992 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 + - uid: 14994 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 +- proto: FirelockElectronics + entities: + - uid: 1045 + components: + - type: Transform + pos: 32.473473,-30.370909 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14737 + - 5 + - 14754 + - uid: 169 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - 14737 + - 5 + - uid: 8238 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14737 + - 5 + - 7013 + - 14754 + - uid: 8823 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - 12163 + - uid: 9897 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - 12163 + - uid: 10205 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - uid: 11243 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: 72.5,18.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + pos: 74.5,14.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: 86.5,-13.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 83.5,-15.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + pos: 83.5,-16.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: 72.5,-16.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + pos: 88.5,-17.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: 72.5,10.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: 76.5,12.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: 73.5,14.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14754 + - uid: 12087 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 + - 14737 + - 5 + - uid: 15002 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 380 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 +- proto: Flash + entities: + - uid: 4987 + components: + - type: Transform + pos: 30.4376,48.510555 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 5714 + components: + - type: Transform + pos: 76.49909,-12.519633 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: 81.401146,12.491636 + parent: 2 +- proto: Floodlight + entities: + - uid: 4500 + components: + - type: Transform + pos: 34.356434,-54.33789 + parent: 2 +- proto: FloorDrain + entities: + - uid: 741 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1859 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5254 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8960 + components: + - type: Transform + pos: 102.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 10447 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11900 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12288 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12290 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13606 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FoodBanana + entities: + - uid: 9595 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 5507 + components: + - type: Transform + pos: 70.488464,33.529522 + parent: 2 +- proto: FoodBowlBigTrash + entities: + - uid: 5881 + components: + - type: Transform + pos: -0.3447714,-23.649889 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 8862 + components: + - type: Transform + pos: 107.64995,-11.344688 + parent: 2 +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 8863 + components: + - type: Transform + pos: 107.3062,-11.344688 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 8861 + components: + - type: Transform + pos: 107.35307,-10.954063 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 4982 + components: + - type: Transform + pos: 33.510082,46.65118 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 37.49929,-7.4188547 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 35.53611,17.66077 + parent: 2 +- proto: FoodBreadBananaSlice + entities: + - uid: 8651 + components: + - type: Transform + rot: 4.008621544926427E-05 rad + pos: 83.58996,8.734995 + parent: 2 +- proto: FoodCakeChocolateSlice + entities: + - uid: 10832 + components: + - type: Transform + rot: 3.7838042771909386E-05 rad + pos: 70.43763,11.734996 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 1551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 296 + components: + - type: Transform + pos: 36.20302,-12.346379 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 36.093643,-12.174504 + parent: 2 +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 5885 + components: + - type: Transform + pos: 1.6864786,-25.212389 + parent: 2 +- proto: FoodFrozenSnowconeRainbow + entities: + - uid: 12702 + components: + - type: Transform + pos: 106.40823,-18.308239 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: 106.54886,-18.401989 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: 106.68948,-18.276989 + parent: 2 +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 5884 + components: + - type: Transform + pos: -0.0010213852,-26.399889 + parent: 2 +- proto: FoodMeat + entities: + - uid: 566 + components: + - type: Transform + pos: 31.219597,-12.667201 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 31.625847,-12.667201 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 31.657097,-12.292201 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 31.422722,-12.542201 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 31.453972,-12.339076 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 9590 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 +- proto: FoodPlateSmallTrash + entities: + - uid: 5882 + components: + - type: Transform + pos: 2.1083536,-26.524889 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: -0.9697714,-25.884264 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 12099 + components: + - type: Transform + pos: 19.740185,41.04155 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 6758 + components: + - type: Transform + pos: 33.484684,-5.5126047 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 6655 + components: + - type: Transform + pos: 33.71906,-5.5126047 + parent: 2 +- proto: FoodSnackChocolate + entities: + - uid: 12495 + components: + - type: Transform + pos: 11.536887,-11.535692 + parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 5886 + components: + - type: Transform + pos: -1.0166464,-26.540514 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 0.4677286,-25.024889 + parent: 2 +- proto: FoodTinMRE + entities: + - uid: 5711 + components: + - type: Transform + pos: 77.34284,-13.410258 + parent: 2 +- proto: FoodTinMRETrash + entities: + - uid: 5888 + components: + - type: Transform + pos: 0.8896036,-25.587389 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 5476 + components: + - type: Transform + pos: 67.5,38.5 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 6759 + components: + - type: Transform + pos: 33.59406,-4.5126047 + parent: 2 +- proto: GasFilterFlipped + entities: + - uid: 3290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-25.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-27.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-29.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-31.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-33.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-39.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 5220 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 7285 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 5529 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 5132 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 2072 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-30.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-32.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-28.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-40.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-29.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-25.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-23.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-27.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-45.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 3951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4102 + components: + - type: Transform + pos: 50.5,-29.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 50.5,-27.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-35.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-30.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 50.5,-25.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-9.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 64.5,28.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14345 + components: + - type: Transform + pos: 82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14621 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeBend + entities: + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 891 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1306 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3780 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3960 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-26.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-30.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4219 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-24.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-28.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-34.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-32.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6428 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7217 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8206 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8662 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9555 + components: + - type: Transform + pos: 28.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10639 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10667 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11579 + components: + - type: Transform + pos: 41.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11768 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-1.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + - uid: 11798 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12301 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-43.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-45.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-27.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14418 + components: + - type: Transform + pos: 90.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14425 + components: + - type: Transform + pos: 92.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14604 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeFourway + entities: + - uid: 62 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 350 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 463 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3965 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4021 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4770 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5169 + components: + - type: Transform + pos: 72.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5181 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5200 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5240 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6520 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6623 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8581 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8589 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10054 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10374 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11732 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11787 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeStraight + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 53 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 68 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 107 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 352 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 353 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 354 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 375 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 390 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 395 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 396 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 402 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 431 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 442 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 444 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 447 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 448 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 609 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 667 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 671 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 672 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 2 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-34.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 820 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 825 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 833 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 835 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-32.5 + parent: 2 + - uid: 879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-27.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-32.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-32.5 + parent: 2 + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-34.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 912 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 914 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-31.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-29.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-34.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1019 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1020 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1043 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1207 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1223 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-25.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1328 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1329 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-27.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-26.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-24.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1488 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1528 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1562 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1604 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1606 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1607 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1608 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1609 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1610 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1611 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1654 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1666 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1667 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1668 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1669 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1670 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1671 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1719 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1730 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1749 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1762 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1764 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1769 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1770 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1771 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1772 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1774 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1800 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1801 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1803 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1804 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1805 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1875 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1876 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1878 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1919 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1920 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1921 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1934 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-29.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-29.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1961 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2029 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2032 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2062 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2063 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-30.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-28.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2302 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2305 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2316 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2317 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2322 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2396 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-31.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2416 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2452 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2453 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2488 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2490 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2546 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2560 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-33.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-34.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-30.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3252 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-24.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-28.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-32.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-31.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-33.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3704 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3955 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4009 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4022 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4068 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-28.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-28.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4085 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-26.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-24.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-24.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4184 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-31.5 + pos: -4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4202 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4203 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4283 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4288 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4289 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4290 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4291 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4356 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-30.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-30.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-28.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-26.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-24.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4445 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4446 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4448 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4449 + components: + - type: Transform + pos: 32.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1691 + - uid: 4451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-28.5 + pos: 32.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1698 + - uid: 4461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 + pos: 22.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1799 + - uid: 4462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + pos: 20.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1807 + - uid: 4463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 + pos: 20.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1814 + color: '#0335FCFF' + - uid: 4480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,1.5 + pos: 40.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1816 + color: '#03FCD3FF' + - uid: 4493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 + rot: 1.5707963267948966 rad + pos: 44.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1819 + - uid: 4495 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 45.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1820 + color: '#FF1212FF' + - uid: 4827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 + pos: 7.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2073 + - uid: 4907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 + pos: 7.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2383 + color: '#0335FCFF' + - uid: 4970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-23.5 + pos: 27.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2609 + color: '#0335FCFF' + - uid: 5009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 + pos: 55.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3518 + - uid: 5023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-35.5 + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 parent: 2 - - uid: 3688 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3690 + color: '#0335FCFF' + - uid: 5025 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + pos: 58.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3780 + - uid: 5036 components: - type: Transform - pos: 37.5,-25.5 + pos: 56.5,-0.5 parent: 2 - - uid: 3946 + - uid: 5038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 2 + - uid: 5040 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-22.5 + pos: 60.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3956 + - uid: 5042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-47.5 + rot: -1.5707963267948966 rad + pos: 58.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3960 + color: '#FF1212FF' + - uid: 5044 components: - type: Transform - pos: 44.5,-21.5 + rot: -1.5707963267948966 rad + pos: 46.5,-27.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-28.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3961 + - uid: 5083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-21.5 + pos: 57.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4014 + color: '#0335FCFF' + - uid: 5102 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-26.5 + pos: 53.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4015 + color: '#0335FCFF' + - uid: 5110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-23.5 + pos: 46.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4016 + - uid: 5184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-22.5 + pos: 57.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4028 + color: '#0335FCFF' + - uid: 5192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 + pos: 55.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4031 + - uid: 5206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 + pos: 57.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4050 + color: '#0335FCFF' + - uid: 5208 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-36.5 + pos: 43.5,-25.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4091 + - uid: 5302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5303 + components: + - type: Transform + pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4097 + - uid: 5429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-26.5 + rot: 3.141592653589793 rad + pos: 11.5,6.5 parent: 2 - - uid: 4098 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-30.5 + pos: 11.5,-36.5 parent: 2 - - uid: 4099 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-24.5 + pos: 8.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4219 + color: '#FF1212FF' + - uid: 5666 components: - type: Transform - pos: 41.5,-0.5 + rot: -1.5707963267948966 rad + pos: 17.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4427 + - uid: 5667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-24.5 + pos: 16.5,-35.5 parent: 2 - - uid: 4428 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-28.5 + pos: 15.5,-35.5 parent: 2 - - uid: 4429 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5669 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-34.5 + pos: 14.5,-35.5 parent: 2 - - uid: 4430 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5670 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-32.5 + pos: 16.5,-34.5 parent: 2 - - uid: 4443 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5671 components: - type: Transform - pos: 32.5,-35.5 + rot: -1.5707963267948966 rad + pos: 15.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4498 + color: '#FF1212FF' + - uid: 5672 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-48.5 + pos: 14.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4914 + - uid: 5673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + pos: 10.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5010 + - uid: 5683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,14.5 + pos: 38.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5028 + color: '#03FCD3FF' + - uid: 6337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-25.5 + pos: 48.5,34.5 parent: 2 - - uid: 5108 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + rot: 3.141592653589793 rad + pos: 47.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5109 + - uid: 6339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 + rot: 3.141592653589793 rad + pos: 47.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5765 + - uid: 6425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + rot: 3.141592653589793 rad + pos: 32.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6428 + - uid: 6426 components: - type: Transform - pos: 32.5,46.5 + rot: 3.141592653589793 rad + pos: 32.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6489 + - uid: 6479 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 30.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6482 + components: + - type: Transform + pos: 33.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6499 + - uid: 6484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 + pos: 33.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6500 + - uid: 6488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 + pos: 46.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6569 + - uid: 6490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-6.5 + rot: 1.5707963267948966 rad + pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6777 + - uid: 6498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 + pos: 44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6503 + components: + - type: Transform + pos: 27.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6833 + - uid: 6507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + rot: 1.5707963267948966 rad + pos: 35.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8023 + - uid: 6508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 + pos: 46.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8198 + color: '#0335FCFF' + - uid: 6536 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,21.5 + pos: 47.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8199 + - uid: 6550 components: - type: Transform - pos: 17.5,22.5 + pos: 33.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8202 + - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 + pos: 33.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8203 + - uid: 6553 components: - type: Transform - pos: 14.5,23.5 + pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8204 + - uid: 6554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 + pos: 33.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8205 + - uid: 6556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 + pos: 35.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8206 + - uid: 6557 components: - type: Transform - pos: 13.5,21.5 + pos: 35.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8228 + - uid: 6559 components: - type: Transform - pos: 13.5,25.5 + pos: 35.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8338 + color: '#0335FCFF' + - uid: 6560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,37.5 + pos: 35.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8599 + color: '#0335FCFF' + - uid: 6561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,22.5 + pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8620 + color: '#0335FCFF' + - uid: 6562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 + pos: 35.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8621 + - uid: 6563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 + pos: 35.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8628 + color: '#0335FCFF' + - uid: 6564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,17.5 + pos: 35.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8663 + - uid: 6566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,30.5 + pos: 44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8672 + color: '#FF1212FF' + - uid: 6567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,30.5 + pos: 46.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9545 + - uid: 6575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,45.5 + pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9547 + - uid: 6576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,45.5 + pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9555 + - uid: 6577 components: - type: Transform - pos: 28.5,40.5 + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9556 + - uid: 6579 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,39.5 + pos: 38.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9572 + - uid: 6580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,35.5 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10169 + - uid: 6581 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: 36.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10200 + - uid: 6585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-7.5 + rot: -1.5707963267948966 rad + pos: 34.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10334 + color: '#0335FCFF' + - uid: 6586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,10.5 + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10335 + - uid: 6587 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,10.5 + pos: 32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10364 + - uid: 6589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,19.5 + pos: 30.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10382 + - uid: 6594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + rot: 3.141592653589793 rad + pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10384 + - uid: 6596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,15.5 + pos: 34.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10399 + - uid: 6597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10639 + - uid: 6598 components: - type: Transform - pos: 29.5,10.5 + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10644 + color: '#FF1212FF' + - uid: 6599 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,7.5 + pos: 37.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10645 + - uid: 6600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,6.5 + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10667 + - uid: 6602 components: - type: Transform - pos: 43.5,-22.5 + rot: 3.141592653589793 rad + pos: 39.5,-5.5 parent: 2 - - uid: 11512 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6603 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,-6.5 + pos: 39.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11578 + - uid: 6604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-45.5 + rot: 3.141592653589793 rad + pos: 39.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11579 + color: '#0335FCFF' + - uid: 6605 components: - type: Transform - pos: 41.5,-47.5 + rot: 3.141592653589793 rad + pos: 39.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11707 + color: '#0335FCFF' + - uid: 6606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-9.5 + rot: 3.141592653589793 rad + pos: 39.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11720 + - uid: 6612 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-4.5 + pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11721 + - uid: 6613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-4.5 + rot: 1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11722 + - uid: 6624 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-1.5 + pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11765 + - uid: 6625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,1.5 + rot: 1.5707963267948966 rad + pos: 36.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11768 - components: - - type: Transform - pos: 61.5,0.5 - parent: 2 - - uid: 11786 + - uid: 6626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-1.5 + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 parent: 2 - - uid: 11789 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6672 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-1.5 + pos: 47.5,22.5 parent: 2 - - uid: 11797 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 parent: 2 - - uid: 11798 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6835 components: - type: Transform - pos: 56.5,-1.5 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11799 + color: '#FF1212FF' + - uid: 6844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-2.5 + pos: 7.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11954 + - uid: 6859 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,4.5 + pos: -5.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11955 + - uid: 6865 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,4.5 + pos: 43.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12301 + - uid: 6909 components: - type: Transform - pos: 49.5,-47.5 + rot: 1.5707963267948966 rad + pos: 6.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12858 + color: '#0335FCFF' + - uid: 6915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-45.5 + pos: 10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12869 + - uid: 6916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-53.5 + pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12870 + color: '#FF1212FF' + - uid: 6917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-53.5 + pos: 10.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-43.5 - parent: 2 - - uid: 12881 + color: '#FF1212FF' + - uid: 6918 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-45.5 - parent: 2 - - uid: 12883 - components: - - type: Transform - pos: 49.5,-44.5 + pos: 9.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12884 + - uid: 6919 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-46.5 + pos: -6.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12885 + - uid: 6946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-46.5 + pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13431 + - uid: 6947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-27.5 + pos: 18.5,8.5 parent: 2 -- proto: GasPipeFourway - entities: - - uid: 62 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6948 components: - type: Transform - pos: 35.5,-0.5 + pos: 18.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 350 + color: '#FF1212FF' + - uid: 7006 components: - type: Transform - pos: 19.5,9.5 + pos: 27.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 463 + - uid: 7170 components: - type: Transform - pos: 18.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3965 + - uid: 7171 components: - type: Transform - pos: 37.5,-44.5 + rot: 3.141592653589793 rad + pos: 14.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4021 + - uid: 7172 components: - type: Transform - pos: 55.5,-5.5 + rot: 3.141592653589793 rad + pos: 14.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4770 + - uid: 7218 components: - type: Transform - pos: 12.5,-0.5 + rot: -1.5707963267948966 rad + pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5169 + color: '#FF1212FF' + - uid: 7220 components: - type: Transform - pos: 72.5,2.5 + rot: 1.5707963267948966 rad + pos: 16.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5181 + - uid: 7224 components: - type: Transform - pos: 25.5,-10.5 + rot: -1.5707963267948966 rad + pos: 15.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5200 + - uid: 7242 components: - type: Transform - pos: 42.5,13.5 + rot: 3.141592653589793 rad + pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5240 + color: '#FF1212FF' + - uid: 7247 components: - type: Transform - pos: 44.5,0.5 + pos: 9.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6520 + - uid: 7249 components: - type: Transform - pos: 46.5,-1.5 + pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6623 + - uid: 7410 components: - type: Transform - pos: 35.5,-3.5 + rot: 3.141592653589793 rad + pos: -6.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8581 + color: '#FF1212FF' + - uid: 7411 components: - type: Transform - pos: 39.5,24.5 + rot: 3.141592653589793 rad + pos: -6.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8589 + color: '#FF1212FF' + - uid: 7413 components: - type: Transform - pos: 40.5,23.5 + rot: 3.141592653589793 rad + pos: -6.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10054 + - uid: 7416 components: - type: Transform - pos: 59.5,18.5 + rot: 3.141592653589793 rad + pos: -6.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10374 + color: '#FF1212FF' + - uid: 7418 components: - type: Transform - pos: 58.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11732 + - uid: 7419 components: - type: Transform - pos: 60.5,-5.5 + rot: 3.141592653589793 rad + pos: -6.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11787 + - uid: 7420 components: - type: Transform - pos: 57.5,-2.5 + rot: 3.141592653589793 rad + pos: -6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPipeStraight - entities: - - uid: 26 + color: '#FF1212FF' + - uid: 7421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,13.5 + rot: 3.141592653589793 rad + pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 33 + - uid: 7422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 + rot: 3.141592653589793 rad + pos: -5.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 53 + - uid: 7423 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: -5.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 68 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 74 + - uid: 7424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 86 + - uid: 7425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 91 + - uid: 7426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 107 + - uid: 7427 components: - type: Transform - pos: 11.5,-37.5 + rot: 3.141592653589793 rad + pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 117 + - uid: 7429 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 + pos: -5.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 122 + color: '#0335FCFF' + - uid: 7430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 + rot: 3.141592653589793 rad + pos: -5.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 143 + color: '#0335FCFF' + - uid: 7431 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,8.5 + pos: -5.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 153 + - uid: 7432 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,7.5 + pos: -5.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 168 + - uid: 7472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,19.5 + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 175 + - uid: 7483 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: -12.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 234 + - uid: 7503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,10.5 + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 235 + color: '#0335FCFF' + - uid: 7504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,9.5 + rot: -1.5707963267948966 rad + pos: -14.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 236 + - uid: 7578 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,8.5 + pos: 62.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 352 + color: '#0335FCFF' + - uid: 7745 components: - type: Transform - pos: 3.5,4.5 + pos: 8.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 353 + - uid: 7758 components: - type: Transform - pos: 3.5,8.5 + rot: 1.5707963267948966 rad + pos: 55.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 354 + color: '#0335FCFF' + - uid: 7789 components: - type: Transform - pos: 3.5,9.5 + rot: 1.5707963267948966 rad + pos: 58.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 375 + color: '#0335FCFF' + - uid: 7790 components: - type: Transform - pos: 3.5,2.5 + rot: 1.5707963267948966 rad + pos: 54.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 390 + color: '#0335FCFF' + - uid: 7878 components: - type: Transform - pos: 3.5,6.5 + pos: 7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 395 + color: '#0335FCFF' + - uid: 8012 components: - type: Transform - pos: 3.5,3.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 396 + color: '#0335FCFF' + - uid: 8013 components: - type: Transform - pos: 3.5,5.5 + pos: 12.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 402 + color: '#0335FCFF' + - uid: 8014 components: - type: Transform - pos: 3.5,1.5 + pos: 12.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 425 + color: '#0335FCFF' + - uid: 8015 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,13.5 + pos: 14.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 432 + - uid: 8018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,13.5 + pos: 16.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 436 + color: '#FF1212FF' + - uid: 8019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-22.5 + pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 439 + - uid: 8020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-23.5 + pos: 16.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 440 + - uid: 8021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,9.5 + pos: 16.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 442 + color: '#FF1212FF' + - uid: 8022 components: - type: Transform - pos: 25.5,-26.5 + pos: 16.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 444 + - uid: 8111 components: - type: Transform - pos: 25.5,-17.5 + rot: 1.5707963267948966 rad + pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 447 + color: '#0335FCFF' + - uid: 8179 components: - type: Transform - pos: 25.5,-22.5 + rot: -1.5707963267948966 rad + pos: 25.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 512 + color: '#0335FCFF' + - uid: 8180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 + rot: -1.5707963267948966 rad + pos: 24.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 609 + color: '#0335FCFF' + - uid: 8181 components: - type: Transform - pos: 10.5,-36.5 + rot: -1.5707963267948966 rad + pos: 23.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 611 + color: '#0335FCFF' + - uid: 8183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 + rot: -1.5707963267948966 rad + pos: 21.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 617 + color: '#0335FCFF' + - uid: 8184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-31.5 + rot: -1.5707963267948966 rad + pos: 20.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 666 + - uid: 8186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,13.5 + pos: 18.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 667 + - uid: 8187 components: - type: Transform - pos: 55.5,-6.5 + rot: -1.5707963267948966 rad + pos: 17.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8188 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,13.5 + pos: 16.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 672 + - uid: 8190 components: - type: Transform - pos: 31.5,-26.5 + rot: -1.5707963267948966 rad + pos: 14.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 678 + color: '#0335FCFF' + - uid: 8191 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-34.5 + pos: 24.5,21.5 parent: 2 - - uid: 743 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8193 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-34.5 + pos: 22.5,21.5 parent: 2 - - uid: 755 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8194 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-34.5 + pos: 21.5,21.5 parent: 2 - - uid: 817 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8195 components: - type: Transform - pos: 42.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 818 + color: '#FF1212FF' + - uid: 8196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-24.5 + rot: -1.5707963267948966 rad + pos: 19.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 820 + color: '#FF1212FF' + - uid: 8198 components: - type: Transform - pos: 31.5,-25.5 + pos: 7.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 825 + color: '#0335FCFF' + - uid: 8204 components: - type: Transform - pos: 42.5,3.5 + pos: 7.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 833 + - uid: 8209 components: - type: Transform - pos: 42.5,5.5 + rot: 1.5707963267948966 rad + pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 835 + - uid: 8210 components: - type: Transform - pos: 42.5,4.5 + rot: 1.5707963267948966 rad + pos: 11.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 871 + - uid: 8211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-32.5 + pos: 10.5,21.5 parent: 2 - - uid: 879 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-45.5 + pos: 8.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 887 + - uid: 8214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: 8.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 888 + color: '#FF1212FF' + - uid: 8215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-26.5 + pos: 8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 890 + color: '#FF1212FF' + - uid: 8224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-21.5 + rot: -1.5707963267948966 rad + pos: 12.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 893 + color: '#FF1212FF' + - uid: 8225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 894 + color: '#FF1212FF' + - uid: 8226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 + rot: -1.5707963267948966 rad + pos: 10.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 896 + color: '#FF1212FF' + - uid: 8295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,13.5 + pos: 24.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 897 + - uid: 8297 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,13.5 + pos: 25.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 898 + - uid: 8298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 + rot: -1.5707963267948966 rad + pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 899 + - uid: 8300 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-27.5 + pos: 24.5,37.5 parent: 2 - - uid: 901 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-1.5 + pos: 27.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-32.5 - parent: 2 - - uid: 903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 2 - - uid: 904 + - uid: 8308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-34.5 + pos: 27.5,37.5 parent: 2 - - uid: 905 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 2 - - uid: 906 - components: - - type: Transform - pos: 25.5,0.5 + pos: 34.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 907 + color: '#0335FCFF' + - uid: 8318 components: - type: Transform - pos: 56.5,29.5 + pos: 27.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 908 + - uid: 8321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,1.5 + pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 910 + color: '#0335FCFF' + - uid: 8322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,1.5 + pos: 29.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 911 + color: '#0335FCFF' + - uid: 8384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + rot: 1.5707963267948966 rad + pos: 47.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 912 + - uid: 8397 components: - type: Transform - pos: 25.5,-19.5 + rot: 3.141592653589793 rad + pos: 47.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 914 + - uid: 8398 components: - type: Transform - pos: 25.5,-4.5 + rot: 3.141592653589793 rad + pos: 47.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 923 + - uid: 8399 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: 50.5,35.5 parent: 2 - - uid: 933 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 + rot: 3.141592653589793 rad + pos: 45.5,34.5 parent: 2 - - uid: 938 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8401 components: - type: Transform - pos: 25.5,-3.5 + rot: 3.141592653589793 rad + pos: 47.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 - parent: 2 - - uid: 1006 + - uid: 8402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-34.5 + rot: -1.5707963267948966 rad + pos: 42.5,31.5 parent: 2 - - uid: 1019 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8403 components: - type: Transform - pos: 25.5,-2.5 + rot: -1.5707963267948966 rad + pos: 44.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1020 + - uid: 8406 components: - type: Transform - pos: 25.5,-1.5 + rot: 1.5707963267948966 rad + pos: 51.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1037 + color: '#0335FCFF' + - uid: 8409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-23.5 + rot: 1.5707963267948966 rad + pos: 51.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1038 + color: '#FF1212FF' + - uid: 8410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-23.5 + rot: 1.5707963267948966 rad + pos: 52.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1043 + color: '#0335FCFF' + - uid: 8549 components: - type: Transform - pos: 25.5,-0.5 + rot: 1.5707963267948966 rad + pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1044 + - uid: 8550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,1.5 + rot: 1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1106 + - uid: 8551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,0.5 + rot: 1.5707963267948966 rad + pos: 29.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1107 + - uid: 8552 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,9.5 + pos: 30.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1157 + color: '#FF1212FF' + - uid: 8553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 + rot: 1.5707963267948966 rad + pos: 31.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1158 + color: '#FF1212FF' + - uid: 8554 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 32.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1181 + color: '#FF1212FF' + - uid: 8556 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,9.5 + pos: 28.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1183 + - uid: 8557 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,9.5 + pos: 29.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1206 + - uid: 8558 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,9.5 + pos: 30.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1207 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1212 + - uid: 8559 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,9.5 + pos: 31.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1213 + - uid: 8560 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,9.5 + pos: 32.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1214 + - uid: 8576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,9.5 + rot: -1.5707963267948966 rad + pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1217 + color: '#FF1212FF' + - uid: 8577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-44.5 + rot: -1.5707963267948966 rad + pos: 36.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1222 + - uid: 8578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-44.5 + rot: -1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1224 + - uid: 8579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-44.5 + rot: -1.5707963267948966 rad + pos: 38.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1226 + - uid: 8580 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-44.5 + pos: 39.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1237 + - uid: 8582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-45.5 + rot: -1.5707963267948966 rad + pos: 41.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1245 + color: '#FF1212FF' + - uid: 8583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-47.5 + rot: -1.5707963267948966 rad + pos: 42.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1249 + color: '#FF1212FF' + - uid: 8586 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-45.5 + pos: 42.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1300 + color: '#0335FCFF' + - uid: 8587 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-25.5 + pos: 41.5,24.5 parent: 2 - - uid: 1301 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8588 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-25.5 + pos: 40.5,24.5 parent: 2 - - uid: 1302 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8590 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-26.5 + pos: 38.5,24.5 parent: 2 - - uid: 1303 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-21.5 + rot: -1.5707963267948966 rad + pos: 37.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1346 + color: '#0335FCFF' + - uid: 8593 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-27.5 + pos: 36.5,24.5 parent: 2 - - uid: 1371 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8600 components: - type: Transform - pos: 31.5,-33.5 + rot: 3.141592653589793 rad + pos: 40.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1373 + - uid: 8604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-26.5 + rot: 3.141592653589793 rad + pos: 40.5,25.5 parent: 2 - - uid: 1472 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-24.5 + rot: 3.141592653589793 rad + pos: 39.5,25.5 parent: 2 - - uid: 1476 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-24.5 + rot: 3.141592653589793 rad + pos: 39.5,26.5 parent: 2 - - uid: 1485 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8611 components: - type: Transform - pos: 31.5,-34.5 + pos: 33.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1488 + - uid: 8612 components: - type: Transform - pos: 31.5,-35.5 + pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1489 + - uid: 8613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-35.5 + pos: 33.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1490 + color: '#FF1212FF' + - uid: 8614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-35.5 + pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1521 + - uid: 8615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 + pos: 35.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1528 + - uid: 8616 components: - type: Transform - pos: 42.5,6.5 + pos: 35.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1538 + - uid: 8617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-36.5 + pos: 35.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1541 + color: '#0335FCFF' + - uid: 8618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-36.5 + pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1548 + color: '#0335FCFF' + - uid: 8619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-23.5 + pos: 35.5,18.5 parent: 2 - - uid: 1549 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-23.5 + rot: 1.5707963267948966 rad + pos: 34.5,19.5 parent: 2 - - uid: 1559 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8623 components: - type: Transform - pos: 55.5,-2.5 + rot: 1.5707963267948966 rad + pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1562 + - uid: 8624 components: - type: Transform - pos: 55.5,-3.5 + rot: 1.5707963267948966 rad + pos: 36.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1564 + - uid: 8625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,18.5 + rot: 1.5707963267948966 rad + pos: 37.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1572 + - uid: 8626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 + rot: 1.5707963267948966 rad + pos: 36.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1573 + color: '#0335FCFF' + - uid: 8627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 + rot: 1.5707963267948966 rad + pos: 37.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1574 + color: '#0335FCFF' + - uid: 8631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1594 + color: '#0335FCFF' + - uid: 8632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1595 + color: '#0335FCFF' + - uid: 8633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1600 + color: '#0335FCFF' + - uid: 8634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1601 + color: '#0335FCFF' + - uid: 8636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-36.5 + rot: 1.5707963267948966 rad + pos: 34.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1602 + color: '#0335FCFF' + - uid: 8637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-36.5 + rot: 1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1603 + color: '#0335FCFF' + - uid: 8638 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-36.5 + pos: 39.5,-34.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1604 + color: '#0335FCFF' + - uid: 8655 components: - type: Transform - pos: 17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 37.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1606 + color: '#0335FCFF' + - uid: 8660 components: - type: Transform - pos: 17.5,-33.5 + rot: 1.5707963267948966 rad + pos: 38.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1607 + color: '#0335FCFF' + - uid: 8672 components: - type: Transform - pos: 17.5,-32.5 + rot: 3.141592653589793 rad + pos: 47.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1608 + - uid: 8673 components: - type: Transform - pos: 17.5,-31.5 + rot: 1.5707963267948966 rad + pos: 53.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1609 + - uid: 8678 components: - type: Transform - pos: 17.5,-30.5 + rot: 3.141592653589793 rad + pos: 42.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1610 + color: '#0335FCFF' + - uid: 8680 components: - type: Transform - pos: 17.5,-29.5 + rot: 3.141592653589793 rad + pos: 42.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1611 + color: '#0335FCFF' + - uid: 8681 components: - type: Transform - pos: 17.5,-28.5 + rot: 3.141592653589793 rad + pos: 41.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1612 + - uid: 8683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 + rot: 3.141592653589793 rad + pos: 41.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1620 + - uid: 8713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-17.5 + pos: 54.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1621 + - uid: 8924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 + rot: 3.141592653589793 rad + pos: 43.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1624 + - uid: 8980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 + pos: 42.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1631 + - uid: 8982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-33.5 + pos: 42.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1632 + - uid: 9309 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-34.5 + pos: 67.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1633 + - uid: 9534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 + pos: 26.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1636 + color: '#FF1212FF' + - uid: 9535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-28.5 + pos: 26.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1654 + color: '#FF1212FF' + - uid: 9537 components: - type: Transform - pos: 33.5,-0.5 + pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1666 + - uid: 9538 components: - type: Transform - pos: 18.5,-29.5 + pos: 26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1667 + color: '#FF1212FF' + - uid: 9539 components: - type: Transform - pos: 18.5,-30.5 + pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1668 + color: '#FF1212FF' + - uid: 9540 components: - type: Transform - pos: 18.5,-31.5 + pos: 26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1669 + color: '#FF1212FF' + - uid: 9541 components: - type: Transform - pos: 18.5,-32.5 + pos: 25.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1670 + color: '#FF1212FF' + - uid: 9542 components: - type: Transform - pos: 18.5,-33.5 + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1671 + color: '#FF1212FF' + - uid: 9543 components: - type: Transform - pos: 18.5,-34.5 + pos: 25.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1672 + color: '#FF1212FF' + - uid: 9544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-35.5 + rot: -1.5707963267948966 rad + pos: 27.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1676 + color: '#FF1212FF' + - uid: 9548 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-35.5 + pos: 25.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1677 + color: '#FF1212FF' + - uid: 9549 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-35.5 + pos: 24.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1679 + color: '#FF1212FF' + - uid: 9550 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-35.5 + pos: 23.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1680 + color: '#FF1212FF' + - uid: 9551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-35.5 + pos: 22.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1681 + color: '#FF1212FF' + - uid: 9552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 + pos: 22.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1682 + color: '#FF1212FF' + - uid: 9553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 + pos: 22.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1683 + color: '#FF1212FF' + - uid: 9561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-35.5 + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1684 + - uid: 9562 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-35.5 + pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1686 + - uid: 9563 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-27.5 + pos: 23.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1687 + color: '#0335FCFF' + - uid: 9564 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-27.5 + pos: 22.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1689 + color: '#0335FCFF' + - uid: 9566 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-27.5 + pos: 21.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1693 + color: '#0335FCFF' + - uid: 9567 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-27.5 + pos: 20.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1696 + color: '#0335FCFF' + - uid: 9568 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-27.5 + pos: 19.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1719 + color: '#0335FCFF' + - uid: 9575 components: - type: Transform - pos: 25.5,33.5 + rot: 3.141592653589793 rad + pos: 18.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1730 + color: '#0335FCFF' + - uid: 9576 components: - type: Transform - pos: 25.5,32.5 + rot: 3.141592653589793 rad + pos: 18.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1749 + color: '#0335FCFF' + - uid: 9577 components: - type: Transform - pos: 25.5,31.5 + rot: 3.141592653589793 rad + pos: 18.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1762 + color: '#0335FCFF' + - uid: 9578 components: - type: Transform - pos: 25.5,30.5 + rot: 1.5707963267948966 rad + pos: 17.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1763 + color: '#0335FCFF' + - uid: 9579 components: - type: Transform - pos: 25.5,29.5 + rot: 1.5707963267948966 rad + pos: 16.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1764 + color: '#0335FCFF' + - uid: 9580 components: - type: Transform - pos: 25.5,28.5 + rot: 1.5707963267948966 rad + pos: 15.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1769 + color: '#0335FCFF' + - uid: 9629 components: - type: Transform - pos: 25.5,27.5 + rot: 3.141592653589793 rad + pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1770 + - uid: 9630 components: - type: Transform - pos: 25.5,26.5 + rot: 3.141592653589793 rad + pos: 44.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1771 + - uid: 9631 components: - type: Transform - pos: 25.5,25.5 + rot: 3.141592653589793 rad + pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1772 + color: '#0335FCFF' + - uid: 9632 components: - type: Transform - pos: 25.5,24.5 + rot: 3.141592653589793 rad + pos: 47.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1774 + color: '#0335FCFF' + - uid: 9633 components: - type: Transform - pos: 25.5,22.5 + rot: 3.141592653589793 rad + pos: 47.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1800 + color: '#0335FCFF' + - uid: 9634 components: - type: Transform - pos: 25.5,20.5 + rot: 3.141592653589793 rad + pos: 47.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1801 + color: '#0335FCFF' + - uid: 9654 components: - type: Transform - pos: 25.5,19.5 + pos: 42.5,-23.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1803 + color: '#0335FCFF' + - uid: 10046 components: - type: Transform - pos: 25.5,18.5 + rot: 1.5707963267948966 rad + pos: 53.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1804 + color: '#0335FCFF' + - uid: 10049 components: - type: Transform - pos: 25.5,17.5 + rot: 3.141592653589793 rad + pos: 59.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1805 + color: '#0335FCFF' + - uid: 10050 components: - type: Transform - pos: 25.5,16.5 + rot: 3.141592653589793 rad + pos: 59.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1822 + color: '#0335FCFF' + - uid: 10051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1823 + color: '#0335FCFF' + - uid: 10052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1824 + color: '#0335FCFF' + - uid: 10053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1825 + color: '#0335FCFF' + - uid: 10055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1826 + color: '#0335FCFF' + - uid: 10056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1827 + color: '#0335FCFF' + - uid: 10058 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,1.5 + pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1829 + color: '#0335FCFF' + - uid: 10059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,1.5 + pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1830 + color: '#0335FCFF' + - uid: 10060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,1.5 + pos: 56.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1832 + color: '#0335FCFF' + - uid: 10061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,1.5 + pos: 55.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1834 + color: '#0335FCFF' + - uid: 10063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,1.5 + pos: 53.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1835 + color: '#0335FCFF' + - uid: 10064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,1.5 + pos: 52.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1836 + color: '#0335FCFF' + - uid: 10065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: 51.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1837 + color: '#0335FCFF' + - uid: 10066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,0.5 + pos: 50.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1839 + color: '#0335FCFF' + - uid: 10067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 49.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1840 + color: '#0335FCFF' + - uid: 10068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: 48.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1841 + color: '#0335FCFF' + - uid: 10076 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - uid: 10079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,0.5 + pos: 57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1844 + color: '#0335FCFF' + - uid: 10115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,0.5 + pos: 57.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1845 + color: '#0335FCFF' + - uid: 10117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: 77.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1846 + color: '#0335FCFF' + - uid: 10127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 + pos: 55.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1848 + - uid: 10134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 + pos: 57.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1849 + color: '#0335FCFF' + - uid: 10145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1850 + color: '#0335FCFF' + - uid: 10146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 + pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1860 + color: '#0335FCFF' + - uid: 10147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 + pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1861 + color: '#0335FCFF' + - uid: 10148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,10.5 + pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1862 + color: '#0335FCFF' + - uid: 10149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,10.5 + pos: 2.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1863 + color: '#0335FCFF' + - uid: 10150 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,10.5 + pos: 3.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1864 + color: '#0335FCFF' + - uid: 10151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: 0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1867 + color: '#0335FCFF' + - uid: 10152 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,10.5 + pos: -0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1868 + color: '#0335FCFF' + - uid: 10153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1869 + color: '#0335FCFF' + - uid: 10154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1870 + color: '#0335FCFF' + - uid: 10155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1871 + color: '#0335FCFF' + - uid: 10156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1872 + color: '#0335FCFF' + - uid: 10158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1873 + color: '#0335FCFF' + - uid: 10159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1874 + color: '#0335FCFF' + - uid: 10160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1875 + color: '#0335FCFF' + - uid: 10161 components: - type: Transform - pos: 18.5,11.5 + rot: 3.141592653589793 rad + pos: 9.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1876 + color: '#0335FCFF' + - uid: 10162 components: - type: Transform - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1878 + color: '#0335FCFF' + - uid: 10164 components: - type: Transform - pos: 18.5,13.5 + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1879 + color: '#0335FCFF' + - uid: 10165 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,14.5 + pos: 5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1880 + color: '#0335FCFF' + - uid: 10166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,14.5 + pos: 4.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1881 + color: '#0335FCFF' + - uid: 10167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,14.5 + pos: 3.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1882 + color: '#0335FCFF' + - uid: 10168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,14.5 + pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1883 + color: '#0335FCFF' + - uid: 10175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1884 + color: '#0335FCFF' + - uid: 10176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1885 + color: '#0335FCFF' + - uid: 10177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,15.5 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1886 + color: '#0335FCFF' + - uid: 10183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,15.5 + pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1887 + - uid: 10184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,15.5 + pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1888 + - uid: 10185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,15.5 + pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1890 + - uid: 10186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,15.5 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1891 + - uid: 10187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,15.5 + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1892 + - uid: 10188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,15.5 + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1893 + - uid: 10189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,15.5 + rot: 3.141592653589793 rad + pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1894 + - uid: 10190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,15.5 + rot: 3.141592653589793 rad + pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1895 + - uid: 10191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,15.5 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1896 + - uid: 10192 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,15.5 + pos: 9.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1897 + - uid: 10193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,15.5 + pos: 8.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1898 + - uid: 10194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,15.5 + pos: 8.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1899 + - uid: 10195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,15.5 + pos: 8.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1900 + - uid: 10196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,15.5 + pos: 8.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1901 + - uid: 10197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,15.5 + pos: 8.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1903 + - uid: 10198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,14.5 + pos: 8.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1904 + - uid: 10199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,13.5 + pos: 8.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1905 + - uid: 10209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,12.5 + rot: -1.5707963267948966 rad + pos: 26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1906 + color: '#0335FCFF' + - uid: 10210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1907 + color: '#0335FCFF' + - uid: 10211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,10.5 + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1908 + color: '#0335FCFF' + - uid: 10212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,9.5 + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1909 + - uid: 10213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,8.5 + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1912 + - uid: 10242 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,5.5 + pos: 26.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1913 + - uid: 10243 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,4.5 + pos: 26.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1914 + - uid: 10244 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,3.5 + pos: 26.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1915 + color: '#0335FCFF' + - uid: 10245 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,2.5 + pos: 26.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1916 + color: '#0335FCFF' + - uid: 10247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,0.5 + rot: 3.141592653589793 rad + pos: 26.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1917 + color: '#0335FCFF' + - uid: 10323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,0.5 + pos: 54.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1918 + color: '#0335FCFF' + - uid: 10324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,0.5 + pos: 54.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1919 + color: '#0335FCFF' + - uid: 10325 components: - type: Transform - pos: 42.5,10.5 + pos: 54.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1920 + - uid: 10326 components: - type: Transform - pos: 42.5,9.5 + rot: -1.5707963267948966 rad + pos: 53.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1921 + - uid: 10327 components: - type: Transform - pos: 42.5,11.5 + rot: -1.5707963267948966 rad + pos: 52.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1934 + - uid: 10328 components: - type: Transform - pos: 42.5,12.5 + rot: -1.5707963267948966 rad + pos: 51.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1935 + - uid: 10329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 + rot: -1.5707963267948966 rad + pos: 50.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1937 + - uid: 10330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-31.5 + rot: -1.5707963267948966 rad + pos: 49.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1938 + - uid: 10332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-29.5 + rot: 3.141592653589793 rad + pos: 47.5,11.5 parent: 2 - - uid: 1939 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10333 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-16.5 + pos: 47.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1942 + - uid: 10337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 + pos: 62.5,13.5 parent: 2 - - uid: 1943 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10338 components: - type: Transform - pos: 44.5,-22.5 + pos: 62.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1944 + color: '#0335FCFF' + - uid: 10339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-30.5 + pos: 62.5,11.5 parent: 2 - - uid: 1959 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 + rot: -1.5707963267948966 rad + pos: 61.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1960 + - uid: 10341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 + rot: -1.5707963267948966 rad + pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1961 + - uid: 10342 components: - type: Transform - pos: 21.5,-29.5 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1962 + - uid: 10344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 + rot: -1.5707963267948966 rad + pos: 65.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1963 + - uid: 10345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 66.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1964 + - uid: 10348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: 58.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1965 + - uid: 10349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-1.5 + rot: -1.5707963267948966 rad + pos: 57.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1966 + - uid: 10350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-5.5 + rot: -1.5707963267948966 rad + pos: 56.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1969 + - uid: 10353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 + rot: -1.5707963267948966 rad + pos: 60.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1970 + - uid: 10354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 + rot: -1.5707963267948966 rad + pos: 61.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1971 + - uid: 10359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 + pos: 46.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2021 + color: '#FF1212FF' + - uid: 10361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + rot: -1.5707963267948966 rad + pos: 48.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2029 + - uid: 10362 components: - type: Transform - pos: 11.5,-38.5 + rot: -1.5707963267948966 rad + pos: 49.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2032 + color: '#FF1212FF' + - uid: 10367 components: - type: Transform - pos: 11.5,-39.5 + rot: 1.5707963267948966 rad + pos: 51.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2052 + color: '#FF1212FF' + - uid: 10368 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-0.5 + pos: 52.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2062 + color: '#FF1212FF' + - uid: 10369 components: - type: Transform - pos: 10.5,-37.5 + rot: 1.5707963267948966 rad + pos: 53.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2063 + - uid: 10370 components: - type: Transform - pos: 25.5,-9.5 + rot: 1.5707963267948966 rad + pos: 54.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2071 + - uid: 10371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-34.5 + rot: 1.5707963267948966 rad + pos: 55.5,19.5 parent: 2 - - uid: 2089 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10372 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-22.5 + pos: 56.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2116 + color: '#FF1212FF' + - uid: 10373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-30.5 + rot: 1.5707963267948966 rad + pos: 57.5,19.5 parent: 2 - - uid: 2130 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-22.5 + rot: 3.141592653589793 rad + pos: 58.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2139 + color: '#FF1212FF' + - uid: 10377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 + rot: 3.141592653589793 rad + pos: 58.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2143 + color: '#FF1212FF' + - uid: 10378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 + rot: 3.141592653589793 rad + pos: 58.5,15.5 parent: 2 - - uid: 2148 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10379 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-26.5 + pos: 58.5,14.5 parent: 2 - - uid: 2161 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-1.5 + pos: 63.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2304 + color: '#FF1212FF' + - uid: 10386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 + pos: 63.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2316 + - uid: 10387 components: - type: Transform - pos: 25.5,-12.5 + pos: 63.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2317 + - uid: 10388 components: - type: Transform - pos: 25.5,-11.5 + rot: -1.5707963267948966 rad + pos: 64.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2322 + - uid: 10389 components: - type: Transform - pos: 25.5,-13.5 + rot: -1.5707963267948966 rad + pos: 65.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2326 + - uid: 10390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,14.5 + rot: -1.5707963267948966 rad + pos: 66.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2381 + color: '#FF1212FF' + - uid: 10391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,0.5 + pos: 62.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2384 + - uid: 10392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-31.5 + rot: -1.5707963267948966 rad + pos: 61.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2385 + color: '#FF1212FF' + - uid: 10393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-31.5 + rot: -1.5707963267948966 rad + pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2386 + color: '#FF1212FF' + - uid: 10394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-31.5 + rot: -1.5707963267948966 rad + pos: 59.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2388 + color: '#FF1212FF' + - uid: 10395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-31.5 + rot: -1.5707963267948966 rad + pos: 56.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2396 + color: '#FF1212FF' + - uid: 10396 components: - type: Transform - pos: 25.5,-6.5 + rot: 3.141592653589793 rad + pos: 55.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2397 + - uid: 10397 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-29.5 + pos: 55.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2398 + color: '#FF1212FF' + - uid: 10398 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,8.5 + pos: 55.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2399 + color: '#FF1212FF' + - uid: 10405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,9.5 + pos: 58.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2412 + color: '#FF1212FF' + - uid: 10406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,17.5 + pos: 58.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2413 + color: '#FF1212FF' + - uid: 10407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-20.5 + pos: 58.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2414 + color: '#FF1212FF' + - uid: 10408 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-31.5 + pos: 59.5,23.5 parent: 2 - - uid: 2415 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10409 components: - type: Transform - pos: 42.5,7.5 + rot: -1.5707963267948966 rad + pos: 60.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2416 + color: '#FF1212FF' + - uid: 10410 components: - type: Transform - pos: 42.5,-0.5 + rot: -1.5707963267948966 rad + pos: 61.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2417 + color: '#FF1212FF' + - uid: 10428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-1.5 + pos: 63.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2418 + - uid: 10429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 + pos: 63.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2419 + - uid: 10430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 63.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2423 + - uid: 10431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + pos: 63.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2436 + - uid: 10432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,0.5 + pos: 64.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2452 + - uid: 10433 components: - type: Transform - pos: 27.5,44.5 + pos: 64.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2453 + - uid: 10434 components: - type: Transform - pos: 27.5,45.5 + pos: 64.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2454 + - uid: 10435 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 10453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,42.5 + pos: 28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2455 + - uid: 10641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,43.5 + rot: -1.5707963267948966 rad + pos: 27.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2472 + - uid: 10642 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-19.5 + pos: 29.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2484 + - uid: 10646 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,0.5 + pos: 35.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2487 + - uid: 10647 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,1.5 + pos: 34.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2488 + - uid: 10648 components: - type: Transform - pos: 25.5,-5.5 + rot: -1.5707963267948966 rad + pos: 33.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2490 + - uid: 10649 components: - type: Transform - pos: 25.5,-21.5 + rot: -1.5707963267948966 rad + pos: 37.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2530 + - uid: 10650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,46.5 + pos: 38.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2532 + color: '#FF1212FF' + - uid: 10651 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,46.5 + pos: 39.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2546 + color: '#FF1212FF' + - uid: 10663 components: - type: Transform - pos: 25.5,-15.5 + pos: 43.5,-23.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2560 + - uid: 11101 components: - type: Transform - pos: 25.5,-8.5 + rot: 3.141592653589793 rad + pos: 43.5,-29.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2561 + color: '#0335FCFF' + - uid: 11281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,9.5 + pos: 53.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2667 + - uid: 11282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,9.5 + pos: 54.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2718 + - uid: 11290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-32.5 + rot: 1.5707963267948966 rad + pos: 55.5,-1.5 parent: 2 - - uid: 2730 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 + pos: 62.5,-0.5 parent: 2 - - uid: 2731 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-8.5 + pos: 62.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2751 + - uid: 11313 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-32.5 + pos: 54.5,0.5 parent: 2 - - uid: 2781 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-34.5 + rot: -1.5707963267948966 rad + pos: 53.5,0.5 parent: 2 - - uid: 2782 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-30.5 + rot: -1.5707963267948966 rad + pos: 52.5,0.5 parent: 2 - - uid: 3289 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-24.5 + rot: 1.5707963267948966 rad + pos: 64.5,1.5 parent: 2 - - uid: 3292 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-28.5 + rot: 1.5707963267948966 rad + pos: 66.5,1.5 parent: 2 - - uid: 3295 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-32.5 + rot: 1.5707963267948966 rad + pos: 67.5,1.5 parent: 2 - - uid: 3301 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-26.5 + rot: 1.5707963267948966 rad + pos: 68.5,1.5 parent: 2 - - uid: 3302 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-31.5 + rot: 1.5707963267948966 rad + pos: 69.5,1.5 parent: 2 - - uid: 3307 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-34.5 + rot: 1.5707963267948966 rad + pos: 70.5,1.5 parent: 2 - - uid: 3312 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 + rot: 1.5707963267948966 rad + pos: 72.5,1.5 parent: 2 - - uid: 3522 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-21.5 + pos: 73.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3553 + color: '#0335FCFF' + - uid: 11338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-0.5 + pos: 74.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3592 + - uid: 11339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + rot: 1.5707963267948966 rad + pos: 75.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3595 + - uid: 11340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 + rot: 1.5707963267948966 rad + pos: 76.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3657 + - uid: 11341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-24.5 + rot: 1.5707963267948966 rad + pos: 62.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3686 + - uid: 11342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 + rot: 1.5707963267948966 rad + pos: 63.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3695 + color: '#FF1212FF' + - uid: 11343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-0.5 + rot: 1.5707963267948966 rad + pos: 64.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3704 + - uid: 11344 components: - type: Transform - pos: 21.5,-30.5 + rot: 1.5707963267948966 rad + pos: 65.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3736 + color: '#FF1212FF' + - uid: 11345 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-0.5 + pos: 66.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3775 + color: '#FF1212FF' + - uid: 11346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 + rot: 1.5707963267948966 rad + pos: 67.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3835 + color: '#FF1212FF' + - uid: 11347 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 68.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3843 + color: '#FF1212FF' + - uid: 11348 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-1.5 + pos: 69.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3845 + color: '#FF1212FF' + - uid: 11350 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-0.5 + pos: 70.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3846 + color: '#FF1212FF' + - uid: 11352 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-0.5 + pos: 71.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3947 + color: '#FF1212FF' + - uid: 11356 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-21.5 + pos: 73.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3952 + - uid: 11357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,13.5 + rot: 1.5707963267948966 rad + pos: 74.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3954 + color: '#FF1212FF' + - uid: 11358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-48.5 + pos: 75.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3955 + color: '#FF1212FF' + - uid: 11359 components: - type: Transform - pos: 38.5,-46.5 + rot: 1.5707963267948966 rad + pos: 76.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3958 + color: '#FF1212FF' + - uid: 11361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,13.5 + pos: 77.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3959 + - uid: 11362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,13.5 + pos: 77.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3962 + - uid: 11363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-21.5 + pos: 77.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3963 + color: '#0335FCFF' + - uid: 11364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-21.5 + pos: 77.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3974 + color: '#0335FCFF' + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,6.5 + pos: 66.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3975 + - uid: 11518 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-13.5 + pos: 66.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3976 + - uid: 11519 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,7.5 + pos: 65.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3997 + - uid: 11523 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,3.5 + pos: 65.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4003 + - uid: 11524 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,1.5 + pos: 65.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4004 + - uid: 11525 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,0.5 + pos: 65.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4007 + - uid: 11528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 + rot: 3.141592653589793 rad + pos: 65.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4009 + color: '#0335FCFF' + - uid: 11529 components: - type: Transform - pos: 19.5,12.5 + rot: 3.141592653589793 rad + pos: 65.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4013 + - uid: 11530 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4022 - components: - - type: Transform - pos: 19.5,7.5 + pos: 67.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4023 + - uid: 11581 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,13.5 + pos: 39.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4024 + color: '#03FCD3FF' + - uid: 11699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,13.5 + rot: 1.5707963267948966 rad + pos: 68.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4025 + - uid: 11700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,13.5 + rot: 1.5707963267948966 rad + pos: 69.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4032 + - uid: 11701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-27.5 + pos: 70.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4043 + color: '#0335FCFF' + - uid: 11702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 + pos: 71.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4045 + - uid: 11703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 + pos: 71.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4048 + - uid: 11704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,0.5 + pos: 71.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4058 + color: '#0335FCFF' + - uid: 11705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 + pos: 71.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4060 + - uid: 11706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-28.5 + pos: 71.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4062 + - uid: 11711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,1.5 + pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4063 + - uid: 11712 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,1.5 + pos: 57.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4064 + - uid: 11713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,1.5 + pos: 58.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4065 + - uid: 11714 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,1.5 + pos: 59.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4067 + - uid: 11716 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4068 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-24.5 + pos: 61.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4070 + - uid: 11717 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,0.5 + pos: 62.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4073 + - uid: 11718 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 63.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 2 - - uid: 4081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 2 - - uid: 4082 + color: '#FF1212FF' + - uid: 11723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-28.5 - parent: 2 - - uid: 4083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 + pos: 65.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4084 + - uid: 11724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-22.5 + pos: 66.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4085 + - uid: 11725 components: - type: Transform - pos: 19.5,10.5 + pos: 66.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-26.5 - parent: 2 - - uid: 4088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 2 - - uid: 4094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-24.5 - parent: 2 - - uid: 4095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-24.5 - parent: 2 - - uid: 4103 + color: '#FF1212FF' + - uid: 11727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 + pos: 72.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4104 + color: '#FF1212FF' + - uid: 11728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + pos: 72.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4105 + color: '#FF1212FF' + - uid: 11738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4106 + - uid: 11739 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 54.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4108 + - uid: 11740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,29.5 + rot: -1.5707963267948966 rad + pos: 53.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4109 + - uid: 11741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-15.5 + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4111 + color: '#FF1212FF' + - uid: 11742 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-1.5 + pos: 53.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4114 + color: '#FF1212FF' + - uid: 11756 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,30.5 + pos: 43.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4124 + - uid: 11764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 + rot: 1.5707963267948966 rad + pos: 58.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4125 + - uid: 11788 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,21.5 + pos: 57.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4155 + - uid: 11790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 61.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4159 + - uid: 11796 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-35.5 + pos: 57.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4160 + - uid: 11925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,32.5 + pos: 61.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4161 + - uid: 11926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,27.5 + pos: 61.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4162 + - uid: 11927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 + pos: 61.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4163 + - uid: 11928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-14.5 + pos: 61.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4164 + - uid: 11929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,33.5 + pos: 61.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4165 + - uid: 11930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + pos: 61.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4180 + - uid: 11931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-12.5 + pos: 61.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4184 + - uid: 11932 components: - type: Transform - pos: 46.5,-3.5 + pos: 60.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4185 + color: '#FF1212FF' + - uid: 11933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 + pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4192 + color: '#FF1212FF' + - uid: 11934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,26.5 + pos: 60.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4193 + color: '#FF1212FF' + - uid: 11935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 + pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4194 + color: '#FF1212FF' + - uid: 11949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4195 + - uid: 11950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4196 + - uid: 11951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4197 + - uid: 11952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-0.5 + rot: 3.141592653589793 rad + pos: 72.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4198 + color: '#FF1212FF' + - uid: 12729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 + pos: 8.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4200 + color: '#FF1212FF' + - uid: 12821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 + pos: 8.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 + color: '#FF1212FF' + - uid: 12859 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 - components: - - type: Transform - pos: 42.5,0.5 + pos: 41.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4203 + color: '#03FCD3FF' + - uid: 12860 components: - type: Transform - pos: 42.5,1.5 + rot: 3.141592653589793 rad + pos: 43.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4205 + color: '#03FCD3FF' + - uid: 12867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,13.5 + pos: 43.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4206 + color: '#03FCD3FF' + - uid: 12868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,13.5 + pos: 41.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4207 + color: '#03FCD3FF' + - uid: 12879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,13.5 + rot: 3.141592653589793 rad + pos: 44.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4208 + - uid: 12880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,13.5 + rot: 1.5707963267948966 rad + pos: 45.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4209 + - uid: 12887 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,13.5 + pos: 46.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4210 + color: '#FF1212FF' + - uid: 12902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 + rot: 3.141592653589793 rad + pos: 49.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4211 + color: '#FF1212FF' + - uid: 12903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,13.5 + rot: 3.141592653589793 rad + pos: 47.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4212 + color: '#FF1212FF' + - uid: 13143 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,13.5 + pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4214 + - uid: 13144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,13.5 + pos: -13.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4216 + color: '#FF1212FF' + - uid: 13279 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,13.5 + pos: -8.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4217 + - uid: 13435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,13.5 + pos: 40.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4221 + - uid: 13448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-0.5 + pos: 41.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4222 + - uid: 13453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-0.5 + pos: 42.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4223 + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 + pos: 46.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4224 + color: '#FF1212FF' + - uid: 13519 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 55.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4225 + color: '#FF1212FF' + - uid: 13522 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-0.5 + pos: 55.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4226 + - uid: 13524 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-0.5 + pos: 54.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4228 + color: '#FF1212FF' + - uid: 13525 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,25.5 + pos: 56.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4231 + - uid: 13548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 + rot: 3.141592653589793 rad + pos: 45.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4232 + - uid: 13551 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-28.5 + pos: 46.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4233 + - uid: 13552 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-4.5 + pos: 45.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4234 + - uid: 13553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-28.5 + rot: 3.141592653589793 rad + pos: 45.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4235 + - uid: 13554 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-0.5 + pos: 52.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4237 + color: '#FF1212FF' + - uid: 13555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-1.5 + rot: -1.5707963267948966 rad + pos: 47.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4238 + - uid: 13575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-9.5 + pos: 46.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4239 + color: '#FF1212FF' + - uid: 13986 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-10.5 + pos: -6.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4240 + color: '#FF1212FF' + - uid: 13987 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-6.5 + pos: -6.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4241 + color: '#FF1212FF' + - uid: 13988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-0.5 + rot: 3.141592653589793 rad + pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4242 + color: '#FF1212FF' + - uid: 13989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-0.5 + rot: 3.141592653589793 rad + pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4274 + - uid: 13990 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-18.5 + pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4281 + - uid: 13991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-31.5 + rot: 3.141592653589793 rad + pos: -5.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4283 + - uid: 13992 components: - type: Transform - pos: 19.5,11.5 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4285 + - uid: 13995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,1.5 + rot: 1.5707963267948966 rad + pos: -15.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4286 + - uid: 13996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,1.5 + rot: 1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4287 + - uid: 13997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,1.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4288 + - uid: 13998 components: - type: Transform - pos: 25.5,-14.5 + rot: 1.5707963267948966 rad + pos: -18.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4289 + - uid: 13999 components: - type: Transform - pos: 25.5,-16.5 + rot: 1.5707963267948966 rad + pos: -19.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4290 + - uid: 14000 components: - type: Transform - pos: 25.5,-20.5 + rot: 1.5707963267948966 rad + pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4291 + - uid: 14001 components: - type: Transform - pos: 25.5,-18.5 + rot: 1.5707963267948966 rad + pos: -21.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4352 + - uid: 14002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-23.5 + rot: 1.5707963267948966 rad + pos: -22.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4353 + color: '#FF1212FF' + - uid: 14003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-23.5 + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4356 - components: - - type: Transform - pos: 35.5,-33.5 - parent: 2 - - uid: 4357 + color: '#0335FCFF' + - uid: 14004 components: - type: Transform - pos: 35.5,-29.5 + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 parent: 2 - - uid: 4358 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14005 components: - type: Transform - pos: 35.5,-28.5 + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 parent: 2 - - uid: 4359 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14006 components: - type: Transform - pos: 35.5,-27.5 + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 parent: 2 - - uid: 4420 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14007 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-30.5 + pos: -19.5,-1.5 parent: 2 - - uid: 4421 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-30.5 + pos: -20.5,-1.5 parent: 2 - - uid: 4422 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14009 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-28.5 + pos: -21.5,-1.5 parent: 2 - - uid: 4423 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 + rot: 3.141592653589793 rad + pos: -24.5,-0.5 parent: 2 - - uid: 4424 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-26.5 + rot: 3.141592653589793 rad + pos: -24.5,-1.5 parent: 2 - - uid: 4425 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 + rot: 3.141592653589793 rad + pos: -24.5,-2.5 parent: 2 - - uid: 4426 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-24.5 + rot: 3.141592653589793 rad + pos: -24.5,-3.5 parent: 2 - - uid: 4444 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14020 components: - type: Transform - pos: 32.5,-36.5 + rot: 3.141592653589793 rad + pos: -24.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4445 + color: '#FF1212FF' + - uid: 14021 components: - type: Transform - pos: 32.5,-37.5 + rot: 3.141592653589793 rad + pos: -24.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4446 + color: '#FF1212FF' + - uid: 14022 components: - type: Transform - pos: 31.5,-37.5 + rot: 3.141592653589793 rad + pos: -24.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4448 + - uid: 14024 components: - type: Transform - pos: 31.5,-38.5 + rot: 3.141592653589793 rad + pos: -22.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4449 + color: '#0335FCFF' + - uid: 14025 components: - type: Transform - pos: 32.5,-38.5 + rot: 3.141592653589793 rad + pos: -22.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4451 + - uid: 14026 components: - type: Transform - pos: 32.5,-39.5 + rot: 3.141592653589793 rad + pos: -22.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4461 + - uid: 14027 components: - type: Transform - pos: 22.5,-37.5 + rot: 3.141592653589793 rad + pos: -22.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4462 + color: '#0335FCFF' + - uid: 14034 components: - type: Transform - pos: 20.5,-36.5 + rot: 3.141592653589793 rad + pos: -22.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4463 + - uid: 14035 components: - type: Transform - pos: 20.5,-37.5 + rot: 3.141592653589793 rad + pos: -22.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4480 + - uid: 14036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-48.5 + rot: 3.141592653589793 rad + pos: -22.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4493 + color: '#0335FCFF' + - uid: 14037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-44.5 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4495 + color: '#0335FCFF' + - uid: 14038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-44.5 + rot: 3.141592653589793 rad + pos: -22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4970 + color: '#0335FCFF' + - uid: 14039 components: - type: Transform - pos: 27.5,34.5 + rot: 3.141592653589793 rad + pos: -22.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5009 + - uid: 14040 components: - type: Transform - pos: 55.5,-1.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5023 + color: '#0335FCFF' + - uid: 14042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5024 + - uid: 14043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5025 + - uid: 14044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5036 + - uid: 14045 components: - type: Transform - pos: 56.5,-0.5 + rot: 3.141592653589793 rad + pos: -22.5,-18.5 parent: 2 - - uid: 5038 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,0.5 + rot: 3.141592653589793 rad + pos: -22.5,-20.5 parent: 2 - - uid: 5040 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,1.5 + rot: 3.141592653589793 rad + pos: -22.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5042 + color: '#0335FCFF' + - uid: 14048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,1.5 + rot: 3.141592653589793 rad + pos: -24.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5044 + - uid: 14049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-27.5 + rot: 3.141592653589793 rad + pos: -24.5,-16.5 parent: 2 - - uid: 5065 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-28.5 + rot: 3.141592653589793 rad + pos: -24.5,-15.5 parent: 2 - - uid: 5081 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 + rot: 3.141592653589793 rad + pos: -24.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5083 + - uid: 14052 components: - type: Transform - pos: 57.5,-7.5 + rot: 3.141592653589793 rad + pos: -24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5110 + color: '#FF1212FF' + - uid: 14053 components: - type: Transform - pos: 46.5,16.5 + rot: 3.141592653589793 rad + pos: -24.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5184 + - uid: 14054 components: - type: Transform - pos: 57.5,-8.5 + rot: 3.141592653589793 rad + pos: -24.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5192 + color: '#FF1212FF' + - uid: 14055 components: - type: Transform - pos: 55.5,-7.5 + rot: 3.141592653589793 rad + pos: -24.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5194 + - uid: 14056 components: - type: Transform - pos: 56.5,27.5 + rot: 3.141592653589793 rad + pos: -24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5206 + color: '#FF1212FF' + - uid: 14057 components: - type: Transform - pos: 57.5,-6.5 + rot: 3.141592653589793 rad + pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5208 + color: '#FF1212FF' + - uid: 14058 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-25.5 + pos: -24.5,-7.5 parent: 2 - - uid: 5216 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-26.5 + rot: 3.141592653589793 rad + pos: 64.5,15.5 parent: 2 - - uid: 5258 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14172 components: - type: Transform - pos: 79.5,-8.5 + rot: 3.141592653589793 rad + pos: 82.5,34.5 parent: 2 - - uid: 5259 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14328 components: - type: Transform - pos: 79.5,-7.5 + rot: 1.5707963267948966 rad + pos: 65.5,18.5 parent: 2 - - uid: 5273 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14370 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,2.5 + pos: 82.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5303 + - uid: 14371 components: - type: Transform - pos: 55.5,-4.5 + rot: 3.141592653589793 rad + pos: 82.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5429 + - uid: 14375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,6.5 + rot: -1.5707963267948966 rad + pos: 83.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5430 + color: '#FF1212FF' + - uid: 14378 components: - type: Transform - pos: 11.5,-36.5 + rot: 1.5707963267948966 rad + pos: 83.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5666 + - uid: 14379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 84.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5667 + - uid: 14383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-35.5 + pos: 86.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5668 + - uid: 14387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 + rot: 1.5707963267948966 rad + pos: 82.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5669 + - uid: 14388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 + pos: 81.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5670 + - uid: 14389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 + pos: 81.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5671 + color: '#0335FCFF' + - uid: 14413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 + rot: 1.5707963267948966 rad + pos: 85.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5672 + - uid: 14414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 + rot: 1.5707963267948966 rad + pos: 86.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5673 + - uid: 14415 components: - type: Transform - pos: 10.5,-38.5 + rot: 1.5707963267948966 rad + pos: 87.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5683 - components: - - type: Transform - pos: 38.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6425 + - uid: 14416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,45.5 + rot: 1.5707963267948966 rad + pos: 87.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6426 + - uid: 14417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,44.5 + rot: 1.5707963267948966 rad + pos: 88.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6479 + - uid: 14423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,46.5 + pos: 90.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6482 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6484 + - uid: 14424 components: - type: Transform - pos: 33.5,-3.5 + rot: -1.5707963267948966 rad + pos: 91.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6488 + color: '#0335FCFF' + - uid: 14426 components: - type: Transform - pos: 46.5,-5.5 + pos: 92.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6490 + - uid: 14427 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-3.5 + pos: 88.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6498 + - uid: 14428 components: - type: Transform - pos: 44.5,-2.5 + rot: -1.5707963267948966 rad + pos: 89.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6503 + - uid: 14430 components: - type: Transform - pos: 27.5,39.5 + rot: -1.5707963267948966 rad + pos: 91.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6507 + color: '#FF1212FF' + - uid: 14584 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,42.5 + pos: 66.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6508 + - uid: 14585 components: - type: Transform - pos: 46.5,-4.5 + rot: 3.141592653589793 rad + pos: 67.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6536 + - uid: 14588 components: - type: Transform - pos: 56.5,28.5 + rot: 3.141592653589793 rad + pos: 64.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6550 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6551 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6553 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6554 + - uid: 14589 components: - type: Transform - pos: 33.5,-8.5 + rot: 3.141592653589793 rad + pos: 64.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6556 + color: '#0335FCFF' + - uid: 14601 components: - type: Transform - pos: 35.5,-1.5 + rot: 3.141592653589793 rad + pos: 67.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6557 + - uid: 14602 components: - type: Transform - pos: 35.5,-2.5 + rot: 3.141592653589793 rad + pos: 67.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6559 + - uid: 14606 components: - type: Transform - pos: 35.5,-4.5 + rot: 1.5707963267948966 rad + pos: 68.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6560 + - uid: 14607 components: - type: Transform - pos: 35.5,-5.5 + pos: 69.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6561 + - uid: 14608 components: - type: Transform - pos: 35.5,-6.5 + pos: 69.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6562 + - uid: 14609 components: - type: Transform - pos: 35.5,-7.5 + rot: -1.5707963267948966 rad + pos: 70.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6563 + - uid: 14610 components: - type: Transform - pos: 35.5,-8.5 + rot: -1.5707963267948966 rad + pos: 71.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6564 + - uid: 14612 components: - type: Transform - pos: 35.5,-9.5 + rot: 3.141592653589793 rad + pos: 72.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6566 + - uid: 14618 components: - type: Transform - pos: 44.5,-1.5 + rot: 3.141592653589793 rad + pos: 71.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6567 + - uid: 14619 components: - type: Transform - pos: 46.5,-2.5 + rot: 3.141592653589793 rad + pos: 71.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6575 + color: '#FF1212FF' + - uid: 14620 components: - type: Transform - pos: 42.5,-4.5 + rot: 3.141592653589793 rad + pos: 71.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6576 + - uid: 14665 components: - type: Transform - pos: 42.5,-5.5 + pos: 8.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6577 + - uid: 14666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 + pos: 8.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6579 + color: '#FF1212FF' + - uid: 14668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 + pos: 7.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6580 + - uid: 14957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-3.5 + pos: 6.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6581 + color: '#FF1212FF' + - uid: 14961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 5.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6585 + color: '#FF1212FF' + - uid: 14962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-10.5 + rot: 3.141592653589793 rad + pos: 6.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6586 + - uid: 14964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 + pos: 5.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6587 + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 14 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-10.5 + pos: 31.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6589 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 2 - - uid: 6594 + - uid: 39 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6596 + - uid: 347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 + pos: 18.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6597 + - uid: 355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 + rot: 3.141592653589793 rad + pos: 13.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6598 + - uid: 356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 + pos: 13.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6599 + color: '#0335FCFF' + - uid: 362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 + pos: 22.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6600 + color: '#0335FCFF' + - uid: 426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 + pos: 9.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6602 + - uid: 434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-5.5 + pos: 11.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6603 + - uid: 756 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-6.5 + pos: 27.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6604 + - uid: 892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-7.5 + pos: 19.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6605 + - uid: 1036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-8.5 + rot: -1.5707963267948966 rad + pos: 17.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6606 + color: '#FF1212FF' + - uid: 1148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-9.5 + rot: -1.5707963267948966 rad + pos: 33.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6612 + color: '#FF1212FF' + - uid: 1215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 + pos: 43.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6613 + color: '#03FCD3FF' + - uid: 1221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 + rot: 3.141592653589793 rad + pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6624 + color: '#0335FCFF' + - uid: 1225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-6.5 + pos: 43.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6625 + - uid: 1234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 + rot: -1.5707963267948966 rad + pos: 43.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6626 + - uid: 1257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 + pos: 41.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6774 + - uid: 1259 components: - type: Transform - pos: 56.5,26.5 + pos: 26.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6818 + - uid: 1260 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-1.5 + pos: 28.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6835 + - uid: 1261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 + pos: 22.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6859 + - uid: 1262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + rot: 3.141592653589793 rad + pos: 18.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6915 + color: '#0335FCFF' + - uid: 1263 components: - type: Transform - pos: 10.5,-40.5 + pos: 20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6916 + color: '#0335FCFF' + - uid: 1304 components: - type: Transform - pos: 10.5,-39.5 + pos: 24.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6917 + color: '#0335FCFF' + - uid: 1372 components: - type: Transform - pos: 10.5,-35.5 + pos: 26.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6918 + - uid: 1516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6919 + - uid: 1619 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 + pos: 26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6946 + color: '#0335FCFF' + - uid: 1653 components: - type: Transform - pos: 18.5,9.5 + pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6947 + - uid: 1690 components: - type: Transform - pos: 18.5,8.5 + rot: 3.141592653589793 rad + pos: 21.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6948 + color: '#0335FCFF' + - uid: 1692 components: - type: Transform - pos: 18.5,7.5 + pos: 21.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7006 + color: '#0335FCFF' + - uid: 1694 components: - type: Transform - pos: 27.5,36.5 + rot: 1.5707963267948966 rad + pos: 21.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7410 + - uid: 1695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 + rot: 1.5707963267948966 rad + pos: 21.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7411 + color: '#0335FCFF' + - uid: 1717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 + rot: -1.5707963267948966 rad + pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7413 + - uid: 1718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-8.5 + pos: 40.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7416 + - uid: 1806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 + rot: 1.5707963267948966 rad + pos: 25.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7418 + - uid: 1813 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-10.5 + pos: 3.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7419 + - uid: 1821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-11.5 + pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7420 + - uid: 2043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-12.5 + pos: -6.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7421 + - uid: 2068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-13.5 + pos: -5.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7422 + - uid: 2069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-12.5 + pos: 36.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7423 + - uid: 2162 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-11.5 + pos: 5.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7424 + - uid: 2435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-10.5 + rot: 1.5707963267948966 rad + pos: 43.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7425 + - uid: 2529 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-9.5 + pos: 32.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7426 + - uid: 2608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-8.5 + pos: -4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7427 + color: '#FF1212FF' + - uid: 3124 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-7.5 + pos: -2.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7429 + - uid: 3258 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-5.5 + pos: 50.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7430 + color: '#FF1212FF' + - uid: 3691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 42.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7431 + - uid: 3694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 57.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7432 + - uid: 3902 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 3964 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-2.5 + pos: 38.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7433 + color: '#03FCD3FF' + - uid: 4002 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-13.5 + pos: 3.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7434 + - uid: 4011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 + rot: 3.141592653589793 rad + pos: 25.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7435 + - uid: 4029 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-13.5 + pos: 26.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7436 + color: '#0335FCFF' + - uid: 4036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + rot: 3.141592653589793 rad + pos: 26.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7437 + color: '#0335FCFF' + - uid: 4037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 + rot: -1.5707963267948966 rad + pos: 27.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7438 + color: '#0335FCFF' + - uid: 4039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + pos: 25.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7439 + - uid: 4059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 + rot: 3.141592653589793 rad + pos: 27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7440 + color: '#0335FCFF' + - uid: 4089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 + pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7441 + - uid: 4126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7442 + color: '#FF1212FF' + - uid: 4131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + rot: -1.5707963267948966 rad + pos: 33.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7443 + - uid: 4188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 + rot: 3.141592653589793 rad + pos: 39.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7444 + - uid: 4199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 + pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7445 + - uid: 4236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 + rot: 3.141592653589793 rad + pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7446 + - uid: 4361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 + rot: 3.141592653589793 rad + pos: 47.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7447 + color: '#FF1212FF' + - uid: 4494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 + pos: 47.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7448 + color: '#FF1212FF' + - uid: 4496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 + pos: 48.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7449 + color: '#FF1212FF' + - uid: 4497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 + pos: 45.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7450 + color: '#FF1212FF' + - uid: 4499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 + pos: 46.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7578 + color: '#FF1212FF' + - uid: 4768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-1.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7670 + - uid: 5019 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: 27.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7758 + color: '#0335FCFF' + - uid: 5029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,24.5 + pos: 35.5,-25.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7789 + color: '#FF1212FF' + - uid: 5076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,24.5 + pos: 25.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7790 + color: '#FF1212FF' + - uid: 5099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,24.5 + rot: 3.141592653589793 rad + pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8012 + color: '#FF1212FF' + - uid: 5104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 45.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8013 + color: '#FF1212FF' + - uid: 5112 components: - type: Transform - pos: 12.5,-2.5 + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8014 + color: '#FF1212FF' + - uid: 5113 components: - type: Transform - pos: 12.5,-1.5 + rot: -1.5707963267948966 rad + pos: 27.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8015 + - uid: 5114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 + pos: 26.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8018 + - uid: 5115 components: - type: Transform - pos: 16.5,0.5 + rot: 3.141592653589793 rad + pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8019 + - uid: 5118 components: - type: Transform - pos: 16.5,-0.5 + pos: 9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8020 + color: '#0335FCFF' + - uid: 5138 components: - type: Transform - pos: 16.5,-1.5 + pos: 8.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8021 + - uid: 5160 components: - type: Transform - pos: 16.5,-2.5 + pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8022 + - uid: 5161 components: - type: Transform - pos: 16.5,-3.5 + pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8179 + - uid: 5162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,20.5 + rot: 3.141592653589793 rad + pos: 63.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8180 + - uid: 5163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,20.5 + pos: 30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8181 + color: '#FF1212FF' + - uid: 5165 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,20.5 + pos: 65.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8183 + - uid: 5168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,20.5 + rot: 3.141592653589793 rad + pos: 71.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8184 + - uid: 5170 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,20.5 + pos: 55.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8186 + color: '#FF1212FF' + - uid: 5171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 + pos: 61.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8187 + - uid: 5177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,20.5 + pos: 40.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8188 + color: '#FF1212FF' + - uid: 5178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,20.5 + pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8189 + - uid: 5179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,20.5 + rot: 3.141592653589793 rad + pos: 41.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8190 + - uid: 5180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,20.5 + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8191 + color: '#FF1212FF' + - uid: 5233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,21.5 + rot: 3.141592653589793 rad + pos: 47.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8193 + color: '#0335FCFF' + - uid: 5237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,21.5 + rot: 3.141592653589793 rad + pos: 32.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8194 + color: '#0335FCFF' + - uid: 5238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,21.5 + rot: 1.5707963267948966 rad + pos: 25.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8195 + - uid: 5239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,21.5 + rot: 3.141592653589793 rad + pos: 41.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8196 + - uid: 5241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,21.5 + rot: 1.5707963267948966 rad + pos: 27.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8200 + color: '#0335FCFF' + - uid: 5242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,22.5 + pos: 26.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8201 + - uid: 5284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,22.5 + pos: 25.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8209 + - uid: 5509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,21.5 + rot: 3.141592653589793 rad + pos: 64.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8210 + - uid: 6336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 + pos: 48.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8211 + - uid: 6423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,21.5 + rot: -1.5707963267948966 rad + pos: 27.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8212 + - uid: 6552 components: - type: Transform - pos: 9.5,20.5 + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8213 + color: '#FF1212FF' + - uid: 6555 components: - type: Transform - pos: 8.5,24.5 + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8214 + - uid: 6558 components: - type: Transform - pos: 8.5,23.5 + pos: 34.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8215 + - uid: 6565 components: - type: Transform - pos: 8.5,22.5 + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8216 + - uid: 6578 components: - type: Transform - pos: 8.5,21.5 + pos: 39.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8217 + color: '#0335FCFF' + - uid: 6584 components: - type: Transform - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: 35.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8218 + color: '#0335FCFF' + - uid: 6588 components: - type: Transform - pos: 8.5,19.5 + rot: 1.5707963267948966 rad + pos: 30.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8219 + - uid: 6601 components: - type: Transform - pos: 8.5,18.5 + rot: -1.5707963267948966 rad + pos: 39.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8223 + color: '#0335FCFF' + - uid: 6611 components: - type: Transform - pos: 13.5,24.5 + rot: 3.141592653589793 rad + pos: 26.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8224 + - uid: 6819 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,25.5 + pos: 47.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8225 + color: '#0335FCFF' + - uid: 7169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 + rot: 3.141592653589793 rad + pos: 15.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8226 + color: '#0335FCFF' + - uid: 7219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + rot: 1.5707963267948966 rad + pos: 14.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8227 + - uid: 7244 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 9.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8295 + - uid: 7245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,41.5 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8297 + - uid: 7274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,41.5 + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8298 + color: '#FF1212FF' + - uid: 7428 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,41.5 + pos: -5.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8300 + - uid: 7519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,37.5 + pos: -12.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8303 + - uid: 7532 components: - type: Transform - pos: 27.5,43.5 + rot: 3.141592653589793 rad + pos: -10.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8308 + - uid: 7802 components: - type: Transform - pos: 27.5,37.5 + pos: 50.5,24.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8310 + color: '#FF1212FF' + - uid: 8163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,42.5 + pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8318 + - uid: 8182 components: - type: Transform - pos: 27.5,38.5 + rot: 3.141592653589793 rad + pos: 23.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8321 + color: '#FF1212FF' + - uid: 8185 components: - type: Transform - pos: 27.5,42.5 + rot: 3.141592653589793 rad + pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8322 + - uid: 8192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,46.5 + rot: 3.141592653589793 rad + pos: 22.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8549 + - uid: 8197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 + rot: 3.141592653589793 rad + pos: 18.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8550 + - uid: 8208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,23.5 + pos: 8.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8551 + - uid: 8309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,23.5 + pos: 27.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8552 + color: '#0335FCFF' + - uid: 8555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 + rot: 3.141592653589793 rad + pos: 33.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8553 + color: '#0335FCFF' + - uid: 8561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 + pos: 33.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8554 + - uid: 8562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 + pos: 34.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8556 + - uid: 8563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,24.5 + rot: 3.141592653589793 rad + pos: 34.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8557 + - uid: 8594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,24.5 + pos: 35.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8558 + - uid: 8981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,24.5 + pos: 42.5,-26.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-1.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: 26.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8559 + color: '#FF1212FF' + - uid: 9536 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,24.5 + pos: 26.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8560 + - uid: 9560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,24.5 + rot: 3.141592653589793 rad + pos: 26.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8576 + - uid: 9573 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,23.5 + pos: 18.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8577 + color: '#0335FCFF' + - uid: 10047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: 56.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8578 + color: '#0335FCFF' + - uid: 10048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 + pos: 59.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8579 + color: '#0335FCFF' + - uid: 10057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 + rot: 3.141592653589793 rad + pos: 59.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8580 + color: '#0335FCFF' + - uid: 10062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 + pos: 54.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8582 + color: '#0335FCFF' + - uid: 10116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 + rot: 1.5707963267948966 rad + pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8583 + color: '#0335FCFF' + - uid: 10141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,23.5 + pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8586 + color: '#0335FCFF' + - uid: 10142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8587 + - uid: 10143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8588 + - uid: 10144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,24.5 + pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8590 + - uid: 10157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,24.5 + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8591 + - uid: 10174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,24.5 + pos: 7.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8593 + - uid: 10246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,24.5 + rot: 1.5707963267948966 rad + pos: 26.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8600 + - uid: 10336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,24.5 + pos: 62.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8604 + color: '#0335FCFF' + - uid: 10357 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,25.5 + pos: 48.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8605 + - uid: 10363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,25.5 + rot: -1.5707963267948966 rad + pos: 50.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8606 + color: '#FF1212FF' + - uid: 10380 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,26.5 + pos: 58.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8611 + color: '#FF1212FF' + - uid: 10381 components: - type: Transform - pos: 33.5,22.5 + rot: 3.141592653589793 rad + pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8612 + - uid: 10383 components: - type: Transform - pos: 33.5,21.5 + rot: -1.5707963267948966 rad + pos: 63.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8613 + - uid: 10404 components: - type: Transform - pos: 33.5,20.5 + pos: 58.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8614 + - uid: 10846 components: - type: Transform - pos: 35.5,23.5 + rot: 3.141592653589793 rad + pos: 40.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8615 + - uid: 11360 components: - type: Transform - pos: 35.5,22.5 + pos: 77.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8616 + - uid: 11510 components: - type: Transform - pos: 35.5,21.5 + pos: 65.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8617 + - uid: 11511 components: - type: Transform - pos: 35.5,20.5 + rot: 1.5707963267948966 rad + pos: 66.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8618 + - uid: 11513 components: - type: Transform - pos: 35.5,19.5 + rot: -1.5707963267948966 rad + pos: 66.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8619 + - uid: 11580 components: - type: Transform - pos: 35.5,18.5 + rot: -1.5707963267948966 rad + pos: 41.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8622 + color: '#03FCD3FF' + - uid: 11710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,19.5 + rot: -1.5707963267948966 rad + pos: 64.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8623 + - uid: 11715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 + pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8624 + color: '#0335FCFF' + - uid: 11745 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,19.5 + pos: 40.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8625 + - uid: 11766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,19.5 + rot: 3.141592653589793 rad + pos: 58.5,-1.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8626 + color: '#03FCD3FF' + - uid: 12864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,17.5 + rot: -1.5707963267948966 rad + pos: 43.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8627 + color: '#03FCD3FF' + - uid: 12865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,17.5 + pos: 41.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8631 + color: '#03FCD3FF' + - uid: 12866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,25.5 + rot: 1.5707963267948966 rad + pos: 41.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8632 + color: '#03FCD3FF' + - uid: 12876 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,26.5 + pos: 42.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8633 + - uid: 12877 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,27.5 + pos: 43.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8634 + - uid: 12878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-43.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 47.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8635 + color: '#FF1212FF' + - uid: 12900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,29.5 + pos: 48.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8636 + color: '#FF1212FF' + - uid: 12901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,30.5 + rot: 3.141592653589793 rad + pos: 48.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8637 + color: '#FF1212FF' + - uid: 12990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 + rot: 3.141592653589793 rad + pos: 37.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8638 + color: '#03FCD3FF' + - uid: 13577 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-34.5 + pos: 46.5,31.5 parent: 2 - - uid: 8654 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,30.5 + pos: -23.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8655 + color: '#FF1212FF' + - uid: 14013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,30.5 + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8660 + - uid: 14023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,30.5 + pos: -24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8661 + color: '#FF1212FF' + - uid: 14033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,30.5 + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8662 + - uid: 14372 components: - type: Transform - pos: 40.5,31.5 + rot: 3.141592653589793 rad + pos: 82.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8675 + color: '#FF1212FF' + - uid: 14376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,33.5 + pos: 84.5,31.5 parent: 2 - - uid: 8676 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,33.5 + pos: 85.5,30.5 parent: 2 - - uid: 8678 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 + rot: 1.5707963267948966 rad + pos: 81.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8680 + - uid: 14419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,16.5 + pos: 89.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8681 + - uid: 14429 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,16.5 + pos: 90.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8683 +- proto: GasPort + entities: + - uid: 1945 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,17.5 + pos: 37.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8702 + - uid: 3781 components: - type: Transform - pos: 56.5,33.5 + rot: 3.141592653589793 rad + pos: 36.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8924 + - uid: 3945 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-31.5 + pos: 49.5,-11.5 parent: 2 - - uid: 8980 + - uid: 4010 components: - type: Transform - pos: 42.5,-25.5 + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 parent: 2 - - uid: 8982 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4038 components: - type: Transform - pos: 42.5,-24.5 + rot: -1.5707963267948966 rad + pos: 28.5,-23.5 parent: 2 - - uid: 9348 + - uid: 4913 components: - type: Transform - pos: 56.5,32.5 + rot: -1.5707963267948966 rad + pos: 41.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9534 + - uid: 4920 components: - type: Transform - pos: 26.5,44.5 + rot: -1.5707963267948966 rad + pos: 39.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9535 + - uid: 4921 components: - type: Transform - pos: 26.5,43.5 + rot: 1.5707963267948966 rad + pos: 42.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9537 + - uid: 4922 components: - type: Transform - pos: 26.5,41.5 + pos: 43.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9538 + - uid: 4923 components: - type: Transform - pos: 26.5,40.5 + rot: -1.5707963267948966 rad + pos: 44.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9539 + - uid: 4925 components: - type: Transform - pos: 26.5,39.5 + rot: 3.141592653589793 rad + pos: 45.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9540 + - uid: 4926 components: - type: Transform - pos: 26.5,38.5 + rot: 1.5707963267948966 rad + pos: 44.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9541 + - uid: 4927 components: - type: Transform - pos: 25.5,36.5 + rot: -1.5707963267948966 rad + pos: 46.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9542 + - uid: 6480 components: - type: Transform - pos: 25.5,35.5 + pos: 37.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9543 + - uid: 7882 components: - type: Transform - pos: 25.5,34.5 + pos: 38.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9544 + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,45.5 + rot: 3.141592653589793 rad + pos: 63.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9548 + - uid: 10425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,45.5 + rot: 3.141592653589793 rad + pos: 64.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9549 + - uid: 12871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,45.5 + pos: 41.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9550 + - uid: 12872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,45.5 + pos: 42.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9551 + - uid: 12873 components: - type: Transform - pos: 22.5,44.5 + pos: 43.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9552 + - uid: 12874 components: - type: Transform - pos: 22.5,43.5 + pos: 44.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9553 + - uid: 14391 components: - type: Transform - pos: 22.5,42.5 + pos: 81.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9561 + color: '#0335FCFF' +- proto: GasPressurePump + entities: + - uid: 670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,35.5 + pos: 31.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9562 + - uid: 2437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9563 + - uid: 3293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9564 + - uid: 3304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9566 + - uid: 3308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9567 + - uid: 3311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9568 + - uid: 3314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9575 + - uid: 3519 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,37.5 + pos: 35.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9576 + - uid: 4033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,38.5 + rot: 1.5707963267948966 rad + pos: 27.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9577 + - uid: 5037 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,39.5 + pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9578 + - uid: 6583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9579 + - uid: 7803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 + rot: -1.5707963267948966 rad + pos: 51.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9580 + - uid: 7883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,36.5 + pos: 37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9629 + color: '#FF1212FF' + - uid: 10423 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,1.5 + pos: 63.5,23.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + pos: 38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9630 + color: '#03FCD3FF' + - uid: 14374 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,2.5 + pos: 82.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9631 + - uid: 14390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-0.5 + pos: 81.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9632 +- proto: GasThermoMachineFreezer + entities: + - uid: 3966 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,0.5 + pos: 33.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9633 + - uid: 4912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,1.5 + rot: 1.5707963267948966 rad + pos: 40.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9634 + - uid: 7984 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,2.5 + pos: 50.5,23.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9654 + color: '#03FCD3FF' +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 1156 components: - type: Transform - pos: 42.5,-23.5 + pos: 30.5,-9.5 parent: 2 - - uid: 9726 + - type: GasThermoMachine + targetTemperature: 0 +- proto: GasThermoMachineHeater + entities: + - uid: 1216 components: - type: Transform - pos: 56.5,31.5 + rot: 1.5707963267948966 rad + pos: 36.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10045 + color: '#FF1212FF' + - uid: 3885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 2 + - uid: 4906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,24.5 + pos: 38.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10046 +- proto: GasValve + entities: + - uid: 1233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,24.5 + pos: 42.5,-47.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10049 + color: '#03FCD3FF' + - uid: 4150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,23.5 + rot: -1.5707963267948966 rad + pos: 46.5,-35.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10050 + color: '#FF1212FF' + - uid: 4250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,22.5 + rot: -1.5707963267948966 rad + pos: 44.5,-48.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10051 + color: '#FF1212FF' + - uid: 11586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,21.5 + rot: -1.5707963267948966 rad + pos: 44.5,-47.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10052 + color: '#FF1212FF' +- proto: GasVentPump + entities: + - uid: 408 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,20.5 + pos: 26.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10053 + - uid: 429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,19.5 + pos: 9.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10055 + - uid: 851 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,17.5 + pos: 39.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10056 + - uid: 1161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,16.5 + pos: -2.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10058 + - uid: 1560 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,14.5 + pos: 21.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10059 + - uid: 1625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 + rot: -1.5707963267948966 rad + pos: 22.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10060 + - uid: 2301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 + rot: -1.5707963267948966 rad + pos: 41.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10061 + - uid: 2393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10063 + - uid: 3152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + pos: 56.5,37.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10064 + - uid: 3692 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,14.5 + pos: 41.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10065 + - uid: 4027 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,14.5 + pos: 15.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10066 + - uid: 4035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 + rot: 3.141592653589793 rad + pos: 19.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10067 + - uid: 4460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 + rot: 3.141592653589793 rad + pos: 32.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10068 + - uid: 4465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + rot: 3.141592653589793 rad + pos: 20.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10076 - components: - - type: Transform - pos: 79.5,-6.5 - parent: 2 - - uid: 10079 + - uid: 4551 components: - type: Transform - pos: 57.5,-3.5 + rot: 3.141592653589793 rad + pos: 24.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10115 + - uid: 5103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,24.5 + pos: 41.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10117 + - uid: 5189 components: - type: Transform - pos: 77.5,0.5 + rot: 3.141592653589793 rad + pos: 57.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10127 + - uid: 5422 components: - type: Transform - pos: 55.5,-8.5 + rot: 3.141592653589793 rad + pos: 11.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10134 + color: '#0335FCFF' + - uid: 5533 components: - type: Transform - pos: 57.5,-5.5 + rot: -1.5707963267948966 rad + pos: 36.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10145 + - uid: 5678 components: - type: Transform - pos: 1.5,-9.5 + rot: 3.141592653589793 rad + pos: 13.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10146 + - uid: 5964 components: - type: Transform - pos: 1.5,-8.5 + rot: 3.141592653589793 rad + pos: 11.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10147 + - uid: 6570 components: - type: Transform - pos: 1.5,-7.5 + rot: 1.5707963267948966 rad + pos: 45.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10148 + - uid: 6590 components: - type: Transform - pos: 1.5,-6.5 + rot: 3.141592653589793 rad + pos: 30.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10149 + - uid: 6593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 + rot: 3.141592653589793 rad + pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10150 + - uid: 6609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10151 + - uid: 6620 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + pos: 36.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10152 + - uid: 6627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10153 + - uid: 6640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: 46.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10154 + - uid: 6774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-3.5 + pos: 39.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10155 + - uid: 6778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 + rot: 1.5707963267948966 rad + pos: 4.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10156 + - uid: 6804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 + pos: 26.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10158 + - uid: 6908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 + rot: 1.5707963267948966 rad + pos: 5.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10159 + - uid: 6927 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-8.5 + pos: 22.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10160 + - uid: 6951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-9.5 + rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10161 + - uid: 7469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-10.5 + pos: -10.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10162 + - uid: 7801 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-11.5 + pos: 49.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10164 + - uid: 7838 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-11.5 + pos: -6.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10165 + - uid: 8009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + pos: 12.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10166 + - uid: 8016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10167 + - uid: 8236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + pos: 19.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14754 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10168 + - uid: 8240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 + pos: 26.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10175 + - uid: 8242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 + pos: 22.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10176 + - uid: 8296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 + rot: 1.5707963267948966 rad + pos: 26.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10177 + - uid: 8301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 + rot: 1.5707963267948966 rad + pos: 23.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10183 + - uid: 8344 components: - type: Transform - pos: 4.5,-0.5 + rot: 1.5707963267948966 rad + pos: 31.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10184 + color: '#0335FCFF' + - uid: 8349 components: - type: Transform - pos: 4.5,-1.5 + rot: 3.141592653589793 rad + pos: 48.5,34.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10185 + color: '#0335FCFF' + - uid: 8575 components: - type: Transform - pos: 4.5,-2.5 + pos: 34.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10186 + color: '#0335FCFF' + - uid: 8596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-7.5 + pos: 43.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10187 + color: '#0335FCFF' + - uid: 8597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 + rot: 3.141592653589793 rad + pos: 39.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10188 + color: '#0335FCFF' + - uid: 8607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 + pos: 39.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10189 + color: '#0335FCFF' + - uid: 8629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 + pos: 38.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10190 + color: '#0335FCFF' + - uid: 8684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 + pos: 42.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10191 + color: '#0335FCFF' + - uid: 9358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 + pos: 32.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10192 + color: '#0335FCFF' + - uid: 9558 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-7.5 + pos: 27.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10193 + color: '#0335FCFF' + - uid: 9570 components: - type: Transform - pos: 8.5,-6.5 + pos: 26.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10194 + color: '#0335FCFF' + - uid: 9581 components: - type: Transform - pos: 8.5,-5.5 + pos: 18.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10195 + color: '#0335FCFF' + - uid: 9582 components: - type: Transform - pos: 8.5,-4.5 + rot: 1.5707963267948966 rad + pos: 14.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10196 + color: '#0335FCFF' + - uid: 9635 components: - type: Transform - pos: 8.5,-3.5 + pos: 47.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10197 + color: '#0335FCFF' + - uid: 10163 components: - type: Transform - pos: 8.5,-2.5 + rot: 3.141592653589793 rad + pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10198 + color: '#0335FCFF' + - uid: 10170 components: - type: Transform - pos: 8.5,-1.5 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10199 + color: '#0335FCFF' + - uid: 10171 components: - type: Transform - pos: 8.5,-0.5 + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10209 + color: '#0335FCFF' + - uid: 10172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-11.5 + pos: 4.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10210 + - uid: 10173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-11.5 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10211 + - uid: 10178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10212 + - uid: 10214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 + rot: 1.5707963267948966 rad + pos: 23.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10213 + color: '#0335FCFF' + - uid: 10248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 + rot: 3.141592653589793 rad + pos: 26.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10242 + color: '#0335FCFF' + - uid: 10331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,3.5 + pos: 48.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10243 + color: '#0335FCFF' + - uid: 10346 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,4.5 + pos: 62.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10244 + color: '#0335FCFF' + - uid: 10347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 + rot: -1.5707963267948966 rad + pos: 67.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10245 + - uid: 10351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 + rot: 1.5707963267948966 rad + pos: 55.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10247 + - uid: 10352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,9.5 + rot: -1.5707963267948966 rad + pos: 57.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10323 + - uid: 10355 components: - type: Transform - pos: 54.5,13.5 + rot: -1.5707963267948966 rad + pos: 62.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10324 + - uid: 10356 components: - type: Transform - pos: 54.5,12.5 + rot: -1.5707963267948966 rad + pos: 60.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10325 + - uid: 10358 components: - type: Transform - pos: 54.5,11.5 + rot: -1.5707963267948966 rad + pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10326 + - uid: 10452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,10.5 + rot: 1.5707963267948966 rad + pos: 31.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10327 + - uid: 10643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 + rot: 3.141592653589793 rad + pos: 29.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10328 + - uid: 11365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,10.5 + rot: 3.141592653589793 rad + pos: 77.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10329 + - uid: 11366 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,10.5 + pos: 78.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10330 + - uid: 11514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,10.5 + rot: 1.5707963267948966 rad + pos: 64.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10332 + - uid: 11515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,11.5 + pos: 66.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10333 + - uid: 11516 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,12.5 + pos: 66.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10337 + - uid: 11709 components: - type: Transform - pos: 62.5,13.5 + pos: 71.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10338 + - uid: 11743 components: - type: Transform - pos: 62.5,12.5 + rot: 1.5707963267948966 rad + pos: 52.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10339 + - uid: 11924 components: - type: Transform - pos: 62.5,11.5 + rot: 3.141592653589793 rad + pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10340 + - uid: 11937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 + rot: 3.141592653589793 rad + pos: 61.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10341 + - uid: 11945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 + pos: 63.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10342 + - uid: 11956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 + pos: 71.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10343 + - uid: 13980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10344 + - uid: 14014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10345 + - uid: 14029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10348 + - uid: 14030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10349 + - uid: 14384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 + pos: 86.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10350 + - uid: 14385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,18.5 + rot: 3.141592653589793 rad + pos: 81.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10353 + - uid: 14420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,24.5 + rot: 3.141592653589793 rad + pos: 89.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10354 + - uid: 14433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,24.5 + rot: 3.141592653589793 rad + pos: 92.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10359 + - uid: 14613 components: - type: Transform - pos: 46.5,17.5 + pos: 72.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10360 + color: '#0335FCFF' + - uid: 14669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,18.5 + pos: 7.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10361 + color: '#0335FCFF' + - uid: 14736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,18.5 + pos: 15.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10362 + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 1232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 + rot: 3.141592653589793 rad + pos: -4.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10367 + - uid: 1305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: 30.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10368 + - uid: 1324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,19.5 + rot: 3.141592653589793 rad + pos: 10.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10369 + - uid: 1336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,19.5 + rot: 3.141592653589793 rad + pos: -12.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10370 + - uid: 2263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,19.5 + rot: -1.5707963267948966 rad + pos: 29.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10371 + - uid: 3475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,19.5 + pos: 79.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10372 + - uid: 3693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,19.5 + rot: -1.5707963267948966 rad + pos: 41.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10373 + - uid: 4092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,19.5 + pos: 15.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10376 + - uid: 4183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,17.5 + rot: -1.5707963267948966 rad + pos: 19.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10377 + - uid: 4414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 + pos: 50.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10378 + - uid: 4447 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,15.5 + pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10379 + - uid: 4464 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,14.5 + pos: 22.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10385 + - uid: 4552 components: - type: Transform - pos: 63.5,14.5 + pos: 28.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10386 + - uid: 4553 components: - type: Transform - pos: 63.5,12.5 + rot: 3.141592653589793 rad + pos: 26.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10387 + - uid: 5679 components: - type: Transform - pos: 63.5,11.5 + pos: 13.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10388 + - uid: 5968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 9.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10389 + - uid: 6571 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,15.5 + pos: 43.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10390 + - uid: 6595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,15.5 + rot: 3.141592653589793 rad + pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10391 + - uid: 6610 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,13.5 + pos: 39.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10392 + - uid: 6614 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,13.5 + pos: 29.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10393 + - uid: 6621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,13.5 + rot: 1.5707963267948966 rad + pos: 32.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10394 + - uid: 6622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,13.5 + pos: 38.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10395 + - uid: 6628 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,13.5 + pos: 45.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10396 + - uid: 6629 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,12.5 + pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10397 + - uid: 6805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 + pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10398 + - uid: 6911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,10.5 + rot: -1.5707963267948966 rad + pos: 9.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10405 + - uid: 6949 components: - type: Transform - pos: 58.5,20.5 + rot: 3.141592653589793 rad + pos: 18.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10406 + - uid: 6950 components: - type: Transform - pos: 58.5,21.5 + rot: -1.5707963267948966 rad + pos: 20.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10407 + - uid: 7708 components: - type: Transform - pos: 58.5,22.5 + rot: -1.5707963267948966 rad + pos: 4.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10408 + - uid: 7760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,23.5 + rot: 1.5707963267948966 rad + pos: 41.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10409 + - uid: 7837 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,23.5 + pos: -5.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10410 + - uid: 8010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,23.5 + rot: 3.141592653589793 rad + pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10428 + - uid: 8017 components: - type: Transform - pos: 63.5,24.5 + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 parent: 2 - - uid: 10429 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8203 components: - type: Transform - pos: 63.5,25.5 + pos: 9.5,27.5 parent: 2 - - uid: 10430 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8235 components: - type: Transform - pos: 63.5,26.5 + pos: 18.5,22.5 parent: 2 - - uid: 10431 + - type: DeviceNetwork + deviceLists: + - 14754 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8243 components: - type: Transform - pos: 63.5,27.5 + pos: 23.5,22.5 parent: 2 - - uid: 10432 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8564 components: - type: Transform - pos: 64.5,27.5 + rot: 3.141592653589793 rad + pos: 34.5,22.5 parent: 2 - - uid: 10433 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8595 components: - type: Transform - pos: 64.5,26.5 + rot: -1.5707963267948966 rad + pos: 43.5,23.5 parent: 2 - - uid: 10434 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8598 components: - type: Transform - pos: 64.5,25.5 + rot: 1.5707963267948966 rad + pos: 39.5,22.5 parent: 2 - - uid: 10435 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8610 components: - type: Transform - pos: 64.5,24.5 + pos: 40.5,26.5 parent: 2 - - uid: 10640 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8630 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,10.5 + pos: 38.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10641 + color: '#FF1212FF' + - uid: 8685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 + pos: 41.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10642 + color: '#FF1212FF' + - uid: 8810 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,9.5 + pos: 26.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10646 + color: '#FF1212FF' + - uid: 9359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,6.5 + rot: 3.141592653589793 rad + pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10647 + - uid: 9546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,6.5 + pos: 28.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10648 + - uid: 9554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 + rot: 3.141592653589793 rad + pos: 22.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10649 + - uid: 9557 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,7.5 + pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10650 + - uid: 9569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,7.5 + rot: 1.5707963267948966 rad + pos: 23.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10651 + - uid: 9636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,7.5 + pos: 44.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10663 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 2 - - uid: 11101 + - uid: 10128 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-29.5 - parent: 2 - - uid: 11278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-1.5 + pos: 55.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11281 + color: '#FF1212FF' + - uid: 10179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11282 + color: '#FF1212FF' + - uid: 10180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-1.5 + rot: 3.141592653589793 rad + pos: 4.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11290 + color: '#FF1212FF' + - uid: 10181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-1.5 + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11305 + color: '#FF1212FF' + - uid: 10182 components: - type: Transform - pos: 62.5,-0.5 + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11306 + color: '#FF1212FF' + - uid: 10215 components: - type: Transform - pos: 62.5,0.5 + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11313 + color: '#FF1212FF' + - uid: 10217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,0.5 + rot: 3.141592653589793 rad + pos: 29.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11314 + - uid: 10249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,0.5 + pos: 26.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11315 + - uid: 10365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,0.5 + rot: 3.141592653589793 rad + pos: 45.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11318 + - uid: 10366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,1.5 + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11326 + color: '#FF1212FF' + - uid: 10375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,1.5 + rot: -1.5707963267948966 rad + pos: 59.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11327 + color: '#FF1212FF' + - uid: 10400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,1.5 + rot: -1.5707963267948966 rad + pos: 67.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11328 + color: '#FF1212FF' + - uid: 10401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,1.5 + rot: 3.141592653589793 rad + pos: 63.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11330 + color: '#FF1212FF' + - uid: 10402 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,1.5 + pos: 54.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11331 + color: '#FF1212FF' + - uid: 10403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,1.5 + pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11336 + color: '#FF1212FF' + - uid: 10411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,1.5 + rot: -1.5707963267948966 rad + pos: 62.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11337 + color: '#FF1212FF' + - uid: 10412 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,1.5 + pos: 57.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11338 + color: '#FF1212FF' + - uid: 10652 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,1.5 + pos: 32.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11339 + color: '#FF1212FF' + - uid: 11367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,1.5 + rot: -1.5707963267948966 rad + pos: 77.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11340 + color: '#FF1212FF' + - uid: 11719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,1.5 + rot: 3.141592653589793 rad + pos: 64.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11341 + color: '#FF1212FF' + - uid: 11726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,2.5 + rot: -1.5707963267948966 rad + pos: 67.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11342 + - uid: 11729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,2.5 + rot: 3.141592653589793 rad + pos: 72.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11343 + - uid: 11744 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,2.5 + pos: 52.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11344 + - uid: 11923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,2.5 + pos: 60.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11345 + - uid: 11936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,2.5 + rot: 3.141592653589793 rad + pos: 60.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11346 + - uid: 11938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,2.5 + pos: 56.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11347 + - uid: 11957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,2.5 + pos: 73.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11348 + - uid: 13517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,2.5 + rot: 3.141592653589793 rad + pos: 56.5,33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11350 + - uid: 13985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11352 + - uid: 14015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 + rot: 3.141592653589793 rad + pos: -23.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11356 + - uid: 14031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,2.5 + rot: -1.5707963267948966 rad + pos: -23.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11357 + - uid: 14032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,2.5 + rot: -1.5707963267948966 rad + pos: -23.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11358 + - uid: 14373 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,2.5 + pos: 81.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11359 + - uid: 14377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,2.5 + rot: 3.141592653589793 rad + pos: 84.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11361 + - uid: 14421 components: - type: Transform - pos: 77.5,-0.5 + rot: 3.141592653589793 rad + pos: 89.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11362 + color: '#FF1212FF' + - uid: 14432 components: - type: Transform - pos: 77.5,-1.5 + pos: 92.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11363 + color: '#FF1212FF' + - uid: 14616 components: - type: Transform - pos: 77.5,-2.5 + rot: -1.5707963267948966 rad + pos: 72.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11364 + color: '#FF1212FF' + - uid: 14667 components: - type: Transform - pos: 77.5,-3.5 + pos: 8.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11517 + color: '#FF1212FF' + - uid: 14735 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-8.5 + pos: 14.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11518 + color: '#FF1212FF' + - uid: 14960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-7.5 + rot: -1.5707963267948966 rad + pos: 6.5,16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11519 + color: '#FF1212FF' +- proto: GasVolumePump + entities: + - uid: 1238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-5.5 + rot: -1.5707963267948966 rad + pos: 38.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11523 + color: '#03FCD3FF' + - uid: 4501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-4.5 + rot: 1.5707963267948966 rad + pos: 38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11524 + color: '#FF1212FF' +- proto: Gauze + entities: + - uid: 11966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-3.5 + pos: 67.46306,3.7913218 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11525 +- proto: GeneratorBasic15kW + entities: + - uid: 14392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-2.5 + pos: 79.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11528 +- proto: Girder + entities: + - uid: 1968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-0.5 + pos: 89.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11529 + - uid: 2379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,0.5 + pos: 84.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11530 + - uid: 2473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-9.5 + pos: 85.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11581 + - uid: 6238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 + pos: 88.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11699 + - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-9.5 + pos: 89.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11700 + - uid: 13044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-9.5 + pos: 36.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11701 + - uid: 13045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-9.5 + pos: 32.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11702 +- proto: GlassBoxLaserFilled + entities: + - uid: 5106 components: - type: Transform - pos: 71.5,-8.5 + rot: -1.5707963267948966 rad + pos: 31.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11703 +- proto: GlowstickRed + entities: + - uid: 7565 components: - type: Transform - pos: 71.5,-7.5 + pos: 49.50738,-16.506752 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11704 +- proto: GravityGenerator + entities: + - uid: 8244 components: - type: Transform - pos: 71.5,-6.5 + pos: 14.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11705 +- proto: Grille + entities: + - uid: 18 components: - type: Transform - pos: 71.5,-5.5 + rot: 3.141592653589793 rad + pos: 57.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11706 + - uid: 19 components: - type: Transform - pos: 71.5,-4.5 + rot: 3.141592653589793 rad + pos: 55.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11711 + - uid: 85 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-5.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11712 + - uid: 103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 + pos: -3.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11713 + - uid: 104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 + pos: -2.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11714 + - uid: 105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 + pos: -1.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11716 + - uid: 115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 + pos: -4.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11717 + - uid: 116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-5.5 + pos: -4.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11718 + - uid: 129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-5.5 + pos: 26.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11723 + - uid: 147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-4.5 + pos: 27.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11724 + - uid: 244 components: - type: Transform - pos: 66.5,-3.5 + pos: 2.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11725 + - uid: 259 components: - type: Transform - pos: 66.5,-2.5 + pos: 7.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11727 + - uid: 260 components: - type: Transform - pos: 72.5,1.5 + pos: 7.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11728 + - uid: 261 components: - type: Transform - pos: 72.5,0.5 + pos: 7.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11738 + - uid: 262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-4.5 + pos: 8.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11739 + - uid: 263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-4.5 + pos: 10.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11740 + - uid: 264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-4.5 + pos: 12.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11741 + - uid: 335 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-5.5 + pos: -19.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11742 + - uid: 392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-5.5 + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11756 + - uid: 406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-33.5 + rot: 1.5707963267948966 rad + pos: 47.5,-27.5 parent: 2 - - uid: 11764 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,0.5 + pos: 47.5,-29.5 parent: 2 - - uid: 11788 + - uid: 507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-1.5 + pos: 14.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11790 + - uid: 508 components: - type: Transform - pos: 61.5,-0.5 + pos: 15.5,-2.5 parent: 2 - - uid: 11796 + - uid: 511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 + pos: -4.5,-12.5 parent: 2 - - uid: 11925 + - uid: 612 components: - type: Transform - pos: 61.5,-3.5 + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11926 + - uid: 660 components: - type: Transform - pos: 61.5,-4.5 + pos: 17.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11927 + - uid: 661 components: - type: Transform - pos: 61.5,-5.5 + pos: 17.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11928 + - uid: 663 components: - type: Transform - pos: 61.5,-6.5 + pos: 19.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11929 + - uid: 664 components: - type: Transform - pos: 61.5,-7.5 + pos: 19.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11930 + - uid: 665 components: - type: Transform - pos: 61.5,-8.5 + pos: 19.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11931 + - uid: 698 components: - type: Transform - pos: 61.5,-9.5 + pos: 7.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11932 + - uid: 699 components: - type: Transform - pos: 60.5,-6.5 + pos: 6.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11933 + - uid: 700 components: - type: Transform - pos: 60.5,-7.5 + pos: 6.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11934 + - uid: 701 components: - type: Transform - pos: 60.5,-8.5 + pos: 6.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11935 + - uid: 702 components: - type: Transform - pos: 60.5,-9.5 + pos: 6.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11949 + - uid: 703 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,2.5 + pos: 5.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11950 + - uid: 764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,3.5 + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11951 + - uid: 811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,4.5 + pos: 25.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11952 + - uid: 812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,3.5 + pos: 27.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12859 + - uid: 854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-49.5 + pos: 19.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12860 + - uid: 855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-49.5 + pos: 19.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12867 + - uid: 856 components: - type: Transform - pos: 43.5,-50.5 + pos: 24.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12868 + - uid: 857 components: - type: Transform - pos: 41.5,-50.5 + pos: 25.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12879 + - uid: 858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-44.5 + pos: 28.5,-34.5 parent: 2 - - uid: 12880 + - uid: 859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-45.5 + pos: 27.5,-34.5 parent: 2 - - uid: 12887 + - uid: 860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-44.5 + pos: 33.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12902 + - uid: 861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-45.5 + pos: 33.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12903 + - uid: 921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-45.5 + pos: 13.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13435 + - uid: 922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-34.5 + pos: 12.5,-37.5 parent: 2 - - uid: 13448 + - uid: 924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-34.5 + pos: 10.5,-37.5 parent: 2 - - uid: 13453 + - uid: 925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-34.5 + pos: 14.5,-36.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 14 + - uid: 926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-28.5 + pos: 14.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 39 + - uid: 927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: 14.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 347 + - uid: 959 components: - type: Transform - pos: 18.5,15.5 + pos: 24.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 355 + - uid: 960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-34.5 + pos: 23.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 356 + - uid: 961 components: - type: Transform - pos: 13.5,-35.5 + pos: 22.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 362 + - uid: 962 components: - type: Transform - pos: 22.5,13.5 + pos: 20.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 426 + - uid: 963 components: - type: Transform - pos: 9.5,10.5 + pos: 19.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 434 + - uid: 964 components: - type: Transform - pos: 11.5,9.5 + pos: 18.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 756 + - uid: 965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,13.5 + pos: 18.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 892 + - uid: 966 components: - type: Transform - pos: 19.5,13.5 + pos: 18.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1036 + - uid: 969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 + pos: 19.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1148 + - uid: 970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 + pos: 20.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1215 + - uid: 971 components: - type: Transform - pos: 43.5,-48.5 + pos: 21.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1221 + - uid: 972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-28.5 + pos: 22.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1225 + - uid: 973 components: - type: Transform - pos: 43.5,-44.5 + pos: 23.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1234 + - uid: 976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-46.5 + pos: 24.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1257 + - uid: 977 components: - type: Transform - pos: 41.5,-44.5 + pos: 24.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1259 + - uid: 978 components: - type: Transform - pos: 26.5,-28.5 + pos: 25.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1260 + - uid: 979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-36.5 + pos: 26.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1261 + - uid: 980 components: - type: Transform - pos: 22.5,-36.5 + pos: 17.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1262 + - uid: 981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-35.5 + pos: 16.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1263 + - uid: 1241 components: - type: Transform - pos: 20.5,-35.5 + pos: 38.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1304 + - uid: 1242 components: - type: Transform - pos: 24.5,-35.5 + pos: 36.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1372 + - uid: 1243 components: - type: Transform - pos: 26.5,-27.5 + pos: 33.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1516 + - uid: 1246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 + pos: 37.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1529 + - uid: 1248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-36.5 + pos: 34.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1619 + - uid: 1254 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-17.5 + pos: 38.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1653 + - uid: 1274 components: - type: Transform - pos: 33.5,1.5 + pos: 39.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1690 + - uid: 1338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-35.5 + pos: 1.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1692 + - uid: 1339 components: - type: Transform - pos: 21.5,-28.5 + pos: 0.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1694 + - uid: 1340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-32.5 + pos: -1.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1695 + - uid: 1341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 + pos: -1.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1717 + - uid: 1357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,1.5 + pos: 1.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1718 + - uid: 1358 components: - type: Transform - pos: 40.5,15.5 + pos: 0.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1806 + - uid: 1359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,15.5 + pos: -0.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1813 + - uid: 1360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 + pos: 1.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1821 + - uid: 1361 components: - type: Transform - pos: 25.5,1.5 + pos: 0.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2069 + - uid: 1362 components: - type: Transform - pos: 36.5,-25.5 + pos: -0.5,-36.5 parent: 2 - - uid: 2162 + - uid: 1508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + pos: 34.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2435 + - uid: 1540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-24.5 + pos: 28.5,-6.5 parent: 2 - - uid: 2529 + - uid: 1545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,42.5 + pos: -13.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3691 + - uid: 1546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 + pos: -8.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3694 + - uid: 1565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-4.5 + pos: 28.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3902 + - uid: 1575 components: - type: Transform - pos: 34.5,-25.5 + pos: 28.5,-4.5 parent: 2 - - uid: 3964 + - uid: 1675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-48.5 + pos: 45.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4002 + - uid: 1713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 + pos: 42.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4011 + - uid: 1714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: 42.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4029 + - uid: 1715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-23.5 + pos: 42.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4036 + - uid: 1741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 + pos: 28.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4037 + - uid: 1742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 + pos: 28.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4039 + - uid: 1773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 + pos: -6.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4059 + - uid: 1856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-28.5 + pos: -3.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4089 + - uid: 1967 components: - type: Transform - pos: 16.5,1.5 + pos: 88.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4126 + - uid: 1998 components: - type: Transform - pos: 14.5,1.5 + pos: -5.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4199 + - uid: 1999 components: - type: Transform - pos: 27.5,-0.5 + pos: 5.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4236 + - uid: 2000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-1.5 + pos: 4.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4494 + - uid: 2001 components: - type: Transform - pos: 47.5,-47.5 + pos: -4.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4496 + - uid: 2002 components: - type: Transform - pos: 48.5,-47.5 + pos: -3.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4497 + - uid: 2006 components: - type: Transform - pos: 45.5,-47.5 + pos: 5.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4499 + - uid: 2007 components: - type: Transform - pos: 46.5,-47.5 + pos: 4.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4768 + - uid: 2009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,4.5 + pos: 5.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5019 + - uid: 2010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,40.5 + pos: 4.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5029 + - uid: 2013 components: - type: Transform - pos: 35.5,-25.5 + pos: 4.5,16.5 parent: 2 - - uid: 5035 + - uid: 2031 components: - type: Transform - pos: 57.5,0.5 + pos: -7.5,-5.5 parent: 2 - - uid: 5041 + - uid: 2036 components: - type: Transform - pos: 59.5,1.5 + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5076 + - uid: 2079 components: - type: Transform - pos: 25.5,37.5 + pos: 21.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5099 + - uid: 2080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,1.5 + pos: 21.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5104 + - uid: 2182 components: - type: Transform - pos: 45.5,15.5 + pos: 24.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5112 + - uid: 2183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 + pos: 24.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5113 + - uid: 2236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 + pos: 28.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5114 + - uid: 2237 components: - type: Transform - pos: 26.5,13.5 + pos: 28.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5115 + - uid: 2238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 + pos: 28.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5118 + - uid: 2239 components: - type: Transform - pos: 9.5,-1.5 + pos: 28.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5138 + - uid: 2254 components: - type: Transform - pos: 8.5,0.5 + pos: 31.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5160 + - uid: 2255 components: - type: Transform - pos: 4.5,0.5 + pos: 31.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5161 + - uid: 2281 components: - type: Transform - pos: -0.5,0.5 + pos: 44.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5162 + - uid: 2282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,1.5 + pos: 44.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5163 + - uid: 2283 components: - type: Transform - pos: 30.5,15.5 + pos: 44.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5165 + - uid: 2351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-1.5 + pos: 37.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5168 + - uid: 2352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,1.5 + pos: 37.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5170 + - uid: 2357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,0.5 + pos: 41.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5171 + - uid: 2358 components: - type: Transform - pos: 61.5,-2.5 + pos: 37.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5177 + - uid: 2359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,7.5 + pos: 38.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5178 + - uid: 2365 components: - type: Transform - pos: 1.5,-1.5 + pos: 38.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5179 + - uid: 2371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,13.5 + pos: 42.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5180 + - uid: 2372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 + pos: 42.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5199 + - uid: 2392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,25.5 + pos: 67.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5233 + - uid: 2433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-1.5 + pos: 24.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5237 + - uid: 2434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 + pos: 28.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5238 + - uid: 2456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 + pos: 43.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5239 + - uid: 2457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 + pos: 41.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5241 + - uid: 2512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,24.5 + pos: 39.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5242 + - uid: 2513 components: - type: Transform - pos: 26.5,23.5 + pos: 39.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5284 + - uid: 2514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,21.5 + pos: 39.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6423 + - uid: 2515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,41.5 + pos: 39.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6552 + - uid: 2618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-6.5 + pos: 21.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6555 + - uid: 2619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: 22.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6558 + - uid: 2620 components: - type: Transform - pos: 34.5,-6.5 + pos: 23.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6565 + - uid: 2621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 24.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6578 + - uid: 2622 components: - type: Transform - pos: 39.5,-3.5 + pos: 21.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6584 + - uid: 2623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 + pos: 24.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6588 + - uid: 2624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-10.5 + pos: 27.5,38.5 parent: 2 - - uid: 6601 + - uid: 2625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 + pos: 27.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6611 + - uid: 2649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-10.5 + pos: 15.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6819 + - uid: 2650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,13.5 + pos: 14.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7274 + - uid: 2651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-1.5 + pos: 13.5,42.5 parent: 2 - - uid: 7409 + - uid: 2676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 + pos: 24.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7428 + - uid: 2677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 + pos: 23.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7802 + - uid: 2678 components: - type: Transform - pos: 50.5,24.5 + pos: 22.5,33.5 parent: 2 - - uid: 8182 + - uid: 2679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,21.5 + pos: 22.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8185 + - uid: 2680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,20.5 + pos: 22.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8192 + - uid: 2681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: 22.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8197 + - uid: 2734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,21.5 + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8207 + - uid: 2735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 + pos: -4.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8208 + - uid: 2737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,25.5 + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8309 + - uid: 2740 components: - type: Transform - pos: 27.5,46.5 + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8555 + - uid: 2789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 + pos: 22.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8561 + - uid: 2790 components: - type: Transform - pos: 33.5,23.5 + pos: 23.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8562 + - uid: 2791 components: - type: Transform - pos: 34.5,23.5 + pos: 24.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8563 + - uid: 2792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 + pos: 25.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8594 + - uid: 2793 components: - type: Transform - pos: 35.5,24.5 + pos: 26.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8981 + - uid: 2794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-26.5 + pos: 27.5,49.5 parent: 2 - - uid: 9367 + - uid: 2795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-1.5 + pos: 28.5,49.5 parent: 2 - - uid: 9533 + - uid: 2796 components: - type: Transform - pos: 26.5,45.5 + pos: 29.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9536 + - uid: 2797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,42.5 + pos: 30.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9559 + - uid: 2798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,35.5 + pos: 31.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9560 + - uid: 2799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,35.5 + pos: 32.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9573 + - uid: 2806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,36.5 + pos: 36.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10044 + - uid: 2807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + pos: 36.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10047 + - uid: 2808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,24.5 + pos: 18.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10048 + - uid: 2809 components: - type: Transform - pos: 59.5,24.5 + pos: 18.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10057 + - uid: 2830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,14.5 + pos: -7.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10062 + - uid: 2836 components: - type: Transform - pos: 54.5,14.5 + pos: 59.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10116 + - uid: 2837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,15.5 + pos: 60.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10141 + - uid: 2838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 + pos: 62.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10142 + - uid: 2839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 + pos: 61.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10143 + - uid: 2840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 + pos: 63.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10144 + - uid: 2841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 + pos: 60.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10157 + - uid: 2842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 + pos: 61.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10174 + - uid: 2843 components: - type: Transform - pos: 7.5,-11.5 + pos: 62.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10246 + - uid: 2844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,10.5 + pos: 63.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10336 + - uid: 2845 components: - type: Transform - pos: 62.5,14.5 + pos: 60.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10357 + - uid: 2846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,10.5 + pos: 62.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10363 + - uid: 2847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,18.5 + pos: 63.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10380 + - uid: 2878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,13.5 + pos: 58.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10381 + - uid: 2879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,13.5 + pos: 59.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10383 + - uid: 2880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,13.5 + pos: 60.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10404 + - uid: 2881 components: - type: Transform - pos: 58.5,23.5 + pos: 66.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11360 + - uid: 2882 components: - type: Transform - pos: 77.5,1.5 + pos: 65.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11510 + - uid: 2961 components: - type: Transform - pos: 65.5,1.5 + pos: 49.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11511 + - uid: 2962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-9.5 + pos: 54.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11513 + - uid: 2964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-6.5 + pos: 44.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11580 + - uid: 2966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-48.5 + pos: 46.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11710 + - uid: 2967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-5.5 + pos: 47.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11715 + - uid: 2968 components: - type: Transform - pos: 56.5,-4.5 + pos: 48.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11745 + - uid: 2986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,6.5 + pos: 52.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11766 + - uid: 2987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-1.5 + pos: 53.5,-0.5 parent: 2 - - uid: 12863 + - uid: 3015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-51.5 + pos: 57.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12864 + - uid: 3016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-52.5 + pos: 55.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12865 + - uid: 3017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-52.5 + pos: 67.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12866 + - uid: 3018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-51.5 + pos: 66.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12876 + - uid: 3019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-43.5 + pos: 65.5,-2.5 parent: 2 - - uid: 12877 + - uid: 3020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-43.5 + pos: 64.5,-2.5 parent: 2 - - uid: 12878 + - uid: 3045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-43.5 + pos: 55.5,12.5 parent: 2 - - uid: 12886 + - uid: 3046 components: - type: Transform - pos: 47.5,-44.5 + pos: 53.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12900 + - uid: 3067 components: - type: Transform - pos: 48.5,-44.5 + pos: 42.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12901 + - uid: 3068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-46.5 + pos: 41.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12990 + - uid: 3090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-48.5 + pos: 43.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasPort - entities: - - uid: 1945 + - uid: 3091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-26.5 + pos: 44.5,47.5 parent: 2 - - uid: 3781 + - uid: 3092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-26.5 + pos: 45.5,47.5 parent: 2 - - uid: 3945 + - uid: 3093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-11.5 + pos: 45.5,48.5 parent: 2 - - uid: 4010 + - uid: 3094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 + pos: 46.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4038 + - uid: 3095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 + pos: 47.5,48.5 parent: 2 - - uid: 4913 + - uid: 3096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 + pos: 48.5,48.5 parent: 2 - - uid: 4920 + - uid: 3097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 + pos: 48.5,49.5 parent: 2 - - uid: 4921 + - uid: 3106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-40.5 + pos: 46.5,45.5 parent: 2 - - uid: 4922 + - uid: 3107 components: - type: Transform - pos: 43.5,-39.5 + pos: 47.5,45.5 parent: 2 - - uid: 4923 + - uid: 3108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-40.5 + pos: 48.5,45.5 parent: 2 - - uid: 4925 + - uid: 3109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-40.5 + pos: 49.5,45.5 parent: 2 - - uid: 4926 + - uid: 3114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-39.5 + pos: 50.5,46.5 parent: 2 - - uid: 4927 + - uid: 3115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-39.5 + pos: 50.5,47.5 parent: 2 - - uid: 6480 + - uid: 3116 components: - type: Transform - pos: 37.5,-42.5 + pos: 51.5,47.5 parent: 2 - - uid: 7882 + - uid: 3117 components: - type: Transform - pos: 38.5,-42.5 + pos: 52.5,47.5 parent: 2 - - uid: 10420 + - uid: 3126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,22.5 + pos: 62.5,47.5 parent: 2 - - uid: 10425 + - uid: 3136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,22.5 + pos: 60.5,47.5 parent: 2 - - uid: 12871 + - uid: 3137 components: - type: Transform - pos: 41.5,-42.5 + pos: 61.5,47.5 parent: 2 - - uid: 12872 + - uid: 3139 components: - type: Transform - pos: 42.5,-42.5 + pos: 47.5,39.5 parent: 2 - - uid: 12873 + - uid: 3140 components: - type: Transform - pos: 43.5,-42.5 + pos: 47.5,38.5 parent: 2 - - uid: 12874 + - uid: 3141 components: - type: Transform - pos: 44.5,-42.5 + pos: 47.5,37.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 670 + - uid: 3161 components: - type: Transform - pos: 31.5,-27.5 + rot: 3.141592653589793 rad + pos: 47.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2437 + - uid: 3166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-26.5 + rot: 1.5707963267948966 rad + pos: 56.5,26.5 parent: 2 - - uid: 3293 + - uid: 3213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-34.5 + pos: 62.5,46.5 parent: 2 - - uid: 3304 + - uid: 3291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-30.5 + rot: 1.5707963267948966 rad + pos: 47.5,-31.5 parent: 2 - - uid: 3308 + - uid: 3317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-24.5 + pos: 64.5,49.5 parent: 2 - - uid: 3311 + - uid: 3320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-32.5 + pos: 65.5,48.5 parent: 2 - - uid: 3314 + - uid: 3322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-28.5 + pos: -21.5,-15.5 parent: 2 - - uid: 3519 + - uid: 3323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-26.5 + pos: 50.5,49.5 parent: 2 - - uid: 4033 + - uid: 3324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 + pos: 51.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5037 + - uid: 3325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-0.5 + pos: 52.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6583 + - uid: 3326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 + pos: 53.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7803 + - uid: 3329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 + pos: 59.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7883 + - uid: 3330 components: - type: Transform - pos: 37.5,-43.5 + pos: 60.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10423 + - uid: 3331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 + pos: 61.5,49.5 parent: 2 - - uid: 10424 + - uid: 3332 components: - type: Transform - pos: 64.5,23.5 + pos: 62.5,49.5 parent: 2 - - uid: 11577 + - uid: 3341 components: - type: Transform - pos: 38.5,-43.5 + pos: 66.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 3966 + - uid: 3342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-26.5 + pos: 64.5,48.5 parent: 2 - - uid: 4912 + - uid: 3349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-40.5 + pos: 67.5,48.5 parent: 2 - - uid: 7984 + - uid: 3350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,23.5 + pos: 67.5,47.5 parent: 2 - - uid: 11775 + - uid: 3351 components: - type: Transform - pos: 59.5,-0.5 + pos: 68.5,47.5 parent: 2 - - uid: 12989 + - uid: 3364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 + pos: 72.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 1156 + - uid: 3365 components: - type: Transform - pos: 30.5,-9.5 + pos: 73.5,46.5 parent: 2 - - type: GasThermoMachine - targetTemperature: 0 -- proto: GasThermoMachineHeater - entities: - - uid: 1216 + - uid: 3366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-44.5 + pos: 74.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3885 + - uid: 3367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 + pos: 72.5,44.5 parent: 2 - - uid: 4906 + - uid: 3368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-40.5 + pos: 73.5,44.5 parent: 2 -- proto: GasValve - entities: - - uid: 1233 + - uid: 3369 components: - type: Transform - pos: 42.5,-47.5 + pos: 74.5,44.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4150 + - uid: 3477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-35.5 + pos: 57.5,26.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4250 + - uid: 3478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-48.5 + pos: 58.5,26.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11586 + - uid: 3489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-47.5 + pos: 48.5,19.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasVentPump - entities: - - uid: 408 + - uid: 3495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-29.5 + pos: 55.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 851 + - uid: 3496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-10.5 + pos: 48.5,17.5 parent: 2 - - uid: 1560 + - uid: 3497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 + pos: 54.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1625 + - uid: 3529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 + pos: 75.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2393 + - uid: 3530 components: - type: Transform - pos: 30.5,-27.5 + pos: 75.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3692 + - uid: 3531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,8.5 + pos: 75.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4027 + - uid: 3532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,13.5 + pos: 78.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4035 + - uid: 3533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,6.5 + pos: 79.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4460 + - uid: 3534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-40.5 + pos: 80.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4465 + - uid: 3535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-38.5 + pos: 77.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4551 + - uid: 3543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-36.5 + pos: 90.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5103 + - uid: 3546 components: - type: Transform - pos: 41.5,14.5 + pos: 91.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5189 + - uid: 3568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-9.5 + pos: 88.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5422 + - uid: 3588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-40.5 + pos: 90.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5533 + - uid: 3606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,42.5 + pos: 90.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5678 + - uid: 3610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-36.5 + pos: 88.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5964 + - uid: 3652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,5.5 + pos: 65.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6570 + - uid: 3653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-6.5 + pos: 65.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6590 + - uid: 3677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 + pos: 60.5,12.5 parent: 2 - - uid: 6593 + - uid: 3678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-11.5 + pos: 61.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6609 + - uid: 3679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-4.5 + pos: 63.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6620 + - uid: 3768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,0.5 + pos: 82.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6627 + - uid: 3769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-3.5 + pos: 81.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6640 + - uid: 3770 components: - type: Transform - pos: 46.5,-0.5 + pos: 80.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6778 + - uid: 3771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 + pos: 79.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6804 + - uid: 3851 components: - type: Transform - pos: 26.5,-16.5 + pos: 73.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6927 + - uid: 3852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,12.5 + pos: 74.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6951 + - uid: 3853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,9.5 + pos: 75.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7469 + - uid: 3854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 + pos: 76.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7801 + - uid: 3855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,24.5 + pos: 77.5,-17.5 parent: 2 - - uid: 7838 + - uid: 3856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 + pos: 78.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8009 + - uid: 3857 components: - type: Transform - pos: 12.5,0.5 + pos: 79.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8016 + - uid: 3858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 + pos: 80.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8220 + - uid: 3859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,19.5 + pos: 81.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8222 + - uid: 3860 components: - type: Transform - pos: 9.5,22.5 + pos: 82.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8236 + - uid: 3861 components: - type: Transform - pos: 19.5,21.5 + pos: 83.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8240 + - uid: 3862 components: - type: Transform - pos: 26.5,21.5 + pos: 84.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8242 + - uid: 3863 components: - type: Transform - pos: 22.5,21.5 + pos: 85.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8296 + - uid: 3864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,46.5 + pos: 86.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8301 + - uid: 3889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,41.5 + pos: 96.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8344 + - uid: 3892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,42.5 + pos: 94.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8575 + - uid: 3893 components: - type: Transform - pos: 34.5,25.5 + pos: 98.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8596 + - uid: 3903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,24.5 + pos: 97.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8597 + - uid: 3957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,23.5 + pos: 40.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8607 + - uid: 3969 components: - type: Transform - pos: 39.5,27.5 + pos: 39.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8629 + - uid: 3973 components: - type: Transform - pos: 38.5,18.5 + pos: 18.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8673 + - uid: 3977 components: - type: Transform - pos: 40.5,32.5 + pos: 19.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8684 + - uid: 3978 components: - type: Transform - pos: 42.5,17.5 + pos: 24.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8700 + - uid: 3981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,30.5 + pos: 17.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8701 + - uid: 3985 components: - type: Transform - pos: 56.5,34.5 + pos: 19.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9358 + - uid: 3987 components: - type: Transform - pos: 32.5,14.5 + pos: 14.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9558 + - uid: 3998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,39.5 + pos: 13.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9570 + - uid: 4047 components: - type: Transform - pos: 26.5,36.5 + pos: 34.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9581 + - uid: 4051 components: - type: Transform - pos: 18.5,40.5 + pos: 36.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9582 + - uid: 4066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,36.5 + pos: -21.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9635 + - uid: 4074 components: - type: Transform - pos: 47.5,3.5 + pos: 25.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10163 + - uid: 4153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-12.5 + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10170 + - uid: 4243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-12.5 + pos: 24.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10171 + - uid: 4296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 + pos: 24.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10172 + - uid: 4319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 + pos: 7.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10173 + - uid: 4320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 + pos: 6.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10178 + - uid: 4338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 + pos: 34.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10214 + - uid: 4339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-11.5 + pos: 36.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10248 + - uid: 4340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,8.5 + pos: 37.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10331 + - uid: 4341 components: - type: Transform - pos: 48.5,11.5 + pos: 37.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10346 + - uid: 4342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,10.5 + pos: 37.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10347 + - uid: 4343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 + pos: 36.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10351 + - uid: 4344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 + pos: 34.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10352 + - uid: 4345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 + pos: 33.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10355 + - uid: 4350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,24.5 + pos: 37.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10356 + - uid: 4376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 + pos: 33.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10358 + - uid: 4377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 + pos: 33.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10643 + - uid: 4378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,8.5 + pos: 33.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11365 + - uid: 4379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-4.5 + pos: 37.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11366 + - uid: 4380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,1.5 + pos: 37.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11514 + - uid: 4381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-1.5 + pos: 37.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11515 + - uid: 4400 components: - type: Transform - pos: 66.5,-5.5 + rot: -1.5707963267948966 rad + pos: 52.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11516 + - uid: 4401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-10.5 + rot: -1.5707963267948966 rad + pos: 52.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11709 + - uid: 4402 components: - type: Transform - pos: 71.5,-3.5 + rot: -1.5707963267948966 rad + pos: 60.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11743 + - uid: 4404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 + rot: 3.141592653589793 rad + pos: 65.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11924 + - uid: 4405 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-5.5 + pos: 65.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11937 + - uid: 4408 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-10.5 + pos: 40.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11945 + - uid: 4409 components: - type: Transform - pos: 63.5,2.5 + rot: 3.141592653589793 rad + pos: 39.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11956 + - uid: 4410 components: - type: Transform - pos: 71.5,5.5 + rot: -1.5707963267948966 rad + pos: 57.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasVentScrubber - entities: - - uid: 1305 + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - uid: 4412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 + rot: -1.5707963267948966 rad + pos: 55.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1324 + - uid: 4415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-41.5 + pos: 35.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3475 + - uid: 4419 components: - type: Transform - pos: 79.5,-5.5 + pos: 46.5,-36.5 parent: 2 - - uid: 3693 + - uid: 4455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,6.5 + pos: 33.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4092 + - uid: 4456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,15.5 + pos: 33.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4183 + - uid: 4457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,15.5 + pos: 33.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4447 + - uid: 4458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-39.5 + pos: 32.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4464 + - uid: 4459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-38.5 + pos: 31.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4552 + - uid: 4467 components: - type: Transform - pos: 28.5,-35.5 + pos: 39.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4553 + - uid: 4469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-28.5 + pos: 41.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5679 + - uid: 4473 components: - type: Transform - pos: 13.5,-33.5 + pos: 43.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5968 + - uid: 4487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,5.5 + pos: 47.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6571 + - uid: 4488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-6.5 + pos: 47.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6595 + - uid: 4489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-11.5 + pos: 47.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6610 + - uid: 4490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 + pos: 47.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6614 + - uid: 5248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 + pos: 45.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6621 + - uid: 5250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 + pos: 45.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6622 + - uid: 5288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 + rot: 1.5707963267948966 rad + pos: 10.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6628 + - uid: 5431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 + pos: 45.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6629 + - uid: 5483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-7.5 + pos: 72.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6805 + - uid: 5484 components: - type: Transform - pos: 26.5,-9.5 + pos: 72.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6949 + - uid: 5485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 + pos: 72.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6950 + - uid: 5486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,10.5 + pos: 72.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7472 + - uid: 5487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 + pos: 72.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7708 + - uid: 5488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 + pos: 72.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7837 + - uid: 5581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8010 + - uid: 5743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8017 + - uid: 5751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 + pos: 21.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8221 + - uid: 5752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,17.5 + pos: 22.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8229 + - uid: 5753 components: - type: Transform - pos: 8.5,26.5 + pos: 23.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8235 + - uid: 5754 components: - type: Transform - pos: 18.5,22.5 + pos: 24.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8243 + - uid: 5755 components: - type: Transform - pos: 23.5,22.5 + pos: 25.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8564 + - uid: 5756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,22.5 + pos: 26.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8595 + - uid: 5757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 + pos: 27.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8598 + - uid: 5758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 + pos: 28.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8610 + - uid: 5759 components: - type: Transform - pos: 40.5,26.5 + pos: 29.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8630 + - uid: 5760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 + pos: 30.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8674 + - uid: 5761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,33.5 + pos: 31.5,53.5 parent: 2 - - uid: 8685 + - uid: 5762 components: - type: Transform - pos: 41.5,18.5 + pos: 32.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8810 + - uid: 5763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,22.5 + pos: 33.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9359 + - uid: 5765 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,14.5 + pos: 56.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9546 + - uid: 5966 components: - type: Transform - pos: 28.5,46.5 + rot: 3.141592653589793 rad + pos: 56.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9554 + - uid: 6119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,41.5 + pos: 12.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9557 + - uid: 6124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,42.5 + pos: 8.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9569 + - uid: 6125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,37.5 + pos: 8.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9636 + - uid: 6126 components: - type: Transform - pos: 44.5,3.5 + pos: 9.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10128 + - uid: 6127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 + pos: 10.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10179 + - uid: 6129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + pos: 12.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10180 + - uid: 6130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 + pos: 8.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10181 + - uid: 6131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 + pos: 8.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10182 + - uid: 6132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 + pos: 9.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10215 + - uid: 6133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 + pos: 11.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10217 + - uid: 6324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-28.5 + rot: -1.5707963267948966 rad + pos: 99.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10249 + - uid: 6501 components: - type: Transform - pos: 26.5,5.5 + pos: 42.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10365 + - uid: 6607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,14.5 + pos: 45.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10366 + - uid: 6608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 + pos: 45.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10375 + - uid: 6618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,19.5 + pos: 45.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10400 + - uid: 6658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,15.5 + pos: 45.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10401 + - uid: 6760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,10.5 + pos: 45.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10402 + - uid: 6764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 + pos: 45.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10403 + - uid: 6806 components: - type: Transform - pos: 57.5,14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10411 + - uid: 6821 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,23.5 + pos: -26.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10412 + - uid: 6830 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,23.5 + pos: 1.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10652 + - uid: 6831 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,6.5 + pos: 4.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11367 + - uid: 6836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,2.5 + rot: 1.5707963267948966 rad + pos: 11.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11719 + - uid: 6837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-6.5 + rot: 1.5707963267948966 rad + pos: 4.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11726 + - uid: 6842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-1.5 + pos: -4.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11729 + - uid: 6845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-0.5 + rot: -1.5707963267948966 rad + pos: -9.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11744 + - uid: 6860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 + pos: -20.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11923 + - uid: 6874 components: - type: Transform - pos: 60.5,-4.5 + pos: -16.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11936 + - uid: 6886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-10.5 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11938 + - uid: 6887 components: - type: Transform - pos: 56.5,2.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11957 + - uid: 6891 components: - type: Transform - pos: 73.5,5.5 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasVolumePump - entities: - - uid: 1238 + - uid: 6892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-47.5 + pos: -18.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4501 + - uid: 6895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-45.5 + rot: -1.5707963267948966 rad + pos: -23.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: Gauze - entities: - - uid: 11966 + - uid: 6902 components: - type: Transform - pos: 67.46306,3.7913218 - parent: 2 -- proto: Girder - entities: - - uid: 1968 + pos: -14.5,16.5 + parent: 2 + - uid: 7010 components: - type: Transform - pos: 89.5,-1.5 + pos: 45.5,-25.5 parent: 2 - - uid: 2379 + - uid: 7433 components: - type: Transform - pos: 84.5,6.5 + rot: -1.5707963267948966 rad + pos: -22.5,1.5 parent: 2 - - uid: 2473 + - uid: 7434 components: - type: Transform - pos: 85.5,1.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 parent: 2 - - uid: 6006 + - uid: 7444 components: - type: Transform - pos: 66.5,21.5 + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 parent: 2 - - uid: 6007 + - uid: 7445 components: - type: Transform - pos: 66.5,18.5 + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 parent: 2 - - uid: 6238 + - uid: 7446 components: - type: Transform - pos: 88.5,-3.5 + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 parent: 2 - - uid: 6309 + - uid: 7447 components: - type: Transform - pos: 89.5,-3.5 + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 parent: 2 - - uid: 13044 + - uid: 7448 components: - type: Transform - pos: 36.5,-52.5 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 parent: 2 - - uid: 13045 + - uid: 7465 components: - type: Transform - pos: 32.5,-56.5 + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 13340 + - uid: 7559 components: - type: Transform - pos: -27.5,-10.5 + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 13341 + - uid: 7588 components: - type: Transform - pos: -27.5,0.5 + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - - uid: 13342 + - uid: 7590 components: - type: Transform - pos: -28.5,-13.5 + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 parent: 2 - - uid: 13343 + - uid: 7606 components: - type: Transform - pos: -25.5,-18.5 + rot: 3.141592653589793 rad + pos: -11.5,1.5 parent: 2 - - uid: 13681 + - uid: 7608 components: - type: Transform - pos: -27.5,9.5 + rot: 3.141592653589793 rad + pos: -11.5,0.5 parent: 2 -- proto: GlassBoxLaserFilled - entities: - - uid: 5106 + - uid: 7609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 + rot: 3.141592653589793 rad + pos: -11.5,2.5 parent: 2 -- proto: GlowstickRed - entities: - - uid: 7565 + - uid: 7666 components: - type: Transform - pos: 49.50738,-16.506752 + pos: 2.5,6.5 parent: 2 -- proto: GravityGenerator - entities: - - uid: 8244 + - uid: 7667 components: - type: Transform - pos: 14.5,40.5 + pos: 6.5,20.5 parent: 2 -- proto: Grille - entities: - - uid: 8 + - uid: 7670 components: - type: Transform - pos: -14.5,-20.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 - - uid: 12 + - uid: 7671 components: - type: Transform - pos: -18.5,14.5 + pos: 7.5,20.5 parent: 2 - - uid: 15 + - uid: 7706 components: - type: Transform - pos: -4.5,-18.5 + rot: -1.5707963267948966 rad + pos: 9.5,44.5 parent: 2 - - uid: 16 + - uid: 7710 components: - type: Transform - pos: -4.5,-16.5 + rot: 1.5707963267948966 rad + pos: 1.5,35.5 parent: 2 - - uid: 19 + - uid: 7721 components: - type: Transform - pos: -6.5,-18.5 + pos: -3.5,2.5 parent: 2 - - uid: 20 + - uid: 7733 components: - type: Transform - pos: -4.5,-17.5 + pos: -4.5,-4.5 parent: 2 - - uid: 44 + - uid: 7734 components: - type: Transform - pos: -6.5,-17.5 + pos: -3.5,-2.5 parent: 2 - - uid: 83 + - uid: 7735 components: - type: Transform - pos: -7.5,-0.5 + pos: -1.5,-2.5 parent: 2 - - uid: 103 + - uid: 7744 components: - type: Transform - pos: -3.5,-13.5 + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 parent: 2 - - uid: 104 + - uid: 7753 components: - type: Transform - pos: -2.5,-13.5 + rot: 3.141592653589793 rad + pos: 65.5,35.5 parent: 2 - - uid: 105 + - uid: 7764 components: - type: Transform - pos: -1.5,-13.5 + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 parent: 2 - - uid: 115 + - uid: 7784 components: - type: Transform - pos: -4.5,-9.5 + rot: -1.5707963267948966 rad + pos: 9.5,45.5 parent: 2 - - uid: 116 + - uid: 7795 components: - type: Transform - pos: -4.5,-8.5 + pos: 52.5,25.5 parent: 2 - - uid: 129 + - uid: 7799 components: - type: Transform - pos: 26.5,-30.5 + pos: 52.5,23.5 parent: 2 - - uid: 130 + - uid: 7814 components: - type: Transform - pos: -18.5,-10.5 + pos: 4.5,18.5 parent: 2 - - uid: 141 + - uid: 7817 components: - type: Transform - pos: -20.5,-21.5 + pos: 45.5,-32.5 parent: 2 - - uid: 144 + - uid: 7833 components: - type: Transform - pos: -18.5,-21.5 + pos: 4.5,19.5 parent: 2 - - uid: 147 + - uid: 7867 components: - type: Transform - pos: 27.5,-30.5 + pos: -3.5,1.5 parent: 2 - - uid: 196 + - uid: 7868 components: - type: Transform - pos: 1.5,-17.5 + pos: 1.5,1.5 parent: 2 - - uid: 197 + - uid: 7869 components: - type: Transform - pos: 0.5,-17.5 + pos: -1.5,1.5 parent: 2 - - uid: 240 + - uid: 7871 components: - type: Transform - pos: -10.5,-19.5 + pos: -5.5,1.5 parent: 2 - - uid: 241 + - uid: 7872 components: - type: Transform - pos: -19.5,-21.5 + pos: 2.5,3.5 parent: 2 - - uid: 244 + - uid: 7873 components: - type: Transform - pos: 2.5,11.5 + pos: 2.5,2.5 parent: 2 - - uid: 259 + - uid: 7874 components: - type: Transform - pos: 7.5,7.5 + pos: 2.5,4.5 parent: 2 - - uid: 260 + - uid: 7877 components: - type: Transform - pos: 7.5,6.5 + pos: 2.5,12.5 parent: 2 - - uid: 261 + - uid: 7887 components: - type: Transform - pos: 7.5,5.5 + pos: -5.5,2.5 parent: 2 - - uid: 262 + - uid: 7893 components: - type: Transform - pos: 8.5,8.5 + pos: 2.5,10.5 parent: 2 - - uid: 263 + - uid: 7941 components: - type: Transform - pos: 10.5,8.5 + pos: -1.5,2.5 parent: 2 - - uid: 264 + - uid: 7944 components: - type: Transform - pos: 12.5,8.5 + pos: 2.5,7.5 parent: 2 - - uid: 331 + - uid: 7948 components: - type: Transform - pos: -11.5,-15.5 + pos: 0.5,1.5 parent: 2 - - uid: 332 + - uid: 7951 components: - type: Transform - pos: -12.5,-15.5 + pos: 2.5,8.5 parent: 2 - - uid: 333 + - uid: 7961 components: - type: Transform - pos: -13.5,-15.5 + pos: -15.5,16.5 parent: 2 - - uid: 334 + - uid: 7964 components: - type: Transform - pos: -18.5,-15.5 + pos: 2.5,16.5 parent: 2 - - uid: 335 + - uid: 7970 components: - type: Transform - pos: -19.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 336 + - uid: 8028 components: - type: Transform - pos: -20.5,-15.5 + pos: -17.5,16.5 parent: 2 - - uid: 337 + - uid: 8084 components: - type: Transform - pos: -22.5,-14.5 + pos: -11.5,16.5 parent: 2 - - uid: 339 + - uid: 8085 components: - type: Transform - pos: -22.5,-13.5 + pos: -9.5,16.5 parent: 2 - - uid: 341 + - uid: 8110 components: - type: Transform - pos: -22.5,-12.5 + pos: -21.5,16.5 parent: 2 - - uid: 346 + - uid: 8158 components: - type: Transform - pos: -13.5,-20.5 + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - - uid: 392 + - uid: 8200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 + pos: 1.5,16.5 parent: 2 - - uid: 403 + - uid: 8201 components: - type: Transform - pos: -4.5,14.5 + pos: -0.5,16.5 parent: 2 - - uid: 406 + - uid: 8253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-27.5 + pos: 17.5,-37.5 parent: 2 - - uid: 407 + - uid: 8389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 + rot: 3.141592653589793 rad + pos: 47.5,31.5 parent: 2 - - uid: 428 + - uid: 8667 components: - type: Transform - pos: -6.5,14.5 + pos: 64.5,26.5 parent: 2 - - uid: 429 + - uid: 8668 components: - type: Transform - pos: 5.5,20.5 + pos: 63.5,26.5 parent: 2 - - uid: 438 + - uid: 8703 components: - type: Transform - pos: -9.5,14.5 + rot: -1.5707963267948966 rad + pos: 55.5,42.5 parent: 2 - - uid: 471 + - uid: 8719 components: - type: Transform - pos: -10.5,14.5 + pos: 92.5,-17.5 parent: 2 - - uid: 507 + - uid: 8721 components: - type: Transform - pos: 14.5,-2.5 + pos: 95.5,-17.5 parent: 2 - - uid: 508 + - uid: 8722 components: - type: Transform - pos: 15.5,-2.5 + pos: 97.5,-22.5 parent: 2 - - uid: 511 + - uid: 8725 components: - type: Transform - pos: -4.5,-12.5 + pos: 96.5,-17.5 parent: 2 - - uid: 607 + - uid: 8727 components: - type: Transform - pos: 0.5,14.5 + pos: 98.5,-17.5 parent: 2 - - uid: 610 + - uid: 8729 components: - type: Transform - pos: -0.5,14.5 + pos: 93.5,-17.5 parent: 2 - - uid: 614 + - uid: 8732 components: - type: Transform - pos: -1.5,14.5 + pos: 95.5,-22.5 parent: 2 - - uid: 660 + - uid: 8733 components: - type: Transform - pos: 17.5,-16.5 + pos: 94.5,-22.5 parent: 2 - - uid: 661 + - uid: 8734 components: - type: Transform - pos: 17.5,-18.5 + pos: 93.5,-22.5 parent: 2 - - uid: 662 + - uid: 8735 components: - type: Transform - pos: 18.5,-18.5 + pos: 92.5,-22.5 parent: 2 - - uid: 663 + - uid: 8775 components: - type: Transform - pos: 19.5,-18.5 + pos: 105.5,-9.5 parent: 2 - - uid: 664 + - uid: 8776 components: - type: Transform - pos: 19.5,-17.5 + pos: 106.5,-9.5 parent: 2 - - uid: 665 + - uid: 8777 components: - type: Transform - pos: 19.5,-16.5 + pos: 107.5,-9.5 parent: 2 - - uid: 674 + - uid: 8783 components: - type: Transform - pos: -25.5,-12.5 + pos: 99.5,-17.5 parent: 2 - - uid: 687 + - uid: 8784 components: - type: Transform - pos: -2.5,14.5 + pos: 100.5,-17.5 parent: 2 - - uid: 694 + - uid: 8785 components: - type: Transform - pos: -27.5,-14.5 + pos: 100.5,-22.5 parent: 2 - - uid: 697 + - uid: 8786 components: - type: Transform - pos: -3.5,14.5 + pos: 99.5,-22.5 parent: 2 - - uid: 698 + - uid: 8799 components: - type: Transform - pos: 7.5,-25.5 + pos: 105.5,-25.5 parent: 2 - - uid: 699 + - uid: 8800 components: - type: Transform - pos: 6.5,-25.5 + pos: 106.5,-25.5 parent: 2 - - uid: 700 + - uid: 8801 components: - type: Transform - pos: 6.5,-26.5 + pos: 107.5,-25.5 parent: 2 - - uid: 701 + - uid: 8806 components: - type: Transform - pos: 6.5,-27.5 + pos: 105.5,-20.5 parent: 2 - - uid: 702 + - uid: 8807 components: - type: Transform - pos: 6.5,-30.5 + pos: 107.5,-20.5 parent: 2 - - uid: 703 + - uid: 8837 components: - type: Transform - pos: 6.5,-31.5 + pos: 105.5,-14.5 parent: 2 - - uid: 704 + - uid: 8838 components: - type: Transform - pos: 6.5,-32.5 + pos: 107.5,-14.5 parent: 2 - - uid: 706 + - uid: 8871 components: - type: Transform - pos: 5.5,-32.5 + pos: 115.5,-20.5 parent: 2 - - uid: 764 + - uid: 8872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 + pos: 114.5,-20.5 parent: 2 - - uid: 811 + - uid: 8873 components: - type: Transform - pos: 25.5,-26.5 + pos: 112.5,-20.5 parent: 2 - - uid: 812 + - uid: 8874 components: - type: Transform - pos: 27.5,-26.5 + pos: 111.5,-20.5 parent: 2 - - uid: 854 + - uid: 8889 components: - type: Transform - pos: 19.5,-30.5 + pos: 110.5,-21.5 parent: 2 - - uid: 855 + - uid: 8890 components: - type: Transform - pos: 19.5,-32.5 + pos: 110.5,-22.5 parent: 2 - - uid: 856 + - uid: 8891 components: - type: Transform - pos: 24.5,-34.5 + pos: 110.5,-23.5 parent: 2 - - uid: 857 + - uid: 8892 components: - type: Transform - pos: 25.5,-34.5 + pos: 110.5,-24.5 parent: 2 - - uid: 858 + - uid: 8893 components: - type: Transform - pos: 28.5,-34.5 + pos: 110.5,-25.5 parent: 2 - - uid: 859 + - uid: 8894 components: - type: Transform - pos: 27.5,-34.5 + pos: 111.5,-25.5 parent: 2 - - uid: 860 + - uid: 8895 components: - type: Transform - pos: 33.5,-32.5 + pos: 112.5,-25.5 parent: 2 - - uid: 861 + - uid: 8896 components: - type: Transform - pos: 33.5,-30.5 + pos: 113.5,-25.5 parent: 2 - - uid: 921 + - uid: 8897 components: - type: Transform - pos: 13.5,-37.5 + pos: 114.5,-25.5 parent: 2 - - uid: 922 + - uid: 8898 components: - type: Transform - pos: 12.5,-37.5 + pos: 115.5,-25.5 parent: 2 - - uid: 924 + - uid: 8899 components: - type: Transform - pos: 10.5,-37.5 + pos: 116.5,-25.5 parent: 2 - - uid: 925 + - uid: 8900 components: - type: Transform - pos: 14.5,-36.5 + pos: 116.5,-24.5 parent: 2 - - uid: 926 + - uid: 8901 components: - type: Transform - pos: 14.5,-35.5 + pos: 116.5,-23.5 parent: 2 - - uid: 927 + - uid: 8902 components: - type: Transform - pos: 14.5,-33.5 + pos: 116.5,-22.5 parent: 2 - - uid: 959 + - uid: 8903 components: - type: Transform - pos: 24.5,-38.5 + pos: 116.5,-21.5 parent: 2 - - uid: 960 + - uid: 8938 components: - type: Transform - pos: 23.5,-37.5 + pos: 111.5,-14.5 parent: 2 - - uid: 961 + - uid: 8939 components: - type: Transform - pos: 22.5,-37.5 + pos: 112.5,-14.5 parent: 2 - - uid: 962 + - uid: 8940 components: - type: Transform - pos: 20.5,-37.5 + pos: 114.5,-14.5 parent: 2 - - uid: 963 + - uid: 8941 components: - type: Transform - pos: 19.5,-37.5 + pos: 115.5,-14.5 parent: 2 - - uid: 964 + - uid: 8951 components: - type: Transform - pos: 18.5,-38.5 + pos: 116.5,-15.5 parent: 2 - - uid: 965 + - uid: 8952 components: - type: Transform - pos: 18.5,-41.5 + pos: 116.5,-16.5 parent: 2 - - uid: 966 + - uid: 8953 components: - type: Transform - pos: 18.5,-42.5 + pos: 116.5,-18.5 parent: 2 - - uid: 967 + - uid: 8954 components: - type: Transform - pos: 18.5,-43.5 + pos: 116.5,-19.5 parent: 2 - - uid: 968 + - uid: 8987 components: - type: Transform - pos: 18.5,-44.5 + pos: 110.5,-13.5 parent: 2 - - uid: 969 + - uid: 8988 components: - type: Transform - pos: 19.5,-44.5 + pos: 110.5,-12.5 parent: 2 - - uid: 970 + - uid: 8989 components: - type: Transform - pos: 20.5,-44.5 + pos: 110.5,-11.5 parent: 2 - - uid: 971 + - uid: 8990 components: - type: Transform - pos: 21.5,-44.5 + pos: 110.5,-10.5 parent: 2 - - uid: 972 + - uid: 8991 components: - type: Transform - pos: 22.5,-44.5 + pos: 110.5,-9.5 parent: 2 - - uid: 973 + - uid: 8992 components: - type: Transform - pos: 23.5,-44.5 + pos: 111.5,-9.5 parent: 2 - - uid: 974 + - uid: 8993 components: - type: Transform - pos: 24.5,-44.5 + pos: 112.5,-9.5 parent: 2 - - uid: 975 + - uid: 8994 components: - type: Transform - pos: 24.5,-43.5 + pos: 113.5,-9.5 parent: 2 - - uid: 976 + - uid: 8995 components: - type: Transform - pos: 24.5,-42.5 + pos: 114.5,-9.5 parent: 2 - - uid: 977 + - uid: 8996 components: - type: Transform - pos: 24.5,-41.5 + pos: 115.5,-9.5 parent: 2 - - uid: 978 + - uid: 8997 components: - type: Transform - pos: 25.5,-43.5 + pos: 116.5,-9.5 parent: 2 - - uid: 979 + - uid: 8998 components: - type: Transform - pos: 26.5,-43.5 + pos: 116.5,-10.5 parent: 2 - - uid: 980 + - uid: 8999 components: - type: Transform - pos: 17.5,-43.5 + pos: 116.5,-11.5 parent: 2 - - uid: 981 + - uid: 9000 components: - type: Transform - pos: 16.5,-43.5 + pos: 116.5,-12.5 parent: 2 - - uid: 1108 + - uid: 9001 components: - type: Transform - pos: -27.5,-12.5 + pos: 116.5,-13.5 parent: 2 - - uid: 1180 + - uid: 9065 components: - type: Transform - pos: -11.5,-10.5 + pos: 117.5,-14.5 parent: 2 - - uid: 1241 + - uid: 9066 components: - type: Transform - pos: 38.5,-58.5 + pos: 118.5,-14.5 parent: 2 - - uid: 1242 + - uid: 9067 components: - type: Transform - pos: 36.5,-58.5 + pos: 119.5,-14.5 parent: 2 - - uid: 1243 + - uid: 9068 components: - type: Transform - pos: 33.5,-58.5 + pos: 120.5,-14.5 parent: 2 - - uid: 1246 + - uid: 9069 components: - type: Transform - pos: 37.5,-58.5 + pos: 121.5,-14.5 parent: 2 - - uid: 1248 + - uid: 9070 components: - type: Transform - pos: 34.5,-58.5 + pos: 121.5,-15.5 parent: 2 - - uid: 1254 + - uid: 9071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-10.5 + pos: 121.5,-16.5 parent: 2 - - uid: 1316 + - uid: 9072 components: - type: Transform - pos: -11.5,-11.5 + pos: 121.5,-17.5 parent: 2 - - uid: 1317 + - uid: 9073 components: - type: Transform - pos: -13.5,-11.5 + pos: 121.5,-18.5 parent: 2 - - uid: 1330 + - uid: 9074 components: - type: Transform - pos: -12.5,14.5 + pos: 121.5,-19.5 parent: 2 - - uid: 1336 + - uid: 9075 components: - type: Transform - pos: -15.5,-11.5 + pos: 121.5,-20.5 parent: 2 - - uid: 1338 + - uid: 9076 components: - type: Transform - pos: 1.5,-27.5 + pos: 120.5,-20.5 parent: 2 - - uid: 1339 + - uid: 9077 components: - type: Transform - pos: 0.5,-27.5 + pos: 119.5,-20.5 parent: 2 - - uid: 1340 + - uid: 9078 components: - type: Transform - pos: -1.5,-28.5 + pos: 118.5,-20.5 parent: 2 - - uid: 1341 + - uid: 9079 components: - type: Transform - pos: -1.5,-29.5 + pos: 117.5,-20.5 parent: 2 - - uid: 1357 + - uid: 9349 components: - type: Transform - pos: 1.5,-34.5 + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 parent: 2 - - uid: 1358 + - uid: 10138 components: - type: Transform - pos: 0.5,-34.5 + pos: 28.5,29.5 parent: 2 - - uid: 1359 + - uid: 10343 components: - type: Transform - pos: -0.5,-34.5 + pos: 43.5,40.5 parent: 2 - - uid: 1360 + - uid: 10801 components: - type: Transform - pos: 1.5,-36.5 + pos: 85.5,-14.5 parent: 2 - - uid: 1361 + - uid: 10951 components: - type: Transform - pos: 0.5,-36.5 + pos: 27.5,-59.5 parent: 2 - - uid: 1362 + - uid: 10952 components: - type: Transform - pos: -0.5,-36.5 + pos: 28.5,-59.5 parent: 2 - - uid: 1508 + - uid: 10961 components: - type: Transform - pos: 34.5,-1.5 + pos: 25.5,-59.5 parent: 2 - - uid: 1540 + - uid: 10974 components: - type: Transform - pos: 28.5,-6.5 + pos: 41.5,32.5 parent: 2 - - uid: 1546 + - uid: 10975 components: - type: Transform - pos: -7.5,14.5 + rot: 1.5707963267948966 rad + pos: 7.5,43.5 parent: 2 - - uid: 1556 + - uid: 10976 components: - type: Transform - pos: -16.5,-11.5 + rot: 1.5707963267948966 rad + pos: 8.5,43.5 parent: 2 - - uid: 1565 + - uid: 10977 components: - type: Transform - pos: 28.5,-3.5 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 parent: 2 - - uid: 1575 + - uid: 10983 components: - type: Transform - pos: 28.5,-4.5 + rot: 1.5707963267948966 rad + pos: 4.5,43.5 parent: 2 - - uid: 1675 + - uid: 11309 components: - type: Transform - pos: 45.5,-2.5 + pos: 58.5,-3.5 parent: 2 - - uid: 1710 + - uid: 11310 components: - type: Transform - pos: 46.5,-14.5 + pos: 58.5,-4.5 parent: 2 - - uid: 1711 + - uid: 11414 components: - type: Transform - pos: 46.5,-15.5 + pos: 58.5,-7.5 parent: 2 - - uid: 1712 + - uid: 11532 components: - type: Transform - pos: 46.5,-16.5 + pos: 77.5,19.5 parent: 2 - - uid: 1713 + - uid: 11533 components: - type: Transform - pos: 42.5,-16.5 + pos: 78.5,18.5 parent: 2 - - uid: 1714 + - uid: 11534 components: - type: Transform - pos: 42.5,-15.5 + pos: 79.5,18.5 parent: 2 - - uid: 1715 + - uid: 11535 components: - type: Transform - pos: 42.5,-14.5 + pos: 80.5,16.5 parent: 2 - - uid: 1741 + - uid: 11536 components: - type: Transform - pos: 28.5,-14.5 + pos: 81.5,16.5 parent: 2 - - uid: 1742 + - uid: 11537 components: - type: Transform - pos: 28.5,-17.5 + pos: 84.5,15.5 parent: 2 - - uid: 1773 + - uid: 11538 components: - type: Transform - pos: -5.5,14.5 + pos: 83.5,15.5 parent: 2 - - uid: 1854 + - uid: 11539 components: - type: Transform - pos: -14.5,-19.5 + pos: 82.5,15.5 parent: 2 - - uid: 1856 + - uid: 11540 components: - type: Transform - pos: -3.5,0.5 + pos: 86.5,-23.5 parent: 2 - - uid: 1967 + - uid: 11541 components: - type: Transform - pos: 88.5,-6.5 + pos: 87.5,-23.5 parent: 2 - - uid: 1998 + - uid: 11542 components: - type: Transform - pos: 6.5,22.5 + pos: 85.5,-25.5 parent: 2 - - uid: 1999 + - uid: 11543 components: - type: Transform - pos: 5.5,22.5 + pos: 84.5,-25.5 parent: 2 - - uid: 2000 + - uid: 11544 components: - type: Transform - pos: 4.5,22.5 + pos: 83.5,-25.5 parent: 2 - - uid: 2005 + - uid: 11545 components: - type: Transform - pos: 6.5,25.5 + pos: 82.5,-25.5 parent: 2 - - uid: 2006 + - uid: 11546 components: - type: Transform - pos: 5.5,25.5 + pos: 80.5,-24.5 parent: 2 - - uid: 2007 + - uid: 11547 components: - type: Transform - pos: 4.5,25.5 + pos: 79.5,-24.5 parent: 2 - - uid: 2008 + - uid: 11548 components: - type: Transform - pos: 6.5,28.5 + pos: 77.5,-24.5 parent: 2 - - uid: 2009 + - uid: 11549 components: - type: Transform - pos: 5.5,28.5 + pos: 76.5,-24.5 parent: 2 - - uid: 2010 + - uid: 11550 components: - type: Transform - pos: 4.5,28.5 + pos: 58.5,-25.5 parent: 2 - - uid: 2023 + - uid: 11551 components: - type: Transform - pos: -12.5,-20.5 + pos: 58.5,-26.5 parent: 2 - - uid: 2031 + - uid: 11552 components: - type: Transform - pos: -7.5,-5.5 + pos: 58.5,-27.5 parent: 2 - - uid: 2035 + - uid: 11553 components: - type: Transform - pos: 11.5,29.5 + pos: 58.5,-28.5 parent: 2 - - uid: 2036 + - uid: 11554 components: - type: Transform - pos: 13.5,29.5 + pos: 58.5,-29.5 parent: 2 - - uid: 2076 + - uid: 11555 components: - type: Transform - pos: 16.5,21.5 + pos: 58.5,-30.5 parent: 2 - - uid: 2077 + - uid: 11556 components: - type: Transform - pos: 7.5,20.5 + pos: 58.5,-31.5 parent: 2 - - uid: 2079 + - uid: 11557 components: - type: Transform - pos: 21.5,23.5 + pos: 58.5,-32.5 parent: 2 - - uid: 2080 + - uid: 11558 components: - type: Transform - pos: 21.5,24.5 + pos: 58.5,-33.5 parent: 2 - - uid: 2182 + - uid: 11559 components: - type: Transform - pos: 24.5,15.5 + pos: 58.5,-34.5 parent: 2 - - uid: 2183 + - uid: 11560 components: - type: Transform - pos: 24.5,12.5 + pos: 57.5,-34.5 parent: 2 - - uid: 2236 + - uid: 11561 components: - type: Transform - pos: 28.5,21.5 + pos: 56.5,-34.5 parent: 2 - - uid: 2237 + - uid: 11562 components: - type: Transform - pos: 28.5,20.5 + pos: 74.5,-25.5 parent: 2 - - uid: 2238 + - uid: 11563 components: - type: Transform - pos: 28.5,18.5 + pos: 73.5,-25.5 parent: 2 - - uid: 2239 + - uid: 11564 components: - type: Transform - pos: 28.5,17.5 + pos: 72.5,-25.5 parent: 2 - - uid: 2254 + - uid: 11565 components: - type: Transform - pos: 31.5,21.5 + pos: 70.5,-25.5 parent: 2 - - uid: 2255 + - uid: 11566 components: - type: Transform - pos: 31.5,17.5 + pos: 69.5,-25.5 parent: 2 - - uid: 2274 + - uid: 11567 components: - type: Transform - pos: 42.5,32.5 + pos: 67.5,-25.5 parent: 2 - - uid: 2279 + - uid: 11568 components: - type: Transform - pos: 42.5,31.5 + pos: 66.5,-25.5 parent: 2 - - uid: 2280 + - uid: 11569 components: - type: Transform - pos: 42.5,33.5 + pos: 65.5,-25.5 parent: 2 - - uid: 2281 + - uid: 11570 components: - type: Transform - pos: 44.5,34.5 + pos: 64.5,-25.5 parent: 2 - - uid: 2282 + - uid: 11571 components: - type: Transform - pos: 44.5,35.5 + pos: 63.5,-25.5 parent: 2 - - uid: 2283 + - uid: 11572 components: - type: Transform - pos: 44.5,36.5 + pos: 59.5,-25.5 parent: 2 - - uid: 2351 + - uid: 11573 components: - type: Transform - pos: 37.5,24.5 + pos: 60.5,-25.5 parent: 2 - - uid: 2352 + - uid: 11574 components: - type: Transform - pos: 37.5,23.5 + pos: 61.5,-25.5 parent: 2 - - uid: 2353 + - uid: 11575 components: - type: Transform - pos: 37.5,26.5 + pos: 29.5,-60.5 parent: 2 - - uid: 2354 + - uid: 11582 components: - type: Transform - pos: 37.5,27.5 + pos: 52.5,-36.5 parent: 2 - - uid: 2355 + - uid: 11583 components: - type: Transform - pos: 37.5,28.5 + pos: 52.5,-37.5 parent: 2 - - uid: 2357 + - uid: 11584 components: - type: Transform - pos: 41.5,25.5 + pos: 52.5,-38.5 parent: 2 - - uid: 2358 + - uid: 11585 components: - type: Transform - pos: 37.5,21.5 + pos: 52.5,-39.5 parent: 2 - - uid: 2359 + - uid: 11589 components: - type: Transform - pos: 38.5,20.5 + pos: 47.5,-55.5 parent: 2 - - uid: 2365 + - uid: 11590 components: - type: Transform - pos: 38.5,25.5 + pos: 48.5,-55.5 parent: 2 - - uid: 2371 + - uid: 11591 components: - type: Transform - pos: 42.5,24.5 + pos: 47.5,-57.5 parent: 2 - - uid: 2372 + - uid: 11592 components: - type: Transform - pos: 42.5,22.5 + pos: 47.5,-58.5 parent: 2 - - uid: 2392 + - uid: 11593 components: - type: Transform - pos: 67.5,-18.5 + pos: 47.5,-59.5 parent: 2 - - uid: 2433 + - uid: 11594 components: - type: Transform - pos: 24.5,-27.5 + pos: 47.5,-60.5 parent: 2 - - uid: 2434 + - uid: 11595 components: - type: Transform - pos: 28.5,-27.5 + pos: 45.5,-60.5 parent: 2 - - uid: 2456 + - uid: 11596 components: - type: Transform - pos: 43.5,16.5 + pos: 44.5,-60.5 parent: 2 - - uid: 2457 + - uid: 11597 components: - type: Transform - pos: 41.5,16.5 + pos: 43.5,-60.5 parent: 2 - - uid: 2512 + - uid: 11598 components: - type: Transform - pos: 39.5,8.5 + pos: 41.5,-60.5 parent: 2 - - uid: 2513 + - uid: 11599 components: - type: Transform - pos: 39.5,9.5 + pos: 40.5,-60.5 parent: 2 - - uid: 2514 + - uid: 11600 components: - type: Transform - pos: 39.5,6.5 + pos: 54.5,-35.5 parent: 2 - - uid: 2515 + - uid: 11601 components: - type: Transform - pos: 39.5,5.5 + pos: -2.5,-28.5 parent: 2 - - uid: 2618 + - uid: 11602 components: - type: Transform - pos: 21.5,38.5 + pos: -3.5,-28.5 parent: 2 - - uid: 2619 + - uid: 11603 components: - type: Transform - pos: 22.5,38.5 + pos: -4.5,-28.5 parent: 2 - - uid: 2620 + - uid: 11604 components: - type: Transform - pos: 23.5,38.5 + pos: -5.5,-28.5 parent: 2 - - uid: 2621 + - uid: 11605 components: - type: Transform - pos: 24.5,38.5 + pos: -6.5,-28.5 parent: 2 - - uid: 2622 + - uid: 11606 components: - type: Transform - pos: 21.5,43.5 + pos: -7.5,-28.5 parent: 2 - - uid: 2623 + - uid: 11607 components: - type: Transform - pos: 24.5,43.5 + pos: -8.5,-28.5 parent: 2 - - uid: 2624 + - uid: 11608 components: - type: Transform - pos: 27.5,38.5 + pos: -9.5,-28.5 parent: 2 - - uid: 2625 + - uid: 11610 components: - type: Transform - pos: 27.5,43.5 + pos: -11.5,-28.5 parent: 2 - - uid: 2649 + - uid: 11611 components: - type: Transform - pos: 15.5,42.5 + pos: -12.5,-28.5 parent: 2 - - uid: 2650 + - uid: 11612 components: - type: Transform - pos: 14.5,42.5 + pos: -13.5,-28.5 parent: 2 - - uid: 2651 + - uid: 11614 components: - type: Transform - pos: 13.5,42.5 + pos: -15.5,-28.5 parent: 2 - - uid: 2676 + - uid: 11615 components: - type: Transform - pos: 24.5,34.5 + pos: -16.5,-28.5 parent: 2 - - uid: 2677 + - uid: 11616 components: - type: Transform - pos: 23.5,34.5 + pos: -16.5,-29.5 parent: 2 - - uid: 2678 + - uid: 11617 components: - type: Transform - pos: 22.5,33.5 + pos: -16.5,-30.5 parent: 2 - - uid: 2679 + - uid: 11618 components: - type: Transform - pos: 22.5,32.5 + pos: -16.5,-32.5 parent: 2 - - uid: 2680 + - uid: 11619 components: - type: Transform - pos: 22.5,30.5 + pos: -17.5,-32.5 parent: 2 - - uid: 2681 + - uid: 11620 components: - type: Transform - pos: 22.5,29.5 + pos: -18.5,-32.5 parent: 2 - - uid: 2729 + - uid: 11621 components: - type: Transform - pos: -13.5,1.5 + pos: -18.5,-33.5 parent: 2 - - uid: 2732 + - uid: 11622 components: - type: Transform - pos: -25.5,-13.5 + pos: -18.5,-34.5 parent: 2 - - uid: 2735 + - uid: 11623 components: - type: Transform - pos: -4.5,-14.5 + pos: -18.5,-35.5 parent: 2 - - uid: 2736 + - uid: 11624 components: - type: Transform - pos: -11.5,1.5 + pos: -18.5,-36.5 parent: 2 - - uid: 2740 + - uid: 11626 components: - type: Transform - pos: -25.5,-14.5 + pos: -18.5,-38.5 parent: 2 - - uid: 2741 + - uid: 11627 components: - type: Transform - pos: -9.5,1.5 + pos: -17.5,-38.5 parent: 2 - - uid: 2742 + - uid: 11628 components: - type: Transform - pos: -14.5,1.5 + pos: -16.5,-38.5 parent: 2 - - uid: 2743 + - uid: 11629 components: - type: Transform - pos: -10.5,1.5 + pos: -2.5,-41.5 parent: 2 - - uid: 2789 + - uid: 11630 components: - type: Transform - pos: 22.5,49.5 + pos: -2.5,-42.5 parent: 2 - - uid: 2790 + - uid: 11631 components: - type: Transform - pos: 23.5,49.5 + pos: -3.5,-42.5 parent: 2 - - uid: 2791 + - uid: 11633 components: - type: Transform - pos: 24.5,49.5 + pos: -5.5,-42.5 parent: 2 - - uid: 2792 + - uid: 11634 components: - type: Transform - pos: 25.5,49.5 + pos: -6.5,-42.5 parent: 2 - - uid: 2793 + - uid: 11635 components: - type: Transform - pos: 26.5,49.5 + pos: -7.5,-42.5 parent: 2 - - uid: 2794 + - uid: 11636 components: - type: Transform - pos: 27.5,49.5 + pos: -8.5,-42.5 parent: 2 - - uid: 2795 + - uid: 11637 components: - type: Transform - pos: 28.5,49.5 + pos: -9.5,-42.5 parent: 2 - - uid: 2796 + - uid: 11638 components: - type: Transform - pos: 29.5,49.5 + pos: -10.5,-42.5 parent: 2 - - uid: 2797 + - uid: 11639 components: - type: Transform - pos: 30.5,49.5 + pos: -11.5,-42.5 parent: 2 - - uid: 2798 + - uid: 11640 components: - type: Transform - pos: 31.5,49.5 + pos: -12.5,-42.5 parent: 2 - - uid: 2799 + - uid: 11641 components: - type: Transform - pos: 32.5,49.5 + pos: -13.5,-42.5 parent: 2 - - uid: 2806 + - uid: 11643 components: - type: Transform - pos: 36.5,45.5 + pos: -16.5,-40.5 parent: 2 - - uid: 2807 + - uid: 11644 components: - type: Transform - pos: 36.5,46.5 + pos: -16.5,-41.5 parent: 2 - - uid: 2808 + - uid: 11645 components: - type: Transform - pos: 18.5,44.5 + pos: -16.5,-42.5 parent: 2 - - uid: 2809 + - uid: 11646 components: - type: Transform - pos: 18.5,45.5 + pos: -15.5,-42.5 parent: 2 - - uid: 2828 + - uid: 11647 components: - type: Transform - pos: -20.5,-10.5 + pos: 89.5,42.5 parent: 2 - - uid: 2830 + - uid: 11648 components: - type: Transform - pos: -7.5,-4.5 + pos: 90.5,42.5 parent: 2 - - uid: 2836 + - uid: 11649 components: - type: Transform - pos: 59.5,-14.5 + pos: 91.5,42.5 parent: 2 - - uid: 2837 + - uid: 11651 components: - type: Transform - pos: 60.5,-12.5 + pos: 91.5,44.5 parent: 2 - - uid: 2838 + - uid: 11652 components: - type: Transform - pos: 62.5,-12.5 + pos: 91.5,45.5 parent: 2 - - uid: 2839 + - uid: 11653 components: - type: Transform - pos: 61.5,-12.5 + pos: 91.5,46.5 parent: 2 - - uid: 2840 + - uid: 11654 components: - type: Transform - pos: 63.5,-12.5 + pos: 91.5,47.5 parent: 2 - - uid: 2841 + - uid: 11655 components: - type: Transform - pos: 60.5,-14.5 + pos: 91.5,48.5 parent: 2 - - uid: 2842 + - uid: 11656 components: - type: Transform - pos: 61.5,-14.5 + pos: 90.5,48.5 parent: 2 - - uid: 2843 + - uid: 11657 components: - type: Transform - pos: 62.5,-14.5 + pos: 89.5,48.5 parent: 2 - - uid: 2844 + - uid: 11658 components: - type: Transform - pos: 63.5,-14.5 + pos: 74.5,51.5 parent: 2 - - uid: 2845 + - uid: 11659 components: - type: Transform - pos: 60.5,-8.5 + pos: 75.5,51.5 parent: 2 - - uid: 2846 + - uid: 11660 components: - type: Transform - pos: 62.5,-8.5 + pos: 76.5,51.5 parent: 2 - - uid: 2847 + - uid: 11661 components: - type: Transform - pos: 63.5,-8.5 + pos: 77.5,51.5 parent: 2 - - uid: 2878 + - uid: 11662 components: - type: Transform - pos: 58.5,-17.5 + pos: 78.5,51.5 parent: 2 - - uid: 2879 + - uid: 11663 components: - type: Transform - pos: 59.5,-18.5 + pos: 79.5,51.5 parent: 2 - - uid: 2880 + - uid: 11664 components: - type: Transform - pos: 60.5,-18.5 + pos: 81.5,51.5 parent: 2 - - uid: 2881 + - uid: 11665 components: - type: Transform - pos: 66.5,-18.5 + pos: 80.5,51.5 parent: 2 - - uid: 2882 + - uid: 11667 components: - type: Transform - pos: 65.5,-18.5 + pos: 83.5,51.5 parent: 2 - - uid: 2961 + - uid: 11668 components: - type: Transform - pos: 49.5,-3.5 + pos: 84.5,51.5 parent: 2 - - uid: 2962 + - uid: 11669 components: - type: Transform - pos: 54.5,-3.5 + pos: 85.5,51.5 parent: 2 - - uid: 2964 + - uid: 11670 components: - type: Transform - pos: 44.5,1.5 + pos: 86.5,51.5 parent: 2 - - uid: 2965 + - uid: 11671 components: - type: Transform - pos: 43.5,1.5 + pos: 87.5,51.5 parent: 2 - - uid: 2966 + - uid: 11672 components: - type: Transform - pos: 46.5,1.5 + pos: 88.5,51.5 parent: 2 - - uid: 2967 + - uid: 11673 components: - type: Transform - pos: 47.5,1.5 + pos: 76.5,38.5 parent: 2 - - uid: 2968 + - uid: 11674 components: - type: Transform - pos: 48.5,4.5 + pos: 77.5,38.5 parent: 2 - - uid: 2986 + - uid: 11675 components: - type: Transform - pos: 52.5,1.5 + pos: 78.5,38.5 parent: 2 - - uid: 2987 + - uid: 11677 components: - type: Transform - pos: 53.5,-0.5 + pos: 80.5,38.5 parent: 2 - - uid: 3015 + - uid: 11678 components: - type: Transform - pos: 57.5,-8.5 + pos: 81.5,38.5 parent: 2 - - uid: 3016 + - uid: 11679 components: - type: Transform - pos: 55.5,-8.5 + pos: 82.5,38.5 parent: 2 - - uid: 3017 + - uid: 11680 components: - type: Transform - pos: 67.5,-2.5 + pos: 83.5,38.5 parent: 2 - - uid: 3018 + - uid: 11681 components: - type: Transform - pos: 66.5,-2.5 + pos: 84.5,38.5 parent: 2 - - uid: 3019 + - uid: 11682 components: - type: Transform - pos: 65.5,-2.5 + pos: 85.5,38.5 parent: 2 - - uid: 3020 + - uid: 11683 components: - type: Transform - pos: 64.5,-2.5 + pos: 86.5,38.5 parent: 2 - - uid: 3045 + - uid: 11684 components: - type: Transform - pos: 55.5,12.5 + pos: 87.5,38.5 parent: 2 - - uid: 3046 + - uid: 11685 components: - type: Transform - pos: 53.5,12.5 + pos: 88.5,38.5 parent: 2 - - uid: 3067 + - uid: 11686 components: - type: Transform - pos: 42.5,40.5 + pos: 15.5,47.5 parent: 2 - - uid: 3068 + - uid: 11687 components: - type: Transform - pos: 41.5,40.5 + pos: 14.5,47.5 parent: 2 - - uid: 3090 + - uid: 11688 components: - type: Transform - pos: 43.5,47.5 + pos: 13.5,47.5 parent: 2 - - uid: 3091 + - uid: 11689 components: - type: Transform - pos: 44.5,47.5 + pos: -1.5,16.5 parent: 2 - - uid: 3092 + - uid: 11695 components: - type: Transform - pos: 45.5,47.5 + pos: 41.5,52.5 parent: 2 - - uid: 3093 + - uid: 11696 components: - type: Transform - pos: 45.5,48.5 + pos: 40.5,52.5 parent: 2 - - uid: 3094 + - uid: 11697 components: - type: Transform - pos: 46.5,48.5 + pos: 38.5,52.5 parent: 2 - - uid: 3095 + - uid: 11698 components: - type: Transform - pos: 47.5,48.5 + pos: 39.5,52.5 parent: 2 - - uid: 3096 + - uid: 11757 components: - type: Transform - pos: 48.5,48.5 + pos: 8.5,-41.5 parent: 2 - - uid: 3097 + - uid: 11759 components: - type: Transform - pos: 48.5,49.5 + pos: 10.5,-43.5 parent: 2 - - uid: 3106 + - uid: 11821 components: - type: Transform - pos: 46.5,45.5 + pos: 45.5,-16.5 parent: 2 - - uid: 3107 + - uid: 11826 components: - type: Transform - pos: 47.5,45.5 + pos: 45.5,-15.5 parent: 2 - - uid: 3108 + - uid: 11840 components: - type: Transform - pos: 48.5,45.5 + pos: 45.5,-14.5 parent: 2 - - uid: 3109 + - uid: 11886 components: - type: Transform - pos: 49.5,45.5 + pos: 69.5,4.5 parent: 2 - - uid: 3114 + - uid: 11887 components: - type: Transform - pos: 50.5,46.5 + pos: 69.5,5.5 parent: 2 - - uid: 3115 + - uid: 11888 components: - type: Transform - pos: 50.5,47.5 + pos: 69.5,6.5 parent: 2 - - uid: 3116 + - uid: 11889 components: - type: Transform - pos: 51.5,47.5 + pos: 70.5,3.5 parent: 2 - - uid: 3117 + - uid: 11891 components: - type: Transform - pos: 52.5,47.5 + pos: 72.5,3.5 parent: 2 - - uid: 3118 + - uid: 11894 components: - type: Transform - pos: 53.5,47.5 + pos: 73.5,3.5 parent: 2 - - uid: 3119 + - uid: 11970 components: - type: Transform - pos: 54.5,47.5 + pos: 45.5,-28.5 parent: 2 - - uid: 3120 + - uid: 11972 components: - type: Transform - pos: 55.5,47.5 + pos: 45.5,-21.5 parent: 2 - - uid: 3121 + - uid: 12220 components: - type: Transform - pos: 56.5,47.5 + pos: 45.5,-22.5 parent: 2 - - uid: 3122 + - uid: 12295 components: - type: Transform - pos: 57.5,47.5 + pos: 45.5,-23.5 parent: 2 - - uid: 3123 + - uid: 12370 components: - type: Transform - pos: 59.5,47.5 + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 parent: 2 - - uid: 3124 + - uid: 12422 components: - type: Transform - pos: 58.5,47.5 + rot: -1.5707963267948966 rad + pos: -21.5,-7.5 parent: 2 - - uid: 3126 + - uid: 12426 components: - type: Transform - pos: 62.5,47.5 + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 parent: 2 - - uid: 3136 + - uid: 12429 components: - type: Transform - pos: 60.5,47.5 + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - - uid: 3137 + - uid: 12430 components: - type: Transform - pos: 61.5,47.5 + rot: 3.141592653589793 rad + pos: 56.5,51.5 parent: 2 - - uid: 3138 + - uid: 12437 components: - type: Transform - pos: 47.5,40.5 + rot: 3.141592653589793 rad + pos: 54.5,46.5 parent: 2 - - uid: 3139 + - uid: 12441 components: - type: Transform - pos: 47.5,39.5 + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 parent: 2 - - uid: 3140 + - uid: 12445 components: - type: Transform - pos: 47.5,38.5 + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 parent: 2 - - uid: 3141 + - uid: 12456 components: - type: Transform - pos: 47.5,37.5 + rot: 3.141592653589793 rad + pos: -9.5,2.5 parent: 2 - - uid: 3213 + - uid: 12457 components: - type: Transform - pos: 62.5,46.5 + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 parent: 2 - - uid: 3223 + - uid: 12725 components: - type: Transform - pos: 50.5,32.5 + rot: 3.141592653589793 rad + pos: 16.5,23.5 parent: 2 - - uid: 3224 + - uid: 12731 components: - type: Transform - pos: 50.5,33.5 + rot: 3.141592653589793 rad + pos: -13.5,2.5 parent: 2 - - uid: 3225 + - uid: 12822 components: - type: Transform - pos: 50.5,34.5 + rot: 3.141592653589793 rad + pos: 11.5,45.5 parent: 2 - - uid: 3226 + - uid: 12912 components: - type: Transform - pos: 50.5,35.5 + pos: 45.5,-48.5 parent: 2 - - uid: 3227 + - uid: 12913 components: - type: Transform - pos: 50.5,36.5 + pos: 45.5,-47.5 parent: 2 - - uid: 3228 + - uid: 12914 components: - type: Transform - pos: 50.5,37.5 + pos: 45.5,-46.5 parent: 2 - - uid: 3229 + - uid: 12915 components: - type: Transform - pos: 50.5,38.5 + pos: 45.5,-45.5 parent: 2 - - uid: 3230 + - uid: 12916 components: - type: Transform - pos: 50.5,39.5 + pos: 45.5,-44.5 parent: 2 - - uid: 3231 + - uid: 12917 components: - type: Transform - pos: 51.5,39.5 + pos: 43.5,-49.5 parent: 2 - - uid: 3232 + - uid: 12918 components: - type: Transform - pos: 51.5,40.5 + pos: 42.5,-49.5 parent: 2 - - uid: 3233 + - uid: 12919 components: - type: Transform - pos: 52.5,40.5 + pos: 41.5,-49.5 parent: 2 - - uid: 3234 + - uid: 12938 components: - type: Transform - pos: 53.5,40.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 2 - - uid: 3235 + - uid: 13245 components: - type: Transform - pos: 53.5,41.5 + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 parent: 2 - - uid: 3236 + - uid: 13246 components: - type: Transform - pos: 54.5,41.5 + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 - - uid: 3237 + - uid: 13251 components: - type: Transform - pos: 55.5,41.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 2 - - uid: 3238 + - uid: 13267 components: - type: Transform - pos: 56.5,41.5 + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 parent: 2 - - uid: 3239 + - uid: 13268 components: - type: Transform - pos: 57.5,41.5 + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - - uid: 3240 + - uid: 13269 components: - type: Transform - pos: 58.5,41.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - - uid: 3241 + - uid: 13270 components: - type: Transform - pos: 59.5,41.5 + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 parent: 2 - - uid: 3242 + - uid: 13282 components: - type: Transform - pos: 59.5,40.5 + rot: 3.141592653589793 rad + pos: 58.5,46.5 parent: 2 - - uid: 3243 + - uid: 13290 components: - type: Transform - pos: 60.5,40.5 + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 parent: 2 - - uid: 3244 + - uid: 13292 components: - type: Transform - pos: 61.5,40.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - - uid: 3245 + - uid: 13320 components: - type: Transform - pos: 61.5,39.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - - uid: 3246 + - uid: 13333 components: - type: Transform - pos: 62.5,39.5 + pos: -20.5,-11.5 parent: 2 - - uid: 3247 + - uid: 13334 components: - type: Transform - pos: 62.5,38.5 + pos: -20.5,-12.5 parent: 2 - - uid: 3248 + - uid: 13337 components: - type: Transform - pos: 62.5,37.5 + pos: -8.5,-12.5 parent: 2 - - uid: 3249 + - uid: 13338 components: - type: Transform - pos: 62.5,36.5 + pos: -8.5,-11.5 parent: 2 - - uid: 3250 + - uid: 13340 components: - type: Transform - pos: 62.5,35.5 + pos: -25.5,-16.5 parent: 2 - - uid: 3251 + - uid: 13341 components: - type: Transform - pos: 62.5,34.5 + pos: -25.5,-17.5 parent: 2 - - uid: 3252 + - uid: 13355 components: - type: Transform - pos: 62.5,33.5 + pos: 30.5,-62.5 parent: 2 - - uid: 3253 + - uid: 13387 components: - type: Transform - pos: 62.5,32.5 + pos: 29.5,-62.5 parent: 2 - - uid: 3291 + - uid: 13388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: 28.5,-62.5 parent: 2 - - uid: 3317 + - uid: 13389 components: - type: Transform - pos: 64.5,49.5 + pos: 27.5,-62.5 parent: 2 - - uid: 3320 + - uid: 13390 components: - type: Transform - pos: 65.5,48.5 + pos: 26.5,-62.5 parent: 2 - - uid: 3323 + - uid: 13391 components: - type: Transform - pos: 50.5,49.5 + pos: 25.5,-62.5 parent: 2 - - uid: 3324 + - uid: 13392 components: - type: Transform - pos: 51.5,49.5 + pos: 24.5,-62.5 parent: 2 - - uid: 3325 + - uid: 13393 components: - type: Transform - pos: 52.5,49.5 + pos: 23.5,-62.5 parent: 2 - - uid: 3326 + - uid: 13394 components: - type: Transform - pos: 53.5,49.5 + pos: 22.5,-62.5 parent: 2 - - uid: 3327 + - uid: 13395 components: - type: Transform - pos: 54.5,49.5 + pos: 21.5,-62.5 parent: 2 - - uid: 3328 + - uid: 13396 components: - type: Transform - pos: 58.5,49.5 + pos: 20.5,-62.5 parent: 2 - - uid: 3329 + - uid: 13397 components: - type: Transform - pos: 59.5,49.5 + pos: 19.5,-62.5 parent: 2 - - uid: 3330 + - uid: 13398 components: - type: Transform - pos: 60.5,49.5 + pos: 18.5,-62.5 parent: 2 - - uid: 3331 + - uid: 13399 components: - type: Transform - pos: 61.5,49.5 + pos: 16.5,-62.5 parent: 2 - - uid: 3332 + - uid: 13400 components: - type: Transform - pos: 62.5,49.5 + pos: 15.5,-62.5 parent: 2 - - uid: 3333 + - uid: 13401 components: - type: Transform - pos: 55.5,49.5 + pos: 17.5,-62.5 parent: 2 - - uid: 3334 + - uid: 13402 components: - type: Transform - pos: 57.5,49.5 + pos: 13.5,-62.5 parent: 2 - - uid: 3341 + - uid: 13403 components: - type: Transform - pos: 66.5,48.5 + pos: 12.5,-62.5 parent: 2 - - uid: 3342 + - uid: 13404 components: - type: Transform - pos: 64.5,48.5 + pos: 11.5,-62.5 parent: 2 - - uid: 3349 + - uid: 13405 components: - type: Transform - pos: 67.5,48.5 + pos: 10.5,-62.5 parent: 2 - - uid: 3350 + - uid: 13406 components: - type: Transform - pos: 67.5,47.5 + pos: 14.5,-62.5 parent: 2 - - uid: 3351 + - uid: 13407 components: - type: Transform - pos: 68.5,47.5 + pos: 6.5,-54.5 parent: 2 - - uid: 3364 + - uid: 13408 components: - type: Transform - pos: 72.5,46.5 + pos: 6.5,-53.5 parent: 2 - - uid: 3365 + - uid: 13409 components: - type: Transform - pos: 73.5,46.5 + pos: 6.5,-52.5 parent: 2 - - uid: 3366 + - uid: 13410 components: - type: Transform - pos: 74.5,46.5 + pos: 6.5,-51.5 parent: 2 - - uid: 3367 + - uid: 13411 components: - type: Transform - pos: 72.5,44.5 + pos: 6.5,-50.5 parent: 2 - - uid: 3368 + - uid: 13412 components: - type: Transform - pos: 73.5,44.5 + pos: 6.5,-49.5 parent: 2 - - uid: 3369 + - uid: 13413 components: - type: Transform - pos: 74.5,44.5 + pos: 6.5,-48.5 parent: 2 - - uid: 3476 + - uid: 13414 components: - type: Transform - pos: 57.5,27.5 + pos: 6.5,-47.5 parent: 2 - - uid: 3477 + - uid: 13415 components: - type: Transform - pos: 57.5,26.5 + pos: 6.5,-46.5 parent: 2 - - uid: 3478 + - uid: 13416 components: - type: Transform - pos: 58.5,26.5 + pos: 7.5,-62.5 parent: 2 - - uid: 3489 + - uid: 13417 components: - type: Transform - pos: 48.5,19.5 + pos: 6.5,-62.5 parent: 2 - - uid: 3493 + - uid: 13418 components: - type: Transform - pos: 55.5,27.5 + pos: 6.5,-61.5 parent: 2 - - uid: 3495 + - uid: 13419 components: - type: Transform - pos: 55.5,26.5 + pos: 6.5,-60.5 parent: 2 - - uid: 3496 + - uid: 13420 components: - type: Transform - pos: 48.5,17.5 + pos: 6.5,-59.5 parent: 2 - - uid: 3497 + - uid: 13421 components: - type: Transform - pos: 54.5,26.5 + pos: 6.5,-58.5 parent: 2 - - uid: 3529 + - uid: 13423 components: - type: Transform - pos: 75.5,16.5 + pos: 32.5,-61.5 parent: 2 - - uid: 3530 + - uid: 13424 components: - type: Transform - pos: 75.5,17.5 + pos: 33.5,-61.5 parent: 2 - - uid: 3531 + - uid: 13425 components: - type: Transform - pos: 75.5,15.5 + pos: 34.5,-61.5 parent: 2 - - uid: 3532 + - uid: 13426 components: - type: Transform - pos: 78.5,13.5 + pos: 35.5,-61.5 parent: 2 - - uid: 3533 + - uid: 13427 components: - type: Transform - pos: 79.5,13.5 + pos: 36.5,-61.5 parent: 2 - - uid: 3534 + - uid: 13428 components: - type: Transform - pos: 80.5,13.5 + pos: 37.5,-61.5 parent: 2 - - uid: 3535 + - uid: 13429 components: - type: Transform - pos: 77.5,13.5 + pos: 38.5,-61.5 parent: 2 - - uid: 3543 + - uid: 13430 components: - type: Transform - pos: 90.5,-6.5 + pos: 39.5,-61.5 parent: 2 - - uid: 3546 + - uid: 13545 components: - type: Transform - pos: 91.5,-6.5 + rot: -1.5707963267948966 rad + pos: 56.5,42.5 parent: 2 - - uid: 3568 + - uid: 13547 components: - type: Transform - pos: 88.5,-5.5 + rot: -1.5707963267948966 rad + pos: 57.5,42.5 parent: 2 - - uid: 3588 + - uid: 13658 components: - type: Transform - pos: 90.5,0.5 + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 parent: 2 - - uid: 3606 + - uid: 13660 components: - type: Transform - pos: 90.5,1.5 + pos: -25.5,-6.5 parent: 2 - - uid: 3610 + - uid: 13661 components: - type: Transform - pos: 88.5,-4.5 + pos: -25.5,-5.5 parent: 2 - - uid: 3652 + - uid: 13662 components: - type: Transform - pos: 65.5,16.5 + pos: -25.5,-4.5 parent: 2 - - uid: 3653 + - uid: 13663 components: - type: Transform - pos: 65.5,14.5 + pos: -25.5,-7.5 parent: 2 - - uid: 3677 + - uid: 13664 components: - type: Transform - pos: 60.5,12.5 + pos: -27.5,-21.5 parent: 2 - - uid: 3678 + - uid: 13665 components: - type: Transform - pos: 61.5,12.5 + pos: -26.5,-21.5 parent: 2 - - uid: 3679 + - uid: 13666 components: - type: Transform - pos: 63.5,12.5 + pos: -25.5,-21.5 parent: 2 - - uid: 3768 + - uid: 13667 components: - type: Transform - pos: 82.5,-8.5 + pos: -22.5,-23.5 parent: 2 - - uid: 3769 + - uid: 13668 components: - type: Transform - pos: 81.5,-8.5 + pos: -23.5,-23.5 parent: 2 - - uid: 3770 + - uid: 13920 components: - type: Transform - pos: 80.5,-8.5 + rot: 1.5707963267948966 rad + pos: -23.5,3.5 parent: 2 - - uid: 3771 + - uid: 13921 components: - type: Transform - pos: 79.5,-8.5 + rot: 1.5707963267948966 rad + pos: -23.5,4.5 parent: 2 - - uid: 3851 + - uid: 13922 components: - type: Transform - pos: 73.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,5.5 parent: 2 - - uid: 3852 + - uid: 13924 components: - type: Transform - pos: 74.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,7.5 parent: 2 - - uid: 3853 + - uid: 13925 components: - type: Transform - pos: 75.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,8.5 parent: 2 - - uid: 3854 + - uid: 13926 components: - type: Transform - pos: 76.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,9.5 parent: 2 - - uid: 3855 + - uid: 13927 components: - type: Transform - pos: 77.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 3856 + - uid: 13928 components: - type: Transform - pos: 78.5,-17.5 + pos: -7.5,-7.5 parent: 2 - - uid: 3857 + - uid: 13929 components: - type: Transform - pos: 79.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,12.5 parent: 2 - - uid: 3858 + - uid: 13930 components: - type: Transform - pos: 80.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,2.5 parent: 2 - - uid: 3859 + - uid: 13931 components: - type: Transform - pos: 81.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,3.5 parent: 2 - - uid: 3860 + - uid: 13932 components: - type: Transform - pos: 82.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,4.5 parent: 2 - - uid: 3861 + - uid: 13933 components: - type: Transform - pos: 83.5,-17.5 + pos: -10.5,-24.5 parent: 2 - - uid: 3862 + - uid: 13934 components: - type: Transform - pos: 84.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 2 - - uid: 3863 + - uid: 13935 components: - type: Transform - pos: 85.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,7.5 parent: 2 - - uid: 3864 + - uid: 13937 components: - type: Transform - pos: 86.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,9.5 parent: 2 - - uid: 3889 + - uid: 13938 components: - type: Transform - pos: 96.5,-22.5 + rot: 1.5707963267948966 rad + pos: -25.5,10.5 parent: 2 - - uid: 3892 + - uid: 13939 components: - type: Transform - pos: 94.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,11.5 parent: 2 - - uid: 3893 + - uid: 13940 components: - type: Transform - pos: 98.5,-22.5 + rot: 1.5707963267948966 rad + pos: -25.5,12.5 parent: 2 - - uid: 3903 + - uid: 13942 components: - type: Transform - pos: 97.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,14.5 parent: 2 - - uid: 3957 + - uid: 13943 components: - type: Transform - pos: 40.5,-58.5 + rot: 1.5707963267948966 rad + pos: -23.5,14.5 parent: 2 - - uid: 3969 + - uid: 13944 components: - type: Transform - pos: 39.5,-58.5 + rot: 1.5707963267948966 rad + pos: -23.5,13.5 parent: 2 - - uid: 3973 + - uid: 13946 components: - type: Transform - pos: 18.5,-59.5 + pos: -9.5,-24.5 parent: 2 - - uid: 3977 + - uid: 13947 components: - type: Transform - pos: 19.5,-59.5 + pos: -13.5,-21.5 parent: 2 - - uid: 3978 + - uid: 13948 components: - type: Transform - pos: 24.5,-59.5 + pos: -14.5,-21.5 parent: 2 - - uid: 3981 + - uid: 13949 components: - type: Transform - pos: 17.5,-59.5 + pos: -15.5,-21.5 parent: 2 - - uid: 3985 + - uid: 13950 components: - type: Transform - pos: 19.5,-59.5 + pos: -18.5,-23.5 parent: 2 - - uid: 3987 + - uid: 13951 components: - type: Transform - pos: 14.5,-59.5 + pos: -19.5,-23.5 parent: 2 - - uid: 3998 + - uid: 13952 components: - type: Transform - pos: 13.5,-59.5 + pos: -7.5,-19.5 parent: 2 - - uid: 4047 + - uid: 13953 components: - type: Transform - pos: 34.5,-27.5 + pos: -7.5,-18.5 parent: 2 - - uid: 4051 + - uid: 13954 components: - type: Transform - pos: 36.5,-27.5 + pos: -2.5,-20.5 parent: 2 - - uid: 4066 + - uid: 13955 components: - type: Transform - pos: -18.5,-11.5 + pos: -0.5,-15.5 parent: 2 - - uid: 4074 + - uid: 13956 components: - type: Transform - pos: 25.5,-30.5 + pos: -21.5,-19.5 parent: 2 - - uid: 4153 + - uid: 13957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 + pos: -21.5,-18.5 parent: 2 - - uid: 4243 + - uid: 13958 components: - type: Transform - pos: 24.5,-12.5 + pos: -7.5,-6.5 parent: 2 - - uid: 4282 + - uid: 14073 components: - type: Transform - anchored: False - pos: -32.5,13.5 + pos: 2.5,-20.5 parent: 2 - - uid: 4296 + - uid: 14074 components: - type: Transform - pos: 24.5,-9.5 + pos: 4.5,-20.5 parent: 2 - - uid: 4338 + - uid: 14127 components: - type: Transform - pos: 34.5,-33.5 + rot: 3.141592653589793 rad + pos: 75.5,22.5 parent: 2 - - uid: 4339 + - uid: 14128 components: - type: Transform - pos: 36.5,-33.5 + rot: 3.141592653589793 rad + pos: 75.5,23.5 parent: 2 - - uid: 4340 + - uid: 14129 components: - type: Transform - pos: 37.5,-32.5 + rot: 3.141592653589793 rad + pos: 75.5,24.5 parent: 2 - - uid: 4341 + - uid: 14131 components: - type: Transform - pos: 37.5,-31.5 + rot: 3.141592653589793 rad + pos: 73.5,24.5 parent: 2 - - uid: 4342 + - uid: 14159 components: - type: Transform - pos: 37.5,-30.5 + rot: 1.5707963267948966 rad + pos: 74.5,24.5 parent: 2 - - uid: 4343 + - uid: 14196 components: - type: Transform - pos: 36.5,-29.5 + pos: 77.5,20.5 parent: 2 - - uid: 4344 + - uid: 14204 components: - type: Transform - pos: 34.5,-29.5 + pos: 83.5,36.5 parent: 2 - - uid: 4345 + - uid: 14205 components: - type: Transform - pos: 33.5,-28.5 + rot: 3.141592653589793 rad + pos: 78.5,31.5 parent: 2 - - uid: 4350 + - uid: 14206 components: - type: Transform - pos: 37.5,-28.5 + rot: 3.141592653589793 rad + pos: 78.5,30.5 parent: 2 - - uid: 4376 + - uid: 14207 components: - type: Transform - pos: 33.5,-36.5 + rot: 3.141592653589793 rad + pos: 78.5,29.5 parent: 2 - - uid: 4377 + - uid: 14208 components: - type: Transform - pos: 33.5,-35.5 + rot: 3.141592653589793 rad + pos: 79.5,28.5 parent: 2 - - uid: 4378 + - uid: 14299 components: - type: Transform - pos: 33.5,-34.5 + pos: 85.5,35.5 parent: 2 - - uid: 4379 + - uid: 14300 components: - type: Transform - pos: 37.5,-36.5 + pos: 86.5,35.5 parent: 2 - - uid: 4380 + - uid: 14301 components: - type: Transform - pos: 37.5,-35.5 + pos: 85.5,25.5 parent: 2 - - uid: 4381 + - uid: 14302 components: - type: Transform - pos: 37.5,-34.5 + pos: 86.5,25.5 parent: 2 - - uid: 4415 + - uid: 14309 components: - type: Transform - pos: 35.5,-27.5 + pos: 89.5,25.5 parent: 2 - - uid: 4419 + - uid: 14310 components: - type: Transform - pos: 46.5,-36.5 + pos: 90.5,25.5 parent: 2 - - uid: 4455 + - uid: 14319 components: - type: Transform - pos: 33.5,-44.5 + pos: 89.5,35.5 parent: 2 - - uid: 4456 + - uid: 14320 components: - type: Transform - pos: 33.5,-43.5 + pos: 90.5,35.5 parent: 2 - - uid: 4457 + - uid: 14326 components: - type: Transform - pos: 33.5,-42.5 + pos: 79.5,22.5 parent: 2 - - uid: 4458 + - uid: 14327 components: - type: Transform - pos: 32.5,-45.5 + pos: 80.5,22.5 parent: 2 - - uid: 4459 + - uid: 14330 components: - type: Transform - pos: 31.5,-45.5 + pos: 74.5,26.5 parent: 2 - - uid: 4467 + - uid: 14331 components: - type: Transform - pos: 39.5,-41.5 + pos: 75.5,26.5 parent: 2 - - uid: 4469 + - uid: 14332 components: - type: Transform - pos: 41.5,-41.5 + pos: 76.5,26.5 parent: 2 - - uid: 4473 + - uid: 14333 components: - type: Transform - pos: 43.5,-41.5 + pos: 77.5,26.5 parent: 2 - - uid: 4487 + - uid: 14334 components: - type: Transform - pos: 47.5,-40.5 + pos: 78.5,26.5 parent: 2 - - uid: 4488 + - uid: 14336 components: - type: Transform - pos: 47.5,-39.5 + pos: 74.5,34.5 parent: 2 - - uid: 4489 + - uid: 14337 components: - type: Transform - pos: 47.5,-38.5 + pos: 75.5,34.5 parent: 2 - - uid: 4490 + - uid: 14338 components: - type: Transform - pos: 47.5,-37.5 + pos: 76.5,34.5 parent: 2 - - uid: 4873 + - uid: 14339 components: - type: Transform - pos: -21.5,-20.5 + pos: 77.5,34.5 parent: 2 - - uid: 5248 + - uid: 14344 components: - type: Transform - pos: 45.5,-30.5 + rot: 1.5707963267948966 rad + pos: 81.5,36.5 parent: 2 - - uid: 5250 + - uid: 14409 components: - type: Transform - pos: 45.5,-27.5 + rot: 3.141592653589793 rad + pos: 82.5,35.5 parent: 2 - - uid: 5297 + - uid: 14508 components: - type: Transform - pos: -12.5,1.5 + rot: -1.5707963267948966 rad + pos: 99.5,28.5 parent: 2 - - uid: 5302 + - uid: 14512 components: - type: Transform - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: 99.5,32.5 parent: 2 - - uid: 5362 + - uid: 14514 components: - type: Transform - pos: 59.5,26.5 + pos: 95.5,31.5 parent: 2 - - uid: 5431 + - uid: 14516 components: - type: Transform - pos: 45.5,-33.5 + pos: 93.5,31.5 parent: 2 - - uid: 5483 + - uid: 14517 components: - type: Transform - pos: 72.5,33.5 + pos: 93.5,30.5 parent: 2 - - uid: 5484 + - uid: 14518 components: - type: Transform - pos: 72.5,32.5 + pos: 93.5,29.5 parent: 2 - - uid: 5485 + - uid: 14520 components: - type: Transform - pos: 72.5,31.5 + pos: 95.5,29.5 parent: 2 - - uid: 5486 + - uid: 14591 components: - type: Transform - pos: 72.5,29.5 + rot: -1.5707963267948966 rad + pos: 98.5,35.5 parent: 2 - - uid: 5487 + - uid: 14593 components: - type: Transform - pos: 72.5,28.5 + rot: -1.5707963267948966 rad + pos: 98.5,25.5 parent: 2 - - uid: 5488 + - uid: 14598 components: - type: Transform - pos: 72.5,27.5 + rot: -1.5707963267948966 rad + pos: 99.5,34.5 parent: 2 - - uid: 5681 + - uid: 14623 components: - type: Transform - pos: -8.5,14.5 + rot: 3.141592653589793 rad + pos: 72.5,25.5 parent: 2 - - uid: 5751 + - uid: 14762 components: - type: Transform - pos: 21.5,53.5 + pos: 16.5,22.5 parent: 2 - - uid: 5752 + - uid: 14780 components: - type: Transform - pos: 22.5,53.5 + rot: 3.141592653589793 rad + pos: 12.5,45.5 parent: 2 - - uid: 5753 + - uid: 14781 components: - type: Transform - pos: 23.5,53.5 + rot: 3.141592653589793 rad + pos: 15.5,45.5 parent: 2 - - uid: 5754 + - uid: 14782 components: - type: Transform - pos: 24.5,53.5 + rot: 3.141592653589793 rad + pos: 14.5,45.5 parent: 2 - - uid: 5755 + - uid: 14784 components: - type: Transform - pos: 25.5,53.5 + rot: 3.141592653589793 rad + pos: 43.5,1.5 parent: 2 - - uid: 5756 + - uid: 14787 components: - type: Transform - pos: 26.5,53.5 + rot: 3.141592653589793 rad + pos: 43.5,51.5 parent: 2 - - uid: 5757 + - uid: 14788 components: - type: Transform - pos: 27.5,53.5 + rot: 3.141592653589793 rad + pos: 44.5,51.5 parent: 2 - - uid: 5758 + - uid: 14789 components: - type: Transform - pos: 28.5,53.5 + rot: 3.141592653589793 rad + pos: 45.5,51.5 parent: 2 - - uid: 5759 + - uid: 14790 components: - type: Transform - pos: 29.5,53.5 + rot: 3.141592653589793 rad + pos: 46.5,51.5 parent: 2 - - uid: 5760 + - uid: 14791 components: - type: Transform - pos: 30.5,53.5 + pos: 36.5,52.5 parent: 2 - - uid: 5761 + - uid: 14793 components: - type: Transform - pos: 31.5,53.5 + pos: 48.5,51.5 parent: 2 - - uid: 5762 + - uid: 14794 components: - type: Transform - pos: 32.5,53.5 + pos: 35.5,52.5 parent: 2 - - uid: 5763 + - uid: 14796 components: - type: Transform - pos: 33.5,53.5 + pos: 39.5,47.5 parent: 2 - - uid: 5967 + - uid: 14797 components: - type: Transform - pos: -20.5,-11.5 + pos: 40.5,47.5 parent: 2 - - uid: 6119 + - uid: 14800 components: - type: Transform - pos: 12.5,-42.5 + pos: 101.5,35.5 parent: 2 - - uid: 6124 + - uid: 14801 components: - type: Transform - pos: 8.5,-40.5 + pos: 101.5,34.5 parent: 2 - - uid: 6125 + - uid: 14802 components: - type: Transform - pos: 8.5,-39.5 + pos: 101.5,25.5 parent: 2 - - uid: 6126 + - uid: 14803 components: - type: Transform - pos: 9.5,-39.5 + pos: 101.5,26.5 parent: 2 - - uid: 6127 + - uid: 14804 components: - type: Transform - pos: 10.5,-39.5 + pos: 101.5,27.5 parent: 2 - - uid: 6129 + - uid: 14805 components: - type: Transform - pos: 12.5,-39.5 + pos: 101.5,29.5 parent: 2 - - uid: 6130 + - uid: 14806 components: - type: Transform - pos: 8.5,-42.5 + pos: 101.5,30.5 parent: 2 - - uid: 6131 + - uid: 14807 components: - type: Transform - pos: 8.5,-43.5 + pos: 101.5,33.5 parent: 2 - - uid: 6132 + - uid: 14819 components: - type: Transform - pos: 9.5,-43.5 + pos: 97.5,24.5 parent: 2 - - uid: 6133 + - uid: 14820 components: - type: Transform - pos: 11.5,-43.5 + pos: 91.5,24.5 parent: 2 - - uid: 6501 + - uid: 14821 components: - type: Transform - pos: 42.5,-2.5 + pos: 91.5,36.5 parent: 2 - - uid: 6607 + - uid: 14822 components: - type: Transform - pos: 45.5,-29.5 + pos: 97.5,36.5 parent: 2 - - uid: 6608 + - uid: 14824 components: - type: Transform - pos: 45.5,-34.5 + pos: 50.5,39.5 parent: 2 - - uid: 6618 + - uid: 14825 components: - type: Transform - pos: 45.5,-35.5 + pos: 50.5,40.5 parent: 2 - - uid: 6658 + - uid: 14826 components: - type: Transform - pos: 45.5,-31.5 + pos: 50.5,41.5 parent: 2 - - uid: 6760 + - uid: 14827 components: - type: Transform - pos: 45.5,-26.5 + pos: 50.5,42.5 parent: 2 - - uid: 6764 + - uid: 14829 components: - type: Transform - pos: 45.5,-24.5 + pos: 53.5,44.5 parent: 2 - - uid: 6779 + - uid: 14830 components: - type: Transform - pos: 1.5,14.5 + pos: 54.5,44.5 parent: 2 - - uid: 6781 + - uid: 14831 components: - type: Transform - pos: -11.5,14.5 + pos: 55.5,44.5 parent: 2 - - uid: 6806 + - uid: 14832 components: - type: Transform - pos: -7.5,-2.5 + pos: 56.5,44.5 parent: 2 - - uid: 6807 + - uid: 14833 components: - type: Transform - pos: -7.5,-6.5 + pos: 57.5,44.5 parent: 2 - - uid: 6810 + - uid: 14834 components: - type: Transform - pos: -13.5,-10.5 + pos: 58.5,44.5 parent: 2 - - uid: 6834 + - uid: 14836 components: - type: Transform - pos: -27.5,-13.5 + pos: 59.5,44.5 parent: 2 - - uid: 6842 + - uid: 14839 components: - type: Transform - pos: -4.5,-11.5 + pos: 62.5,32.5 parent: 2 - - uid: 6845 + - uid: 14840 components: - type: Transform - pos: -6.5,-16.5 + pos: 62.5,33.5 parent: 2 - - uid: 6884 + - uid: 14841 components: - type: Transform - pos: -7.5,-9.5 + pos: 62.5,34.5 parent: 2 - - uid: 6885 + - uid: 14842 components: - type: Transform - pos: -8.5,-11.5 + pos: 62.5,36.5 parent: 2 - - uid: 6886 + - uid: 14843 components: - type: Transform - pos: -7.5,-8.5 + pos: 62.5,37.5 parent: 2 - - uid: 6889 + - uid: 14844 components: - type: Transform - pos: -7.5,-1.5 + pos: 62.5,38.5 parent: 2 - - uid: 6890 + - uid: 14845 components: - type: Transform - pos: -7.5,-10.5 + pos: 62.5,39.5 parent: 2 - - uid: 6891 + - uid: 14846 components: - type: Transform - pos: -9.5,-11.5 + pos: 62.5,40.5 parent: 2 - - uid: 6892 + - uid: 14847 components: - type: Transform - pos: -6.5,-15.5 + pos: 62.5,35.5 parent: 2 - - uid: 7010 + - uid: 14953 components: - type: Transform - pos: 45.5,-25.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 7455 + - uid: 14970 components: - type: Transform - pos: -15.5,14.5 + rot: -1.5707963267948966 rad + pos: 5.5,41.5 parent: 2 - - uid: 7456 + - uid: 14978 components: - type: Transform - pos: -16.5,14.5 + pos: 1.5,40.5 parent: 2 - - uid: 7465 + - uid: 14984 components: - type: Transform - pos: -8.5,1.5 + rot: 1.5707963267948966 rad + pos: 3.5,43.5 parent: 2 - - uid: 7564 + - uid: 14985 components: - type: Transform - pos: -17.5,14.5 + rot: 1.5707963267948966 rad + pos: 2.5,43.5 parent: 2 - - uid: 7666 + - uid: 14986 components: - type: Transform - pos: 2.5,6.5 + pos: 1.5,41.5 parent: 2 - - uid: 7706 + - uid: 14987 components: - type: Transform - pos: -13.5,14.5 + rot: 1.5707963267948966 rad + pos: 1.5,43.5 parent: 2 - - uid: 7721 +- proto: GrilleBroken + entities: + - uid: 1247 components: - type: Transform - pos: -3.5,2.5 + pos: 35.5,-58.5 parent: 2 - - uid: 7733 + - uid: 2401 components: - type: Transform - pos: -4.5,-4.5 + pos: 89.5,-6.5 parent: 2 - - uid: 7734 + - uid: 3986 components: - type: Transform - pos: -3.5,-2.5 + pos: 16.5,-59.5 parent: 2 - - uid: 7735 + - uid: 3988 components: - type: Transform - pos: -1.5,-2.5 + pos: 23.5,-59.5 parent: 2 - - uid: 7783 + - uid: 5352 components: - type: Transform - pos: -14.5,14.5 + pos: 1.5,36.5 parent: 2 - - uid: 7795 + - uid: 7603 components: - type: Transform - pos: 52.5,25.5 + rot: 3.141592653589793 rad + pos: 1.5,39.5 parent: 2 - - uid: 7799 + - uid: 10978 components: - type: Transform - pos: 52.5,23.5 + rot: 1.5707963267948966 rad + pos: 2.5,43.5 parent: 2 - - uid: 7817 + - uid: 14785 components: - type: Transform - pos: 45.5,-32.5 + rot: 3.141592653589793 rad + pos: 16.5,45.5 parent: 2 - - uid: 7867 + - uid: 15045 components: - type: Transform - pos: -3.5,1.5 + rot: -1.5707963267948966 rad + pos: 9.5,43.5 parent: 2 - - uid: 7868 +- proto: GrilleSpawner + entities: + - uid: 69 components: - type: Transform - pos: 1.5,1.5 + pos: 16.5,47.5 parent: 2 - - uid: 7869 + - uid: 1291 components: - type: Transform - pos: -1.5,1.5 + pos: 1.5,42.5 parent: 2 - - uid: 7871 + - uid: 5289 components: - type: Transform - pos: -5.5,1.5 + pos: 0.5,16.5 parent: 2 - - uid: 7872 + - uid: 6834 components: - type: Transform - pos: 2.5,3.5 + pos: -10.5,-28.5 parent: 2 - - uid: 7873 + - uid: 6839 components: - type: Transform - pos: 2.5,2.5 + pos: -18.5,-37.5 parent: 2 - - uid: 7874 + - uid: 6870 components: - type: Transform - pos: 2.5,4.5 + pos: -10.5,16.5 parent: 2 - - uid: 7877 + - uid: 6890 components: - type: Transform - pos: 2.5,12.5 + pos: -4.5,-42.5 parent: 2 - - uid: 7887 + - uid: 7460 components: - type: Transform - pos: -5.5,2.5 + pos: -19.5,16.5 parent: 2 - - uid: 7893 + - uid: 7712 components: - type: Transform - pos: 2.5,10.5 + pos: 9.5,46.5 parent: 2 - - uid: 7941 + - uid: 8105 components: - type: Transform - pos: -1.5,2.5 + pos: -7.5,16.5 parent: 2 - - uid: 7944 + - uid: 9461 components: - type: Transform - pos: 2.5,7.5 + pos: 91.5,43.5 parent: 2 - - uid: 7948 + - uid: 11089 components: - type: Transform - pos: 0.5,1.5 + pos: 82.5,51.5 parent: 2 - - uid: 7951 + - uid: 11094 components: - type: Transform - pos: 2.5,8.5 + pos: 79.5,38.5 parent: 2 - - uid: 8667 + - uid: 13763 components: - type: Transform - pos: 64.5,26.5 + pos: 12.5,47.5 parent: 2 - - uid: 8668 + - uid: 13923 components: - type: Transform - pos: 63.5,26.5 + pos: -23.5,6.5 parent: 2 - - uid: 8719 + - uid: 13936 components: - type: Transform - pos: 92.5,-17.5 + pos: -25.5,8.5 parent: 2 - - uid: 8721 + - uid: 13941 components: - type: Transform - pos: 95.5,-17.5 + pos: -25.5,13.5 parent: 2 - - uid: 8722 + - uid: 13945 components: - type: Transform - pos: 97.5,-22.5 + pos: -23.5,2.5 parent: 2 - - uid: 8725 + - uid: 14783 components: - type: Transform - pos: 96.5,-17.5 + pos: 13.5,45.5 parent: 2 - - uid: 8727 + - uid: 14786 components: - type: Transform - pos: 98.5,-17.5 + pos: 37.5,52.5 parent: 2 - - uid: 8729 + - uid: 14792 components: - type: Transform - pos: 93.5,-17.5 + pos: 47.5,51.5 parent: 2 - - uid: 8732 + - uid: 14795 components: - type: Transform - pos: 95.5,-22.5 + pos: 38.5,47.5 parent: 2 - - uid: 8733 + - uid: 14798 components: - type: Transform - pos: 94.5,-22.5 + pos: 73.5,51.5 parent: 2 - - uid: 8734 + - uid: 14799 components: - type: Transform - pos: 93.5,-22.5 + pos: 101.5,32.5 parent: 2 - - uid: 8735 + - uid: 14808 components: - type: Transform - pos: 92.5,-22.5 + pos: 101.5,28.5 parent: 2 - - uid: 8775 + - uid: 14988 components: - type: Transform - pos: 105.5,-9.5 + pos: 5.5,43.5 parent: 2 - - uid: 8776 +- proto: GunSafeLaserCarbine + entities: + - uid: 2126 components: - type: Transform - pos: 106.5,-9.5 + pos: 41.5,27.5 parent: 2 - - uid: 8777 +- proto: GunSafeRifleLecter + entities: + - uid: 2460 components: - type: Transform - pos: 107.5,-9.5 + pos: 38.5,26.5 parent: 2 - - uid: 8783 +- proto: GunSafeShotgunKammerer + entities: + - uid: 2117 components: - type: Transform - pos: 99.5,-17.5 + pos: 41.5,26.5 parent: 2 - - uid: 8784 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 2461 components: - type: Transform - pos: 100.5,-17.5 + pos: 38.5,27.5 parent: 2 - - uid: 8785 +- proto: Handcuffs + entities: + - uid: 9397 components: - type: Transform - pos: 100.5,-22.5 + pos: 25.512451,48.501656 parent: 2 - - uid: 8786 +- proto: HandheldHealthAnalyzer + entities: + - uid: 12160 components: - type: Transform - pos: 99.5,-22.5 + pos: 82.45164,-4.4459476 parent: 2 - - uid: 8799 + - uid: 12368 components: - type: Transform - pos: 105.5,-25.5 + pos: 38.482082,-17.438766 parent: 2 - - uid: 8800 +- proto: HandheldStationMap + entities: + - uid: 9400 components: - type: Transform - pos: 106.5,-25.5 + pos: 28.498549,47.61997 parent: 2 - - uid: 8801 +- proto: HandLabeler + entities: + - uid: 2291 components: - type: Transform - pos: 107.5,-25.5 + pos: 38.5,19.5 parent: 2 - - uid: 8806 + - uid: 5319 components: - type: Transform - pos: 105.5,-20.5 + pos: 49.532963,19.552088 parent: 2 - - uid: 8807 + - uid: 5320 components: - type: Transform - pos: 107.5,-20.5 + pos: 49.532963,17.552088 parent: 2 - - uid: 8837 +- proto: HarmonicaInstrument + entities: + - uid: 13630 components: - type: Transform - pos: 105.5,-14.5 + pos: 56.5,31.5 parent: 2 - - uid: 8838 +- proto: HarpInstrument + entities: + - uid: 8319 components: - type: Transform - pos: 107.5,-14.5 + pos: 20.5,-10.5 parent: 2 - - uid: 8871 +- proto: HeatExchanger + entities: + - uid: 4492 components: - type: Transform - pos: 115.5,-20.5 + rot: 1.5707963267948966 rad + pos: 42.5,-51.5 parent: 2 - - uid: 8872 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12861 components: - type: Transform - pos: 114.5,-20.5 + rot: 1.5707963267948966 rad + pos: 42.5,-52.5 parent: 2 - - uid: 8873 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12862 components: - type: Transform - pos: 112.5,-20.5 + rot: 1.5707963267948966 rad + pos: 42.5,-53.5 parent: 2 - - uid: 8874 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12904 components: - type: Transform - pos: 111.5,-20.5 + rot: 3.141592653589793 rad + pos: 48.5,-45.5 parent: 2 - - uid: 8889 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: Hemostat + entities: + - uid: 10071 components: - type: Transform - pos: 110.5,-21.5 + pos: 67.49741,-3.281434 parent: 2 - - uid: 8890 +- proto: HighSecCommandLocked + entities: + - uid: 1744 components: - type: Transform - pos: 110.5,-22.5 + pos: 39.5,-16.5 parent: 2 - - uid: 8891 + - uid: 9110 components: - type: Transform - pos: 110.5,-23.5 + pos: 18.5,38.5 parent: 2 - - uid: 8892 + - uid: 14242 components: - type: Transform - pos: 110.5,-24.5 + pos: 87.5,30.5 parent: 2 - - uid: 8893 + - uid: 14243 components: - type: Transform - pos: 110.5,-25.5 + pos: 83.5,30.5 parent: 2 - - uid: 8894 +- proto: HospitalCurtainsOpen + entities: + - uid: 3192 components: - type: Transform - pos: 111.5,-25.5 + rot: 1.5707963267948966 rad + pos: 59.5,32.5 parent: 2 - - uid: 8895 + - uid: 4682 components: - type: Transform - pos: 112.5,-25.5 + pos: 24.5,-11.5 parent: 2 - - uid: 8896 + - uid: 5049 components: - type: Transform - pos: 113.5,-25.5 + pos: 61.5,-8.5 parent: 2 - - uid: 8897 + - uid: 5744 components: - type: Transform - pos: 114.5,-25.5 + pos: 12.5,12.5 parent: 2 - - uid: 8898 + - uid: 5750 components: - type: Transform - pos: 115.5,-25.5 + pos: 24.5,-10.5 parent: 2 - - uid: 8899 + - uid: 8827 components: - type: Transform - pos: 116.5,-25.5 + pos: 102.5,-13.5 parent: 2 - - uid: 8900 + - uid: 11849 components: - type: Transform - pos: 116.5,-24.5 + pos: 58.5,-6.5 parent: 2 - - uid: 8901 + - uid: 11850 components: - type: Transform - pos: 116.5,-23.5 + pos: 58.5,-5.5 parent: 2 - - uid: 8902 + - uid: 11902 components: - type: Transform - pos: 116.5,-22.5 + pos: 78.5,10.5 parent: 2 - - uid: 8903 + - uid: 11903 components: - type: Transform - pos: 116.5,-21.5 + pos: 77.5,10.5 parent: 2 - - uid: 8938 + - uid: 12254 components: - type: Transform - pos: 111.5,-14.5 + pos: 16.5,12.5 parent: 2 - - uid: 8939 + - uid: 12255 components: - type: Transform - pos: 112.5,-14.5 + pos: 15.5,12.5 parent: 2 - - uid: 8940 + - uid: 12256 components: - type: Transform - pos: 114.5,-14.5 + pos: 14.5,12.5 parent: 2 - - uid: 8941 + - uid: 12257 components: - type: Transform - pos: 115.5,-14.5 + pos: 14.5,14.5 parent: 2 - - uid: 8951 + - uid: 12258 components: - type: Transform - pos: 116.5,-15.5 + pos: 15.5,14.5 parent: 2 - - uid: 8952 + - uid: 12259 components: - type: Transform - pos: 116.5,-16.5 + pos: 16.5,14.5 parent: 2 - - uid: 8953 + - uid: 12260 components: - type: Transform - pos: 116.5,-18.5 + pos: 16.5,16.5 parent: 2 - - uid: 8954 + - uid: 12261 components: - type: Transform - pos: 116.5,-19.5 + pos: 15.5,16.5 parent: 2 - - uid: 8987 + - uid: 12262 components: - type: Transform - pos: 110.5,-13.5 + pos: 14.5,16.5 parent: 2 - - uid: 8988 + - uid: 13639 components: - type: Transform - pos: 110.5,-12.5 + rot: 1.5707963267948966 rad + pos: 59.5,40.5 parent: 2 - - uid: 8989 +- proto: HydroponicsToolClippers + entities: + - uid: 3185 components: - type: Transform - pos: 110.5,-11.5 + pos: 56.15973,41.601078 parent: 2 - - uid: 8990 +- proto: HydroponicsToolHatchet + entities: + - uid: 11125 components: - type: Transform - pos: 110.5,-10.5 + pos: 54.473648,-13.481342 parent: 2 - - uid: 8991 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 3186 components: - type: Transform - pos: 110.5,-9.5 + pos: 54.460526,36.592915 parent: 2 - - uid: 8992 + - uid: 6755 components: - type: Transform - pos: 111.5,-9.5 + pos: 41.470776,-6.4772377 parent: 2 - - uid: 8993 +- proto: HydroponicsToolSpade + entities: + - uid: 13629 components: - type: Transform - pos: 112.5,-9.5 + pos: 54.56469,36.655457 parent: 2 - - uid: 8994 +- proto: hydroponicsTray + entities: + - uid: 6665 components: - type: Transform - pos: 113.5,-9.5 + pos: 43.5,-9.5 parent: 2 - - uid: 8995 + - uid: 6666 components: - type: Transform - pos: 114.5,-9.5 + pos: 43.5,-7.5 parent: 2 - - uid: 8996 + - uid: 6667 components: - type: Transform - pos: 115.5,-9.5 + pos: 44.5,-7.5 parent: 2 - - uid: 8997 + - uid: 6668 components: - type: Transform - pos: 116.5,-9.5 + pos: 45.5,-7.5 parent: 2 - - uid: 8998 + - uid: 6669 components: - type: Transform - pos: 116.5,-10.5 + pos: 47.5,-5.5 parent: 2 - - uid: 8999 + - uid: 6670 components: - type: Transform - pos: 116.5,-11.5 + pos: 47.5,-4.5 parent: 2 - - uid: 9000 + - uid: 6671 components: - type: Transform - pos: 116.5,-12.5 + pos: 45.5,-5.5 parent: 2 - - uid: 9001 + - uid: 6673 components: - type: Transform - pos: 116.5,-13.5 + pos: 43.5,-5.5 parent: 2 - - uid: 9065 + - uid: 6674 components: - type: Transform - pos: 117.5,-14.5 + pos: 41.5,-5.5 parent: 2 - - uid: 9066 + - uid: 6675 components: - type: Transform - pos: 118.5,-14.5 + pos: 41.5,-4.5 parent: 2 - - uid: 9067 + - uid: 13633 components: - type: Transform - pos: 119.5,-14.5 + pos: 53.5,39.5 parent: 2 - - uid: 9068 + - uid: 13634 components: - type: Transform - pos: 120.5,-14.5 + pos: 54.5,39.5 parent: 2 - - uid: 9069 + - uid: 13636 components: - type: Transform - pos: 121.5,-14.5 + pos: 53.5,38.5 parent: 2 - - uid: 9070 + - uid: 13637 components: - type: Transform - pos: 121.5,-15.5 + pos: 54.5,38.5 parent: 2 - - uid: 9071 +- proto: IDComputerCircuitboard + entities: + - uid: 12659 components: - type: Transform - pos: 121.5,-16.5 + pos: 41.5,-14.5 parent: 2 - - uid: 9072 +- proto: InflatableWall + entities: + - uid: 6524 components: - type: Transform - pos: 121.5,-17.5 + pos: 87.5,-7.5 parent: 2 - - uid: 9073 + - uid: 6729 components: - type: Transform - pos: 121.5,-18.5 + pos: 86.5,-7.5 parent: 2 - - uid: 9074 + - uid: 6730 components: - type: Transform - pos: 121.5,-19.5 + pos: 82.5,5.5 parent: 2 - - uid: 9075 + - uid: 6731 components: - type: Transform - pos: 121.5,-20.5 + pos: 82.5,4.5 parent: 2 - - uid: 9076 +- proto: IngotGold + entities: + - uid: 8824 components: - type: Transform - pos: 120.5,-20.5 + pos: 89.45974,-12.337885 parent: 2 - - uid: 9077 + - uid: 12098 components: - type: Transform - pos: 119.5,-20.5 + pos: 19.521435,41.66655 parent: 2 - - uid: 9078 +- proto: IngotSilver + entities: + - uid: 12100 components: - type: Transform - pos: 118.5,-20.5 + pos: 17.552685,41.54155 parent: 2 - - uid: 9079 +- proto: Intellicard + entities: + - uid: 14565 components: - type: Transform - pos: 117.5,-20.5 + pos: 89.5,32.5 parent: 2 - - uid: 10084 + - uid: 14566 components: - type: Transform - pos: 60.5,26.5 + pos: 90.5,32.5 parent: 2 - - uid: 10801 +- proto: IntercomAll + entities: + - uid: 14558 components: - type: Transform - pos: 85.5,-14.5 + pos: 94.5,31.5 parent: 2 - - uid: 10951 + - uid: 14561 components: - type: Transform - pos: 27.5,-59.5 + rot: 3.141592653589793 rad + pos: 94.5,29.5 parent: 2 - - uid: 10952 +- proto: IntercomCommand + entities: + - uid: 4587 components: - type: Transform - pos: 28.5,-59.5 + pos: 12.5,-34.5 parent: 2 - - uid: 10961 + - uid: 7583 components: - type: Transform - pos: 25.5,-59.5 + pos: 44.5,26.5 parent: 2 - - uid: 11070 + - uid: 9436 components: - type: Transform - pos: 6.5,19.5 + rot: 1.5707963267948966 rad + pos: 25.5,42.5 parent: 2 - - uid: 11309 + - uid: 9437 components: - type: Transform - pos: 58.5,-3.5 + pos: 33.5,41.5 parent: 2 - - uid: 11310 + - uid: 11408 components: - type: Transform - pos: 58.5,-4.5 + pos: 17.5,-2.5 parent: 2 - - uid: 11414 +- proto: IntercomCommon + entities: + - uid: 4989 components: - type: Transform - pos: 58.5,-7.5 + pos: 16.5,11.5 parent: 2 - - uid: 11532 + - uid: 8986 components: - type: Transform - pos: 77.5,19.5 + pos: 32.5,16.5 parent: 2 - - uid: 11533 +- proto: IntercomEngineering + entities: + - uid: 4692 components: - type: Transform - pos: 78.5,18.5 + pos: 30.5,-29.5 parent: 2 - - uid: 11534 + - uid: 4769 components: - type: Transform - pos: 79.5,18.5 + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 parent: 2 - - uid: 11535 +- proto: IntercomMedical + entities: + - uid: 11407 components: - type: Transform - pos: 80.5,16.5 + pos: 48.5,1.5 parent: 2 - - uid: 11536 +- proto: IntercomScience + entities: + - uid: 5107 components: - type: Transform - pos: 81.5,16.5 + pos: 48.5,20.5 parent: 2 - - uid: 11537 +- proto: IntercomSecurity + entities: + - uid: 2565 components: - type: Transform - pos: 84.5,15.5 + rot: 1.5707963267948966 rad + pos: 38.5,34.5 parent: 2 - - uid: 11538 + - uid: 7582 components: - type: Transform - pos: 83.5,15.5 + pos: 28.5,26.5 parent: 2 - - uid: 11539 +- proto: IntercomSupply + entities: + - uid: 7743 components: - type: Transform - pos: 82.5,15.5 + rot: 1.5707963267948966 rad + pos: 21.5,25.5 parent: 2 - - uid: 11540 + - uid: 12092 components: - type: Transform - pos: 86.5,-23.5 + rot: 3.141592653589793 rad + pos: 9.5,20.5 parent: 2 - - uid: 11541 +- proto: JanitorialTrolley + entities: + - uid: 12234 components: - type: Transform - pos: 87.5,-23.5 + pos: 4.5,-6.5 parent: 2 - - uid: 11542 +- proto: JetpackMiniFilled + entities: + - uid: 10308 components: - type: Transform - pos: 85.5,-25.5 + pos: 8.484015,-9.278149 parent: 2 - - uid: 11543 + - uid: 10309 components: - type: Transform - pos: 84.5,-25.5 + pos: 8.484015,-9.496899 parent: 2 - - uid: 11544 +- proto: JetpackSecurityFilled + entities: + - uid: 9478 components: - type: Transform - pos: 83.5,-25.5 + pos: 38.348988,28.699009 parent: 2 - - uid: 11545 +- proto: KitchenElectricGrill + entities: + - uid: 13167 components: - type: Transform - pos: 82.5,-25.5 + pos: 36.5,-10.5 parent: 2 - - uid: 11546 +- proto: KitchenKnife + entities: + - uid: 11124 components: - type: Transform - pos: 80.5,-24.5 + pos: 54.489273,-13.512592 parent: 2 - - uid: 11547 +- proto: KitchenMicrowave + entities: + - uid: 1578 components: - type: Transform - pos: 79.5,-24.5 + pos: 35.5,-10.5 parent: 2 - - uid: 11548 + - uid: 8860 components: - type: Transform - pos: 77.5,-24.5 + pos: 107.5,-10.5 parent: 2 - - uid: 11549 + - uid: 11429 components: - type: Transform - pos: 76.5,-24.5 + pos: 76.5,5.5 parent: 2 - - uid: 11550 + - uid: 13613 components: - type: Transform - pos: 58.5,-25.5 + pos: 54.5,41.5 parent: 2 - - uid: 11551 +- proto: KitchenReagentGrinder + entities: + - uid: 3968 components: - type: Transform - pos: 58.5,-26.5 + pos: 36.5,-12.5 parent: 2 - - uid: 11552 + - uid: 5056 components: - type: Transform - pos: 58.5,-27.5 + pos: 49.5,-6.5 parent: 2 - - uid: 11553 + - uid: 13619 components: - type: Transform - pos: 58.5,-28.5 + pos: 55.5,41.5 parent: 2 - - uid: 11554 +- proto: KitchenSpike + entities: + - uid: 364 components: - type: Transform - pos: 58.5,-29.5 + pos: 31.5,-12.5 parent: 2 - - uid: 11555 +- proto: Lamp + entities: + - uid: 5087 components: - type: Transform - pos: 58.5,-30.5 + pos: 30.398613,6.824299 parent: 2 - - uid: 11556 + - uid: 14146 components: - type: Transform - pos: 58.5,-31.5 + pos: 71.524376,22.947851 parent: 2 - - uid: 11557 +- proto: LampBanana + entities: + - uid: 9601 components: - type: Transform - pos: 58.5,-32.5 + pos: 27.665216,6.7443295 parent: 2 - - uid: 11558 +- proto: LampGold + entities: + - uid: 310 components: - type: Transform - pos: 58.5,-33.5 + pos: 10.438802,4.97286 parent: 2 - - uid: 11559 + - uid: 2722 components: - type: Transform - pos: 58.5,-34.5 + pos: 20.544691,33.624443 parent: 2 - - uid: 11560 + - uid: 2723 components: - type: Transform - pos: 57.5,-34.5 + pos: 20.529066,29.655691 parent: 2 - - uid: 11561 + - uid: 2780 components: - type: Transform - pos: 56.5,-34.5 + pos: 22.507973,40.51647 parent: 2 - - uid: 11562 + - uid: 4018 components: - type: Transform - pos: 74.5,-25.5 + pos: 32.49905,41.93212 parent: 2 - - uid: 11563 + - uid: 5474 components: - type: Transform - pos: 73.5,-25.5 + pos: 67.5,37.5 parent: 2 - - uid: 11564 + - uid: 11417 components: - type: Transform - pos: 72.5,-25.5 + pos: 54.632915,-10.081582 parent: 2 - - uid: 11565 + - uid: 11465 components: - type: Transform - pos: 70.5,-25.5 + rot: 1.5707963267948966 rad + pos: 43.568825,20.850296 parent: 2 - - uid: 11566 + - uid: 12116 components: - type: Transform - pos: 69.5,-25.5 + pos: 37.37405,43.99462 parent: 2 - - uid: 11567 + - uid: 13472 components: - type: Transform - pos: 67.5,-25.5 + pos: 9.400621,-42.048656 parent: 2 - - uid: 11568 +- proto: LampInterrogator + entities: + - uid: 13567 components: - type: Transform - pos: 66.5,-25.5 + pos: 40.512142,35.84228 parent: 2 - - uid: 11569 + - type: HandheldLight + toggleActionEntity: 13568 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13568 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LargeBeaker + entities: + - uid: 5323 components: - type: Transform - pos: 65.5,-25.5 + pos: 54.42104,17.661463 parent: 2 - - uid: 11570 +- proto: LightReplacer + entities: + - uid: 177 components: - type: Transform - pos: 64.5,-25.5 + pos: 5.600267,-3.347455 parent: 2 - - uid: 11571 +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 14280 components: - type: Transform - pos: 63.5,-25.5 + pos: 84.53704,28.473265 parent: 2 - - uid: 11572 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 1458 components: - type: Transform - pos: 59.5,-25.5 + pos: 32.5,-31.5 parent: 2 - - uid: 11573 + - uid: 1459 components: - type: Transform - pos: 60.5,-25.5 + pos: 32.5,-32.5 parent: 2 - - uid: 11574 +- proto: LockerBoozeFilled + entities: + - uid: 2901 components: - type: Transform - pos: 61.5,-25.5 + pos: 67.5,-13.5 parent: 2 - - uid: 11575 + - uid: 4439 components: - type: Transform - pos: 29.5,-60.5 + pos: 40.5,-10.5 parent: 2 - - uid: 11582 +- proto: LockerBotanistFilled + entities: + - uid: 6679 components: - type: Transform - pos: 52.5,-36.5 + pos: 44.5,-10.5 parent: 2 - - uid: 11583 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 4137 components: - type: Transform - pos: 52.5,-37.5 + pos: 37.5,41.5 parent: 2 - - uid: 11584 +- proto: LockerChemistryFilled + entities: + - uid: 9714 components: - type: Transform - pos: 52.5,-38.5 + pos: 52.5,-8.5 parent: 2 - - uid: 11585 +- proto: LockerChiefEngineerFilled + entities: + - uid: 4138 components: - type: Transform - pos: 52.5,-39.5 + pos: 10.5,-35.5 parent: 2 - - uid: 11589 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 5191 components: - type: Transform - pos: 47.5,-55.5 + pos: 58.5,-11.5 parent: 2 - - uid: 11590 +- proto: LockerDetectiveFilled + entities: + - uid: 11476 components: - type: Transform - pos: 48.5,-55.5 + pos: 43.5,18.5 parent: 2 - - uid: 11591 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 882 components: - type: Transform - pos: 47.5,-57.5 + pos: 28.5,-33.5 parent: 2 - - uid: 11592 + - uid: 1760 components: - type: Transform - pos: 47.5,-58.5 + pos: 38.5,-14.5 parent: 2 - - uid: 11593 + - uid: 2321 components: - type: Transform - pos: 47.5,-59.5 + pos: 69.5,-11.5 parent: 2 - - uid: 11594 + - uid: 12352 components: - type: Transform - pos: 47.5,-60.5 + pos: 4.5,-8.5 parent: 2 - - uid: 11595 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 4904 components: - type: Transform - pos: 45.5,-60.5 + pos: 20.5,-32.5 parent: 2 - - uid: 11596 + - uid: 4905 components: - type: Transform - pos: 44.5,-60.5 + pos: 20.5,-31.5 parent: 2 - - uid: 11597 + - uid: 5182 components: - type: Transform - pos: 43.5,-60.5 + pos: 20.5,-30.5 parent: 2 - - uid: 11598 +- proto: LockerEvidence + entities: + - uid: 2430 components: - type: Transform - pos: 41.5,-60.5 + pos: 32.5,28.5 parent: 2 - - uid: 11599 + - uid: 5013 components: - type: Transform - pos: 40.5,-60.5 + pos: 32.5,21.5 parent: 2 - - uid: 11600 + - uid: 5018 components: - type: Transform - pos: 54.5,-35.5 + pos: 32.5,17.5 parent: 2 - - uid: 11601 + - uid: 7980 components: - type: Transform - pos: -2.5,-28.5 + pos: -2.5,-5.5 parent: 2 - - uid: 11602 + - uid: 9003 components: - type: Transform - pos: -3.5,-28.5 + pos: 17.5,29.5 parent: 2 - - uid: 11603 +- proto: LockerFreezer + entities: + - uid: 1646 components: - type: Transform - pos: -4.5,-28.5 + pos: 29.5,-12.5 parent: 2 - - uid: 11604 +- proto: LockerFreezerVaultFilled + entities: + - uid: 7391 components: - type: Transform - pos: -5.5,-28.5 + pos: 19.5,39.5 parent: 2 - - uid: 11605 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 10278 components: - type: Transform - pos: -6.5,-28.5 + pos: 17.5,-5.5 parent: 2 - - uid: 11606 +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 6422 components: - type: Transform - pos: -7.5,-28.5 + pos: 43.5,25.5 parent: 2 - - uid: 11607 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 545 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 10911 components: - type: Transform - pos: -8.5,-28.5 + pos: 75.5,-1.5 parent: 2 - - uid: 11608 +- proto: LockerMedicalFilled + entities: + - uid: 11909 components: - type: Transform - pos: -9.5,-28.5 + pos: 70.5,5.5 parent: 2 - - uid: 11609 + - uid: 11910 components: - type: Transform - pos: -10.5,-28.5 + pos: 70.5,6.5 parent: 2 - - uid: 11610 +- proto: LockerMedicineFilled + entities: + - uid: 4115 components: - type: Transform - pos: -11.5,-28.5 + pos: 57.5,-15.5 parent: 2 - - uid: 11611 + - uid: 5098 components: - type: Transform - pos: -12.5,-28.5 + pos: 67.5,-6.5 parent: 2 - - uid: 11612 + - uid: 5653 components: - type: Transform - pos: -13.5,-28.5 + pos: 65.5,4.5 parent: 2 - - uid: 11613 + - uid: 6871 components: - type: Transform - pos: -14.5,-28.5 + pos: 62.5,4.5 parent: 2 - - uid: 11614 + - uid: 6872 components: - type: Transform - pos: -15.5,-28.5 + pos: 61.5,4.5 parent: 2 - - uid: 11615 + - uid: 11402 components: - type: Transform - pos: -16.5,-28.5 + pos: 67.5,-11.5 parent: 2 - - uid: 11616 + - uid: 11911 components: - type: Transform - pos: -16.5,-29.5 + pos: 74.5,5.5 parent: 2 - - uid: 11617 +- proto: LockerParamedicFilled + entities: + - uid: 9618 components: - type: Transform - pos: -16.5,-30.5 + pos: 44.5,4.5 parent: 2 - - uid: 11618 +- proto: LockerQuarterMasterFilled + entities: + - uid: 8104 components: - type: Transform - pos: -16.5,-32.5 + pos: 9.5,19.5 parent: 2 - - uid: 11619 +- proto: LockerResearchDirectorFilled + entities: + - uid: 10660 components: - type: Transform - pos: -17.5,-32.5 + pos: 61.5,11.5 parent: 2 - - uid: 11620 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 705 components: - type: Transform - pos: -18.5,-32.5 + pos: 6.5,30.5 parent: 2 - - uid: 11621 + - uid: 8202 components: - type: Transform - pos: -18.5,-33.5 + pos: 7.5,30.5 parent: 2 - - uid: 11622 +- proto: LockerScienceFilled + entities: + - uid: 5338 components: - type: Transform - pos: -18.5,-34.5 + pos: 55.5,22.5 parent: 2 - - uid: 11623 + - uid: 5339 components: - type: Transform - pos: -18.5,-35.5 + pos: 56.5,22.5 parent: 2 - - uid: 11624 + - uid: 12829 components: - type: Transform - pos: -18.5,-36.5 + pos: 57.5,25.5 parent: 2 - - uid: 11625 +- proto: LockerScientist + entities: + - uid: 5322 components: - type: Transform - pos: -18.5,-37.5 + pos: 51.5,21.5 parent: 2 - - uid: 11626 +- proto: LockerSecurityFilled + entities: + - uid: 8441 components: - type: Transform - pos: -18.5,-38.5 + pos: 29.5,30.5 parent: 2 - - uid: 11627 + - uid: 8443 components: - type: Transform - pos: -17.5,-38.5 + pos: 30.5,30.5 parent: 2 - - uid: 11628 + - uid: 13580 components: - type: Transform - pos: -16.5,-38.5 + pos: 31.5,30.5 parent: 2 - - uid: 11629 +- proto: LockerWallMedicalFilled + entities: + - uid: 8323 components: - type: Transform - pos: -2.5,-41.5 + pos: 46.5,5.5 parent: 2 - - uid: 11630 +- proto: LockerWardenFilled + entities: + - uid: 11210 components: - type: Transform - pos: -2.5,-42.5 + pos: 37.5,19.5 parent: 2 - - uid: 11631 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 883 components: - type: Transform - pos: -3.5,-42.5 + pos: 24.5,-33.5 parent: 2 - - uid: 11632 +- proto: MachineAnomalyGenerator + entities: + - uid: 5363 components: - type: Transform - pos: -4.5,-42.5 + pos: 70.5,15.5 parent: 2 - - uid: 11633 +- proto: MachineAnomalyVessel + entities: + - uid: 5380 components: - type: Transform - pos: -5.5,-42.5 + pos: 68.5,16.5 parent: 2 - - uid: 11634 + - uid: 10080 components: - type: Transform - pos: -6.5,-42.5 + pos: 67.5,16.5 parent: 2 - - uid: 11635 +- proto: MachineAPE + entities: + - uid: 5255 components: - type: Transform - pos: -7.5,-42.5 + rot: 1.5707963267948966 rad + pos: 66.5,13.5 parent: 2 - - uid: 11636 + - uid: 5272 components: - type: Transform - pos: -8.5,-42.5 + rot: 1.5707963267948966 rad + pos: 67.5,13.5 parent: 2 - - uid: 11637 +- proto: MachineArtifactAnalyzer + entities: + - uid: 8666 components: - type: Transform - pos: -9.5,-42.5 + pos: 64.5,27.5 parent: 2 - - uid: 11638 +- proto: MachineCentrifuge + entities: + - uid: 5074 components: - type: Transform - pos: -10.5,-42.5 + pos: 53.5,-5.5 parent: 2 - - uid: 11639 +- proto: MachineElectrolysisUnit + entities: + - uid: 5073 components: - type: Transform - pos: -11.5,-42.5 + pos: 52.5,-7.5 parent: 2 - - uid: 11640 +- proto: MachineFrame + entities: + - uid: 5731 components: - type: Transform - pos: -12.5,-42.5 + pos: 52.5,21.5 parent: 2 - - uid: 11641 +- proto: MachineParticleAcceleratorEmitterForeCircuitboard + entities: + - uid: 5610 components: - type: Transform - pos: -13.5,-42.5 + pos: 19.614614,-38.64791 parent: 2 - - uid: 11642 +- proto: MachineParticleAcceleratorEmitterPortCircuitboard + entities: + - uid: 11948 components: - type: Transform - pos: -14.5,-42.5 + pos: 19.50161,-38.48987 parent: 2 - - uid: 11643 +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard + entities: + - uid: 1466 components: - type: Transform - pos: -16.5,-40.5 + pos: 19.434057,-38.4118 parent: 2 - - uid: 11644 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 348 components: - type: Transform - pos: -16.5,-41.5 + pos: 45.548477,23.915247 parent: 2 - - uid: 11645 + - uid: 7835 components: - type: Transform - pos: -16.5,-42.5 + pos: 45.548477,23.915247 parent: 2 - - uid: 11646 +- proto: MaintenanceFluffSpawner + entities: + - uid: 12286 components: - type: Transform - pos: -15.5,-42.5 + pos: 80.5,-12.5 parent: 2 - - uid: 11647 + - uid: 12842 components: - type: Transform - pos: 89.5,42.5 + pos: 23.5,4.5 parent: 2 - - uid: 11648 +- proto: MaintenancePlantSpawner + entities: + - uid: 12855 components: - type: Transform - pos: 90.5,42.5 + pos: 2.5,-8.5 parent: 2 - - uid: 11649 + - uid: 12856 components: - type: Transform - pos: 91.5,42.5 + pos: 54.5,-20.5 parent: 2 - - uid: 11650 + - uid: 12857 components: - type: Transform - pos: 91.5,43.5 + pos: 71.5,34.5 parent: 2 - - uid: 11651 +- proto: MaintenanceToolSpawner + entities: + - uid: 12284 components: - type: Transform - pos: 91.5,44.5 + pos: 4.5,-23.5 parent: 2 - - uid: 11652 + - uid: 14072 components: - type: Transform - pos: 91.5,45.5 + pos: 1.5,-21.5 parent: 2 - - uid: 11653 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 12285 components: - type: Transform - pos: 91.5,46.5 + pos: 74.5,-12.5 parent: 2 - - uid: 11654 +- proto: MaterialCloth + entities: + - uid: 10295 components: - type: Transform - pos: 91.5,47.5 + pos: 18.45301,-3.204442 parent: 2 - - uid: 11655 +- proto: MaterialDurathread + entities: + - uid: 10296 components: - type: Transform - pos: 91.5,48.5 + pos: 18.624886,-3.516942 parent: 2 - - uid: 11656 +- proto: MaterialWoodPlank + entities: + - uid: 2898 components: - type: Transform - pos: 90.5,48.5 + pos: 65.69583,-13.395477 parent: 2 - - uid: 11657 + - uid: 2899 components: - type: Transform - pos: 89.5,48.5 + pos: 65.43021,-13.629852 parent: 2 - - uid: 11658 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 14752 components: - type: Transform - pos: 74.5,51.5 + pos: 15.466128,24.582924 parent: 2 - - uid: 11659 +- proto: MedicalBed + entities: + - uid: 1705 components: - type: Transform - pos: 75.5,51.5 + pos: 59.5,-4.5 parent: 2 - - uid: 11660 + - uid: 1710 components: - type: Transform - pos: 76.5,51.5 + pos: 62.5,-4.5 parent: 2 - - uid: 11661 + - uid: 4978 components: - type: Transform - pos: 77.5,51.5 + pos: 81.5,-1.5 parent: 2 - - uid: 11662 + - uid: 7800 components: - type: Transform - pos: 78.5,51.5 + pos: 81.5,-0.5 parent: 2 - - uid: 11663 + - uid: 10902 components: - type: Transform - pos: 79.5,51.5 + pos: 76.5,-6.5 parent: 2 - - uid: 11664 + - uid: 10903 components: - type: Transform - pos: 81.5,51.5 + pos: 77.5,-8.5 parent: 2 - - uid: 11665 + - uid: 11304 components: - type: Transform - pos: 80.5,51.5 + pos: 62.5,-10.5 parent: 2 - - uid: 11666 +- proto: MedicalTechFab + entities: + - uid: 9369 components: - type: Transform - pos: 82.5,51.5 + pos: 71.5,8.5 parent: 2 - - uid: 11667 +- proto: MedkitAdvancedFilled + entities: + - uid: 11919 components: - type: Transform - pos: 83.5,51.5 + pos: 56.50263,-10.253292 parent: 2 - - uid: 11668 +- proto: MedkitBruteFilled + entities: + - uid: 11915 components: - type: Transform - pos: 84.5,51.5 + pos: 72.38061,6.2433724 parent: 2 - - uid: 11669 +- proto: MedkitBurnFilled + entities: + - uid: 11914 components: - type: Transform - pos: 85.5,51.5 + pos: 72.61498,6.4464974 parent: 2 - - uid: 11670 +- proto: MedkitCombatFilled + entities: + - uid: 11920 components: - type: Transform - pos: 86.5,51.5 + pos: 63.555206,-11.384237 parent: 2 - - uid: 11671 +- proto: MedkitFilled + entities: + - uid: 4140 components: - type: Transform - pos: 87.5,51.5 + pos: 69.457695,-7.378622 parent: 2 - - uid: 11672 + - uid: 4996 components: - type: Transform - pos: 88.5,51.5 + pos: 32.5,48.5 parent: 2 - - uid: 11673 + - uid: 7390 components: - type: Transform - pos: 76.5,38.5 + pos: 18.523928,24.634445 parent: 2 - - uid: 11674 + - uid: 9625 components: - type: Transform - pos: 77.5,38.5 + pos: 46.54082,2.560578 parent: 2 - - uid: 11675 + - uid: 11307 components: - type: Transform - pos: 78.5,38.5 + pos: 72.38061,6.5246224 parent: 2 - - uid: 11676 + - uid: 11908 components: - type: Transform - pos: 79.5,38.5 + pos: 57.486534,-3.4860651 parent: 2 - - uid: 11677 +- proto: MedkitOxygenFilled + entities: + - uid: 11916 components: - type: Transform - pos: 80.5,38.5 + pos: 72.61498,6.0402474 parent: 2 - - uid: 11678 +- proto: MedkitRadiationFilled + entities: + - uid: 11917 components: - type: Transform - pos: 81.5,38.5 + pos: 72.34936,5.8058724 parent: 2 - - uid: 11679 +- proto: MedkitToxinFilled + entities: + - uid: 11918 components: - type: Transform - pos: 82.5,38.5 + pos: 72.61498,5.5714974 parent: 2 - - uid: 11680 +- proto: MicrophoneInstrument + entities: + - uid: 9739 components: - type: Transform - pos: 83.5,38.5 + pos: 19.519224,-9.931319 parent: 2 - - uid: 11681 +- proto: MinimoogInstrument + entities: + - uid: 12692 components: - type: Transform - pos: 84.5,38.5 + rot: -1.5707963267948966 rad + pos: 106.5,-17.5 parent: 2 - - uid: 11682 +- proto: Mirror + entities: + - uid: 9 components: - type: Transform - pos: 85.5,38.5 + pos: 10.5,14.5 parent: 2 - - uid: 11683 + - uid: 1532 components: - type: Transform - pos: 86.5,38.5 + pos: 11.5,14.5 parent: 2 - - uid: 11684 + - uid: 11907 components: - type: Transform - pos: 87.5,38.5 + pos: 76.5,8.5 parent: 2 - - uid: 11685 +- proto: MopBucket + entities: + - uid: 13116 components: - type: Transform - pos: 88.5,38.5 + pos: 5.687049,-5.5586905 parent: 2 - - uid: 11686 +- proto: MopItem + entities: + - uid: 13119 components: - type: Transform - pos: 15.5,47.5 + pos: 5.5737967,-5.4805655 parent: 2 - - uid: 11687 +- proto: Morgue + entities: + - uid: 1012 components: - type: Transform - pos: 14.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 parent: 2 - - uid: 11688 + - uid: 2119 components: - type: Transform - pos: 13.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 parent: 2 - - uid: 11689 + - uid: 4215 components: - type: Transform - pos: 7.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-2.5 parent: 2 - - uid: 11690 + - uid: 4314 components: - type: Transform - pos: 6.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-3.5 parent: 2 - - uid: 11691 + - uid: 4315 components: - type: Transform - pos: 5.5,46.5 + rot: 1.5707963267948966 rad + pos: 71.5,-0.5 parent: 2 - - uid: 11692 + - uid: 4316 components: - type: Transform - pos: 5.5,45.5 + rot: 1.5707963267948966 rad + pos: 71.5,-1.5 parent: 2 - - uid: 11693 + - uid: 4317 components: - type: Transform - pos: 5.5,44.5 + rot: 1.5707963267948966 rad + pos: 71.5,-2.5 parent: 2 - - uid: 11694 + - uid: 5122 components: - type: Transform - pos: 5.5,43.5 + rot: -1.5707963267948966 rad + pos: 74.5,-3.5 parent: 2 - - uid: 11695 + - uid: 9727 components: - type: Transform - pos: 41.5,52.5 + rot: -1.5707963267948966 rad + pos: 32.5,5.5 parent: 2 - - uid: 11696 + - uid: 9728 components: - type: Transform - pos: 40.5,52.5 + rot: -1.5707963267948966 rad + pos: 32.5,4.5 parent: 2 - - uid: 11697 + - uid: 12767 components: - type: Transform - pos: 38.5,52.5 + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 parent: 2 - - uid: 11698 + - uid: 13495 components: - type: Transform - pos: 39.5,52.5 + rot: 1.5707963267948966 rad + pos: 71.5,-3.5 parent: 2 - - uid: 11757 + - uid: 13496 components: - type: Transform - pos: 8.5,-41.5 + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 parent: 2 - - uid: 11759 +- proto: MouseTimedSpawner + entities: + - uid: 12800 components: - type: Transform - pos: 10.5,-43.5 + pos: 4.5,-29.5 parent: 2 - - uid: 11886 +- proto: Multitool + entities: + - uid: 4976 components: - type: Transform - pos: 69.5,4.5 + pos: 19.486778,46.604305 parent: 2 - - uid: 11887 + - uid: 5872 components: - type: Transform - pos: 69.5,5.5 + pos: 31.020313,-14.418215 parent: 2 - - uid: 11888 + - uid: 7451 components: - type: Transform - pos: 69.5,6.5 + pos: 17.945803,24.61882 parent: 2 - - uid: 11889 + - uid: 10792 components: - type: Transform - pos: 70.5,3.5 + pos: 69.28111,-15.352209 parent: 2 - - uid: 11891 +- proto: NetworkConfigurator + entities: + - uid: 909 components: - type: Transform - pos: 72.5,3.5 + pos: 27.306864,-29.442156 parent: 2 - - uid: 11894 + - uid: 8340 components: - type: Transform - pos: 73.5,3.5 + pos: 21.44037,46.69382 parent: 2 - - uid: 11970 +- proto: NitrogenCanister + entities: + - uid: 1928 components: - type: Transform - pos: 45.5,-28.5 + pos: 50.5,-23.5 parent: 2 - - uid: 11972 + - uid: 4306 components: - type: Transform - pos: 45.5,-21.5 + pos: 43.5,-37.5 parent: 2 - - uid: 12220 + - uid: 4311 components: - type: Transform - pos: 45.5,-22.5 + pos: 43.5,-38.5 parent: 2 - - uid: 12295 + - uid: 4571 components: - type: Transform - pos: 45.5,-23.5 + pos: 32.5,-27.5 parent: 2 - - uid: 12912 + - uid: 4815 components: - type: Transform - pos: 45.5,-48.5 + pos: 32.5,-46.5 parent: 2 - - uid: 12913 + - uid: 9094 components: - type: Transform - pos: 45.5,-47.5 + pos: 12.5,16.5 parent: 2 - - uid: 12914 + - uid: 9901 components: - type: Transform - pos: 45.5,-46.5 + pos: 46.5,-15.5 parent: 2 - - uid: 12915 + - uid: 10442 components: - type: Transform - pos: 45.5,-45.5 + pos: 58.5,11.5 parent: 2 - - uid: 12916 + - uid: 13968 components: - type: Transform - pos: 45.5,-44.5 + pos: -10.5,-23.5 parent: 2 - - uid: 12917 +- proto: NitrousOxideCanister + entities: + - uid: 4334 components: - type: Transform - pos: 43.5,-49.5 + pos: 44.5,-37.5 parent: 2 - - uid: 12918 +- proto: NTDefaultCircuitBoard + entities: + - uid: 14281 components: - type: Transform - pos: 42.5,-49.5 + pos: 86.43288,28.772083 parent: 2 - - uid: 12919 +- proto: NuclearBomb + entities: + - uid: 12093 components: - type: Transform - pos: 41.5,-49.5 + pos: 18.5,42.5 parent: 2 - - uid: 13146 +- proto: NutimovCircuitBoard + entities: + - uid: 14282 components: - type: Transform - pos: -15.5,1.5 + pos: 86.53704,28.660894 parent: 2 - - uid: 13147 +- proto: OperatingTable + entities: + - uid: 24 components: - type: Transform - pos: -16.5,1.5 + pos: 65.5,-4.5 parent: 2 - - uid: 13148 + - uid: 5085 components: - type: Transform - pos: -17.5,1.5 + pos: 56.5,-14.5 parent: 2 - - uid: 13149 + - uid: 5186 components: - type: Transform - pos: -18.5,1.5 + pos: 74.5,-2.5 parent: 2 - - uid: 13150 + - uid: 11399 components: - type: Transform - pos: -19.5,1.5 + pos: 66.5,-10.5 parent: 2 - - uid: 13152 + - uid: 12109 components: - type: Transform - pos: -20.5,1.5 + pos: 55.5,9.5 parent: 2 - - uid: 13181 +- proto: OreProcessor + entities: + - uid: 7673 components: - type: Transform - pos: -21.5,1.5 + pos: 9.5,29.5 parent: 2 - - uid: 13182 +- proto: OxygenCanister + entities: + - uid: 945 components: - type: Transform - pos: -22.5,1.5 + pos: 42.5,-38.5 parent: 2 - - uid: 13244 + - uid: 1467 components: - type: Transform - pos: -23.5,1.5 + pos: 50.5,-25.5 parent: 2 - - uid: 13245 + - uid: 2833 components: - type: Transform - pos: -25.5,1.5 + pos: 42.5,-37.5 parent: 2 - - uid: 13246 + - uid: 4570 components: - type: Transform - pos: -26.5,1.5 + pos: 32.5,-28.5 parent: 2 - - uid: 13247 + - uid: 6424 components: - type: Transform - pos: -27.5,1.5 + pos: 46.5,7.5 parent: 2 - - uid: 13248 + - uid: 7966 components: - type: Transform - pos: -24.5,1.5 + pos: 31.5,-46.5 parent: 2 - - uid: 13258 + - uid: 9620 components: - type: Transform - pos: -19.5,14.5 + pos: 47.5,2.5 parent: 2 - - uid: 13259 + - uid: 9902 components: - type: Transform - pos: -20.5,14.5 + pos: 46.5,-16.5 parent: 2 - - uid: 13260 + - uid: 10314 components: - type: Transform - pos: -21.5,14.5 + pos: 8.5,-5.5 parent: 2 - - uid: 13261 + - uid: 10441 components: - type: Transform - pos: -22.5,14.5 + pos: 58.5,10.5 parent: 2 - - uid: 13262 + - uid: 11650 components: - type: Transform - pos: -23.5,14.5 + pos: 5.5,32.5 parent: 2 - - uid: 13263 + - uid: 12997 components: - type: Transform - pos: -24.5,14.5 + pos: 34.5,-44.5 parent: 2 - - uid: 13264 + - uid: 13970 components: - type: Transform - pos: -25.5,14.5 + pos: -9.5,-23.5 parent: 2 - - uid: 13265 + - uid: 14225 components: - type: Transform - pos: -26.5,14.5 + pos: 82.5,27.5 parent: 2 - - uid: 13266 +- proto: OxygenTankFilled + entities: + - uid: 5720 components: - type: Transform - pos: -27.5,14.5 + pos: 73.5,-12.5 parent: 2 - - uid: 13267 + - uid: 5734 components: - type: Transform - pos: -23.5,-19.5 + pos: 72.5,-9.5 parent: 2 - - uid: 13268 + - uid: 10847 components: - type: Transform - pos: -24.5,-19.5 + pos: 44.5341,28.548758 parent: 2 - - uid: 13269 + - type: GasTank + toggleActionEntity: 6197 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6197 +- proto: PackPaperRollingFilters + entities: + - uid: 14654 components: - type: Transform - pos: -25.5,-19.5 + pos: 55.52354,31.733475 parent: 2 - - uid: 13270 +- proto: PaintingMonkey + entities: + - uid: 5783 components: - type: Transform - pos: -26.5,-19.5 + pos: 37.485016,-2.1577168 parent: 2 - - uid: 13271 +- proto: PaintingMoony + entities: + - uid: 12334 components: - type: Transform - pos: -27.5,-19.5 + pos: 28.5,6.5 parent: 2 - - uid: 13272 +- proto: PaintingOlympia + entities: + - uid: 1195 components: - type: Transform - pos: -27.5,-17.5 + pos: 35.5,42.5 parent: 2 - - uid: 13273 +- proto: PaintingSadClown + entities: + - uid: 12832 components: - type: Transform - pos: -26.5,-17.5 + pos: 28.5,8.5 parent: 2 - - uid: 13274 +- proto: PaladinCircuitBoard + entities: + - uid: 14283 components: - type: Transform - pos: -25.5,-17.5 + pos: 86.43288,28.584454 parent: 2 - - uid: 13275 +- proto: Paper + entities: + - uid: 15000 components: - type: Transform - pos: -24.5,-17.5 + pos: 51.50651,4.646573 parent: 2 - - uid: 13276 +- proto: PaperBin10 + entities: + - uid: 1483 components: - type: Transform - pos: -23.5,-17.5 + pos: 8.5,4.5 parent: 2 - - uid: 13303 +- proto: PaperBin5 + entities: + - uid: 6913 components: - type: Transform - pos: -30.5,-8.5 + pos: 43.5,19.5 parent: 2 - - uid: 13309 +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 4800 components: - type: Transform - pos: -30.5,-9.5 + pos: 20.5,-40.5 parent: 2 - - uid: 13315 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 4147 components: - type: Transform - pos: -30.5,-7.5 + pos: 21.5,-42.5 parent: 2 - - uid: 13316 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 4144 components: - type: Transform - pos: -30.5,-6.5 + pos: 22.5,-42.5 parent: 2 - - uid: 13317 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 4143 components: - type: Transform - pos: -30.5,-5.5 + pos: 20.5,-42.5 parent: 2 - - uid: 13318 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 4145 components: - type: Transform - pos: -30.5,-4.5 + pos: 21.5,-39.5 parent: 2 - - uid: 13319 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 4148 components: - type: Transform - pos: -30.5,-2.5 + pos: 21.5,-40.5 parent: 2 - - uid: 13320 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 4142 components: - type: Transform - pos: -30.5,-1.5 + pos: 21.5,-41.5 parent: 2 - - uid: 13321 +- proto: PartRodMetal + entities: + - uid: 2896 components: - type: Transform - pos: -30.5,-3.5 + pos: 65.52396,-13.395477 parent: 2 - - uid: 13322 + - uid: 2897 components: - type: Transform - pos: -32.5,-1.5 + pos: 65.85208,-13.442352 parent: 2 - - uid: 13323 + - uid: 5641 components: - type: Transform - pos: -32.5,-3.5 + pos: 17.877897,-26.451574 parent: 2 - - uid: 13324 + - uid: 5642 components: - type: Transform - pos: -32.5,-4.5 + pos: 17.877897,-26.451574 parent: 2 - - uid: 13325 + - uid: 9708 components: - type: Transform - pos: -32.5,-5.5 + pos: 5.4799275,40.593884 parent: 2 - - uid: 13326 + - uid: 11126 components: - type: Transform - pos: -32.5,-6.5 + pos: 54.520523,-14.325092 parent: 2 - - uid: 13327 + - uid: 14760 components: - type: Transform - pos: -32.5,-7.5 + pos: 5.5,31.5 parent: 2 - - uid: 13328 +- proto: Pen + entities: + - uid: 137 components: - type: Transform - pos: -32.5,-8.5 + pos: -2.0928464,-12.376232 parent: 2 - - uid: 13329 + - uid: 312 components: - type: Transform - pos: -32.5,-9.5 + pos: 11.095052,4.613485 parent: 2 - - uid: 13330 + - uid: 7415 components: - type: Transform - pos: -32.5,-2.5 + pos: 23.446625,15.655876 parent: 2 - - uid: 13331 + - uid: 7761 components: - type: Transform - pos: -34.5,-9.5 + pos: 39.66111,17.754585 parent: 2 - - uid: 13332 + - uid: 11973 components: - type: Transform - pos: -34.5,-8.5 + pos: 55.38082,-10.156126 parent: 2 - - uid: 13333 + - uid: 11975 components: - type: Transform - pos: -34.5,-7.5 + pos: 18.920185,-2.2376757 parent: 2 - - uid: 13334 + - uid: 11976 components: - type: Transform - pos: -34.5,-6.5 + pos: -2.4757,-12.360289 parent: 2 - - uid: 13335 + - uid: 11977 components: - type: Transform - pos: -34.5,-5.5 + pos: 10.85696,4.4728694 parent: 2 - - uid: 13336 + - uid: 11978 components: - type: Transform - pos: -34.5,-4.5 + pos: 21.523584,22.514828 parent: 2 - - uid: 13337 + - uid: 11979 components: - type: Transform - pos: -34.5,-3.5 + pos: 44.764744,23.837742 parent: 2 - - uid: 13338 + - uid: 11980 components: - type: Transform - pos: -34.5,-2.5 + pos: 63.3999,10.027362 parent: 2 - - uid: 13339 + - uid: 14632 components: - type: Transform - pos: -34.5,-1.5 + pos: 74.38532,22.554312 parent: 2 - - uid: 13355 + - uid: 15001 components: - type: Transform - pos: 30.5,-62.5 + pos: 51.110676,4.5944533 parent: 2 - - uid: 13387 +- proto: PersonalAI + entities: + - uid: 7414 components: - type: Transform - pos: 29.5,-62.5 + pos: 23.509125,15.577751 parent: 2 - - uid: 13388 + - uid: 11216 components: - type: Transform - pos: 28.5,-62.5 + pos: 26.514572,47.589886 parent: 2 - - uid: 13389 + - uid: 11217 components: - type: Transform - pos: 27.5,-62.5 + pos: 70.51922,36.549946 parent: 2 - - uid: 13390 + - uid: 13621 components: - type: Transform - pos: 26.5,-62.5 - parent: 2 - - uid: 13391 + parent: 13620 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PhoneInstrument + entities: + - uid: 7008 components: - type: Transform - pos: 25.5,-62.5 + pos: 34.02968,41.62158 parent: 2 - - uid: 13392 +- proto: PianoInstrument + entities: + - uid: 1663 components: - type: Transform - pos: 24.5,-62.5 + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 parent: 2 - - uid: 13393 +- proto: Pickaxe + entities: + - uid: 14759 components: - type: Transform - pos: 23.5,-62.5 + rot: 1.5707963267948966 rad + pos: 5.5,31.5 parent: 2 - - uid: 13394 +- proto: PlantBGoneSpray + entities: + - uid: 6754 components: - type: Transform - pos: 22.5,-62.5 + pos: 45.80647,-6.7391644 parent: 2 - - uid: 13395 +- proto: PlaqueAtmos + entities: + - uid: 4576 components: - type: Transform - pos: 21.5,-62.5 + pos: 29.5,-25.5 parent: 2 - - uid: 13396 +- proto: PlasmaCanister + entities: + - uid: 1678 components: - type: Transform - pos: 20.5,-62.5 + pos: 50.5,-31.5 parent: 2 - - uid: 13397 + - uid: 12995 components: - type: Transform - pos: 19.5,-62.5 + pos: 44.5,-38.5 parent: 2 - - uid: 13398 + - uid: 12996 components: - type: Transform - pos: 18.5,-62.5 + pos: 34.5,-43.5 parent: 2 - - uid: 13399 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 2092 components: - type: Transform - pos: 16.5,-62.5 + rot: -1.5707963267948966 rad + pos: 78.5,-6.5 parent: 2 - - uid: 13400 + - uid: 5245 components: - type: Transform - pos: 15.5,-62.5 + rot: -1.5707963267948966 rad + pos: 78.5,-7.5 parent: 2 - - uid: 13401 + - uid: 7794 components: - type: Transform - pos: 17.5,-62.5 + pos: 81.5,-2.5 parent: 2 - - uid: 13402 + - uid: 10120 components: - type: Transform - pos: 13.5,-62.5 + pos: 76.5,-5.5 parent: 2 - - uid: 13403 + - uid: 10135 components: - type: Transform - pos: 12.5,-62.5 + rot: 1.5707963267948966 rad + pos: 38.5,24.5 parent: 2 - - uid: 13404 + - uid: 12081 components: - type: Transform - pos: 11.5,-62.5 + rot: 1.5707963267948966 rad + pos: 46.5,9.5 parent: 2 - - uid: 13405 + - uid: 12107 components: - type: Transform - pos: 10.5,-62.5 + rot: 1.5707963267948966 rad + pos: 46.5,11.5 parent: 2 - - uid: 13406 + - uid: 12270 components: - type: Transform - pos: 14.5,-62.5 + rot: -1.5707963267948966 rad + pos: 41.5,24.5 parent: 2 - - uid: 13407 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 7707 components: - type: Transform - pos: 6.5,-54.5 + pos: 41.5,24.5 parent: 2 - - uid: 13408 + - uid: 13582 components: - type: Transform - pos: 6.5,-53.5 + pos: 38.5,24.5 parent: 2 - - uid: 13409 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 451 components: - type: Transform - pos: 6.5,-52.5 + pos: 7.5,35.5 parent: 2 - - uid: 13410 + - uid: 5576 components: - type: Transform - pos: 6.5,-51.5 + pos: 5.5,27.5 parent: 2 - - uid: 13411 + - uid: 5577 components: - type: Transform - pos: 6.5,-50.5 + pos: 5.5,23.5 parent: 2 - - uid: 13412 + - uid: 5874 components: - type: Transform - pos: 6.5,-49.5 + pos: -0.5,-27.5 parent: 2 - - uid: 13413 + - uid: 7552 components: - type: Transform - pos: 6.5,-48.5 + pos: 3.5,27.5 parent: 2 - - uid: 13414 + - uid: 8229 components: - type: Transform - pos: 6.5,-47.5 + pos: 3.5,23.5 parent: 2 - - uid: 13415 + - uid: 14767 components: - type: Transform - pos: 6.5,-46.5 + pos: 7.5,36.5 parent: 2 - - uid: 13416 +- proto: PlayerStationAi + entities: + - uid: 14506 components: - type: Transform - pos: 7.5,-62.5 + pos: 94.5,30.5 parent: 2 - - uid: 13417 +- proto: Plunger + entities: + - uid: 9718 components: - type: Transform - pos: 6.5,-62.5 + pos: 10.992045,13.876669 parent: 2 - - uid: 13418 + - uid: 9719 components: - type: Transform - pos: 6.5,-61.5 + pos: 6.0254927,-3.2604024 parent: 2 - - uid: 13419 +- proto: PlushieNar + entities: + - uid: 5400 components: - type: Transform - pos: 6.5,-60.5 + pos: 62.48992,18.519245 parent: 2 - - uid: 13420 +- proto: PlushieSharkGrey + entities: + - uid: 5727 components: - type: Transform - pos: 6.5,-59.5 + pos: 25.597736,6.3236885 parent: 2 - - uid: 13421 +- proto: PlushieSharkPink + entities: + - uid: 13077 components: - type: Transform - pos: 6.5,-58.5 + pos: 6.6388106,-13.475947 parent: 2 - - uid: 13423 +- proto: PlushieSpaceLizard + entities: + - uid: 7441 components: - type: Transform - pos: 32.5,-61.5 + pos: -3.4634295,-18.46823 parent: 2 - - uid: 13424 +- proto: PortableFlasher + entities: + - uid: 8412 components: - type: Transform - pos: 33.5,-61.5 + pos: 31.5,26.5 parent: 2 - - uid: 13425 +- proto: PortableGeneratorJrPacman + entities: + - uid: 801 components: - type: Transform - pos: 34.5,-61.5 + pos: 13.5,-28.5 parent: 2 - - uid: 13426 + - uid: 3176 components: - type: Transform - pos: 35.5,-61.5 + pos: 35.5,36.5 parent: 2 - - uid: 13427 + - uid: 4181 components: - type: Transform - pos: 36.5,-61.5 + pos: 70.5,-7.5 parent: 2 - - uid: 13428 + - uid: 5741 components: - type: Transform - pos: 37.5,-61.5 + pos: 12.5,17.5 parent: 2 - - uid: 13429 + - uid: 7854 components: - type: Transform - pos: 38.5,-61.5 + pos: 23.5,-7.5 parent: 2 - - uid: 13430 + - uid: 7855 components: - type: Transform - pos: 39.5,-61.5 + pos: 6.5,-9.5 parent: 2 - - uid: 13656 + - uid: 11881 components: - type: Transform - anchored: False - pos: -32.5,12.5 + pos: 23.5,5.5 parent: 2 - - uid: 13657 + - uid: 12360 components: - type: Transform - anchored: False - pos: -32.5,11.5 + pos: 9.5,-22.5 parent: 2 - - uid: 13658 + - uid: 12362 components: - type: Transform - anchored: False - pos: -32.5,10.5 + pos: 67.5,11.5 parent: 2 - - uid: 13659 + - uid: 13153 components: - type: Transform - anchored: False - pos: -32.5,9.5 + pos: 57.5,5.5 parent: 2 - - uid: 13660 + - uid: 14071 components: - type: Transform - anchored: False - pos: -32.5,8.5 + pos: -6.5,-23.5 parent: 2 - - uid: 13661 +- proto: PortableGeneratorPacman + entities: + - uid: 4301 components: - type: Transform - anchored: False - pos: -32.5,7.5 + pos: 9.5,-31.5 parent: 2 - - uid: 13662 + - uid: 14410 components: - type: Transform - anchored: False - pos: -32.5,6.5 + pos: 80.5,33.5 parent: 2 - - uid: 13663 +- proto: PortableScrubber + entities: + - uid: 4977 components: - type: Transform - anchored: False - pos: -32.5,5.5 + pos: 47.5,7.5 parent: 2 - - uid: 13664 + - uid: 6765 components: - type: Transform - anchored: False - pos: -32.5,3.5 + pos: 46.5,-40.5 parent: 2 - - uid: 13665 + - uid: 7807 components: - type: Transform - anchored: False - pos: -32.5,2.5 + pos: 24.5,-23.5 parent: 2 - - uid: 13666 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 5294 components: - type: Transform - anchored: False - pos: -32.5,1.5 + pos: 30.5,-22.5 parent: 2 - - uid: 13667 +- proto: PosterContrabandClown + entities: + - uid: 11021 components: - type: Transform - anchored: False - pos: -32.5,4.5 + pos: 27.5,4.5 parent: 2 - - uid: 13668 +- proto: PosterContrabandDonk + entities: + - uid: 13090 components: - type: Transform - pos: -34.5,1.5 + pos: 58.5,-16.5 parent: 2 - - uid: 13669 + - uid: 14084 components: - type: Transform - pos: -34.5,2.5 + rot: 1.5707963267948966 rad + pos: 60.5,34.5 parent: 2 - - uid: 13670 +- proto: PosterContrabandEAT + entities: + - uid: 6763 components: - type: Transform - pos: -34.5,3.5 + pos: 30.5,-8.5 parent: 2 - - uid: 13671 +- proto: PosterContrabandGreyTide + entities: + - uid: 739 components: - type: Transform - pos: -34.5,4.5 + pos: 30.5,-18.5 parent: 2 - - uid: 13672 +- proto: PosterContrabandHackingGuide + entities: + - uid: 8671 components: - type: Transform - pos: -34.5,5.5 + pos: 31.5,-13.5 parent: 2 - - uid: 13673 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 13100 components: - type: Transform - pos: -34.5,6.5 + pos: 44.5,-8.5 parent: 2 - - uid: 13674 +- proto: PosterContrabandMissingGloves + entities: + - uid: 11068 components: - type: Transform - pos: -34.5,8.5 + pos: 34.5,-18.5 parent: 2 - - uid: 13675 +- proto: PosterContrabandMoth + entities: + - uid: 13102 components: - type: Transform - pos: -34.5,9.5 + pos: 77.5,-14.5 parent: 2 - - uid: 13676 +- proto: PosterContrabandRedRum + entities: + - uid: 7286 components: - type: Transform - pos: -34.5,10.5 + pos: 40.5,-2.5 parent: 2 - - uid: 13677 +- proto: PosterLegit12Gauge + entities: + - uid: 8434 components: - type: Transform - pos: -34.5,11.5 + rot: 1.5707963267948966 rad + pos: 37.5,27.5 parent: 2 - - uid: 13678 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 11289 components: - type: Transform - pos: -34.5,12.5 + pos: 56.5,21.5 parent: 2 - - uid: 13679 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 12830 components: - type: Transform - pos: -34.5,13.5 + pos: 60.5,5.5 parent: 2 - - uid: 13680 +- proto: PosterLegitCarpMount + entities: + - uid: 7 components: - type: Transform - pos: -34.5,7.5 + pos: 18.5,25.5 parent: 2 - - uid: 13718 +- proto: PosterLegitCleanliness + entities: + - uid: 11818 components: - type: Transform - pos: -30.5,1.5 + rot: 3.141592653589793 rad + pos: 5.5,-2.5 parent: 2 - - uid: 13719 +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 7287 components: - type: Transform - pos: -30.5,2.5 + pos: 28.5,-7.5 parent: 2 - - uid: 13720 +- proto: PosterLegitDickGumshue + entities: + - uid: 13089 components: - type: Transform - pos: -30.5,3.5 + pos: 68.5,-14.5 parent: 2 - - uid: 13721 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 14643 components: - type: Transform - pos: -30.5,4.5 + rot: 3.141592653589793 rad + pos: 42.5,34.5 parent: 2 - - uid: 13722 +- proto: PosterLegitEnlist + entities: + - uid: 13104 components: - type: Transform - pos: -30.5,5.5 + pos: 42.5,26.5 parent: 2 - - uid: 13723 +- proto: PosterLegitFoamForceAd + entities: + - uid: 11022 components: - type: Transform - pos: -30.5,6.5 + pos: 20.5,16.5 parent: 2 - - uid: 13724 +- proto: PosterLegitFruitBowl + entities: + - uid: 13101 components: - type: Transform - pos: -30.5,7.5 + pos: 41.5,-9.5 parent: 2 - - uid: 13725 +- proto: PosterLegitHighClassMartini + entities: + - uid: 13099 components: - type: Transform - pos: -30.5,9.5 + pos: 38.5,-1.5 parent: 2 - - uid: 13726 +- proto: PosterLegitIan + entities: + - uid: 10251 components: - type: Transform - pos: -30.5,10.5 + pos: 17.5,-6.5 parent: 2 - - uid: 13727 +- proto: PosterLegitIonRifle + entities: + - uid: 13103 components: - type: Transform - pos: -30.5,8.5 + pos: 42.5,28.5 parent: 2 - - uid: 13728 +- proto: PosterLegitLoveIan + entities: + - uid: 10252 components: - type: Transform - pos: -30.5,11.5 + pos: 21.5,-3.5 parent: 2 - - uid: 13729 +- proto: PosterLegitMime + entities: + - uid: 12831 components: - type: Transform - pos: -30.5,12.5 + pos: 24.5,5.5 parent: 2 - - uid: 13730 +- proto: PosterLegitNanomichiAd + entities: + - uid: 12320 components: - type: Transform - pos: -30.5,13.5 + pos: 13.5,-4.5 parent: 2 -- proto: GrilleBroken +- proto: PosterLegitNanotrasenLogo entities: - - uid: 6 + - uid: 404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-21.5 + pos: 29.5,37.5 parent: 2 - - uid: 192 + - uid: 7464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-20.5 + pos: 17.5,-1.5 parent: 2 - - uid: 239 + - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 + pos: 17.5,38.5 parent: 2 - - uid: 242 + - uid: 11854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 1247 + - uid: 12318 components: - type: Transform - pos: 35.5,-58.5 + pos: 29.5,43.5 parent: 2 - - uid: 1335 + - uid: 12319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 + pos: 20.5,47.5 parent: 2 - - uid: 2401 +- proto: PosterLegitNTTGC + entities: + - uid: 13097 components: - type: Transform - pos: 89.5,-6.5 + pos: 13.5,8.5 parent: 2 - - uid: 3986 +- proto: PosterLegitPeriodicTable + entities: + - uid: 13093 components: - type: Transform - pos: 16.5,-59.5 + pos: 59.5,11.5 parent: 2 - - uid: 3988 + - uid: 13094 components: - type: Transform - pos: 23.5,-59.5 + pos: 54.5,-7.5 parent: 2 - - uid: 5966 +- proto: PosterLegitRenault + entities: + - uid: 13092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: 35.5,41.5 parent: 2 -- proto: GunSafeLaserCarbine +- proto: PosterLegitReportCrimes entities: - - uid: 2126 + - uid: 13096 components: - type: Transform - pos: 41.5,27.5 + pos: 37.5,16.5 parent: 2 -- proto: GunSafeRifleLecter +- proto: PosterLegitSafetyEyeProtection entities: - - uid: 2460 + - uid: 13083 components: - type: Transform - pos: 38.5,26.5 + pos: 40.5,-41.5 parent: 2 -- proto: GunSafeShotgunKammerer - entities: - - uid: 2117 + - uid: 13087 components: - type: Transform - pos: 41.5,26.5 + pos: 55.5,16.5 parent: 2 -- proto: GunSafeSubMachineGunDrozd +- proto: PosterLegitSafetyInternals entities: - - uid: 2461 + - uid: 13084 components: - type: Transform - pos: 38.5,27.5 + pos: 42.5,-41.5 parent: 2 -- proto: Handcuffs - entities: - - uid: 9397 + - uid: 13088 components: - type: Transform - pos: 25.512451,48.501656 + pos: 54.5,16.5 parent: 2 -- proto: HandheldHealthAnalyzer +- proto: PosterLegitSafetyMothDelam entities: - - uid: 12160 + - uid: 13081 components: - type: Transform - pos: 82.45164,-4.4459476 + pos: 32.5,-33.5 parent: 2 - - uid: 12368 + - uid: 14648 components: - type: Transform - pos: 38.482082,-17.438766 + rot: -1.5707963267948966 rad + pos: 70.5,22.5 parent: 2 -- proto: HandheldStationMap +- proto: PosterLegitSafetyMothEpi entities: - - uid: 9400 + - uid: 13085 components: - type: Transform - pos: 28.498549,47.61997 + pos: 53.5,-2.5 parent: 2 -- proto: HandLabeler - entities: - - uid: 5319 + - uid: 13111 components: - type: Transform - pos: 49.532963,19.552088 + pos: 79.5,4.5 parent: 2 - - uid: 5320 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 13080 components: - type: Transform - pos: 49.532963,17.552088 + pos: 23.5,-29.5 parent: 2 -- proto: HarmonicaInstrument +- proto: PosterLegitSafetyMothMeth entities: - - uid: 2957 + - uid: 13086 components: - type: Transform - pos: 39.821617,32.534893 + pos: 49.5,-9.5 parent: 2 -- proto: HarpInstrument +- proto: PosterLegitSafetyMothPiping entities: - - uid: 8319 + - uid: 3782 components: - type: Transform - pos: 20.5,-10.5 + pos: 37.5,-21.5 parent: 2 -- proto: HeatExchanger - entities: - - uid: 4492 + - uid: 13082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-51.5 + pos: 38.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12861 +- proto: PosterLegitSafetyReport + entities: + - uid: 13095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-52.5 + pos: 22.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12862 +- proto: PosterLegitSecWatch + entities: + - uid: 7732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-53.5 + pos: -2.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12904 + - uid: 8983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-45.5 + rot: 1.5707963267948966 rad + pos: 35.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: Hemostat +- proto: PosterLegitStateLaws entities: - - uid: 10071 + - uid: 7731 components: - type: Transform - pos: 67.49741,-3.281434 + pos: -4.5,-10.5 parent: 2 -- proto: HighSecCommandLocked +- proto: PosterLegitUeNo entities: - - uid: 1744 + - uid: 11093 components: - type: Transform - pos: 39.5,-16.5 + pos: 23.5,26.5 parent: 2 - - uid: 9110 +- proto: PosterLegitVacation + entities: + - uid: 13098 components: - type: Transform - pos: 18.5,38.5 + pos: 22.5,2.5 parent: 2 - - uid: 13591 +- proto: PosterMapPacked + entities: + - uid: 12314 components: - type: Transform - pos: 56.5,28.5 + pos: 15.5,2.5 parent: 2 - - uid: 13592 + - uid: 12315 components: - type: Transform - pos: 56.5,32.5 + pos: 37.5,2.5 parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 4682 + - uid: 12316 components: - type: Transform - pos: 24.5,-11.5 + pos: 33.5,16.5 parent: 2 - - uid: 5049 + - uid: 12317 components: - type: Transform - pos: 61.5,-8.5 + pos: 34.5,47.5 parent: 2 - - uid: 5744 + - uid: 12335 components: - type: Transform - pos: 12.5,12.5 + pos: 30.5,-13.5 parent: 2 - - uid: 5750 +- proto: PottedPlant1 + entities: + - uid: 6619 components: - type: Transform - pos: 24.5,-10.5 + pos: 32.48526,-7.8502135 parent: 2 - - uid: 8827 +- proto: PottedPlant19 + entities: + - uid: 2615 components: - type: Transform - pos: 102.5,-13.5 + pos: 13.5,-33.5 parent: 2 - - uid: 11849 +- proto: PottedPlant2 + entities: + - uid: 12720 components: - type: Transform - pos: 58.5,-6.5 + pos: 29.477802,5.1889386 parent: 2 - - uid: 11850 +- proto: PottedPlant22 + entities: + - uid: 2909 components: - type: Transform - pos: 58.5,-5.5 + pos: 19.5,44.5 parent: 2 - - uid: 11902 + - uid: 12726 components: - type: Transform - pos: 78.5,10.5 + pos: 30.5,44.5 parent: 2 - - uid: 11903 +- proto: PottedPlantBioluminscent + entities: + - uid: 14998 components: - type: Transform - pos: 77.5,10.5 + pos: 52.5,2.5 parent: 2 - - uid: 12254 +- proto: PottedPlantRandom + entities: + - uid: 47 components: - type: Transform - pos: 16.5,12.5 + pos: -25.5,-14.5 parent: 2 - - uid: 12255 + - uid: 81 components: - type: Transform - pos: 15.5,12.5 + pos: -7.5,-11.5 parent: 2 - - uid: 12256 + - uid: 2533 components: - type: Transform - pos: 14.5,12.5 + pos: 34.5,9.5 parent: 2 - - uid: 12257 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 4698 components: - type: Transform - pos: 14.5,14.5 + pos: 20.5,12.5 parent: 2 - - uid: 12258 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5314 components: - type: Transform - pos: 15.5,14.5 + pos: 54.5,20.5 parent: 2 - - uid: 12259 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5340 components: - type: Transform - pos: 16.5,14.5 + pos: 54.5,22.5 parent: 2 - - uid: 12260 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5344 components: - type: Transform - pos: 16.5,16.5 + pos: 59.5,25.5 parent: 2 - - uid: 12261 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 7298 components: - type: Transform - pos: 15.5,16.5 + pos: 15.5,-33.5 parent: 2 - - uid: 12262 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 7299 components: - type: Transform - pos: 14.5,16.5 + pos: 15.5,-35.5 parent: 2 -- proto: HydroponicsToolHatchet - entities: - - uid: 11125 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 7999 components: - type: Transform - pos: 54.473648,-13.481342 + pos: 3.5,1.5 parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 6755 + - uid: 8000 components: - type: Transform - pos: 41.470776,-6.4772377 + pos: 3.5,13.5 parent: 2 -- proto: hydroponicsTray - entities: - - uid: 2300 + - uid: 11003 components: - type: Transform - pos: 36.5,34.5 + pos: 54.5,1.5 parent: 2 - - uid: 2301 + - uid: 11221 components: - type: Transform - pos: 36.5,33.5 + pos: 18.5,35.5 parent: 2 - - uid: 2302 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11222 components: - type: Transform - pos: 38.5,34.5 + pos: 22.5,35.5 parent: 2 - - uid: 2303 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11808 components: - type: Transform - pos: 38.5,33.5 + pos: 45.5,16.5 parent: 2 - - uid: 6665 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 12164 components: - type: Transform - pos: 43.5,-9.5 + pos: 73.5,8.5 parent: 2 - - uid: 6666 + - uid: 12165 components: - type: Transform - pos: 43.5,-7.5 + pos: 58.5,-2.5 parent: 2 - - uid: 6667 + - uid: 14079 components: - type: Transform - pos: 44.5,-7.5 + pos: -19.5,0.5 parent: 2 - - uid: 6668 + - uid: 14080 components: - type: Transform - pos: 45.5,-7.5 + pos: -15.5,0.5 parent: 2 - - uid: 6669 + - uid: 14231 components: - type: Transform - pos: 47.5,-5.5 + pos: 79.5,29.5 parent: 2 - - uid: 6670 + - uid: 14232 components: - type: Transform - pos: 47.5,-4.5 + pos: 79.5,31.5 parent: 2 - - uid: 6671 + - uid: 14653 components: - type: Transform - pos: 45.5,-5.5 + pos: 57.5,38.5 parent: 2 - - uid: 6673 + - uid: 14956 components: - type: Transform - pos: 43.5,-5.5 + pos: 15.5,22.5 parent: 2 - - uid: 6674 +- proto: PottedPlantRD + entities: + - uid: 10662 components: - type: Transform - pos: 41.5,-5.5 + pos: 60.5,10.5 parent: 2 - - uid: 6675 +- proto: PowerCellHigh + entities: + - uid: 5631 components: - type: Transform - pos: 41.5,-4.5 + pos: 16.332455,-23.225615 parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 12659 + - uid: 5632 components: - type: Transform - pos: 41.5,-14.5 + pos: 16.4019,-23.383022 parent: 2 -- proto: InflatableWall +- proto: PowerCellRecharger entities: - - uid: 6524 + - uid: 2152 components: - type: Transform - pos: 87.5,-7.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - - uid: 6729 + - uid: 3948 components: - type: Transform - pos: 86.5,-7.5 + pos: 23.5,-23.5 parent: 2 - - uid: 6730 + - uid: 5312 components: - type: Transform - pos: 82.5,5.5 + pos: 56.5,20.5 parent: 2 - - uid: 6731 + - type: ContainerContainer + containers: + PowerCellCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False + - uid: 6794 components: - type: Transform - pos: 82.5,4.5 + pos: 19.5,-23.5 parent: 2 -- proto: IngotGold - entities: - - uid: 8824 + - type: ContainerContainer + containers: + PowerCellCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False + - uid: 7014 components: - type: Transform - pos: 89.45974,-12.337885 + pos: 17.5,24.5 parent: 2 - - uid: 12098 + - uid: 9626 components: - type: Transform - pos: 19.521435,41.66655 + pos: 46.5,2.5 parent: 2 -- proto: IngotSilver - entities: - - uid: 12100 + - uid: 11842 components: - type: Transform - pos: 17.552685,41.54155 + pos: 31.5,-14.5 parent: 2 -- proto: IntercomCommand - entities: - - uid: 4587 + - type: ContainerContainer + containers: + PowerCellCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False + - uid: 12369 components: - type: Transform - pos: 12.5,-34.5 + pos: 38.5,-17.5 parent: 2 - - uid: 7583 + - uid: 12819 components: - type: Transform - pos: 44.5,26.5 + pos: 59.5,-3.5 parent: 2 - - uid: 9436 + - uid: 13106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,42.5 + pos: 56.5,-10.5 parent: 2 - - uid: 9437 + - uid: 13107 components: - type: Transform - pos: 33.5,41.5 + pos: 63.5,-9.5 parent: 2 - - uid: 11408 +- proto: PowerCellSmall + entities: + - uid: 5313 components: - type: Transform - pos: 17.5,-2.5 + pos: 56.529827,20.631775 parent: 2 -- proto: IntercomCommon +- proto: PowerDrill entities: - - uid: 4989 + - uid: 10671 components: - type: Transform - pos: 16.5,11.5 + pos: 63.50305,8.626264 parent: 2 - - uid: 7816 +- proto: Poweredlight + entities: + - uid: 97 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-15.5 + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 parent: 2 - - uid: 8986 + - uid: 231 components: - type: Transform - pos: 32.5,16.5 + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 parent: 2 -- proto: IntercomEngineering - entities: - - uid: 4692 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 398 components: - type: Transform - pos: 30.5,-29.5 + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 parent: 2 - - uid: 4769 + - uid: 399 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-25.5 + pos: 44.5,3.5 parent: 2 -- proto: IntercomMedical - entities: - - uid: 11407 + - uid: 441 components: - type: Transform - pos: 48.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 parent: 2 -- proto: IntercomScience - entities: - - uid: 5107 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 840 components: - type: Transform - pos: 48.5,20.5 + rot: -1.5707963267948966 rad + pos: 22.5,-25.5 parent: 2 -- proto: IntercomSecurity - entities: - - uid: 7582 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1112 components: - type: Transform - pos: 28.5,26.5 + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 parent: 2 -- proto: IntercomSupply - entities: - - uid: 7743 + - uid: 1473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,25.5 + rot: -1.5707963267948966 rad + pos: 32.5,-41.5 parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 12234 + - uid: 1491 components: - type: Transform - pos: 4.5,-6.5 + rot: 1.5707963267948966 rad + pos: 28.5,-41.5 parent: 2 -- proto: JetpackMiniFilled - entities: - - uid: 10308 + - uid: 1674 components: - type: Transform - pos: 8.484015,-9.278149 + pos: 48.5,-27.5 parent: 2 - - uid: 10309 + - uid: 1765 components: - type: Transform - pos: 8.484015,-9.496899 + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 13167 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1766 components: - type: Transform - pos: 36.5,-10.5 + rot: 3.141592653589793 rad + pos: 36.5,-17.5 parent: 2 -- proto: KitchenKnife - entities: - - uid: 11124 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1922 components: - type: Transform - pos: 54.489273,-13.512592 + pos: 48.5,-29.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 1578 + - uid: 1930 components: - type: Transform - pos: 35.5,-10.5 + pos: 48.5,-33.5 parent: 2 - - uid: 2307 + - uid: 1931 components: - type: Transform - pos: 37.5,36.5 + pos: 48.5,-31.5 parent: 2 - - uid: 8860 + - uid: 1932 components: - type: Transform - pos: 107.5,-10.5 + pos: 48.5,-25.5 parent: 2 - - uid: 11429 + - uid: 2137 components: - type: Transform - pos: 76.5,5.5 + pos: 48.5,-23.5 parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 2636 + - uid: 2227 components: - type: Transform - pos: 40.5,34.5 + rot: 3.141592653589793 rad + pos: 31.5,35.5 parent: 2 - - uid: 3968 + - uid: 2741 components: - type: Transform - pos: 36.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,-1.5 parent: 2 - - uid: 5056 + - uid: 2783 components: - type: Transform - pos: 49.5,-6.5 + rot: -1.5707963267948966 rad + pos: 24.5,42.5 parent: 2 -- proto: KitchenSpike - entities: - - uid: 364 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2784 components: - type: Transform - pos: 31.5,-12.5 + rot: 1.5707963267948966 rad + pos: 21.5,42.5 parent: 2 -- proto: KnifePlastic - entities: - - uid: 3460 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2787 components: - type: Transform - pos: 40.183743,34.526638 + rot: -1.5707963267948966 rad + pos: 28.5,40.5 parent: 2 -- proto: Lamp - entities: - - uid: 5087 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3277 components: - type: Transform - pos: 30.398613,6.824299 + pos: 38.5,31.5 parent: 2 -- proto: LampBanana - entities: - - uid: 9601 + - uid: 3783 components: - type: Transform - pos: 27.665216,6.7443295 + rot: 3.141592653589793 rad + pos: 43.5,-35.5 parent: 2 -- proto: LampGold - entities: - - uid: 310 + - uid: 4054 components: - type: Transform - pos: 10.438802,4.97286 + pos: -2.5,-7.5 parent: 2 - - uid: 2722 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4122 components: - type: Transform - pos: 20.544691,33.624443 + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 parent: 2 - - uid: 2723 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4151 components: - type: Transform - pos: 20.529066,29.655691 + pos: 44.5,-21.5 parent: 2 - - uid: 2780 + - uid: 4278 components: - type: Transform - pos: 22.507973,40.51647 + rot: -1.5707963267948966 rad + pos: 37.5,-11.5 parent: 2 - - uid: 4018 + - uid: 4326 components: - type: Transform - pos: 32.49905,41.93212 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 2 - - uid: 5474 + - uid: 4562 components: - type: Transform - pos: 67.5,37.5 + rot: 3.141592653589793 rad + pos: 16.5,-5.5 parent: 2 - - uid: 11417 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4617 components: - type: Transform - pos: 54.632915,-10.081582 + rot: 1.5707963267948966 rad + pos: 25.5,6.5 parent: 2 - - uid: 11465 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4662 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.568825,20.850296 + pos: 8.5,4.5 parent: 2 - - uid: 12116 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4663 components: - type: Transform - pos: 37.37405,43.99462 + rot: -1.5707963267948966 rad + pos: 12.5,6.5 parent: 2 - - uid: 13472 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4691 components: - type: Transform - pos: 9.400621,-42.048656 + rot: 3.141592653589793 rad + pos: 18.5,5.5 parent: 2 -- proto: LampInterrogator - entities: - - uid: 8436 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4699 components: - type: Transform - pos: 30.526884,29.884686 + rot: -1.5707963267948966 rad + pos: 27.5,27.5 parent: 2 -- proto: LargeBeaker - entities: - - uid: 5323 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4700 components: - type: Transform - pos: 54.42104,17.661463 + rot: -1.5707963267948966 rad + pos: 27.5,19.5 parent: 2 -- proto: LightReplacer - entities: - - uid: 177 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4701 components: - type: Transform - pos: 5.600267,-3.347455 + pos: 23.5,25.5 parent: 2 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 13753 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4702 components: - type: Transform - pos: 52.427402,31.435076 + rot: 1.5707963267948966 rad + pos: 25.5,12.5 parent: 2 -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 1458 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4910 components: - type: Transform - pos: 32.5,-31.5 + pos: 14.5,41.5 parent: 2 - - uid: 1459 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4911 components: - type: Transform - pos: 32.5,-32.5 + rot: -1.5707963267948966 rad + pos: 15.5,35.5 parent: 2 -- proto: LockerBoozeFilled - entities: - - uid: 2901 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4990 components: - type: Transform - pos: 67.5,-13.5 + rot: 1.5707963267948966 rad + pos: 22.5,48.5 parent: 2 - - uid: 4439 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4991 components: - type: Transform - pos: 40.5,-10.5 + rot: 1.5707963267948966 rad + pos: 19.5,46.5 parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 6679 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4992 components: - type: Transform - pos: 44.5,-10.5 + rot: -1.5707963267948966 rad + pos: 35.5,46.5 parent: 2 -- proto: LockerCaptainFilledNoLaser - entities: - - uid: 4137 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4993 components: - type: Transform - pos: 37.5,41.5 + rot: -1.5707963267948966 rad + pos: 32.5,48.5 parent: 2 -- proto: LockerChemistryFilled - entities: - - uid: 9714 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5060 components: - type: Transform - pos: 52.5,-8.5 + pos: 51.5,-4.5 parent: 2 -- proto: LockerChiefEngineerFilled - entities: - - uid: 4138 + - uid: 5062 components: - type: Transform - pos: 10.5,-35.5 + pos: 30.5,30.5 parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 5191 + - uid: 5080 components: - type: Transform - pos: 58.5,-11.5 + pos: 50.5,4.5 parent: 2 -- proto: LockerDetectiveFilled - entities: - - uid: 11476 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5154 components: - type: Transform - pos: 43.5,18.5 + pos: 30.5,2.5 parent: 2 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 882 + - uid: 5164 components: - type: Transform - pos: 28.5,-33.5 + rot: 3.141592653589793 rad + pos: 58.5,-11.5 parent: 2 - - uid: 1760 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5166 components: - type: Transform - pos: 38.5,-14.5 + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 parent: 2 - - uid: 12352 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5167 components: - type: Transform - pos: 4.5,-8.5 + rot: 1.5707963267948966 rad + pos: 55.5,-5.5 parent: 2 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 4904 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5195 components: - type: Transform - pos: 20.5,-32.5 + pos: 40.5,-42.5 parent: 2 - - uid: 4905 + - uid: 5218 components: - type: Transform - pos: 20.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,-40.5 parent: 2 - - uid: 5182 + - uid: 5219 components: - type: Transform - pos: 20.5,-30.5 + rot: 3.141592653589793 rad + pos: 38.5,-40.5 parent: 2 -- proto: LockerEvidence - entities: - - uid: 2430 + - uid: 5275 components: - type: Transform - pos: 32.5,28.5 + rot: -1.5707963267948966 rad + pos: 47.5,15.5 parent: 2 - - uid: 5013 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5277 components: - type: Transform - pos: 32.5,21.5 + rot: -1.5707963267948966 rad + pos: 55.5,9.5 parent: 2 - - uid: 5018 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5278 components: - type: Transform - pos: 32.5,17.5 + rot: 3.141592653589793 rad + pos: 49.5,8.5 parent: 2 - - uid: 7980 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5279 components: - type: Transform - pos: -2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 44.5,10.5 parent: 2 - - uid: 9003 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5280 components: - type: Transform - pos: 17.5,29.5 + rot: 1.5707963267948966 rad + pos: 60.5,9.5 parent: 2 -- proto: LockerFreezer - entities: - - uid: 1646 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 5281 components: - type: Transform - pos: 29.5,-12.5 + pos: 62.5,16.5 parent: 2 -- proto: LockerFreezerVaultFilled - entities: - - uid: 7391 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5282 components: - type: Transform - pos: 19.5,39.5 + pos: 68.5,16.5 parent: 2 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 10278 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5290 components: - type: Transform - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: 71.5,13.5 parent: 2 -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 6422 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5432 components: - type: Transform - pos: 43.5,25.5 + pos: 30.5,42.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 545 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedical - entities: - - uid: 10911 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5433 components: - type: Transform - pos: 75.5,-1.5 + rot: 3.141592653589793 rad + pos: 36.5,40.5 parent: 2 -- proto: LockerMedicalFilled - entities: - - uid: 11909 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5766 components: - type: Transform - pos: 70.5,5.5 + pos: 20.5,15.5 parent: 2 - - uid: 11910 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5767 components: - type: Transform - pos: 70.5,6.5 + rot: 3.141592653589793 rad + pos: 20.5,12.5 parent: 2 -- proto: LockerMedicineFilled - entities: - - uid: 4115 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5768 components: - type: Transform - pos: 57.5,-15.5 + pos: 9.5,10.5 parent: 2 - - uid: 5098 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5769 components: - type: Transform - pos: 67.5,-6.5 + pos: 17.5,10.5 parent: 2 - - uid: 5653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5921 components: - type: Transform - pos: 65.5,4.5 + pos: 40.5,-14.5 parent: 2 - - uid: 6871 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6006 components: - type: Transform - pos: 62.5,4.5 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 parent: 2 - - uid: 6872 + - uid: 6009 components: - type: Transform - pos: 61.5,4.5 + rot: 1.5707963267948966 rad + pos: 25.5,3.5 parent: 2 - - uid: 11402 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6011 components: - type: Transform - pos: 67.5,-11.5 + rot: 3.141592653589793 rad + pos: 48.5,-1.5 parent: 2 - - uid: 11911 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6013 components: - type: Transform - pos: 74.5,5.5 + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 9618 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6014 components: - type: Transform - pos: 44.5,4.5 + rot: -1.5707963267948966 rad + pos: 12.5,-6.5 parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 2149 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6027 components: - type: Transform - pos: 11.5,30.5 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 parent: 2 -- proto: LockerResearchDirectorFilled - entities: - - uid: 10660 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6043 components: - type: Transform - pos: 61.5,11.5 + rot: -1.5707963267948966 rad + pos: 27.5,-8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 7962 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6068 components: - type: Transform - pos: 9.5,17.5 + pos: 13.5,1.5 parent: 2 - - uid: 7963 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6085 components: - type: Transform - pos: 9.5,18.5 + rot: 3.141592653589793 rad + pos: 7.5,-1.5 parent: 2 -- proto: LockerScienceFilled - entities: - - uid: 5338 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6086 components: - type: Transform - pos: 55.5,22.5 + rot: 3.141592653589793 rad + pos: 10.5,-1.5 parent: 2 - - uid: 5339 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6486 components: - type: Transform - pos: 56.5,22.5 + rot: 1.5707963267948966 rad + pos: 38.5,24.5 parent: 2 - - uid: 12829 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6487 components: - type: Transform - pos: 57.5,25.5 + rot: -1.5707963267948966 rad + pos: 41.5,24.5 parent: 2 -- proto: LockerScientist - entities: - - uid: 5322 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6537 components: - type: Transform - pos: 51.5,21.5 + pos: 56.5,20.5 parent: 2 -- proto: LockerSecurityFilled - entities: - - uid: 2468 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6538 components: - type: Transform - pos: 37.5,17.5 + rot: 3.141592653589793 rad + pos: 52.5,17.5 parent: 2 - - uid: 2469 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6630 components: - type: Transform - pos: 38.5,17.5 + rot: 3.141592653589793 rad + pos: 32.5,-7.5 parent: 2 - - uid: 2470 + - uid: 6652 components: - type: Transform - pos: 39.5,17.5 + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 parent: 2 -- proto: LockerWallMedicalFilled - entities: - - uid: 8323 + - uid: 6653 components: - type: Transform - pos: 46.5,5.5 + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 parent: 2 -- proto: LockerWardenFilledHardsuit - entities: - - uid: 7678 + - uid: 6654 components: - type: Transform - pos: 38.5,23.5 + pos: 31.5,-2.5 parent: 2 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 883 + - uid: 6657 components: - type: Transform - pos: 24.5,-33.5 + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 parent: 2 -- proto: MachineAnomalyGenerator - entities: - - uid: 5363 + - uid: 6660 components: - type: Transform - pos: 70.5,15.5 + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 parent: 2 -- proto: MachineAnomalyVessel - entities: - - uid: 5380 + - uid: 6863 components: - type: Transform - pos: 68.5,16.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - - uid: 10080 + - uid: 7034 components: - type: Transform - pos: 67.5,16.5 + pos: 4.5,-11.5 parent: 2 -- proto: MachineAPE - entities: - - uid: 5255 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,13.5 + pos: 37.5,1.5 parent: 2 - - uid: 5272 + - uid: 7295 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 7344 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 10.5,-34.5 parent: 2 -- proto: MachineArtifactAnalyzer - entities: - - uid: 8666 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7364 components: - type: Transform - pos: 64.5,27.5 + rot: -1.5707963267948966 rad + pos: 22.5,-34.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 5074 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7365 components: - type: Transform - pos: 53.5,-5.5 + rot: 3.141592653589793 rad + pos: 15.5,-36.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 5073 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7366 components: - type: Transform - pos: 52.5,-7.5 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 5731 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7470 components: - type: Transform - pos: 52.5,21.5 + rot: 3.141592653589793 rad + pos: -2.5,-5.5 parent: 2 -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 5610 + - uid: 7527 components: - type: Transform - pos: 19.614614,-38.64791 + pos: 50.5,11.5 parent: 2 -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 11948 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7528 components: - type: Transform - pos: 19.50161,-38.48987 + rot: -1.5707963267948966 rad + pos: 63.5,9.5 parent: 2 -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 1466 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 7530 components: - type: Transform - pos: 19.434057,-38.4118 + rot: 3.141592653589793 rad + pos: 59.5,13.5 parent: 2 -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 348 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 7568 components: - type: Transform - pos: 45.548477,23.915247 + rot: 3.141592653589793 rad + pos: 23.5,-32.5 parent: 2 - - uid: 7835 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7569 components: - type: Transform - pos: 45.548477,23.915247 + rot: 3.141592653589793 rad + pos: 29.5,-32.5 parent: 2 -- proto: MaintenanceFluffSpawner - entities: - - uid: 12286 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7570 components: - type: Transform - pos: 80.5,-12.5 + rot: 3.141592653589793 rad + pos: 26.5,-36.5 parent: 2 - - uid: 12842 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7574 components: - type: Transform - pos: 23.5,4.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 12855 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7577 components: - type: Transform - pos: 2.5,-8.5 + rot: 3.141592653589793 rad + pos: 54.5,-11.5 parent: 2 - - uid: 12856 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7579 components: - type: Transform - pos: 54.5,-20.5 + rot: 3.141592653589793 rad + pos: 65.5,-6.5 parent: 2 - - uid: 12857 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7581 components: - type: Transform - pos: 71.5,34.5 + rot: 1.5707963267948966 rad + pos: 68.5,6.5 parent: 2 -- proto: MaintenanceToolSpawner - entities: - - uid: 12284 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7591 components: - type: Transform - pos: 4.5,-23.5 + rot: 3.141592653589793 rad + pos: 74.5,1.5 parent: 2 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 12285 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7595 components: - type: Transform - pos: 74.5,-12.5 + rot: 3.141592653589793 rad + pos: 56.5,13.5 parent: 2 -- proto: MaterialCloth - entities: - - uid: 10295 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7683 components: - type: Transform - pos: 18.45301,-3.204442 + rot: 3.141592653589793 rad + pos: 32.5,13.5 parent: 2 -- proto: MaterialDurathread - entities: - - uid: 10296 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7684 components: - type: Transform - pos: 18.624886,-3.516942 + pos: 37.5,15.5 parent: 2 -- proto: MaterialWoodPlank - entities: - - uid: 2898 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7688 components: - type: Transform - pos: 65.69583,-13.395477 + pos: 50.5,21.5 parent: 2 - - uid: 2899 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7720 components: - type: Transform - pos: 65.43021,-13.629852 + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 -- proto: MechEquipmentGrabberSmall - entities: - - uid: 13763 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7726 components: - type: Transform - pos: 8.491839,32.52443 + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 parent: 2 -- proto: MedicalBed - entities: - - uid: 4978 + - uid: 7768 components: - type: Transform - pos: 81.5,-1.5 + rot: 1.5707963267948966 rad + pos: 17.5,40.5 parent: 2 - - uid: 7800 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7813 components: - type: Transform - pos: 81.5,-0.5 + pos: 19.5,-2.5 parent: 2 - - uid: 10902 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7815 components: - type: Transform - pos: 76.5,-6.5 + pos: 14.5,25.5 parent: 2 - - uid: 10903 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7816 components: - type: Transform - pos: 77.5,-8.5 + pos: -20.5,0.5 parent: 2 - - uid: 11304 + - uid: 7831 components: - type: Transform - pos: 62.5,-10.5 + rot: 1.5707963267948966 rad + pos: 17.5,31.5 parent: 2 - - uid: 11820 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7832 components: - type: Transform - pos: 66.5,4.5 + rot: 3.141592653589793 rad + pos: 23.5,29.5 parent: 2 - - uid: 11821 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7840 components: - type: Transform - pos: 60.5,4.5 + rot: 1.5707963267948966 rad + pos: 6.5,25.5 parent: 2 -- proto: MedicalTechFab - entities: - - uid: 9369 + - uid: 7850 components: - type: Transform - pos: 71.5,8.5 + pos: 20.5,37.5 parent: 2 -- proto: MedkitAdvancedFilled - entities: - - uid: 11919 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7851 components: - type: Transform - pos: 56.50263,-10.253292 + pos: 25.5,37.5 parent: 2 -- proto: MedkitBruteFilled - entities: - - uid: 11915 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7857 components: - type: Transform - pos: 72.38061,6.2433724 + pos: 34.5,43.5 parent: 2 -- proto: MedkitBurnFilled - entities: - - uid: 11914 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7958 components: - type: Transform - pos: 72.61498,6.4464974 + pos: -0.5,0.5 parent: 2 -- proto: MedkitCombatFilled - entities: - - uid: 11920 + - uid: 7959 components: - type: Transform - pos: 63.555206,-11.384237 + rot: 1.5707963267948966 rad + pos: 3.5,9.5 parent: 2 -- proto: MedkitFilled - entities: - - uid: 4140 + - uid: 7960 components: - type: Transform - pos: 69.457695,-7.378622 + rot: 1.5707963267948966 rad + pos: 3.5,13.5 parent: 2 - - uid: 4996 + - uid: 8129 components: - type: Transform - pos: 32.5,48.5 + pos: 37.5,-22.5 parent: 2 - - uid: 7390 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8130 components: - type: Transform - pos: 18.523928,24.634445 + rot: 1.5707963267948966 rad + pos: 29.5,-26.5 parent: 2 - - uid: 9625 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8157 components: - type: Transform - pos: 46.54082,2.560578 + pos: -14.5,0.5 parent: 2 - - uid: 11307 + - uid: 8266 components: - type: Transform - pos: 72.38061,6.5246224 + rot: 3.141592653589793 rad + pos: 55.5,22.5 parent: 2 - - uid: 11908 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8335 components: - type: Transform - pos: 57.486534,-3.4860651 + pos: 20.5,-14.5 parent: 2 -- proto: MedkitOxygenFilled - entities: - - uid: 11916 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8336 components: - type: Transform - pos: 72.61498,6.0402474 + rot: -1.5707963267948966 rad + pos: 23.5,-19.5 parent: 2 -- proto: MedkitRadiationFilled - entities: - - uid: 11917 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8339 components: - type: Transform - pos: 72.34936,5.8058724 + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 11918 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8530 components: - type: Transform - pos: 72.61498,5.5714974 + rot: -1.5707963267948966 rad + pos: 26.5,-39.5 parent: 2 -- proto: MicrophoneInstrument - entities: - - uid: 9739 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8567 components: - type: Transform - pos: 19.519224,-9.931319 + rot: -1.5707963267948966 rad + pos: 42.5,11.5 parent: 2 -- proto: MinimoogInstrument - entities: - - uid: 12692 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8568 components: - type: Transform rot: -1.5707963267948966 rad - pos: 106.5,-17.5 + pos: 42.5,3.5 parent: 2 -- proto: Mirror - entities: - - uid: 9 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8573 components: - type: Transform - pos: 10.5,14.5 + pos: 39.5,19.5 parent: 2 - - uid: 27 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8574 components: - type: Transform - pos: 40.5,36.5 + rot: 3.141592653589793 rad + pos: 33.5,17.5 parent: 2 - - uid: 1532 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8642 components: - type: Transform - pos: 11.5,14.5 + pos: 79.5,-3.5 parent: 2 - - uid: 11907 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9061 components: - type: Transform - pos: 76.5,8.5 + rot: 1.5707963267948966 rad + pos: 105.5,-23.5 parent: 2 -- proto: MopBucket - entities: - - uid: 13116 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9062 components: - type: Transform - pos: 5.687049,-5.5586905 + rot: 1.5707963267948966 rad + pos: 105.5,-11.5 parent: 2 -- proto: MopItem - entities: - - uid: 13119 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9063 components: - type: Transform - pos: 5.5737967,-5.4805655 + pos: 111.5,-15.5 parent: 2 -- proto: Morgue - entities: - - uid: 1012 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,27.5 + parent: 2 + - uid: 10451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 + rot: -1.5707963267948966 rad + pos: 64.5,22.5 parent: 2 - - uid: 2119 + - uid: 10708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-1.5 + rot: 3.141592653589793 rad + pos: 70.5,1.5 parent: 2 - - uid: 4215 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-2.5 + pos: 19.5,-40.5 parent: 2 - - uid: 4314 + - uid: 11118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-3.5 + rot: -1.5707963267948966 rad + pos: 57.5,-14.5 parent: 2 - - uid: 4315 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-0.5 + pos: 14.5,41.5 parent: 2 - - uid: 4316 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-1.5 + rot: 3.141592653589793 rad + pos: 41.5,-1.5 parent: 2 - - uid: 4317 + - uid: 11791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-2.5 + pos: 14.5,-23.5 parent: 2 - - uid: 5122 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-3.5 + rot: 1.5707963267948966 rad + pos: 60.5,-10.5 parent: 2 - - uid: 9727 + - uid: 11856 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,5.5 + pos: 63.5,-10.5 parent: 2 - - uid: 9728 + - uid: 11857 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,4.5 + pos: 62.5,-6.5 parent: 2 - - uid: 12767 + - uid: 11859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 + pos: 60.5,4.5 parent: 2 - - uid: 13495 + - uid: 11862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-3.5 + pos: 63.5,4.5 parent: 2 - - uid: 13496 + - uid: 11864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-4.5 + pos: 66.5,4.5 parent: 2 -- proto: MouseTimedSpawner - entities: - - uid: 12800 + - uid: 11865 components: - type: Transform - pos: 4.5,-29.5 + rot: 1.5707963267948966 rad + pos: 70.5,7.5 parent: 2 -- proto: Multitool - entities: - - uid: 4976 + - uid: 11869 components: - type: Transform - pos: 19.486778,46.604305 + pos: 77.5,5.5 parent: 2 - - uid: 5872 + - uid: 11870 components: - type: Transform - pos: 31.020313,-14.418215 + pos: 55.5,3.5 parent: 2 - - uid: 7451 + - uid: 11906 components: - type: Transform - pos: 17.945803,24.61882 + rot: -1.5707963267948966 rad + pos: 74.5,6.5 parent: 2 - - uid: 10792 + - uid: 12977 components: - type: Transform - pos: 69.28111,-15.352209 + rot: 3.141592653589793 rad + pos: 40.5,-48.5 parent: 2 -- proto: NetworkConfigurator - entities: - - uid: 909 + - uid: 12978 components: - type: Transform - pos: 27.306864,-29.442156 + rot: 3.141592653589793 rad + pos: 35.5,-48.5 parent: 2 - - uid: 8340 + - uid: 13321 components: - type: Transform - pos: 21.44037,46.69382 + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 parent: 2 -- proto: NitrogenCanister - entities: - - uid: 1928 + - uid: 13434 components: - type: Transform - pos: 50.5,-23.5 + rot: -1.5707963267948966 rad + pos: 46.5,-28.5 parent: 2 - - uid: 4306 + - uid: 13604 components: - type: Transform - pos: 43.5,-37.5 + rot: 1.5707963267948966 rad + pos: 53.5,37.5 parent: 2 - - uid: 4311 + - uid: 13683 components: - type: Transform - pos: 43.5,-38.5 + pos: 19.5,24.5 parent: 2 - - uid: 4571 + - uid: 13961 components: - type: Transform - pos: 32.5,-27.5 + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 parent: 2 - - uid: 5746 + - uid: 13962 components: - type: Transform - pos: 49.5,-13.5 + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 parent: 2 - - uid: 10442 + - uid: 13964 components: - type: Transform - pos: 58.5,11.5 + rot: 1.5707963267948966 rad + pos: -24.5,-3.5 parent: 2 -- proto: NitrousOxideCanister - entities: - - uid: 4334 + - uid: 13965 components: - type: Transform - pos: 44.5,-37.5 + rot: -1.5707963267948966 rad + pos: -22.5,-20.5 parent: 2 -- proto: NTDefaultCircuitBoard - entities: - - uid: 13754 + - uid: 14151 components: - type: Transform - pos: 52.427402,31.3257 + rot: 1.5707963267948966 rad + pos: 71.5,22.5 parent: 2 -- proto: NuclearBomb - entities: - - uid: 12093 + - uid: 14412 components: - type: Transform - pos: 18.5,42.5 + rot: 3.141592653589793 rad + pos: 80.5,29.5 parent: 2 -- proto: NutimovCircuitBoard - entities: - - uid: 13755 + - uid: 14527 components: - type: Transform - pos: 52.427402,31.23195 + rot: -1.5707963267948966 rad + pos: 96.5,30.5 parent: 2 -- proto: OperatingTable - entities: - - uid: 24 + - uid: 14528 components: - type: Transform - pos: 65.5,-4.5 + rot: 3.141592653589793 rad + pos: 91.5,28.5 parent: 2 - - uid: 5085 + - uid: 14529 components: - type: Transform - pos: 56.5,-14.5 + pos: 91.5,32.5 parent: 2 - - uid: 5186 + - uid: 14594 components: - type: Transform - pos: 74.5,-2.5 + rot: -1.5707963267948966 rad + pos: 36.5,26.5 parent: 2 - - uid: 11399 +- proto: PoweredlightExterior + entities: + - uid: 5664 components: - type: Transform - pos: 66.5,-10.5 - parent: 2 - - uid: 12109 + anchored: False + rot: -1.5707963267948966 rad + pos: 11.9375,38.984375 + parent: 126 + - uid: 14590 components: - type: Transform - pos: 55.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,42.5 parent: 2 -- proto: OreBox - entities: - - uid: 13731 + - uid: 14595 components: - type: Transform - pos: -17.5,17.5 + rot: -1.5707963267948966 rad + pos: 82.5,25.5 parent: 2 - - uid: 13764 + - uid: 14597 components: - type: Transform - pos: 8.5,15.5 + rot: -1.5707963267948966 rad + pos: 77.5,35.5 parent: 2 -- proto: OreProcessor - entities: - - uid: 12839 + - uid: 14627 components: - type: Transform - pos: 9.5,20.5 + rot: -1.5707963267948966 rad + pos: 64.5,42.5 parent: 2 -- proto: OxygenCanister +- proto: PoweredlightLED entities: - - uid: 945 + - uid: 10984 components: - type: Transform - pos: 42.5,-38.5 + rot: 3.141592653589793 rad + pos: 85.5,28.5 parent: 2 - - uid: 1467 + - uid: 10985 components: - type: Transform - pos: 50.5,-25.5 + pos: 85.5,32.5 parent: 2 - - uid: 2833 + - uid: 11109 components: - type: Transform - pos: 42.5,-37.5 + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 parent: 2 - - uid: 4570 +- proto: PoweredlightSodium + entities: + - uid: 3197 components: - type: Transform - pos: 32.5,-28.5 + rot: 1.5707963267948966 rad + pos: 13.5,-51.5 parent: 2 - - uid: 5745 + - uid: 4270 components: - type: Transform - pos: 50.5,-13.5 + pos: 18.5,-45.5 parent: 2 - - uid: 6424 + - uid: 4271 components: - type: Transform - pos: 46.5,7.5 + pos: 24.5,-45.5 parent: 2 - - uid: 7969 + - uid: 8032 components: - type: Transform - pos: 5.5,19.5 + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 parent: 2 - - uid: 9620 +- proto: PoweredSmallLight + entities: + - uid: 21 components: - type: Transform - pos: 47.5,2.5 + rot: 3.141592653589793 rad + pos: -20.5,-16.5 parent: 2 - - uid: 10314 + - uid: 196 components: - type: Transform - pos: 8.5,-5.5 + rot: 3.141592653589793 rad + pos: 4.5,-16.5 parent: 2 - - uid: 10441 + - uid: 317 components: - type: Transform - pos: 58.5,10.5 + rot: -1.5707963267948966 rad + pos: 13.5,4.5 parent: 2 - - uid: 12997 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 344 components: - type: Transform - pos: 34.5,-44.5 + rot: 1.5707963267948966 rad + pos: 8.5,16.5 parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 5720 + - uid: 583 components: - type: Transform - pos: 73.5,-12.5 + pos: 0.5,-9.5 parent: 2 - - uid: 5734 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 608 components: - type: Transform - pos: 72.5,-9.5 + pos: -8.5,-9.5 parent: 2 - - uid: 10847 + - uid: 693 components: - type: Transform - pos: 45.502346,27.566444 + rot: 3.141592653589793 rad + pos: -8.5,-16.5 parent: 2 -- proto: PaintingMonkey - entities: - - uid: 5783 + - uid: 1811 components: - type: Transform - pos: 37.485016,-2.1577168 + rot: 3.141592653589793 rad + pos: 10.5,12.5 parent: 2 -- proto: PaintingMoony - entities: - - uid: 12334 + - uid: 2005 components: - type: Transform - pos: 28.5,6.5 + rot: -1.5707963267948966 rad + pos: 9.5,19.5 parent: 2 -- proto: PaintingOlympia - entities: - - uid: 1195 + - uid: 2149 components: - type: Transform - pos: 35.5,42.5 + rot: 3.141592653589793 rad + pos: 5.5,15.5 parent: 2 -- proto: PaintingSadClown - entities: - - uid: 12832 + - uid: 2424 components: - type: Transform - pos: 28.5,8.5 + rot: 3.141592653589793 rad + pos: 30.5,23.5 parent: 2 -- proto: PaladinCircuitBoard - entities: - - uid: 13757 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2425 components: - type: Transform - pos: 52.427402,31.028826 + pos: 30.5,21.5 parent: 2 -- proto: PaperBin10 - entities: - - uid: 1483 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2426 components: - type: Transform - pos: 8.5,4.5 + rot: 3.141592653589793 rad + pos: 30.5,17.5 parent: 2 -- proto: PaperBin5 - entities: - - uid: 6913 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2482 components: - type: Transform - pos: 43.5,19.5 + pos: 42.5,20.5 parent: 2 -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 4800 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2491 components: - type: Transform - pos: 20.5,-40.5 + rot: 1.5707963267948966 rad + pos: 69.5,-12.5 parent: 2 -- proto: ParticleAcceleratorEmitterForeUnfinished - entities: - - uid: 4147 + - uid: 2492 components: - type: Transform - pos: 21.5,-42.5 + rot: 3.141592653589793 rad + pos: 73.5,-3.5 parent: 2 -- proto: ParticleAcceleratorEmitterPortUnfinished - entities: - - uid: 4144 + - uid: 2534 components: - type: Transform - pos: 22.5,-42.5 + pos: 37.5,9.5 parent: 2 -- proto: ParticleAcceleratorEmitterStarboardUnfinished - entities: - - uid: 4143 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2535 components: - type: Transform - pos: 20.5,-42.5 + pos: 30.5,8.5 parent: 2 -- proto: ParticleAcceleratorEndCapUnfinished - entities: - - uid: 4145 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2536 components: - type: Transform - pos: 21.5,-39.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 -- proto: ParticleAcceleratorFuelChamberUnfinished - entities: - - uid: 4148 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2537 components: - type: Transform - pos: 21.5,-40.5 + rot: -1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 -- proto: ParticleAcceleratorPowerBoxUnfinished - entities: - - uid: 4142 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2539 components: - type: Transform - pos: 21.5,-41.5 + rot: 1.5707963267948966 rad + pos: 34.5,9.5 parent: 2 -- proto: PartRodMetal - entities: - - uid: 2896 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2919 components: - type: Transform - pos: 65.52396,-13.395477 + pos: 64.5,-15.5 parent: 2 - - uid: 2897 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2965 components: - type: Transform - pos: 65.85208,-13.442352 + rot: 1.5707963267948966 rad + pos: 4.5,39.5 parent: 2 - - uid: 5641 + - uid: 3147 components: - type: Transform - pos: 17.877897,-26.451574 + pos: 59.5,38.5 parent: 2 - - uid: 5642 + - uid: 3148 components: - type: Transform - pos: 17.877897,-26.451574 + rot: 3.141592653589793 rad + pos: 59.5,34.5 parent: 2 - - uid: 11126 + - uid: 3278 components: - type: Transform - pos: 54.520523,-14.325092 + pos: 49.5,35.5 parent: 2 - - uid: 13701 + - uid: 3410 components: - type: Transform - pos: 9.65173,15.441351 + pos: 70.5,34.5 parent: 2 - - uid: 13702 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3432 components: - type: Transform - pos: 9.65173,15.441351 + rot: -1.5707963267948966 rad + pos: 71.5,30.5 parent: 2 - - uid: 13703 + - uid: 3447 components: - type: Transform - pos: 9.65173,15.441351 + rot: 3.141592653589793 rad + pos: 70.5,27.5 parent: 2 - - uid: 13704 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4034 components: - type: Transform - pos: 9.65173,15.441351 + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 parent: 2 - - uid: 13705 + - uid: 4071 components: - type: Transform - pos: 9.65173,15.441351 + rot: 3.141592653589793 rad + pos: 16.5,-14.5 parent: 2 -- proto: Pen - entities: - - uid: 137 + - uid: 4149 components: - type: Transform - pos: -2.0928464,-12.376232 + rot: -1.5707963267948966 rad + pos: 72.5,-8.5 parent: 2 - - uid: 312 + - uid: 4403 components: - type: Transform - pos: 11.095052,4.613485 + rot: 3.141592653589793 rad + pos: 46.5,27.5 parent: 2 - - uid: 7415 + - uid: 4438 components: - type: Transform - pos: 23.446625,15.655876 + rot: -1.5707963267948966 rad + pos: 4.5,-35.5 parent: 2 - - uid: 11973 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4470 components: - type: Transform - pos: 55.38082,-10.156126 + pos: 2.5,-28.5 parent: 2 - - uid: 11975 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4471 components: - type: Transform - pos: 18.920185,-2.2376757 + rot: 3.141592653589793 rad + pos: 2.5,-32.5 parent: 2 - - uid: 11976 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4474 components: - type: Transform - pos: -2.4757,-12.360289 + pos: 8.5,-15.5 parent: 2 - - uid: 11977 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4475 components: - type: Transform - pos: 10.85696,4.4728694 + pos: 9.5,-22.5 parent: 2 - - uid: 11978 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4476 components: - type: Transform - pos: 21.523584,22.514828 + pos: 16.5,-21.5 parent: 2 - - uid: 11979 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4478 components: - type: Transform - pos: 44.764744,23.837742 + rot: 3.141592653589793 rad + pos: 13.5,-13.5 parent: 2 - - uid: 11980 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4479 components: - type: Transform - pos: 63.3999,10.027362 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 2 -- proto: PersonalAI - entities: - - uid: 7414 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4539 components: - type: Transform - pos: 23.509125,15.577751 + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 parent: 2 - - uid: 11216 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4540 components: - type: Transform - pos: 26.514572,47.589886 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 parent: 2 - - uid: 11217 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4563 components: - type: Transform - pos: 70.51922,36.549946 + rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 2 -- proto: PhoneInstrument - entities: - - uid: 7008 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4564 components: - type: Transform - pos: 34.02968,41.62158 + rot: -1.5707963267948966 rad + pos: 23.5,9.5 parent: 2 -- proto: PianoInstrument - entities: - - uid: 1663 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4582 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-7.5 + pos: 18.5,-31.5 parent: 2 -- proto: Pickaxe - entities: - - uid: 8255 + - uid: 4583 components: - type: Transform - pos: 9.562899,15.659067 + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 parent: 2 -- proto: PlantBGoneSpray - entities: - - uid: 6754 + - uid: 4584 components: - type: Transform - pos: 45.80647,-6.7391644 + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 parent: 2 -- proto: PlaqueAtmos - entities: - - uid: 4576 + - uid: 4637 components: - type: Transform - pos: 29.5,-25.5 + rot: 3.141592653589793 rad + pos: 11.5,33.5 parent: 2 -- proto: PlasmaCanister - entities: - - uid: 1678 + - uid: 4813 components: - type: Transform - pos: 50.5,-31.5 + rot: 1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 - - uid: 12995 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4814 components: - type: Transform - pos: 44.5,-38.5 + rot: 1.5707963267948966 rad + pos: 8.5,13.5 parent: 2 - - uid: 12996 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4909 components: - type: Transform - pos: 34.5,-43.5 + pos: 19.5,27.5 parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 2092 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5119 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-6.5 + pos: 67.5,-8.5 parent: 2 - - uid: 5245 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-7.5 + rot: 3.141592653589793 rad + pos: 36.5,-36.5 parent: 2 - - uid: 7722 + - uid: 5264 components: - type: Transform - pos: 28.5,25.5 + pos: 50.5,15.5 parent: 2 - - uid: 7753 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5274 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,30.5 + pos: 49.5,24.5 parent: 2 - - uid: 7754 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,28.5 + pos: 70.5,40.5 parent: 2 - - uid: 7755 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5465 components: - type: Transform - pos: 31.5,25.5 + pos: 70.5,37.5 parent: 2 - - uid: 7756 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,26.5 + pos: 34.5,-38.5 parent: 2 - - uid: 7759 + - uid: 5674 components: - type: Transform - pos: 29.5,25.5 + pos: 68.5,42.5 parent: 2 - - uid: 7760 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5675 components: - type: Transform - pos: 30.5,25.5 + rot: 1.5707963267948966 rad + pos: 66.5,38.5 parent: 2 - - uid: 7794 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5676 components: - type: Transform - pos: 81.5,-2.5 + pos: 67.5,29.5 parent: 2 - - uid: 10120 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5723 components: - type: Transform - pos: 76.5,-5.5 + pos: 73.5,-12.5 parent: 2 - - uid: 12081 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,20.5 + parent: 2 + - uid: 6492 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,9.5 + pos: 19.5,-10.5 parent: 2 - - uid: 12107 + - uid: 6496 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,11.5 + pos: 19.5,-12.5 parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 368 + - uid: 6505 components: - type: Transform - pos: 6.5,27.5 + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 2 - - uid: 371 + - uid: 6511 components: - type: Transform - pos: 4.5,23.5 + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 parent: 2 - - uid: 482 + - uid: 6659 components: - type: Transform - pos: 3.5,-17.5 + rot: 3.141592653589793 rad + pos: 30.5,-12.5 parent: 2 - - uid: 483 + - uid: 6661 components: - type: Transform - pos: 3.5,-14.5 + rot: 3.141592653589793 rad + pos: 43.5,-10.5 parent: 2 - - uid: 484 + - uid: 6748 components: - type: Transform - pos: 4.5,-14.5 + rot: 1.5707963267948966 rad + pos: 46.5,-9.5 parent: 2 - - uid: 5874 + - uid: 6820 components: - type: Transform - pos: -0.5,-27.5 + pos: 8.5,34.5 parent: 2 - - uid: 7460 + - uid: 6858 components: - type: Transform - pos: 6.5,23.5 + pos: 67.5,-13.5 parent: 2 - - uid: 7461 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7342 components: - type: Transform - pos: 4.5,27.5 + rot: 1.5707963267948966 rad + pos: 9.5,-27.5 parent: 2 - - uid: 7668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7417 components: - type: Transform - pos: 6.5,15.5 + rot: -1.5707963267948966 rad + pos: 78.5,-0.5 parent: 2 - - uid: 7852 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7675 components: - type: Transform - pos: 4.5,15.5 + rot: 1.5707963267948966 rad + pos: 14.5,16.5 parent: 2 -- proto: PlayerStationAi - entities: - - uid: 13752 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7676 components: - type: Transform - pos: 56.5,35.5 + rot: 1.5707963267948966 rad + pos: 14.5,12.5 parent: 2 -- proto: Plunger - entities: - - uid: 9718 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7715 components: - type: Transform - pos: 10.992045,13.876669 + pos: 21.5,18.5 parent: 2 - - uid: 9719 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7819 components: - type: Transform - pos: 6.0254927,-3.2604024 + rot: 3.141592653589793 rad + pos: 56.5,47.5 parent: 2 -- proto: PlushieNar - entities: - - uid: 5400 + - uid: 7828 components: - type: Transform - pos: 62.48992,18.519245 + rot: -1.5707963267948966 rad + pos: 75.5,11.5 parent: 2 -- proto: PlushieSharkGrey - entities: - - uid: 5727 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7829 components: - type: Transform - pos: 25.597736,6.3236885 + rot: 1.5707963267948966 rad + pos: 65.5,7.5 parent: 2 -- proto: PlushieSharkPink - entities: - - uid: 13077 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7830 components: - type: Transform - pos: 6.6388106,-13.475947 + pos: 12.5,18.5 parent: 2 -- proto: PortableFlasher - entities: - - uid: 8412 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7861 components: - type: Transform - pos: 31.5,26.5 + pos: 75.5,-15.5 parent: 2 -- proto: PortableGeneratorJrPacman - entities: - - uid: 801 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7862 components: - type: Transform - pos: 13.5,-28.5 + pos: 87.5,-14.5 parent: 2 - - uid: 4181 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7863 components: - type: Transform - pos: 70.5,-7.5 + pos: 86.5,-2.5 parent: 2 - - uid: 5741 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7864 components: - type: Transform - pos: 12.5,17.5 + rot: -1.5707963267948966 rad + pos: 87.5,-9.5 parent: 2 - - uid: 7854 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7865 components: - type: Transform - pos: 23.5,-7.5 + rot: -1.5707963267948966 rad + pos: 84.5,5.5 parent: 2 - - uid: 7855 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7866 components: - type: Transform - pos: 6.5,-9.5 + pos: 81.5,12.5 parent: 2 - - uid: 11881 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7903 components: - type: Transform - pos: 23.5,5.5 + pos: -20.5,-9.5 parent: 2 - - uid: 12360 + - uid: 8081 components: - type: Transform - pos: 9.5,-22.5 + rot: -1.5707963267948966 rad + pos: 5.5,35.5 parent: 2 - - uid: 12362 + - uid: 8376 components: - type: Transform - pos: 67.5,11.5 + pos: 58.5,32.5 parent: 2 - - uid: 13153 + - uid: 8527 components: - type: Transform - pos: 57.5,5.5 + rot: 3.141592653589793 rad + pos: 18.5,-18.5 parent: 2 - - uid: 13154 + - uid: 8528 components: - type: Transform - pos: 45.5,41.5 + rot: 1.5707963267948966 rad + pos: 13.5,-42.5 parent: 2 -- proto: PortableGeneratorPacman - entities: - - uid: 4301 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8529 components: - type: Transform - pos: 9.5,-31.5 + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 parent: 2 -- proto: PortableScrubber - entities: - - uid: 4977 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8565 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 6765 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8566 components: - type: Transform - pos: 46.5,-40.5 + pos: 56.5,6.5 parent: 2 - - uid: 7807 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8571 components: - type: Transform - pos: 24.5,-23.5 + rot: 1.5707963267948966 rad + pos: 38.5,28.5 parent: 2 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 5294 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8572 components: - type: Transform - pos: 30.5,-22.5 + rot: -1.5707963267948966 rad + pos: 41.5,28.5 parent: 2 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 13105 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8601 components: - type: Transform - pos: 10.5,16.5 + rot: -1.5707963267948966 rad + pos: 58.5,12.5 parent: 2 -- proto: PosterContrabandClown - entities: - - uid: 11021 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8602 components: - type: Transform - pos: 27.5,4.5 + rot: -1.5707963267948966 rad + pos: 58.5,8.5 parent: 2 -- proto: PosterContrabandDonk - entities: - - uid: 13090 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8603 components: - type: Transform - pos: 58.5,-16.5 + rot: 3.141592653589793 rad + pos: 71.5,44.5 parent: 2 -- proto: PosterContrabandEAT - entities: - - uid: 6763 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8609 components: - type: Transform - pos: 30.5,-8.5 + pos: 30.5,26.5 parent: 2 -- proto: PosterContrabandGreyTide - entities: - - uid: 739 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8639 components: - type: Transform - pos: 30.5,-18.5 + pos: 81.5,-0.5 parent: 2 -- proto: PosterContrabandHackingGuide - entities: - - uid: 8671 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8640 components: - type: Transform - pos: 31.5,-13.5 + rot: 3.141592653589793 rad + pos: 76.5,-8.5 parent: 2 -- proto: PosterContrabandHaveaPuff - entities: - - uid: 13100 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8641 components: - type: Transform - pos: 44.5,-8.5 + rot: -1.5707963267948966 rad + pos: 82.5,-6.5 parent: 2 -- proto: PosterContrabandMissingGloves - entities: - - uid: 11068 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8833 components: - type: Transform - pos: 34.5,-18.5 + rot: 3.141592653589793 rad + pos: 34.5,3.5 parent: 2 -- proto: PosterContrabandMoth - entities: - - uid: 13102 + - uid: 8844 components: - type: Transform - pos: 77.5,-14.5 + rot: 1.5707963267948966 rad + pos: 102.5,-12.5 parent: 2 -- proto: PosterContrabandRedRum - entities: - - uid: 7286 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9365 components: - type: Transform - pos: 40.5,-2.5 + rot: 1.5707963267948966 rad + pos: 77.5,9.5 parent: 2 -- proto: PosterContrabandWaffleCorp - entities: - - uid: 13091 + - uid: 10707 components: - type: Transform - pos: 42.5,27.5 + rot: 3.141592653589793 rad + pos: 80.5,1.5 parent: 2 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 11289 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10710 components: - type: Transform - pos: 56.5,21.5 + pos: 100.5,-19.5 parent: 2 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 12830 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11018 components: - type: Transform - pos: 60.5,5.5 + pos: 69.5,23.5 parent: 2 -- proto: PosterLegitCarpMount - entities: - - uid: 12833 + - uid: 11097 components: - type: Transform - pos: 17.5,25.5 + pos: 30.5,-19.5 parent: 2 -- proto: PosterLegitCleanliness - entities: - - uid: 11818 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + pos: 39.5,-19.5 parent: 2 -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 7287 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11099 components: - type: Transform - pos: 28.5,-7.5 + pos: 46.5,-18.5 parent: 2 -- proto: PosterLegitDickGumshue - entities: - - uid: 13089 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11100 components: - type: Transform - pos: 68.5,-14.5 + pos: 44.5,25.5 parent: 2 -- proto: PosterLegitEnlist - entities: - - uid: 13104 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11438 components: - type: Transform - pos: 42.5,26.5 + rot: 3.141592653589793 rad + pos: 38.5,3.5 parent: 2 -- proto: PosterLegitFoamForceAd - entities: - - uid: 11022 + - uid: 11522 components: - type: Transform - pos: 20.5,16.5 + pos: 70.5,-15.5 parent: 2 -- proto: PosterLegitFruitBowl - entities: - - uid: 13101 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11805 components: - type: Transform - pos: 41.5,-9.5 + rot: -1.5707963267948966 rad + pos: 50.5,-11.5 parent: 2 -- proto: PosterLegitHighClassMartini - entities: - - uid: 13099 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11807 components: - type: Transform - pos: 38.5,-1.5 + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 parent: 2 -- proto: PosterLegitIan - entities: - - uid: 10251 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11823 + components: + - type: Transform + pos: 89.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11824 components: - type: Transform - pos: 17.5,-6.5 + pos: 85.5,-20.5 parent: 2 -- proto: PosterLegitIonRifle - entities: - - uid: 13103 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11825 components: - type: Transform - pos: 42.5,28.5 + pos: 92.5,-19.5 parent: 2 -- proto: PosterLegitLoveIan - entities: - - uid: 10252 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11845 components: - type: Transform - pos: 21.5,-3.5 + pos: 64.5,-1.5 parent: 2 -- proto: PosterLegitMime - entities: - - uid: 12831 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11846 components: - type: Transform - pos: 24.5,5.5 + pos: 67.5,-1.5 parent: 2 -- proto: PosterLegitNanomichiAd - entities: - - uid: 12320 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12283 components: - type: Transform - pos: 13.5,-4.5 + pos: 12.5,31.5 parent: 2 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 404 + - uid: 12354 components: - type: Transform - pos: 29.5,37.5 + rot: 3.141592653589793 rad + pos: 5.5,-9.5 parent: 2 - - uid: 7464 + - uid: 12355 components: - type: Transform - pos: 17.5,-1.5 + rot: -1.5707963267948966 rad + pos: 16.5,-13.5 parent: 2 - - uid: 8157 + - uid: 12841 components: - type: Transform - pos: -21.5,-11.5 + rot: 3.141592653589793 rad + pos: 36.5,3.5 parent: 2 - - uid: 8158 + - uid: 12980 components: - type: Transform - pos: -10.5,-11.5 + rot: 3.141592653589793 rad + pos: 49.5,-48.5 parent: 2 - - uid: 8159 + - uid: 12981 components: - type: Transform - pos: -7.5,0.5 + pos: 46.5,-44.5 parent: 2 - - uid: 11092 + - uid: 12991 components: - type: Transform - pos: 17.5,38.5 + rot: 1.5707963267948966 rad + pos: 31.5,-47.5 parent: 2 - - uid: 11854 + - uid: 13330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + rot: 3.141592653589793 rad + pos: -26.5,-22.5 parent: 2 - - uid: 12318 + - uid: 13331 components: - type: Transform - pos: 29.5,43.5 + pos: -26.5,0.5 parent: 2 - - uid: 12319 + - uid: 13569 components: - type: Transform - pos: 20.5,47.5 + rot: 1.5707963267948966 rad + pos: 45.5,37.5 parent: 2 -- proto: PosterLegitNTTGC - entities: - - uid: 13097 + - uid: 13598 components: - type: Transform - pos: 13.5,8.5 + rot: 3.141592653589793 rad + pos: 58.5,40.5 parent: 2 -- proto: PosterLegitPeriodicTable - entities: - - uid: 13093 + - uid: 13716 components: - type: Transform - pos: 59.5,11.5 + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 parent: 2 - - uid: 13094 + - uid: 13782 components: - type: Transform - pos: 54.5,-7.5 + rot: 1.5707963267948966 rad + pos: -15.5,-24.5 parent: 2 -- proto: PosterLegitRenault - entities: - - uid: 13092 + - uid: 13959 components: - type: Transform - pos: 35.5,41.5 + pos: -18.5,-22.5 parent: 2 -- proto: PosterLegitReportCrimes - entities: - - uid: 13096 + - uid: 13960 components: - type: Transform - pos: 37.5,16.5 + rot: 3.141592653589793 rad + pos: -8.5,-23.5 parent: 2 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 13083 + - uid: 14085 components: - type: Transform - pos: 40.5,-41.5 + rot: 3.141592653589793 rad + pos: 36.5,33.5 parent: 2 - - uid: 13087 + - uid: 14086 components: - type: Transform - pos: 55.5,16.5 + pos: 50.5,28.5 parent: 2 -- proto: PosterLegitSafetyInternals - entities: - - uid: 13084 + - uid: 14149 components: - type: Transform - pos: 42.5,-41.5 + rot: 3.141592653589793 rad + pos: 74.5,20.5 parent: 2 - - uid: 13088 + - uid: 14526 components: - type: Transform - pos: 54.5,16.5 + rot: -1.5707963267948966 rad + pos: 41.5,33.5 parent: 2 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 13081 + - uid: 14530 components: - type: Transform - pos: 32.5,-33.5 + rot: -1.5707963267948966 rad + pos: 82.5,27.5 parent: 2 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 13085 + - uid: 14531 components: - type: Transform - pos: 53.5,-2.5 + rot: -1.5707963267948966 rad + pos: 82.5,33.5 parent: 2 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 13080 + - uid: 15007 components: - type: Transform - pos: 23.5,-29.5 + rot: 3.141592653589793 rad + pos: 41.5,-12.5 parent: 2 -- proto: PosterLegitSafetyMothMeth +- proto: Protolathe entities: - - uid: 13086 + - uid: 5305 components: - type: Transform - pos: 49.5,-9.5 + pos: 53.5,18.5 parent: 2 -- proto: PosterLegitSafetyMothPiping + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold +- proto: ProtolatheMachineCircuitboard entities: - - uid: 3782 + - uid: 12658 components: - type: Transform - pos: 37.5,-21.5 + pos: 41.5,-16.5 parent: 2 - - uid: 13082 +- proto: Rack + entities: + - uid: 251 components: - type: Transform - pos: 38.5,-41.5 + pos: -0.5,-5.5 parent: 2 -- proto: PosterLegitSafetyReport - entities: - - uid: 13095 + - uid: 553 components: - type: Transform - pos: 22.5,34.5 + pos: 5.5,31.5 parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 7732 + - uid: 826 components: - type: Transform - pos: -2.5,-6.5 + pos: 27.5,-29.5 parent: 2 - - uid: 8983 + - uid: 827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,16.5 + pos: 25.5,-29.5 parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 7731 + - uid: 1288 components: - type: Transform - pos: -4.5,-10.5 + pos: 25.5,-38.5 parent: 2 -- proto: PosterLegitUeNo - entities: - - uid: 11093 + - uid: 1462 components: - type: Transform - pos: 23.5,26.5 + pos: 19.5,-38.5 parent: 2 -- proto: PosterLegitVacation - entities: - - uid: 13098 + - uid: 1750 components: - type: Transform - pos: 22.5,2.5 + pos: 35.5,-17.5 parent: 2 -- proto: PosterMapPacked - entities: - - uid: 7744 + - uid: 1751 components: - type: Transform - pos: -14.5,-11.5 + pos: 36.5,-17.5 parent: 2 - - uid: 12314 + - uid: 1752 components: - type: Transform - pos: 15.5,2.5 + pos: 37.5,-17.5 parent: 2 - - uid: 12315 + - uid: 1753 components: - type: Transform - pos: 37.5,2.5 + pos: 41.5,-16.5 parent: 2 - - uid: 12316 + - uid: 1754 components: - type: Transform - pos: 33.5,16.5 + pos: 41.5,-15.5 parent: 2 - - uid: 12317 + - uid: 1755 components: - type: Transform - pos: 34.5,47.5 + pos: 41.5,-14.5 parent: 2 - - uid: 12335 + - uid: 1756 components: - type: Transform - pos: 30.5,-13.5 + pos: 37.5,-14.5 parent: 2 -- proto: PottedPlant1 - entities: - - uid: 6619 + - uid: 1757 components: - type: Transform - pos: 32.48526,-7.8502135 + pos: 36.5,-14.5 parent: 2 -- proto: PottedPlant19 - entities: - - uid: 2615 + - uid: 1786 components: - type: Transform - pos: 13.5,-33.5 + pos: 33.5,-17.5 parent: 2 -- proto: PottedPlant2 - entities: - - uid: 12720 + - uid: 2222 components: - type: Transform - pos: 29.477802,5.1889386 + pos: 50.5,28.5 parent: 2 -- proto: PottedPlant22 - entities: - - uid: 2908 + - uid: 3162 components: - type: Transform - pos: 30.5,44.5 + pos: 56.5,25.5 parent: 2 - - uid: 2909 + - uid: 5342 components: - type: Transform - pos: 19.5,44.5 + pos: 60.5,25.5 parent: 2 -- proto: PottedPlantBioluminscent - entities: - - uid: 5046 + - uid: 5375 components: - type: Transform - pos: 51.5,4.5 + pos: 52.5,11.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 101 + - uid: 5439 components: - type: Transform - pos: -21.5,-12.5 + pos: 9.5,-14.5 parent: 2 - - uid: 2533 + - uid: 5717 components: - type: Transform - pos: 34.5,9.5 + pos: 73.5,-12.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 4698 + - uid: 5732 components: - type: Transform - pos: 20.5,12.5 + pos: 72.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5314 + - uid: 5965 components: - type: Transform - pos: 54.5,20.5 + rot: 3.141592653589793 rad + pos: 17.5,5.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5340 + - uid: 7270 components: - type: Transform - pos: 54.5,22.5 + pos: 30.5,-30.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5344 + - uid: 7584 components: - type: Transform - pos: 59.5,25.5 + pos: 38.5,28.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7298 + - uid: 7680 components: - type: Transform - pos: 15.5,-33.5 + pos: 31.5,-48.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7299 + - uid: 8173 components: - type: Transform - pos: 15.5,-35.5 + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7999 + - uid: 9017 components: - type: Transform - pos: 3.5,1.5 + rot: -1.5707963267948966 rad + pos: 110.5,-19.5 parent: 2 - - uid: 8000 + - uid: 9366 components: - type: Transform - pos: 3.5,13.5 + pos: 17.5,8.5 parent: 2 - - uid: 11221 + - uid: 9605 components: - type: Transform - pos: 18.5,35.5 + pos: 27.5,5.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11222 + - uid: 9640 components: - type: Transform - pos: 22.5,35.5 + rot: -1.5707963267948966 rad + pos: 6.5,40.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11808 + - uid: 10303 components: - type: Transform - pos: 45.5,16.5 + pos: 8.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 12164 + - uid: 10304 components: - type: Transform - pos: 73.5,8.5 + pos: 8.5,-8.5 parent: 2 - - uid: 12165 + - uid: 10791 components: - type: Transform - pos: 58.5,-2.5 + pos: 69.5,-15.5 parent: 2 -- proto: PottedPlantRD - entities: - - uid: 10662 + - uid: 10795 components: - type: Transform - pos: 60.5,10.5 + pos: 79.5,-16.5 parent: 2 -- proto: PowerCellHigh - entities: - - uid: 5631 + - uid: 10796 components: - type: Transform - pos: 16.332455,-23.225615 + pos: 80.5,-16.5 parent: 2 - - uid: 5632 + - uid: 10822 components: - type: Transform - pos: 16.4019,-23.383022 + pos: 81.5,11.5 parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 2829 + - uid: 10823 components: - type: Transform - pos: 11.5,21.5 + pos: 81.5,9.5 parent: 2 - - uid: 3948 + - uid: 10833 components: - type: Transform - pos: 23.5,-23.5 + pos: 65.5,11.5 parent: 2 - - uid: 5312 + - uid: 11409 components: - type: Transform - pos: 56.5,20.5 + pos: 31.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - - uid: 6794 + - uid: 12408 components: - type: Transform - pos: 19.5,-23.5 + pos: 45.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - - uid: 7014 + - uid: 12843 components: - type: Transform - pos: 17.5,24.5 + pos: 23.5,4.5 parent: 2 - - uid: 9626 + - uid: 13445 components: - type: Transform - pos: 46.5,2.5 + pos: 43.5,-35.5 parent: 2 - - uid: 11842 + - uid: 13560 components: - type: Transform - pos: 31.5,-14.5 + pos: 44.5,28.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - - uid: 12369 + - uid: 13966 components: - type: Transform - pos: 38.5,-17.5 + rot: -1.5707963267948966 rad + pos: -13.5,-24.5 parent: 2 - - uid: 12819 + - uid: 14408 components: - type: Transform - pos: 59.5,-3.5 + rot: 3.141592653589793 rad + pos: 82.5,34.5 parent: 2 - - uid: 13106 +- proto: RadiationCollectorFullTank + entities: + - uid: 8166 components: - type: Transform - pos: 56.5,-10.5 + pos: 28.5,-52.5 parent: 2 - - uid: 13107 + - uid: 8216 components: - type: Transform - pos: 63.5,-9.5 + pos: 14.5,-50.5 parent: 2 -- proto: PowerCellSmall - entities: - - uid: 5313 + - uid: 8217 components: - type: Transform - pos: 56.529827,20.631775 + pos: 14.5,-51.5 parent: 2 -- proto: PowerDrill - entities: - - uid: 10671 + - uid: 8218 components: - type: Transform - pos: 63.50305,8.626264 + pos: 28.5,-50.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 97 + - uid: 8219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-29.5 + pos: 28.5,-51.5 parent: 2 - - uid: 231 + - uid: 8227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 + pos: 14.5,-52.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 399 +- proto: RadioHandheld + entities: + - uid: 1325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 + pos: 21.5,-19.5 parent: 2 - - uid: 441 + - uid: 2165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + pos: 15.384224,35.641438 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 840 + - uid: 2166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 + pos: 15.602974,35.641438 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1112 + - uid: 4090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-15.5 + pos: 21.304989,-19.377043 parent: 2 - - uid: 1473 + - uid: 7267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-41.5 + pos: 21.664364,-19.377043 parent: 2 - - uid: 1491 + - uid: 7268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-41.5 + pos: 21.492489,-19.283293 parent: 2 - - uid: 1674 + - uid: 8693 components: - type: Transform - pos: 48.5,-27.5 + pos: 32.390015,26.521107 parent: 2 - - uid: 1765 + - uid: 8694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 + pos: 32.546265,26.521107 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1766 + - uid: 8695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-17.5 + pos: 32.68689,26.505482 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1922 +- proto: Railing + entities: + - uid: 6491 components: - type: Transform - pos: 48.5,-29.5 + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 parent: 2 - - uid: 1930 + - uid: 6493 components: - type: Transform - pos: 48.5,-33.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 2 - - uid: 1931 + - uid: 6506 components: - type: Transform - pos: 48.5,-31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 parent: 2 - - uid: 1932 + - uid: 6510 components: - type: Transform - pos: 48.5,-25.5 + rot: -1.5707963267948966 rad + pos: 22.5,-12.5 parent: 2 - - uid: 2137 + - uid: 6662 components: - type: Transform - pos: 48.5,-23.5 + rot: 3.141592653589793 rad + pos: 47.5,-8.5 parent: 2 - - uid: 2155 + - uid: 6663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: 46.5,-8.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2157 + - uid: 13640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 + pos: 53.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2783 + - uid: 13641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,42.5 + pos: 54.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2784 + - uid: 13642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,42.5 + pos: 55.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2787 +- proto: RandomArcade + entities: + - uid: 8653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,40.5 + pos: 83.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3783 +- proto: RandomArtifactSpawner + entities: + - uid: 10421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-35.5 + pos: 64.5,28.5 parent: 2 - - uid: 4054 + - uid: 10422 components: - type: Transform - pos: -2.5,-7.5 + pos: 62.5,28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4122 +- proto: RandomBoard + entities: + - uid: 11863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 + pos: 36.5,-17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4151 + - uid: 12094 components: - type: Transform - pos: 44.5,-21.5 + pos: 35.5,-17.5 parent: 2 - - uid: 4278 + - uid: 12358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 + pos: 37.5,-14.5 parent: 2 - - uid: 4562 + - uid: 12359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 + pos: 37.5,-17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4617 +- proto: RandomPainting + entities: + - uid: 6945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 + pos: 19.5,17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4662 + - uid: 12820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,4.5 + pos: 8.5,17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4663 +- proto: RandomPosterAny + entities: + - uid: 2270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,6.5 + pos: 79.5,9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4691 + - uid: 5532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 + pos: 52.5,32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4699 + - uid: 7827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,27.5 + rot: 3.141592653589793 rad + pos: 68.5,33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4700 + - uid: 8584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,19.5 + pos: 58.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4701 + - uid: 11520 components: - type: Transform - pos: 23.5,25.5 + pos: 14.5,-22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4702 + - uid: 14779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,12.5 + rot: 3.141592653589793 rad + pos: 10.5,31.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4910 +- proto: RandomPosterContraband + entities: + - uid: 2271 components: - type: Transform - pos: 14.5,41.5 + pos: 69.5,41.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4911 + - uid: 2274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,35.5 + pos: 40.5,39.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4990 + - uid: 5528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,48.5 + pos: 53.5,41.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4991 + - uid: 11176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,46.5 + pos: 14.5,6.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4992 + - uid: 14750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,46.5 + pos: 14.5,30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4993 +- proto: RandomPosterLegit + entities: + - uid: 2566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,48.5 + pos: 34.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5060 + - uid: 7573 components: - type: Transform - pos: 51.5,-4.5 + pos: 10.5,2.5 parent: 2 - - uid: 5080 + - uid: 8117 components: - type: Transform - pos: 50.5,4.5 + pos: 20.5,2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5154 + - uid: 8635 components: - type: Transform - pos: 30.5,2.5 + pos: 68.5,37.5 parent: 2 - - uid: 5164 + - uid: 8670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-11.5 + pos: 32.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5166 + - uid: 11163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + pos: 15.5,19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5167 + - uid: 11169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-5.5 + pos: 18.5,4.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5195 + - uid: 11194 components: - type: Transform - pos: 40.5,-42.5 + pos: 57.5,4.5 parent: 2 - - uid: 5218 + - uid: 14749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-40.5 + pos: 20.5,19.5 parent: 2 - - uid: 5219 + - uid: 14955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-40.5 + pos: 19.5,25.5 parent: 2 - - uid: 5275 + - uid: 14995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,15.5 + pos: 75.5,5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5277 +- proto: RandomSoap + entities: + - uid: 8162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 + pos: 4.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5278 + - uid: 11905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,8.5 + pos: 78.5,7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5279 + - uid: 14652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,10.5 + pos: 59.5,34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5280 +- proto: RandomSpawner + entities: + - uid: 3433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 + pos: 70.5,27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 5281 + - uid: 5688 components: - type: Transform - pos: 62.5,16.5 + pos: 17.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5282 + - uid: 5690 components: - type: Transform - pos: 68.5,16.5 + pos: 25.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5290 + - uid: 5691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,13.5 + pos: 15.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5432 + - uid: 8932 components: - type: Transform - pos: 30.5,42.5 + pos: 70.5,29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5433 + - uid: 9308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,40.5 + pos: 68.5,8.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5766 + - uid: 11866 components: - type: Transform - pos: 20.5,15.5 + pos: 57.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5767 + - uid: 11867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,12.5 + pos: 62.5,-15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5768 + - uid: 11868 components: - type: Transform - pos: 9.5,10.5 + pos: 59.5,-16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5769 + - uid: 11874 components: - type: Transform - pos: 17.5,10.5 + pos: 12.5,15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5921 + - uid: 11876 components: - type: Transform - pos: 40.5,-14.5 + pos: 20.5,26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6009 + - uid: 11879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,3.5 + pos: 83.5,7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6010 + - uid: 11880 components: - type: Transform - pos: 43.5,0.5 + pos: 68.5,11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6011 + - uid: 11884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-1.5 + pos: 71.5,37.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6013 + - uid: 11893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 + pos: 18.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6014 + - uid: 11895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 + pos: 21.5,37.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6027 + - uid: 12409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: 44.5,-19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6043 + - uid: 12410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 + pos: 29.5,-20.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6068 + - uid: 12411 components: - type: Transform - pos: 13.5,1.5 + pos: 27.5,-19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6085 + - uid: 12412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-1.5 + pos: 25.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6086 + - uid: 12413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 + pos: 36.5,1.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6486 + - uid: 12414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,24.5 + pos: 47.5,-1.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6487 + - uid: 12415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 + pos: 25.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6537 + - uid: 12417 components: - type: Transform - pos: 56.5,20.5 + pos: 19.5,14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6538 + - uid: 12418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,17.5 + pos: 16.5,10.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6630 + - uid: 12419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 + pos: 4.5,10.5 parent: 2 - - uid: 6652 + - uid: 12420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 + pos: 7.5,0.5 parent: 2 - - uid: 6653 + - uid: 13155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 + pos: 56.5,6.5 parent: 2 - - uid: 6654 +- proto: RandomVending + entities: + - uid: 8261 components: - type: Transform - pos: 31.5,-2.5 + pos: 24.5,18.5 parent: 2 - - uid: 6657 +- proto: RandomVendingDrinks + entities: + - uid: 8001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: 6.5,13.5 parent: 2 - - uid: 6660 + - uid: 8262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-5.5 + pos: 24.5,17.5 parent: 2 - - uid: 7034 + - uid: 9350 components: - type: Transform - pos: 4.5,-11.5 + pos: 27.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7294 + - uid: 9612 components: - type: Transform - pos: 37.5,1.5 + pos: 25.5,3.5 parent: 2 - - uid: 7295 + - uid: 11032 components: - type: Transform - pos: 22.5,1.5 + pos: 20.5,35.5 parent: 2 - - uid: 7344 +- proto: RandomVendingSnacks + entities: + - uid: 8002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 + pos: 5.5,13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7364 +- proto: Recycler + entities: + - uid: 829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-34.5 + pos: 9.5,34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7365 + - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-36.5 + pos: -0.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7366 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-34.5 + pos: 47.5,-31.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7470 + - uid: 361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 47.5,-29.5 parent: 2 - - uid: 7527 + - uid: 367 components: - type: Transform - pos: 50.5,11.5 + rot: 1.5707963267948966 rad + pos: 47.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7528 + - uid: 382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 7530 + - uid: 391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,13.5 + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 7568 + - uid: 685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-32.5 + pos: 33.5,-30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7569 + - uid: 1463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-32.5 + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7570 + - uid: 2363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-36.5 + pos: 38.5,25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7574 + - uid: 2364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 + pos: 41.5,25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7577 + - uid: 2411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-11.5 + pos: 36.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7579 + - uid: 3949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-6.5 + pos: 33.5,-32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7581 + - uid: 3950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,6.5 + pos: 34.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7591 + - uid: 4230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,1.5 + pos: 34.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7595 + - uid: 4258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,13.5 + pos: 37.5,-30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7683 + - uid: 4259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 + pos: 37.5,-31.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7684 + - uid: 4264 components: - type: Transform - pos: 37.5,15.5 + pos: 37.5,-32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7688 + - uid: 4265 components: - type: Transform - pos: 50.5,21.5 + pos: 36.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7719 + - uid: 8699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-14.5 + pos: 63.5,26.5 parent: 2 - - uid: 7720 + - uid: 10088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 + pos: 64.5,26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7723 + - uid: 12296 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-14.5 + pos: 40.5,29.5 parent: 2 - - uid: 7724 + - uid: 12442 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-14.5 + pos: 39.5,29.5 parent: 2 - - uid: 7726 + - uid: 12984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 + pos: 45.5,-48.5 parent: 2 - - uid: 7768 + - uid: 12985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,40.5 + pos: 45.5,-47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7813 + - uid: 12986 components: - type: Transform - pos: 19.5,-2.5 + pos: 45.5,-46.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7814 + - uid: 12987 components: - type: Transform - pos: 10.5,28.5 + pos: 45.5,-45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7815 + - uid: 12988 components: - type: Transform - pos: 14.5,25.5 + pos: 45.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7831 +- proto: ReinforcedWindow + entities: + - uid: 6 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,31.5 + pos: -10.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7832 + - uid: 13 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,29.5 + pos: -7.5,-4.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7850 + - uid: 17 components: - type: Transform - pos: 20.5,37.5 + pos: -7.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7851 + - uid: 25 components: - type: Transform - pos: 25.5,37.5 + pos: -4.5,-11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7856 + - uid: 45 components: - type: Transform - pos: 18.5,24.5 + pos: -4.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7857 + - uid: 46 components: - type: Transform - pos: 34.5,43.5 + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7957 + - uid: 79 components: - type: Transform - pos: -6.5,0.5 + pos: -3.5,1.5 parent: 2 - - uid: 7958 + - uid: 80 components: - type: Transform - pos: -0.5,0.5 + pos: -1.5,2.5 parent: 2 - - uid: 7959 + - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,9.5 + pos: -21.5,-7.5 parent: 2 - - uid: 7960 + - uid: 119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + pos: -4.5,-8.5 parent: 2 - - uid: 8129 + - uid: 120 components: - type: Transform - pos: 37.5,-22.5 + pos: -4.5,-9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8130 + - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-26.5 + pos: -3.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8266 + - uid: 124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,22.5 + pos: -2.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8286 + - uid: 125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,15.5 + pos: -1.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8335 + - uid: 237 components: - type: Transform - pos: 20.5,-14.5 + pos: 4.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8336 + - uid: 325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 + pos: -4.5,-4.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8339 + - uid: 326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 + pos: -3.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8530 + - uid: 327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-39.5 + pos: -1.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8567 + - uid: 337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,11.5 + pos: -20.5,-11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8568 + - uid: 341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,3.5 + pos: -11.5,2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8569 + - uid: 345 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,29.5 + pos: -4.5,-16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8573 + - uid: 397 components: - type: Transform - pos: 39.5,19.5 + pos: 2.5,6.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8574 + - uid: 400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 + pos: 2.5,7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8584 + - uid: 418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,34.5 + pos: 53.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8642 + - uid: 427 components: - type: Transform - pos: 79.5,-3.5 + pos: 55.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8849 + - uid: 445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,18.5 + pos: 60.5,12.5 parent: 2 - - uid: 9061 + - uid: 446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-23.5 + pos: 61.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9062 + - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-11.5 + pos: 63.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9063 + - uid: 465 components: - type: Transform - pos: 111.5,-15.5 + pos: 65.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9717 + - uid: 483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-8.5 + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 parent: 2 - - uid: 10450 + - uid: 560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,27.5 + pos: 14.5,-2.5 parent: 2 - - uid: 10451 + - uid: 561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,22.5 + pos: 15.5,-2.5 parent: 2 - - uid: 10452 + - uid: 574 components: - type: Transform - pos: 58.5,27.5 + pos: 65.5,14.5 parent: 2 - - uid: 10453 + - uid: 622 components: - type: Transform - pos: 54.5,27.5 + pos: 28.5,29.5 parent: 2 - - uid: 10708 + - uid: 674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10928 + - uid: 680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-39.5 + rot: -1.5707963267948966 rad + pos: -25.5,-7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11118 + - uid: 689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-14.5 + pos: -25.5,-0.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11225 + - uid: 813 components: - type: Transform - pos: 14.5,41.5 + pos: 27.5,-26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11791 + - uid: 814 components: - type: Transform - pos: 14.5,-23.5 + pos: 25.5,-26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11855 + - uid: 862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-10.5 + pos: 19.5,-30.5 parent: 2 - - uid: 11856 + - uid: 863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-10.5 + pos: 19.5,-32.5 parent: 2 - - uid: 11857 + - uid: 864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: 27.5,-34.5 parent: 2 - - uid: 11859 + - uid: 865 components: - type: Transform - pos: 60.5,4.5 + pos: 28.5,-34.5 parent: 2 - - uid: 11862 + - uid: 866 components: - type: Transform - pos: 63.5,4.5 + pos: 25.5,-34.5 parent: 2 - - uid: 11864 + - uid: 867 components: - type: Transform - pos: 66.5,4.5 + pos: 24.5,-34.5 parent: 2 - - uid: 11865 + - uid: 928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,7.5 + pos: 14.5,-33.5 parent: 2 - - uid: 11869 + - uid: 929 components: - type: Transform - pos: 77.5,5.5 + pos: 14.5,-35.5 parent: 2 - - uid: 11870 + - uid: 930 components: - type: Transform - pos: 55.5,3.5 + pos: 14.5,-36.5 parent: 2 - - uid: 11906 + - uid: 931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,6.5 + pos: 13.5,-37.5 parent: 2 - - uid: 12977 + - uid: 932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-48.5 + pos: 12.5,-37.5 parent: 2 - - uid: 12978 + - uid: 934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-48.5 + pos: 10.5,-37.5 parent: 2 - - uid: 13434 + - uid: 968 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-28.5 + pos: 4.5,32.5 parent: 2 - - uid: 13602 + - uid: 982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,33.5 + pos: 20.5,-37.5 parent: 2 - - uid: 13603 + - uid: 983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,33.5 + pos: 19.5,-37.5 parent: 2 - - uid: 13604 + - uid: 984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,30.5 + pos: 22.5,-37.5 parent: 2 - - uid: 13605 + - uid: 985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,30.5 + pos: 23.5,-37.5 parent: 2 - - uid: 13646 + - uid: 986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,36.5 + pos: 24.5,-38.5 parent: 2 - - uid: 13647 + - uid: 987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,36.5 + pos: 18.5,-38.5 parent: 2 - - uid: 13648 + - uid: 988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,41.5 + pos: 18.5,-41.5 parent: 2 -- proto: PoweredlightExterior - entities: - - uid: 5606 + - uid: 989 components: - type: Transform - pos: 14.5,-44.5 + pos: 18.5,-42.5 parent: 2 - - uid: 5607 + - uid: 990 components: - type: Transform - pos: 28.5,-46.5 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 2 - - uid: 7836 + - uid: 991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 + pos: 17.5,-43.5 parent: 2 -- proto: PoweredlightSodium - entities: - - uid: 7961 + - uid: 992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,15.5 + pos: 16.5,-43.5 parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 317 + - uid: 994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 + pos: 19.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 583 + - uid: 995 components: - type: Transform - pos: 0.5,-9.5 + pos: 20.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1811 + - uid: 996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: 21.5,-44.5 parent: 2 - - uid: 2292 + - uid: 997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,37.5 + pos: 22.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2293 + - uid: 998 components: - type: Transform - pos: 40.5,35.5 + pos: 23.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2294 + - uid: 1001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,32.5 + pos: 25.5,-43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2295 + - uid: 1002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,33.5 + pos: 26.5,-43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2424 + - uid: 1003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 + pos: 24.5,-42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2425 + - uid: 1004 components: - type: Transform - pos: 30.5,21.5 + pos: 24.5,-41.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2426 + - uid: 1052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 + pos: 2.5,11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2482 + - uid: 1061 components: - type: Transform - pos: 42.5,20.5 + pos: 2.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2534 + - uid: 1231 components: - type: Transform - pos: 37.5,9.5 + rot: 3.141592653589793 rad + pos: 56.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2535 + - uid: 1251 components: - type: Transform - pos: 30.5,8.5 + pos: 33.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2536 + - uid: 1256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + rot: 3.141592653589793 rad + pos: 52.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2537 + - uid: 1275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 + rot: 3.141592653589793 rad + pos: 55.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2539 + - uid: 1308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,9.5 + pos: 7.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2919 + - uid: 1309 components: - type: Transform - pos: 64.5,-15.5 + pos: 6.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3409 + - uid: 1310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,30.5 + pos: 6.5,-26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3410 + - uid: 1311 components: - type: Transform - pos: 70.5,34.5 + pos: 6.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3447 + - uid: 1312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,27.5 + pos: 6.5,-30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4034 + - uid: 1313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-9.5 + pos: 6.5,-31.5 parent: 2 - - uid: 4071 + - uid: 1314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 + pos: 6.5,-32.5 parent: 2 - - uid: 4149 + - uid: 1315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-8.5 + pos: 5.5,-32.5 parent: 2 - - uid: 4438 + - uid: 1320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-35.5 + pos: 2.5,8.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4470 + - uid: 1322 components: - type: Transform - pos: 2.5,-28.5 + pos: 2.5,10.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4471 + - uid: 1342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-32.5 + pos: 1.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4474 + - uid: 1343 components: - type: Transform - pos: 8.5,-15.5 + pos: 0.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4475 + - uid: 1344 components: - type: Transform - pos: 9.5,-22.5 + pos: -1.5,-28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4476 + - uid: 1345 components: - type: Transform - pos: 16.5,-21.5 + pos: -1.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4478 + - uid: 1363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 + pos: 1.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4479 + - uid: 1364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + pos: 0.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4539 + - uid: 1365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 + pos: -0.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4540 + - uid: 1366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 + pos: 1.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4563 + - uid: 1367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,5.5 + pos: 0.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4564 + - uid: 1368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 + pos: -0.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4582 + - uid: 1526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-31.5 + pos: 0.5,1.5 parent: 2 - - uid: 4583 + - uid: 1556 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: -13.5,-2.5 parent: 2 - - uid: 4584 + - uid: 1735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-29.5 + pos: 42.5,-16.5 parent: 2 - - uid: 4813 + - uid: 1736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 + pos: 42.5,-15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4814 + - uid: 1737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 + pos: 42.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4907 + - uid: 1808 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,33.5 + pos: -18.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4909 + - uid: 1809 components: - type: Transform - pos: 19.5,27.5 + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5119 + - uid: 1855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 + pos: -3.5,0.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5229 + - uid: 1948 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-36.5 + pos: 52.5,39.5 parent: 2 - - uid: 5264 + - uid: 2028 components: - type: Transform - pos: 50.5,15.5 + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5274 + - uid: 2053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,24.5 + pos: 4.5,28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5464 + - uid: 2055 components: - type: Transform - pos: 70.5,40.5 + pos: 5.5,28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5465 + - uid: 2056 components: - type: Transform - pos: 70.5,37.5 + pos: 4.5,25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5611 + - uid: 2057 components: - type: Transform - pos: 34.5,-38.5 + pos: 5.5,25.5 parent: 2 - - uid: 5674 + - uid: 2059 components: - type: Transform - pos: 68.5,42.5 + pos: 4.5,22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5675 + - uid: 2060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,38.5 + pos: 5.5,22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5676 + - uid: 2167 components: - type: Transform - pos: 67.5,29.5 + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5723 + - uid: 2210 components: - type: Transform - pos: 73.5,-12.5 + rot: 3.141592653589793 rad + pos: 47.5,30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6492 + - uid: 2213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 + rot: 3.141592653589793 rad + pos: 60.5,36.5 parent: 2 - - uid: 6496 + - uid: 2231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 + pos: 75.5,23.5 parent: 2 - - uid: 6505 + - uid: 2240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 28.5,21.5 parent: 2 - - uid: 6511 + - uid: 2241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 + pos: 28.5,20.5 parent: 2 - - uid: 6521 + - uid: 2242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,28.5 + pos: 28.5,18.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6659 + - uid: 2243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 + pos: 28.5,17.5 parent: 2 - - uid: 6661 + - uid: 2256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-10.5 + pos: 31.5,21.5 parent: 2 - - uid: 6748 + - uid: 2257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-9.5 + pos: 31.5,17.5 parent: 2 - - uid: 6858 + - uid: 2284 components: - type: Transform - pos: 67.5,-13.5 + pos: 44.5,34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7013 + - uid: 2285 components: - type: Transform - pos: 6.5,32.5 + pos: 44.5,35.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7015 + - uid: 2286 components: - type: Transform - pos: 12.5,31.5 + pos: 44.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7342 + - uid: 2367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 + pos: 37.5,24.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7417 + - uid: 2368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-0.5 + pos: 37.5,23.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7675 + - uid: 2369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,16.5 + pos: 38.5,20.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7676 + - uid: 2370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,12.5 + pos: 37.5,21.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7715 + - uid: 2373 components: - type: Transform - pos: 21.5,18.5 + pos: 42.5,24.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7819 + - uid: 2374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,29.5 + pos: 42.5,22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7822 + - uid: 2427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,42.5 + pos: 88.5,-6.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7824 + - uid: 2458 components: - type: Transform - pos: 55.5,48.5 + pos: 43.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7825 + - uid: 2459 components: - type: Transform - pos: 57.5,48.5 + pos: 41.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7826 + - uid: 2476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,24.5 + pos: 33.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7827 + - uid: 2483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,19.5 + pos: 37.5,-28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7828 + - uid: 2736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,11.5 + pos: -26.5,-0.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7829 + - uid: 2745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,7.5 + pos: 15.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7830 + - uid: 2746 components: - type: Transform - pos: 12.5,18.5 + pos: 14.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7861 + - uid: 2747 components: - type: Transform - pos: 75.5,-15.5 + pos: 13.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7862 + - uid: 2748 components: - type: Transform - pos: 87.5,-14.5 + pos: 23.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7863 + - uid: 2749 components: - type: Transform - pos: 86.5,-2.5 + pos: 22.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7864 + - uid: 2750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,-9.5 + pos: 21.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7865 + - uid: 2752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,5.5 + pos: 21.5,43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7866 + - uid: 2753 components: - type: Transform - pos: 81.5,12.5 + pos: 24.5,43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7968 + - uid: 2754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 + pos: 27.5,38.5 parent: 2 - - uid: 8332 + - uid: 2755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 + pos: 27.5,43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8334 + - uid: 2786 components: - type: Transform - pos: 14.5,-16.5 + pos: -4.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8526 + - uid: 2817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-40.5 + pos: 22.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8527 + - uid: 2818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-40.5 + pos: 23.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8528 + - uid: 2819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-42.5 + pos: 24.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8529 + - uid: 2820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 25.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8565 + - uid: 2821 components: - type: Transform - pos: 47.5,7.5 + pos: 26.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8566 + - uid: 2822 components: - type: Transform - pos: 56.5,6.5 + pos: 27.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8570 + - uid: 2823 components: - type: Transform - pos: 36.5,31.5 + pos: 28.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8571 + - uid: 2824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 + pos: 29.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8572 + - uid: 2825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,28.5 + pos: 30.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8601 + - uid: 2826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,12.5 + pos: 31.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8602 + - uid: 2827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,8.5 + pos: 32.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8603 + - uid: 2859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,44.5 + pos: 60.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8609 + - uid: 2860 components: - type: Transform - pos: 30.5,26.5 + pos: 61.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8639 + - uid: 2861 components: - type: Transform - pos: 81.5,-0.5 + pos: 62.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8640 + - uid: 2862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-8.5 + pos: 63.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8641 + - uid: 2863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-6.5 + pos: 62.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8833 + - uid: 2864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 + pos: 63.5,-14.5 parent: 2 - - uid: 8844 + - uid: 2865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-12.5 + pos: 60.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9365 + - uid: 2866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,9.5 + pos: 61.5,-14.5 parent: 2 - - uid: 10707 + - uid: 2867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,1.5 + pos: 59.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10710 + - uid: 3069 components: - type: Transform - pos: 100.5,-19.5 + pos: 42.5,40.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11097 + - uid: 3070 components: - type: Transform - pos: 30.5,-19.5 + pos: 41.5,40.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11098 + - uid: 3086 components: - type: Transform - pos: 39.5,-19.5 + pos: 36.5,46.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11099 + - uid: 3087 components: - type: Transform - pos: 46.5,-18.5 + pos: 36.5,45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11100 + - uid: 3088 components: - type: Transform - pos: 44.5,25.5 + pos: 18.5,45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11438 + - uid: 3089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 + pos: 18.5,44.5 parent: 2 - - uid: 11521 + - uid: 3098 components: - type: Transform - pos: 54.5,-17.5 + pos: 48.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11522 + - uid: 3099 components: - type: Transform - pos: 70.5,-15.5 + pos: 48.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11805 + - uid: 3100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-11.5 + pos: 47.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11807 + - uid: 3101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-14.5 + pos: 46.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11823 + - uid: 3102 components: - type: Transform - pos: 89.5,-18.5 + pos: 45.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11824 + - uid: 3103 components: - type: Transform - pos: 85.5,-20.5 + pos: 45.5,47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11825 + - uid: 3104 components: - type: Transform - pos: 92.5,-19.5 + pos: 44.5,47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11845 + - uid: 3105 components: - type: Transform - pos: 64.5,-1.5 + pos: 43.5,47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11846 + - uid: 3110 components: - type: Transform - pos: 67.5,-1.5 + pos: 46.5,45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12354 + - uid: 3111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-9.5 + pos: 47.5,45.5 parent: 2 - - uid: 12355 + - uid: 3112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-13.5 + pos: 48.5,45.5 parent: 2 - - uid: 12841 + - uid: 3113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 + pos: 49.5,45.5 parent: 2 - - uid: 12980 + - uid: 3120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-48.5 + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 parent: 2 - - uid: 12981 + - uid: 3122 components: - type: Transform - pos: 46.5,-44.5 + rot: -1.5707963267948966 rad + pos: -25.5,-6.5 parent: 2 - - uid: 12991 + - uid: 3127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-47.5 + pos: 50.5,46.5 parent: 2 - - uid: 13606 + - uid: 3128 components: - type: Transform - pos: 56.5,38.5 + pos: 50.5,47.5 parent: 2 - - uid: 13716 + - uid: 3129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 + pos: 51.5,47.5 parent: 2 -- proto: Protolathe - entities: - - uid: 5305 + - uid: 3130 components: - type: Transform - pos: 53.5,18.5 + pos: 52.5,47.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 12658 + - uid: 3143 components: - type: Transform - pos: 41.5,-16.5 + pos: 47.5,39.5 parent: 2 -- proto: Rack - entities: - - uid: 251 + - uid: 3144 components: - type: Transform - pos: -0.5,-5.5 + pos: 47.5,38.5 parent: 2 - - uid: 826 + - uid: 3145 components: - type: Transform - pos: 27.5,-29.5 + pos: 47.5,37.5 parent: 2 - - uid: 827 + - uid: 3211 components: - type: Transform - pos: 25.5,-29.5 + pos: 60.5,47.5 parent: 2 - - uid: 1462 + - uid: 3212 components: - type: Transform - pos: 19.5,-38.5 + pos: 61.5,47.5 parent: 2 - - uid: 1750 + - uid: 3214 components: - type: Transform - pos: 35.5,-17.5 + pos: 62.5,47.5 parent: 2 - - uid: 1751 + - uid: 3265 components: - type: Transform - pos: 36.5,-17.5 + pos: 62.5,46.5 parent: 2 - - uid: 1752 + - uid: 3327 components: - type: Transform - pos: 37.5,-17.5 + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 parent: 2 - - uid: 1753 + - uid: 3334 components: - type: Transform - pos: 41.5,-16.5 + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 parent: 2 - - uid: 1754 + - uid: 3335 components: - type: Transform - pos: 41.5,-15.5 + pos: 50.5,49.5 parent: 2 - - uid: 1755 + - uid: 3336 components: - type: Transform - pos: 41.5,-14.5 + pos: 51.5,49.5 parent: 2 - - uid: 1756 + - uid: 3337 components: - type: Transform - pos: 37.5,-14.5 + pos: 52.5,49.5 parent: 2 - - uid: 1757 + - uid: 3338 components: - type: Transform - pos: 36.5,-14.5 + pos: 53.5,49.5 parent: 2 - - uid: 1786 + - uid: 3340 components: - type: Transform - pos: 33.5,-17.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - - uid: 5342 + - uid: 3344 components: - type: Transform - pos: 60.5,25.5 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 parent: 2 - - uid: 5375 + - uid: 3345 components: - type: Transform - pos: 52.5,11.5 + pos: 59.5,49.5 parent: 2 - - uid: 5439 + - uid: 3346 components: - type: Transform - pos: 9.5,-14.5 + pos: 60.5,49.5 parent: 2 - - uid: 5717 + - uid: 3347 components: - type: Transform - pos: 73.5,-12.5 + pos: 61.5,49.5 parent: 2 - - uid: 5732 + - uid: 3348 components: - type: Transform - pos: 72.5,-9.5 + pos: 62.5,49.5 parent: 2 - - uid: 5965 + - uid: 3389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,5.5 + pos: 64.5,49.5 parent: 2 - - uid: 7270 + - uid: 3390 components: - type: Transform - pos: 30.5,-30.5 + pos: 64.5,48.5 parent: 2 - - uid: 7584 + - uid: 3391 components: - type: Transform - pos: 38.5,28.5 + pos: 65.5,48.5 parent: 2 - - uid: 7970 + - uid: 3392 components: - type: Transform - pos: 9.5,15.5 + pos: 66.5,48.5 parent: 2 - - uid: 8164 + - uid: 3393 components: - type: Transform - pos: 8.5,32.5 + pos: 67.5,48.5 parent: 2 - - uid: 8817 + - uid: 3394 components: - type: Transform - pos: 72.5,21.5 + pos: 67.5,47.5 parent: 2 - - uid: 8934 + - uid: 3395 components: - type: Transform - pos: 69.5,21.5 + pos: 68.5,47.5 parent: 2 - - uid: 9017 + - uid: 3397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 110.5,-19.5 + pos: 72.5,46.5 parent: 2 - - uid: 9366 + - uid: 3398 components: - type: Transform - pos: 17.5,8.5 + pos: 73.5,46.5 parent: 2 - - uid: 9605 + - uid: 3399 components: - type: Transform - pos: 27.5,5.5 + pos: 74.5,46.5 parent: 2 - - uid: 10303 + - uid: 3400 components: - type: Transform - pos: 8.5,-9.5 + pos: 74.5,44.5 parent: 2 - - uid: 10304 + - uid: 3401 components: - type: Transform - pos: 8.5,-8.5 + pos: 73.5,44.5 parent: 2 - - uid: 10791 + - uid: 3402 components: - type: Transform - pos: 69.5,-15.5 + pos: 72.5,44.5 parent: 2 - - uid: 10795 + - uid: 3434 components: - type: Transform - pos: 79.5,-16.5 + pos: 75.5,22.5 parent: 2 - - uid: 10796 + - uid: 3479 components: - type: Transform - pos: 80.5,-16.5 + pos: 48.5,17.5 parent: 2 - - uid: 10822 + - uid: 3480 components: - type: Transform - pos: 81.5,11.5 + pos: 48.5,19.5 parent: 2 - - uid: 10823 + - uid: 3499 components: - type: Transform - pos: 81.5,9.5 + pos: 54.5,26.5 parent: 2 - - uid: 10833 + - uid: 3500 components: - type: Transform - pos: 65.5,11.5 + pos: 55.5,26.5 parent: 2 - - uid: 10846 + - uid: 3503 components: - type: Transform - pos: 45.5,27.5 + pos: 57.5,26.5 parent: 2 - - uid: 10852 + - uid: 3504 components: - type: Transform - pos: 45.5,30.5 + pos: 58.5,26.5 parent: 2 - - uid: 11409 + - uid: 3594 components: - type: Transform - pos: 31.5,-17.5 + pos: 90.5,-6.5 parent: 2 - - uid: 12408 + - uid: 3612 components: - type: Transform - pos: 45.5,-19.5 + pos: 88.5,-5.5 parent: 2 - - uid: 12843 + - uid: 3613 components: - type: Transform - pos: 23.5,4.5 + pos: 88.5,-4.5 parent: 2 - - uid: 13002 + - uid: 3618 components: - type: Transform - pos: 32.5,-46.5 + pos: 75.5,17.5 parent: 2 - - uid: 13445 + - uid: 3619 components: - type: Transform - pos: 43.5,-35.5 + pos: 75.5,16.5 parent: 2 -- proto: RadiationCollectorFullTank - entities: - - uid: 1042 + - uid: 3620 components: - type: Transform - pos: 17.5,-42.5 + pos: 77.5,13.5 parent: 2 - - uid: 1177 + - uid: 3621 components: - type: Transform - pos: 16.5,-42.5 + pos: 75.5,15.5 parent: 2 - - uid: 1182 + - uid: 3622 components: - type: Transform - pos: 26.5,-42.5 + pos: 78.5,13.5 parent: 2 - - uid: 1211 + - uid: 3623 components: - type: Transform - pos: 25.5,-42.5 + pos: 79.5,13.5 parent: 2 -- proto: RadioHandheld - entities: - - uid: 1325 + - uid: 3624 components: - type: Transform - pos: 21.5,-19.5 + pos: 80.5,13.5 parent: 2 - - uid: 2165 + - uid: 3705 components: - type: Transform - pos: 15.384224,35.641438 + pos: 91.5,-6.5 parent: 2 - - uid: 2166 + - uid: 3706 components: - type: Transform - pos: 15.602974,35.641438 + pos: 90.5,0.5 parent: 2 - - uid: 4090 + - uid: 3707 components: - type: Transform - pos: 21.304989,-19.377043 + pos: 90.5,1.5 parent: 2 - - uid: 7267 + - uid: 3803 components: - type: Transform - pos: 21.664364,-19.377043 + pos: 82.5,-8.5 parent: 2 - - uid: 7268 + - uid: 3804 components: - type: Transform - pos: 21.492489,-19.283293 + pos: 81.5,-8.5 parent: 2 - - uid: 8693 + - uid: 3805 components: - type: Transform - pos: 32.390015,26.521107 + pos: 80.5,-8.5 parent: 2 - - uid: 8694 + - uid: 3806 components: - type: Transform - pos: 32.546265,26.521107 + pos: 79.5,-8.5 parent: 2 - - uid: 8695 + - uid: 3865 components: - type: Transform - pos: 32.68689,26.505482 + pos: 73.5,-17.5 parent: 2 -- proto: Railing - entities: - - uid: 6491 + - uid: 3866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 + pos: 74.5,-17.5 parent: 2 - - uid: 6493 + - uid: 3867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 75.5,-17.5 parent: 2 - - uid: 6506 + - uid: 3868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 76.5,-17.5 parent: 2 - - uid: 6510 + - uid: 3869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 + pos: 77.5,-17.5 parent: 2 - - uid: 6662 + - uid: 3870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-8.5 + pos: 78.5,-17.5 parent: 2 - - uid: 6663 + - uid: 3871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-8.5 + pos: 80.5,-17.5 parent: 2 -- proto: RandomArcade - entities: - - uid: 8653 + - uid: 3872 components: - type: Transform - pos: 83.5,12.5 + pos: 79.5,-17.5 parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 10421 + - uid: 3873 components: - type: Transform - pos: 64.5,28.5 + pos: 81.5,-17.5 parent: 2 - - uid: 10422 + - uid: 3874 components: - type: Transform - pos: 62.5,28.5 + pos: 82.5,-17.5 parent: 2 -- proto: RandomBoard - entities: - - uid: 11863 + - uid: 3875 components: - type: Transform - pos: 36.5,-17.5 + pos: 83.5,-17.5 parent: 2 - - uid: 12094 + - uid: 3876 components: - type: Transform - pos: 35.5,-17.5 + pos: 84.5,-17.5 parent: 2 - - uid: 12358 + - uid: 3877 components: - type: Transform - pos: 37.5,-14.5 + pos: 85.5,-17.5 parent: 2 - - uid: 12359 + - uid: 3878 components: - type: Transform - pos: 37.5,-17.5 + pos: 86.5,-17.5 parent: 2 -- proto: RandomPainting - entities: - - uid: 6945 + - uid: 4046 components: - type: Transform - pos: 19.5,17.5 + pos: 45.5,-22.5 parent: 2 -- proto: RandomPosterAny - entities: - - uid: 11520 + - uid: 4052 components: - type: Transform - pos: 14.5,-22.5 + pos: 36.5,-27.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 11164 + - uid: 4055 components: - type: Transform - pos: 8.5,33.5 + pos: 45.5,-33.5 parent: 2 - - uid: 11176 + - uid: 4056 components: - type: Transform - pos: 14.5,6.5 + pos: 45.5,-35.5 parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 7573 + - uid: 4086 components: - type: Transform - pos: 10.5,2.5 + pos: 33.5,-35.5 parent: 2 - - uid: 8117 + - uid: 4134 components: - type: Transform - pos: 20.5,2.5 + rot: 1.5707963267948966 rad + pos: 56.5,26.5 parent: 2 - - uid: 8670 + - uid: 4165 components: - type: Transform - pos: 32.5,-13.5 + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - - uid: 11163 + - uid: 4252 components: - type: Transform - pos: 15.5,19.5 + pos: 24.5,-27.5 parent: 2 - - uid: 11169 + - uid: 4253 components: - type: Transform - pos: 18.5,4.5 + pos: 28.5,-27.5 parent: 2 - - uid: 11194 + - uid: 4269 components: - type: Transform - pos: 57.5,4.5 + rot: -1.5707963267948966 rad + pos: 19.5,-16.5 parent: 2 -- proto: RandomSoap - entities: - - uid: 8162 + - uid: 4273 components: - type: Transform - pos: 4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 19.5,-18.5 parent: 2 - - uid: 11905 + - uid: 4275 components: - type: Transform - pos: 78.5,7.5 + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 parent: 2 -- proto: RandomSpawner - entities: - - uid: 5688 + - uid: 4292 components: - type: Transform - pos: 17.5,-33.5 + pos: 35.5,-27.5 parent: 2 - - uid: 5690 + - uid: 4297 components: - type: Transform - pos: 25.5,-33.5 + pos: 33.5,-28.5 parent: 2 - - uid: 5691 + - uid: 4298 components: - type: Transform - pos: 15.5,-25.5 + pos: 45.5,-21.5 parent: 2 - - uid: 9308 + - uid: 4312 components: - type: Transform - pos: 68.5,8.5 + pos: 4.5,33.5 parent: 2 - - uid: 11866 + - uid: 4327 components: - type: Transform - pos: 57.5,-13.5 + pos: 33.5,-43.5 parent: 2 - - uid: 11867 + - uid: 4328 components: - type: Transform - pos: 62.5,-15.5 + pos: 33.5,-42.5 parent: 2 - - uid: 11868 + - uid: 4370 components: - type: Transform - pos: 59.5,-16.5 + pos: 37.5,-36.5 parent: 2 - - uid: 11874 + - uid: 4371 components: - type: Transform - pos: 12.5,15.5 + pos: 37.5,-35.5 parent: 2 - - uid: 11876 + - uid: 4372 components: - type: Transform - pos: 20.5,26.5 + pos: 37.5,-34.5 parent: 2 - - uid: 11879 + - uid: 4393 components: - type: Transform - pos: 83.5,7.5 + pos: 31.5,-45.5 parent: 2 - - uid: 11880 + - uid: 4394 components: - type: Transform - pos: 68.5,11.5 + pos: 32.5,-45.5 parent: 2 - - uid: 11882 + - uid: 4416 components: - type: Transform - pos: 70.5,29.5 + pos: 46.5,-36.5 parent: 2 - - uid: 11883 + - uid: 4437 components: - type: Transform - pos: 70.5,28.5 + pos: 45.5,-34.5 parent: 2 - - uid: 11884 + - uid: 4442 components: - type: Transform - pos: 71.5,37.5 + pos: 45.5,-32.5 parent: 2 - - uid: 11893 + - uid: 4452 components: - type: Transform - pos: 18.5,36.5 + pos: 33.5,-44.5 parent: 2 - - uid: 11895 + - uid: 4482 components: - type: Transform - pos: 21.5,37.5 + rot: 3.141592653589793 rad + pos: 47.5,-40.5 parent: 2 - - uid: 12409 + - uid: 4483 components: - type: Transform - pos: 44.5,-19.5 + rot: 3.141592653589793 rad + pos: 47.5,-39.5 parent: 2 - - uid: 12410 + - uid: 4484 components: - type: Transform - pos: 29.5,-20.5 + rot: 3.141592653589793 rad + pos: 47.5,-38.5 parent: 2 - - uid: 12411 + - uid: 4485 components: - type: Transform - pos: 27.5,-19.5 + rot: 3.141592653589793 rad + pos: 47.5,-37.5 parent: 2 - - uid: 12412 + - uid: 4812 components: - type: Transform - pos: 25.5,-5.5 + rot: 3.141592653589793 rad + pos: 56.5,50.5 parent: 2 - - uid: 12413 + - uid: 5004 components: - type: Transform - pos: 36.5,1.5 + rot: -1.5707963267948966 rad + pos: 5.5,41.5 parent: 2 - - uid: 12414 + - uid: 5016 components: - type: Transform - pos: 47.5,-1.5 + pos: 49.5,-3.5 parent: 2 - - uid: 12415 + - uid: 5017 components: - type: Transform - pos: 25.5,12.5 + pos: 54.5,-3.5 parent: 2 - - uid: 12417 + - uid: 5021 components: - type: Transform - pos: 19.5,14.5 + pos: 55.5,-8.5 parent: 2 - - uid: 12418 + - uid: 5022 components: - type: Transform - pos: 16.5,10.5 + pos: 57.5,-8.5 parent: 2 - - uid: 12419 + - uid: 5094 components: - type: Transform - pos: 4.5,10.5 + pos: 67.5,-2.5 parent: 2 - - uid: 12420 + - uid: 5095 components: - type: Transform - pos: 7.5,0.5 + pos: 66.5,-2.5 parent: 2 - - uid: 13155 + - uid: 5096 components: - type: Transform - pos: 56.5,6.5 + pos: 65.5,-2.5 parent: 2 -- proto: RandomVending - entities: - - uid: 8261 + - uid: 5097 components: - type: Transform - pos: 24.5,18.5 + pos: 64.5,-2.5 parent: 2 -- proto: RandomVendingDrinks - entities: - - uid: 8001 + - uid: 5128 components: - type: Transform - pos: 6.5,13.5 + pos: 45.5,-25.5 parent: 2 - - uid: 8262 + - uid: 5133 components: - type: Transform - pos: 24.5,17.5 + pos: 34.5,-27.5 parent: 2 - - uid: 9350 + - uid: 5134 components: - type: Transform - pos: 27.5,12.5 + pos: 45.5,-28.5 parent: 2 - - uid: 9612 + - uid: 5207 components: - type: Transform - pos: 25.5,3.5 + pos: 45.5,-30.5 parent: 2 - - uid: 11032 + - uid: 5293 components: - type: Transform - pos: 20.5,35.5 + pos: 2.5,2.5 parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 8002 + - uid: 5295 components: - type: Transform - pos: 5.5,13.5 + pos: 2.5,3.5 parent: 2 -- proto: Recycler - entities: - - uid: 5855 + - uid: 5357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-29.5 + pos: 1.5,1.5 parent: 2 - - uid: 12229 + - uid: 5358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,16.5 + pos: 2.5,4.5 parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 321 + - uid: 5417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: 43.5,-41.5 parent: 2 - - uid: 361 + - uid: 5434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 + pos: 41.5,-41.5 parent: 2 - - uid: 367 + - uid: 5435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-27.5 + pos: 39.5,-41.5 parent: 2 - - uid: 382 + - uid: 5489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 + pos: 72.5,33.5 parent: 2 - - uid: 391 + - uid: 5490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 + pos: 72.5,32.5 parent: 2 - - uid: 685 + - uid: 5491 components: - type: Transform - pos: 33.5,-30.5 + pos: 72.5,31.5 parent: 2 - - uid: 1463 + - uid: 5492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 + pos: 72.5,29.5 parent: 2 - - uid: 2356 + - uid: 5493 components: - type: Transform - pos: 37.5,27.5 + pos: 72.5,28.5 parent: 2 - - uid: 2362 + - uid: 5494 components: - type: Transform - pos: 37.5,26.5 + pos: 72.5,27.5 parent: 2 - - uid: 2363 + - uid: 5728 components: - type: Transform - pos: 38.5,25.5 + pos: 45.5,-29.5 parent: 2 - - uid: 2364 + - uid: 5729 components: - type: Transform - pos: 41.5,25.5 + pos: 45.5,-26.5 parent: 2 - - uid: 2366 + - uid: 6113 components: - type: Transform - pos: 37.5,28.5 + pos: 8.5,-40.5 parent: 2 - - uid: 2411 + - uid: 6114 components: - type: Transform - pos: 36.5,-29.5 + pos: 8.5,-39.5 parent: 2 - - uid: 3949 + - uid: 6115 components: - type: Transform - pos: 33.5,-32.5 + pos: 9.5,-39.5 parent: 2 - - uid: 3950 + - uid: 6116 components: - type: Transform - pos: 34.5,-29.5 + pos: 10.5,-39.5 parent: 2 - - uid: 4230 + - uid: 6118 components: - type: Transform - pos: 34.5,-33.5 + pos: 12.5,-39.5 parent: 2 - - uid: 4258 + - uid: 6134 components: - type: Transform - pos: 37.5,-30.5 + pos: 8.5,-42.5 parent: 2 - - uid: 4259 + - uid: 6135 components: - type: Transform - pos: 37.5,-31.5 + pos: 8.5,-43.5 parent: 2 - - uid: 4264 + - uid: 6136 components: - type: Transform - pos: 37.5,-32.5 + pos: 9.5,-43.5 parent: 2 - - uid: 4265 + - uid: 6137 components: - type: Transform - pos: 36.5,-33.5 + pos: 11.5,-43.5 parent: 2 - - uid: 8699 + - uid: 6140 components: - type: Transform - pos: 63.5,26.5 + pos: 12.5,-42.5 parent: 2 - - uid: 10088 + - uid: 6483 components: - type: Transform - pos: 64.5,26.5 + pos: 45.5,-2.5 parent: 2 - - uid: 12984 + - uid: 6485 components: - type: Transform - pos: 45.5,-48.5 + pos: 42.5,-2.5 parent: 2 - - uid: 12985 + - uid: 6807 components: - type: Transform - pos: 45.5,-47.5 + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 parent: 2 - - uid: 12986 + - uid: 6810 components: - type: Transform - pos: 45.5,-46.5 + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 - - uid: 12987 + - uid: 6833 components: - type: Transform - pos: 45.5,-45.5 + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 parent: 2 - - uid: 12988 + - uid: 6838 components: - type: Transform - pos: 45.5,-44.5 + pos: -2.5,-20.5 parent: 2 -- proto: ReinforcedWindow - entities: - - uid: 13 + - uid: 6840 components: - type: Transform - pos: -7.5,-4.5 + pos: -1.5,1.5 parent: 2 - - uid: 17 + - uid: 6857 components: - type: Transform - pos: -7.5,-5.5 + pos: -5.5,2.5 parent: 2 - - uid: 18 + - uid: 6885 components: - type: Transform - pos: -7.5,-1.5 + pos: -13.5,2.5 parent: 2 - - uid: 21 + - uid: 7548 components: - type: Transform - pos: -7.5,-6.5 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 parent: 2 - - uid: 23 + - uid: 7549 components: - type: Transform - pos: -7.5,-2.5 + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 25 + - uid: 7592 components: - type: Transform - pos: -4.5,-11.5 + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 parent: 2 - - uid: 45 + - uid: 7593 components: - type: Transform - pos: -4.5,-14.5 + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 parent: 2 - - uid: 46 + - uid: 7597 components: - type: Transform - pos: -7.5,-8.5 + pos: -11.5,0.5 parent: 2 - - uid: 47 + - uid: 7600 components: - type: Transform - pos: -7.5,-10.5 + pos: -9.5,2.5 parent: 2 - - uid: 79 + - uid: 7664 components: - type: Transform - pos: -3.5,1.5 + pos: -5.5,1.5 parent: 2 - - uid: 80 + - uid: 7669 components: - type: Transform - pos: -1.5,2.5 + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 parent: 2 - - uid: 89 + - uid: 7747 components: - type: Transform - pos: -4.5,-18.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 90 + - uid: 7749 components: - type: Transform - pos: -6.5,-17.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 2 - - uid: 93 + - uid: 7763 components: - type: Transform - pos: -6.5,-18.5 + pos: 4.5,19.5 parent: 2 - - uid: 99 + - uid: 7765 components: - type: Transform - pos: -6.5,-15.5 + pos: 24.5,38.5 parent: 2 - - uid: 100 + - uid: 7781 components: - type: Transform - pos: -6.5,-16.5 + pos: 4.5,18.5 parent: 2 - - uid: 119 + - uid: 7825 components: - type: Transform - pos: -4.5,-8.5 + pos: 7.5,20.5 parent: 2 - - uid: 120 + - uid: 7858 components: - type: Transform - pos: -4.5,-9.5 + pos: 45.5,-14.5 parent: 2 - - uid: 123 + - uid: 7943 components: - type: Transform - pos: -3.5,-13.5 + rot: -1.5707963267948966 rad + pos: -25.5,-4.5 parent: 2 - - uid: 124 + - uid: 7957 components: - type: Transform - pos: -2.5,-13.5 + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 parent: 2 - - uid: 125 + - uid: 8083 components: - type: Transform - pos: -1.5,-13.5 + pos: 6.5,20.5 parent: 2 - - uid: 198 + - uid: 8115 components: - type: Transform - pos: 1.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 parent: 2 - - uid: 199 + - uid: 8736 components: - type: Transform - pos: 0.5,-17.5 + pos: 92.5,-17.5 parent: 2 - - uid: 233 + - uid: 8737 components: - type: Transform - pos: -4.5,-16.5 + pos: 93.5,-17.5 parent: 2 - - uid: 325 + - uid: 8738 components: - type: Transform - pos: -4.5,-4.5 + pos: 94.5,-17.5 parent: 2 - - uid: 326 + - uid: 8739 components: - type: Transform - pos: -3.5,-2.5 + pos: 95.5,-17.5 parent: 2 - - uid: 327 + - uid: 8740 components: - type: Transform - pos: -1.5,-2.5 + pos: 96.5,-17.5 parent: 2 - - uid: 328 + - uid: 8741 components: - type: Transform - pos: -22.5,-14.5 + pos: 97.5,-17.5 parent: 2 - - uid: 329 + - uid: 8742 components: - type: Transform - pos: -22.5,-13.5 + pos: 98.5,-17.5 parent: 2 - - uid: 330 + - uid: 8743 components: - type: Transform - pos: -22.5,-12.5 + pos: 98.5,-22.5 parent: 2 - - uid: 345 + - uid: 8744 components: - type: Transform - pos: -3.5,2.5 + pos: 97.5,-22.5 parent: 2 - - uid: 357 + - uid: 8745 components: - type: Transform - pos: -15.5,-11.5 + pos: 96.5,-22.5 parent: 2 - - uid: 359 + - uid: 8746 components: - type: Transform - pos: -16.5,-11.5 + pos: 95.5,-22.5 parent: 2 - - uid: 397 + - uid: 8747 components: - type: Transform - pos: 2.5,6.5 + pos: 94.5,-22.5 parent: 2 - - uid: 400 + - uid: 8748 components: - type: Transform - pos: 2.5,7.5 + pos: 93.5,-22.5 parent: 2 - - uid: 418 + - uid: 8749 components: - type: Transform - pos: 53.5,12.5 + pos: 92.5,-22.5 parent: 2 - - uid: 427 + - uid: 8787 components: - type: Transform - pos: 55.5,12.5 + pos: 99.5,-17.5 parent: 2 - - uid: 433 + - uid: 8788 components: - type: Transform - pos: 5.5,20.5 + pos: 100.5,-17.5 parent: 2 - - uid: 445 + - uid: 8789 components: - type: Transform - pos: 60.5,12.5 + pos: 99.5,-22.5 parent: 2 - - uid: 446 + - uid: 8790 components: - type: Transform - pos: 61.5,12.5 + pos: 100.5,-22.5 parent: 2 - - uid: 464 + - uid: 8802 components: - type: Transform - pos: 63.5,12.5 + pos: 105.5,-25.5 parent: 2 - - uid: 465 + - uid: 8803 components: - type: Transform - pos: 65.5,16.5 + pos: 106.5,-25.5 parent: 2 - - uid: 469 + - uid: 8804 components: - type: Transform - pos: -7.5,-9.5 + pos: 107.5,-25.5 parent: 2 - - uid: 510 + - uid: 8808 components: - type: Transform - pos: -8.5,-11.5 + pos: 105.5,-20.5 parent: 2 - - uid: 560 + - uid: 8809 components: - type: Transform - pos: 14.5,-2.5 + pos: 107.5,-20.5 parent: 2 - - uid: 561 + - uid: 8839 components: - type: Transform - pos: 15.5,-2.5 + pos: 105.5,-14.5 parent: 2 - - uid: 574 + - uid: 8840 components: - type: Transform - pos: 65.5,14.5 + pos: 107.5,-14.5 parent: 2 - - uid: 689 + - uid: 8845 components: - type: Transform - pos: -20.5,-11.5 + pos: 105.5,-9.5 parent: 2 - - uid: 692 + - uid: 8846 components: - type: Transform - pos: -11.5,-11.5 + pos: 106.5,-9.5 parent: 2 - - uid: 695 + - uid: 8847 components: - type: Transform - pos: -11.5,-15.5 + pos: 107.5,-9.5 parent: 2 - - uid: 813 + - uid: 8879 components: - type: Transform - pos: 27.5,-26.5 + pos: 111.5,-20.5 parent: 2 - - uid: 814 + - uid: 8880 components: - type: Transform - pos: 25.5,-26.5 + pos: 112.5,-20.5 parent: 2 - - uid: 862 + - uid: 8881 components: - type: Transform - pos: 19.5,-30.5 + pos: 114.5,-20.5 parent: 2 - - uid: 863 + - uid: 8882 components: - type: Transform - pos: 19.5,-32.5 + pos: 115.5,-20.5 parent: 2 - - uid: 864 + - uid: 8925 components: - type: Transform - pos: 27.5,-34.5 + pos: 45.5,-24.5 parent: 2 - - uid: 865 + - uid: 8926 components: - type: Transform - pos: 28.5,-34.5 + pos: 45.5,-23.5 parent: 2 - - uid: 866 + - uid: 8942 components: - type: Transform - pos: 25.5,-34.5 + pos: 111.5,-14.5 parent: 2 - - uid: 867 + - uid: 8943 components: - type: Transform - pos: 24.5,-34.5 + pos: 112.5,-14.5 parent: 2 - - uid: 928 + - uid: 8944 components: - type: Transform - pos: 14.5,-33.5 + pos: 114.5,-14.5 parent: 2 - - uid: 929 + - uid: 8945 components: - type: Transform - pos: 14.5,-35.5 + pos: 115.5,-14.5 parent: 2 - - uid: 930 + - uid: 8956 components: - type: Transform - pos: 14.5,-36.5 + pos: 116.5,-15.5 parent: 2 - - uid: 931 + - uid: 8957 components: - type: Transform - pos: 13.5,-37.5 + pos: 116.5,-16.5 parent: 2 - - uid: 932 + - uid: 8958 components: - type: Transform - pos: 12.5,-37.5 + pos: 116.5,-18.5 parent: 2 - - uid: 934 + - uid: 8959 components: - type: Transform - pos: 10.5,-37.5 + pos: 116.5,-19.5 parent: 2 - - uid: 982 + - uid: 9334 components: - type: Transform - pos: 20.5,-37.5 + pos: 43.5,40.5 parent: 2 - - uid: 983 + - uid: 10086 components: - type: Transform - pos: 19.5,-37.5 + pos: 52.5,25.5 parent: 2 - - uid: 984 + - uid: 10087 components: - type: Transform - pos: 22.5,-37.5 + pos: 52.5,23.5 parent: 2 - - uid: 985 + - uid: 10123 components: - type: Transform - pos: 23.5,-37.5 + pos: 21.5,24.5 parent: 2 - - uid: 986 + - uid: 10124 components: - type: Transform - pos: 24.5,-38.5 + pos: 21.5,23.5 parent: 2 - - uid: 987 + - uid: 10125 components: - type: Transform - pos: 18.5,-38.5 + pos: 53.5,-0.5 parent: 2 - - uid: 988 + - uid: 10126 components: - type: Transform - pos: 18.5,-41.5 + pos: 52.5,1.5 parent: 2 - - uid: 989 + - uid: 10768 components: - type: Transform - pos: 18.5,-42.5 + pos: 73.5,24.5 parent: 2 - - uid: 990 + - uid: 11609 components: - type: Transform - pos: 18.5,-43.5 + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 parent: 2 - - uid: 991 + - uid: 11625 components: - type: Transform - pos: 17.5,-43.5 + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 parent: 2 - - uid: 992 + - uid: 11642 components: - type: Transform - pos: 16.5,-43.5 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 parent: 2 - - uid: 993 + - uid: 11737 components: - type: Transform - pos: 18.5,-44.5 + rot: 3.141592653589793 rad + pos: 57.5,30.5 parent: 2 - - uid: 994 + - uid: 11860 components: - type: Transform - pos: 19.5,-44.5 + rot: 3.141592653589793 rad + pos: 56.5,30.5 parent: 2 - - uid: 995 + - uid: 11861 components: - type: Transform - pos: 20.5,-44.5 + rot: 3.141592653589793 rad + pos: 55.5,30.5 parent: 2 - - uid: 996 + - uid: 11971 components: - type: Transform - pos: 21.5,-44.5 + pos: 45.5,-31.5 parent: 2 - - uid: 997 + - uid: 12080 components: - type: Transform - pos: 22.5,-44.5 + rot: 3.141592653589793 rad + pos: 57.5,42.5 parent: 2 - - uid: 998 + - uid: 12421 components: - type: Transform - pos: 23.5,-44.5 + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 999 + - uid: 12431 components: - type: Transform - pos: 24.5,-44.5 + rot: 3.141592653589793 rad + pos: 56.5,49.5 parent: 2 - - uid: 1000 + - uid: 12439 components: - type: Transform - pos: 24.5,-43.5 + rot: 3.141592653589793 rad + pos: 54.5,46.5 parent: 2 - - uid: 1001 + - uid: 12443 components: - type: Transform - pos: 25.5,-43.5 + rot: 3.141592653589793 rad + pos: 58.5,46.5 parent: 2 - - uid: 1002 + - uid: 12444 components: - type: Transform - pos: 26.5,-43.5 + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 parent: 2 - - uid: 1003 + - uid: 12451 components: - type: Transform - pos: 24.5,-42.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 2 - - uid: 1004 + - uid: 12453 components: - type: Transform - pos: 24.5,-41.5 + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 parent: 2 - - uid: 1051 + - uid: 12463 components: - type: Transform - pos: -13.5,-15.5 + rot: -1.5707963267948966 rad + pos: -23.5,1.5 parent: 2 - - uid: 1052 + - uid: 12471 components: - type: Transform - pos: 2.5,11.5 + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 parent: 2 - - uid: 1061 + - uid: 12662 components: - type: Transform - pos: 2.5,12.5 + rot: 3.141592653589793 rad + pos: 55.5,46.5 parent: 2 - - uid: 1105 + - uid: 12670 components: - type: Transform - pos: -12.5,-15.5 + rot: 3.141592653589793 rad + pos: 57.5,46.5 parent: 2 - - uid: 1161 + - uid: 12761 components: - type: Transform - pos: -9.5,-11.5 + rot: 3.141592653589793 rad + pos: 47.5,31.5 parent: 2 - - uid: 1251 + - uid: 12804 components: - type: Transform - pos: 33.5,-34.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 parent: 2 - - uid: 1308 + - uid: 12805 components: - type: Transform - pos: 7.5,-25.5 + rot: -1.5707963267948966 rad + pos: -18.5,1.5 parent: 2 - - uid: 1309 + - uid: 12806 components: - type: Transform - pos: 6.5,-25.5 + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - - uid: 1310 + - uid: 12835 components: - type: Transform - pos: 6.5,-26.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 2 - - uid: 1311 + - uid: 12847 components: - type: Transform - pos: 6.5,-27.5 + rot: -1.5707963267948966 rad + pos: -22.5,1.5 parent: 2 - - uid: 1312 + - uid: 12935 components: - type: Transform - pos: 6.5,-30.5 + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 parent: 2 - - uid: 1313 + - uid: 12936 components: - type: Transform - pos: 6.5,-31.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - uid: 1314 + - uid: 12939 components: - type: Transform - pos: 6.5,-32.5 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - - uid: 1315 + - uid: 12940 components: - type: Transform - pos: 5.5,-32.5 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - - uid: 1320 + - uid: 12979 components: - type: Transform - pos: 2.5,8.5 + pos: 43.5,-49.5 parent: 2 - - uid: 1322 + - uid: 12982 components: - type: Transform - pos: 2.5,10.5 + pos: 42.5,-49.5 parent: 2 - - uid: 1342 + - uid: 12983 components: - type: Transform - pos: 1.5,-27.5 + pos: 41.5,-49.5 parent: 2 - - uid: 1343 + - uid: 13079 components: - type: Transform - pos: 0.5,-27.5 + pos: -11.5,1.5 parent: 2 - - uid: 1344 + - uid: 13112 components: - type: Transform - pos: -1.5,-28.5 + rot: -1.5707963267948966 rad + pos: -9.5,1.5 parent: 2 - - uid: 1345 + - uid: 13255 components: - type: Transform - pos: -1.5,-29.5 + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 parent: 2 - - uid: 1363 + - uid: 13257 components: - type: Transform - pos: 1.5,-34.5 + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 parent: 2 - - uid: 1364 + - uid: 13258 components: - type: Transform - pos: 0.5,-34.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - - uid: 1365 + - uid: 13260 components: - type: Transform - pos: -0.5,-34.5 + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 parent: 2 - - uid: 1366 + - uid: 13271 components: - type: Transform - pos: 1.5,-36.5 + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 parent: 2 - - uid: 1367 + - uid: 13276 components: - type: Transform - pos: 0.5,-36.5 + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 parent: 2 - - uid: 1368 + - uid: 13283 components: - type: Transform - pos: -0.5,-36.5 + rot: 3.141592653589793 rad + pos: 56.5,51.5 parent: 2 - - uid: 1526 + - uid: 13295 components: - type: Transform - pos: 0.5,1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-21.5 parent: 2 - - uid: 1735 + - uid: 13297 components: - type: Transform - pos: 42.5,-16.5 + rot: -1.5707963267948966 rad + pos: -26.5,-21.5 parent: 2 - - uid: 1736 + - uid: 13298 components: - type: Transform - pos: 42.5,-15.5 + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 parent: 2 - - uid: 1737 + - uid: 13299 components: - type: Transform - pos: 42.5,-14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 parent: 2 - - uid: 1738 + - uid: 13301 components: - type: Transform - pos: 46.5,-16.5 + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 parent: 2 - - uid: 1739 + - uid: 13302 components: - type: Transform - pos: 46.5,-15.5 + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 parent: 2 - - uid: 1740 + - uid: 13312 components: - type: Transform - pos: 46.5,-14.5 + pos: -22.5,-23.5 parent: 2 - - uid: 1808 + - uid: 13314 components: - type: Transform - pos: -4.5,-17.5 + pos: -23.5,-23.5 parent: 2 - - uid: 1809 + - uid: 13318 components: - type: Transform - pos: -18.5,-11.5 + pos: -0.5,-15.5 parent: 2 - - uid: 1855 + - uid: 13319 components: - type: Transform - pos: -3.5,0.5 + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 parent: 2 - - uid: 2022 + - uid: 13343 components: - type: Transform - pos: -19.5,-15.5 + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 parent: 2 - - uid: 2053 + - uid: 13440 components: - type: Transform - pos: 4.5,28.5 + pos: 45.5,-27.5 parent: 2 - - uid: 2054 + - uid: 13467 components: - type: Transform - pos: 6.5,28.5 + pos: 10.5,-43.5 parent: 2 - - uid: 2055 + - uid: 13468 components: - type: Transform - pos: 5.5,28.5 + pos: 8.5,-41.5 parent: 2 - - uid: 2056 + - uid: 13557 components: - type: Transform - pos: 4.5,25.5 + rot: 3.141592653589793 rad + pos: 65.5,35.5 parent: 2 - - uid: 2057 + - uid: 13558 components: - type: Transform - pos: 5.5,25.5 + rot: 3.141592653589793 rad + pos: 65.5,36.5 parent: 2 - - uid: 2058 + - uid: 13559 components: - type: Transform - pos: 6.5,25.5 + rot: 3.141592653589793 rad + pos: 65.5,37.5 parent: 2 - - uid: 2059 + - uid: 13656 components: - type: Transform - pos: 4.5,22.5 + pos: 2.5,-20.5 parent: 2 - - uid: 2060 + - uid: 13657 components: - type: Transform - pos: 5.5,22.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 - - uid: 2061 + - uid: 13692 components: - type: Transform - pos: 6.5,22.5 + pos: 17.5,-37.5 parent: 2 - - uid: 2068 + - uid: 13786 components: - type: Transform - pos: -13.5,-11.5 + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 parent: 2 - - uid: 2240 + - uid: 13787 components: - type: Transform - pos: 28.5,21.5 + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 parent: 2 - - uid: 2241 + - uid: 13829 components: - type: Transform - pos: 28.5,20.5 + pos: 4.5,-20.5 parent: 2 - - uid: 2242 + - uid: 13840 components: - type: Transform - pos: 28.5,18.5 + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 parent: 2 - - uid: 2243 + - uid: 13841 components: - type: Transform - pos: 28.5,17.5 + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 parent: 2 - - uid: 2256 + - uid: 13850 components: - type: Transform - pos: 31.5,21.5 + rot: 1.5707963267948966 rad + pos: -19.5,-23.5 parent: 2 - - uid: 2257 + - uid: 13851 components: - type: Transform - pos: 31.5,17.5 + rot: 1.5707963267948966 rad + pos: -18.5,-23.5 parent: 2 - - uid: 2284 + - uid: 13852 components: - type: Transform - pos: 44.5,34.5 + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 parent: 2 - - uid: 2285 + - uid: 13853 components: - type: Transform - pos: 44.5,35.5 + rot: 1.5707963267948966 rad + pos: -10.5,-24.5 parent: 2 - - uid: 2286 + - uid: 13907 components: - type: Transform - pos: 44.5,36.5 + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 parent: 2 - - uid: 2287 + - uid: 13908 components: - type: Transform - pos: 42.5,33.5 + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 parent: 2 - - uid: 2288 + - uid: 14083 components: - type: Transform - pos: 42.5,32.5 + rot: 1.5707963267948966 rad + pos: 74.5,24.5 parent: 2 - - uid: 2289 + - uid: 14093 components: - type: Transform - pos: 42.5,31.5 + pos: 75.5,24.5 parent: 2 - - uid: 2367 + - uid: 14165 components: - type: Transform - pos: 37.5,24.5 + rot: 1.5707963267948966 rad + pos: 78.5,30.5 parent: 2 - - uid: 2368 + - uid: 14166 components: - type: Transform - pos: 37.5,23.5 + rot: 1.5707963267948966 rad + pos: 78.5,29.5 parent: 2 - - uid: 2369 + - uid: 14167 components: - type: Transform - pos: 38.5,20.5 + rot: 1.5707963267948966 rad + pos: 78.5,31.5 parent: 2 - - uid: 2370 + - uid: 14170 components: - type: Transform - pos: 37.5,21.5 + rot: 1.5707963267948966 rad + pos: 79.5,28.5 parent: 2 - - uid: 2373 + - uid: 14197 components: - type: Transform - pos: 42.5,24.5 + rot: 3.141592653589793 rad + pos: 82.5,35.5 parent: 2 - - uid: 2374 + - uid: 14363 components: - type: Transform - pos: 42.5,22.5 + rot: 1.5707963267948966 rad + pos: 93.5,31.5 parent: 2 - - uid: 2427 + - uid: 14364 components: - type: Transform - pos: 88.5,-6.5 + rot: 1.5707963267948966 rad + pos: 93.5,30.5 parent: 2 - - uid: 2458 + - uid: 14365 components: - type: Transform - pos: 43.5,16.5 + rot: 1.5707963267948966 rad + pos: 93.5,29.5 parent: 2 - - uid: 2459 + - uid: 14368 components: - type: Transform - pos: 41.5,16.5 + rot: 1.5707963267948966 rad + pos: 95.5,31.5 parent: 2 - - uid: 2476 + - uid: 14369 components: - type: Transform - pos: 33.5,-36.5 + rot: 1.5707963267948966 rad + pos: 95.5,29.5 parent: 2 - - uid: 2483 + - uid: 14761 components: - type: Transform - pos: 37.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 2745 + - uid: 14923 components: - type: Transform - pos: 15.5,42.5 + pos: 45.5,-15.5 parent: 2 - - uid: 2746 + - uid: 15004 components: - type: Transform - pos: 14.5,42.5 + pos: 45.5,-16.5 parent: 2 - - uid: 2747 +- proto: RemoteSignaller + entities: + - uid: 9222 components: - type: Transform - pos: 13.5,42.5 + pos: 19.330996,46.803196 parent: 2 - - uid: 2748 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 8233 components: - type: Transform - pos: 23.5,38.5 + pos: 49.5,25.5 parent: 2 - - uid: 2749 +- proto: Retractor + entities: + - uid: 6808 components: - type: Transform - pos: 22.5,38.5 + pos: 66.55991,-3.281434 parent: 2 - - uid: 2750 +- proto: RiotShield + entities: + - uid: 9883 components: - type: Transform - pos: 21.5,38.5 + pos: 38.328156,28.35502 parent: 2 - - uid: 2752 + - uid: 9884 components: - type: Transform - pos: 21.5,43.5 + pos: 38.328156,28.365444 parent: 2 - - uid: 2753 + - uid: 14664 components: - type: Transform - pos: 24.5,43.5 + pos: 38.328156,28.365444 parent: 2 - - uid: 2754 +- proto: RobocopCircuitBoard + entities: + - uid: 14284 components: - type: Transform - pos: 27.5,38.5 + pos: 86.54398,28.473265 parent: 2 - - uid: 2755 +- proto: RockGuitarInstrument + entities: + - uid: 9741 components: - type: Transform - pos: 27.5,43.5 + pos: 19.5661,-11.900069 parent: 2 - - uid: 2786 +- proto: SalvageMagnet + entities: + - uid: 11666 components: - type: Transform - pos: -4.5,-12.5 + rot: -1.5707963267948966 rad + pos: 6.5,39.5 parent: 2 - - uid: 2817 +- proto: Saw + entities: + - uid: 12333 components: - type: Transform - pos: 22.5,49.5 + pos: 57.474747,-14.628655 parent: 2 - - uid: 2818 +- proto: SawElectric + entities: + - uid: 5210 components: - type: Transform - pos: 23.5,49.5 + pos: 67.45054,-4.453309 parent: 2 - - uid: 2819 + - uid: 5395 components: - type: Transform - pos: 24.5,49.5 + pos: 55.53906,10.407994 parent: 2 - - uid: 2820 +- proto: Scalpel + entities: + - uid: 5137 components: - type: Transform - pos: 25.5,49.5 + pos: 74.5,-0.5 parent: 2 - - uid: 2821 + - uid: 5394 components: - type: Transform - pos: 26.5,49.5 + pos: 55.523434,10.407994 parent: 2 - - uid: 2822 + - uid: 10073 components: - type: Transform - pos: 27.5,49.5 + pos: 66.473175,-3.547059 parent: 2 - - uid: 2823 +- proto: ScrapCamera + entities: + - uid: 6843 components: - type: Transform - pos: 28.5,49.5 + pos: 67.493965,34.506084 parent: 2 - - uid: 2824 +- proto: Screen + entities: + - uid: 13232 components: - type: Transform - pos: 29.5,49.5 + pos: 24.5,-20.5 parent: 2 - - uid: 2825 + - uid: 13233 components: - type: Transform - pos: 30.5,49.5 + pos: 24.5,-2.5 parent: 2 - - uid: 2826 + - uid: 13234 components: - type: Transform - pos: 31.5,49.5 + pos: 32.5,-1.5 parent: 2 - - uid: 2827 + - uid: 13235 components: - type: Transform - pos: 32.5,49.5 + pos: 21.5,-1.5 parent: 2 - - uid: 2859 + - uid: 13236 components: - type: Transform - pos: 60.5,-12.5 + pos: 2.5,-2.5 parent: 2 - - uid: 2860 + - uid: 13237 components: - type: Transform - pos: 61.5,-12.5 + pos: 2.5,9.5 parent: 2 - - uid: 2861 + - uid: 13238 components: - type: Transform - pos: 62.5,-12.5 + pos: 17.5,11.5 parent: 2 - - uid: 2862 + - uid: 13239 components: - type: Transform - pos: 63.5,-12.5 + pos: 38.5,16.5 parent: 2 - - uid: 2863 + - uid: 13240 components: - type: Transform - pos: 62.5,-14.5 + pos: 39.5,10.5 parent: 2 - - uid: 2864 + - uid: 13241 components: - type: Transform - pos: 63.5,-14.5 + pos: 29.5,38.5 parent: 2 - - uid: 2865 + - uid: 13242 components: - type: Transform - pos: 60.5,-14.5 + pos: 20.5,43.5 parent: 2 - - uid: 2866 + - uid: 13243 components: - type: Transform - pos: 61.5,-14.5 + pos: 23.5,19.5 parent: 2 - - uid: 2867 + - uid: 13579 components: - type: Transform - pos: 59.5,-14.5 + pos: -7.5,1.5 parent: 2 - - uid: 3069 + - uid: 14563 components: - type: Transform - pos: 42.5,40.5 + rot: 1.5707963267948966 rad + pos: 88.5,32.5 parent: 2 - - uid: 3070 +- proto: Screwdriver + entities: + - uid: 11132 components: - type: Transform - pos: 41.5,40.5 + pos: 57.5176,-14.309467 parent: 2 - - uid: 3086 +- proto: SecurityTechFab + entities: + - uid: 12373 components: - type: Transform - pos: 36.5,46.5 + pos: 38.5,21.5 parent: 2 - - uid: 3087 +- proto: SeedExtractor + entities: + - uid: 3159 components: - type: Transform - pos: 36.5,45.5 + pos: 53.5,36.5 parent: 2 - - uid: 3088 + - uid: 6677 components: - type: Transform - pos: 18.5,45.5 + pos: 45.5,-4.5 parent: 2 - - uid: 3089 +- proto: ShardGlass + entities: + - uid: 10809 components: - type: Transform - pos: 18.5,44.5 + pos: 89.55373,-21.433664 parent: 2 - - uid: 3098 + - uid: 10810 components: - type: Transform - pos: 48.5,49.5 + pos: 90.27248,-20.82429 parent: 2 - - uid: 3099 +- proto: SheetGlass + entities: + - uid: 784 components: - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3100 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1648 components: - type: Transform - pos: 47.5,48.5 + pos: 33.519444,-17.381672 parent: 2 - - uid: 3101 + - uid: 5327 components: - type: Transform - pos: 46.5,48.5 + pos: 56.186665,17.583338 parent: 2 - - uid: 3102 + - uid: 5328 components: - type: Transform - pos: 45.5,48.5 + pos: 56.186665,17.583338 parent: 2 - - uid: 3103 + - uid: 5329 components: - type: Transform - pos: 45.5,47.5 + pos: 56.186665,17.583338 parent: 2 - - uid: 3104 + - uid: 5636 components: - type: Transform - pos: 44.5,47.5 + pos: 16.999237,-26.465462 parent: 2 - - uid: 3105 + - uid: 5640 components: - type: Transform - pos: 43.5,47.5 + pos: 16.999237,-26.465462 parent: 2 - - uid: 3110 + - uid: 10311 components: - type: Transform - pos: 46.5,45.5 + pos: 8.421515,-6.356274 parent: 2 - - uid: 3111 +- proto: SheetPlasma + entities: + - uid: 2129 components: - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3112 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7529 components: - type: Transform - pos: 48.5,45.5 + pos: 71.06963,13.620979 parent: 2 - - uid: 3113 + - uid: 14581 components: - type: Transform - pos: 49.5,45.5 + pos: 82.5,34.5 parent: 2 - - uid: 3127 +- proto: SheetPlasteel + entities: + - uid: 1842 components: - type: Transform - pos: 50.5,46.5 - parent: 2 - - uid: 3128 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5635 components: - type: Transform - pos: 50.5,47.5 + pos: 17.5,-26.5 parent: 2 - - uid: 3129 + - uid: 10312 components: - type: Transform - pos: 51.5,47.5 + pos: 8.609015,-6.340649 parent: 2 - - uid: 3130 +- proto: SheetPlastic + entities: + - uid: 5333 components: - type: Transform - pos: 52.5,47.5 + pos: 56.436665,17.505213 parent: 2 - - uid: 3131 + - uid: 5334 components: - type: Transform - pos: 53.5,47.5 + pos: 56.436665,17.505213 parent: 2 - - uid: 3132 + - uid: 5335 components: - type: Transform - pos: 54.5,47.5 + pos: 56.436665,17.505213 parent: 2 - - uid: 3133 +- proto: SheetSteel + entities: + - uid: 1239 components: - type: Transform - pos: 55.5,47.5 - parent: 2 - - uid: 3134 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1789 components: - type: Transform - pos: 56.5,47.5 + pos: 33.507664,-17.468887 parent: 2 - - uid: 3135 + - uid: 5152 components: - type: Transform - pos: 57.5,47.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3142 + - uid: 5153 components: - type: Transform - pos: 47.5,40.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3143 + - uid: 5330 components: - type: Transform - pos: 47.5,39.5 + pos: 56.63979,17.598963 parent: 2 - - uid: 3144 + - uid: 5331 components: - type: Transform - pos: 47.5,38.5 + pos: 56.63979,17.598963 parent: 2 - - uid: 3145 + - uid: 5332 components: - type: Transform - pos: 47.5,37.5 + pos: 56.63979,17.598963 parent: 2 - - uid: 3209 + - uid: 5383 components: - type: Transform - pos: 58.5,47.5 + pos: 50.524685,8.532994 parent: 2 - - uid: 3210 + - uid: 5384 components: - type: Transform - pos: 59.5,47.5 + pos: 50.524685,8.532994 parent: 2 - - uid: 3211 + - uid: 5385 components: - type: Transform - pos: 60.5,47.5 + pos: 50.524685,8.532994 parent: 2 - - uid: 3212 + - uid: 5633 components: - type: Transform - pos: 61.5,47.5 + pos: 16.5,-26.5 parent: 2 - - uid: 3214 + - uid: 5634 components: - type: Transform - pos: 62.5,47.5 + pos: 16.5,-26.5 parent: 2 - - uid: 3265 + - uid: 7271 components: - type: Transform - pos: 62.5,46.5 + pos: 30.5,-30.5 parent: 2 - - uid: 3335 + - uid: 7272 components: - type: Transform - pos: 50.5,49.5 + pos: 30.5,-30.5 parent: 2 - - uid: 3336 + - uid: 8175 components: - type: Transform - pos: 51.5,49.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3337 + - uid: 10313 components: - type: Transform - pos: 52.5,49.5 + pos: 8.53089,-6.434399 parent: 2 - - uid: 3338 + - uid: 12088 components: - type: Transform - pos: 53.5,49.5 + pos: 16.49948,-26.476994 parent: 2 - - uid: 3339 + - uid: 13432 components: - type: Transform - pos: 55.5,49.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3340 +- proto: SheetSteel1 + entities: + - uid: 4672 components: - type: Transform - pos: 54.5,49.5 + pos: 90.36041,-10.650079 parent: 2 - - uid: 3343 + - uid: 6720 components: - type: Transform - pos: 57.5,49.5 + pos: 90.60682,-10.582865 parent: 2 - - uid: 3344 + - uid: 6721 components: - type: Transform - pos: 58.5,49.5 + pos: 90.45002,-10.358817 parent: 2 - - uid: 3345 +- proto: SheetUranium + entities: + - uid: 1460 components: - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3346 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShotGunCabinetFilled + entities: + - uid: 2221 components: - type: Transform - pos: 60.5,49.5 + rot: -1.5707963267948966 rad + pos: 40.5,18.5 parent: 2 - - uid: 3347 +- proto: Shovel + entities: + - uid: 1053 components: - type: Transform - pos: 61.5,49.5 + pos: 5.5,31.5 parent: 2 - - uid: 3348 +- proto: ShuttersNormal + entities: + - uid: 5268 components: - type: Transform - pos: 62.5,49.5 + pos: 44.5,12.5 parent: 2 - - uid: 3389 + - uid: 6513 components: - type: Transform - pos: 64.5,49.5 + pos: 46.5,-11.5 parent: 2 - - uid: 3390 + - uid: 6514 components: - type: Transform - pos: 64.5,48.5 + pos: 47.5,-11.5 parent: 2 - - uid: 3391 +- proto: ShuttersNormalOpen + entities: + - uid: 265 components: - type: Transform - pos: 65.5,48.5 + pos: 34.5,-8.5 parent: 2 - - uid: 3392 + - uid: 267 components: - type: Transform - pos: 66.5,48.5 + pos: 35.5,-8.5 parent: 2 - - uid: 3393 + - uid: 270 components: - type: Transform - pos: 67.5,48.5 + pos: 36.5,-8.5 parent: 2 - - uid: 3394 + - uid: 419 components: - type: Transform - pos: 67.5,47.5 + rot: -1.5707963267948966 rad + pos: 37.5,-7.5 parent: 2 - - uid: 3395 + - uid: 913 components: - type: Transform - pos: 68.5,47.5 + rot: -1.5707963267948966 rad + pos: 37.5,-4.5 parent: 2 - - uid: 3397 + - uid: 1154 components: - type: Transform - pos: 72.5,46.5 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 parent: 2 - - uid: 3398 + - uid: 1658 components: - type: Transform - pos: 73.5,46.5 + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 parent: 2 - - uid: 3399 + - uid: 2090 components: - type: Transform - pos: 74.5,46.5 + pos: 11.5,29.5 parent: 2 - - uid: 3400 + - uid: 6512 components: - type: Transform - pos: 74.5,44.5 + rot: -1.5707963267948966 rad + pos: 37.5,-5.5 parent: 2 - - uid: 3401 + - uid: 12381 components: - type: Transform - pos: 73.5,44.5 + pos: 13.5,29.5 parent: 2 - - uid: 3402 + - uid: 12824 components: - type: Transform - pos: 72.5,44.5 + rot: -1.5707963267948966 rad + pos: 28.5,17.5 parent: 2 - - uid: 3479 + - uid: 12825 components: - type: Transform - pos: 48.5,17.5 + rot: -1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - - uid: 3480 + - uid: 12826 components: - type: Transform - pos: 48.5,19.5 + rot: -1.5707963267948966 rad + pos: 28.5,18.5 parent: 2 - - uid: 3499 + - uid: 12839 components: - type: Transform - pos: 54.5,26.5 + pos: 12.5,29.5 parent: 2 - - uid: 3500 + - uid: 13183 components: - type: Transform - pos: 55.5,26.5 + rot: -1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - - uid: 3501 + - uid: 13422 components: - type: Transform - pos: 55.5,27.5 + rot: 1.5707963267948966 rad + pos: 12.5,-42.5 parent: 2 - - uid: 3502 + - uid: 13476 components: - type: Transform - pos: 57.5,27.5 + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 parent: 2 - - uid: 3503 + - uid: 13477 components: - type: Transform - pos: 57.5,26.5 + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 parent: 2 - - uid: 3504 + - uid: 13478 components: - type: Transform - pos: 58.5,26.5 + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 parent: 2 - - uid: 3594 + - uid: 13479 components: - type: Transform - pos: 90.5,-6.5 + pos: 8.5,-43.5 parent: 2 - - uid: 3612 + - uid: 13480 components: - type: Transform - pos: 88.5,-5.5 + pos: 9.5,-43.5 parent: 2 - - uid: 3613 + - uid: 13481 components: - type: Transform - pos: 88.5,-4.5 + pos: 10.5,-43.5 parent: 2 - - uid: 3618 + - uid: 13482 components: - type: Transform - pos: 75.5,17.5 + pos: 11.5,-43.5 parent: 2 - - uid: 3619 + - uid: 13483 components: - type: Transform - pos: 75.5,16.5 + rot: 3.141592653589793 rad + pos: 12.5,-39.5 parent: 2 - - uid: 3620 + - uid: 13484 components: - type: Transform - pos: 77.5,13.5 + rot: 3.141592653589793 rad + pos: 10.5,-39.5 parent: 2 - - uid: 3621 + - uid: 13485 components: - type: Transform - pos: 75.5,15.5 + rot: 3.141592653589793 rad + pos: 9.5,-39.5 parent: 2 - - uid: 3622 + - uid: 13486 components: - type: Transform - pos: 78.5,13.5 + rot: 3.141592653589793 rad + pos: 8.5,-39.5 parent: 2 - - uid: 3623 + - uid: 13488 components: - type: Transform - pos: 79.5,13.5 + rot: 1.5707963267948966 rad + pos: 14.5,-36.5 parent: 2 - - uid: 3624 + - uid: 13489 components: - type: Transform - pos: 80.5,13.5 + rot: 1.5707963267948966 rad + pos: 14.5,-35.5 parent: 2 - - uid: 3705 + - uid: 13490 components: - type: Transform - pos: 91.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,-33.5 parent: 2 - - uid: 3706 + - uid: 13644 components: - type: Transform - pos: 90.5,0.5 + pos: 55.5,30.5 parent: 2 - - uid: 3707 + - uid: 13645 components: - type: Transform - pos: 90.5,1.5 + pos: 56.5,30.5 parent: 2 - - uid: 3803 + - uid: 13646 components: - type: Transform - pos: 82.5,-8.5 + pos: 57.5,30.5 parent: 2 - - uid: 3804 + - uid: 13647 components: - type: Transform - pos: 81.5,-8.5 + pos: 55.5,42.5 parent: 2 - - uid: 3805 + - uid: 13648 components: - type: Transform - pos: 80.5,-8.5 + pos: 56.5,42.5 parent: 2 - - uid: 3806 + - uid: 13649 components: - type: Transform - pos: 79.5,-8.5 + pos: 57.5,42.5 parent: 2 - - uid: 3865 + - uid: 13650 components: - type: Transform - pos: 73.5,-17.5 + rot: -1.5707963267948966 rad + pos: 52.5,38.5 parent: 2 - - uid: 3866 + - uid: 13651 components: - type: Transform - pos: 74.5,-17.5 + rot: -1.5707963267948966 rad + pos: 52.5,39.5 parent: 2 - - uid: 3867 + - uid: 13652 components: - type: Transform - pos: 75.5,-17.5 + rot: 1.5707963267948966 rad + pos: 60.5,36.5 parent: 2 - - uid: 3868 + - uid: 13915 components: - type: Transform - pos: 76.5,-17.5 + rot: -1.5707963267948966 rad + pos: 28.5,29.5 parent: 2 - - uid: 3869 + - uid: 14910 components: - type: Transform - pos: 77.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,18.5 parent: 2 - - uid: 3870 + - uid: 14911 components: - type: Transform - pos: 78.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,19.5 parent: 2 - - uid: 3871 + - uid: 14912 components: - type: Transform - pos: 80.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,16.5 parent: 2 - - uid: 3872 +- proto: ShuttersRadiationOpen + entities: + - uid: 449 components: - type: Transform - pos: 79.5,-17.5 + pos: 17.5,-37.5 parent: 2 - - uid: 3873 + - uid: 779 components: - type: Transform - pos: 81.5,-17.5 + pos: 19.5,-37.5 parent: 2 - - uid: 3874 + - uid: 780 components: - type: Transform - pos: 82.5,-17.5 + pos: 20.5,-37.5 parent: 2 - - uid: 3875 + - uid: 2044 components: - type: Transform - pos: 83.5,-17.5 + pos: 16.5,-37.5 parent: 2 - - uid: 3876 + - uid: 3241 components: - type: Transform - pos: 84.5,-17.5 + pos: 22.5,-44.5 parent: 2 - - uid: 3877 + - uid: 3972 components: - type: Transform - pos: 85.5,-17.5 + pos: 23.5,-44.5 parent: 2 - - uid: 3878 + - uid: 3992 components: - type: Transform - pos: 86.5,-17.5 + pos: 21.5,-44.5 parent: 2 - - uid: 4046 + - uid: 4502 components: - type: Transform - pos: 45.5,-22.5 + pos: 22.5,-37.5 parent: 2 - - uid: 4052 + - uid: 4503 components: - type: Transform - pos: 36.5,-27.5 + pos: 23.5,-37.5 parent: 2 - - uid: 4055 + - uid: 4635 components: - type: Transform - pos: 45.5,-33.5 + pos: 26.5,-43.5 parent: 2 - - uid: 4056 + - uid: 4636 components: - type: Transform - pos: 45.5,-35.5 + pos: 25.5,-43.5 parent: 2 - - uid: 4086 + - uid: 7808 components: - type: Transform - pos: 33.5,-35.5 + pos: 20.5,-44.5 parent: 2 - - uid: 4252 + - uid: 8031 components: - type: Transform - pos: 24.5,-27.5 + pos: 19.5,-44.5 parent: 2 - - uid: 4253 + - uid: 10959 components: - type: Transform - pos: 28.5,-27.5 + pos: 16.5,-43.5 parent: 2 - - uid: 4269 + - uid: 10999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-16.5 + pos: 17.5,-43.5 parent: 2 - - uid: 4270 +- proto: SignAi + entities: + - uid: 3417 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-16.5 + pos: 68.5,22.5 parent: 2 - - uid: 4271 + - uid: 14570 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 87.5,31.5 parent: 2 - - uid: 4272 +- proto: SignAiUpload + entities: + - uid: 14250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-18.5 + pos: 83.5,29.5 parent: 2 - - uid: 4273 +- proto: SignalButton + entities: + - uid: 128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-18.5 + rot: 1.5707963267948966 rad + pos: 5.5,28.5 parent: 2 - - uid: 4275 + - type: DeviceLinkSource + linkedPorts: + 8103: + - Pressed: Toggle + - uid: 202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-17.5 + pos: 37.5,-29.5 parent: 2 - - uid: 4292 + - type: DeviceLinkSource + linkedPorts: + 55: + - Pressed: Toggle + - uid: 1471 components: + - type: MetaData + name: Kitchen Counter Shutters - type: Transform - pos: 35.5,-27.5 + pos: 32.5,-9.5 parent: 2 - - uid: 4297 + - type: DeviceLinkSource + linkedPorts: + 265: + - Pressed: Toggle + 267: + - Pressed: Toggle + 270: + - Pressed: Toggle + - uid: 4245 components: - type: Transform - pos: 33.5,-28.5 + pos: 37.5,-33.5 parent: 2 - - uid: 4298 + - type: DeviceLinkSource + linkedPorts: + 4257: + - Pressed: Toggle + - uid: 5043 components: - type: Transform - pos: 45.5,-21.5 + pos: 16.5,-30.5 parent: 2 - - uid: 4327 + - type: DeviceLinkSource + linkedPorts: + 5124: + - Pressed: Toggle + - uid: 5428 components: - type: Transform - pos: 33.5,-43.5 + pos: 6.5,34.5 parent: 2 - - uid: 4328 + - type: DeviceLinkSource + linkedPorts: + 895: + - Pressed: Toggle + - uid: 5685 components: + - type: MetaData + name: Engineering Secure Storage Button - type: Transform - pos: 33.5,-42.5 + pos: 12.5,-25.5 parent: 2 - - uid: 4370 + - type: DeviceLinkSource + linkedPorts: + 2834: + - Pressed: Toggle + 2835: + - Pressed: Toggle + - uid: 6749 components: + - type: MetaData + name: Pen Maints Hatch - type: Transform - pos: 37.5,-36.5 + rot: -1.5707963267948966 rad + pos: 48.5,-9.5 parent: 2 - - uid: 4371 + - type: DeviceLinkSource + linkedPorts: + 6513: + - Pressed: Toggle + 6514: + - Pressed: Toggle + - uid: 7809 components: - type: Transform - pos: 37.5,-35.5 + rot: 1.5707963267948966 rad + pos: 5.5,22.5 parent: 2 - - uid: 4372 + - type: DeviceLinkSource + linkedPorts: + 8067: + - Pressed: Toggle + - uid: 10321 components: - type: Transform - pos: 37.5,-34.5 + pos: 48.5,12.5 parent: 2 - - uid: 4393 + - type: DeviceLinkSource + linkedPorts: + 150: + - Pressed: Toggle + - uid: 13002 components: - type: Transform - pos: 31.5,-45.5 + pos: 10.5,29.5 parent: 2 - - uid: 4394 + - type: DeviceLinkSource + linkedPorts: + 2090: + - Pressed: Toggle + 12839: + - Pressed: Toggle + 12381: + - Pressed: Toggle + - uid: 13491 components: - type: Transform - pos: 32.5,-45.5 + pos: 11.5,-32.5 parent: 2 - - uid: 4416 + - type: DeviceLinkSource + linkedPorts: + 13490: + - Pressed: Toggle + 13489: + - Pressed: Toggle + 13488: + - Pressed: Toggle + - uid: 13492 components: - type: Transform - pos: 46.5,-36.5 + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 parent: 2 - - uid: 4437 + - type: DeviceLinkSource + linkedPorts: + 13422: + - Pressed: Toggle + 13483: + - Pressed: Toggle + 13484: + - Pressed: Toggle + 13485: + - Pressed: Toggle + 13486: + - Pressed: Toggle + 13478: + - Pressed: Toggle + 13477: + - Pressed: Toggle + 13476: + - Pressed: Toggle + 13479: + - Pressed: Toggle + 13480: + - Pressed: Toggle + 13481: + - Pressed: Toggle + 13482: + - Pressed: Toggle + - uid: 14913 components: - type: Transform - pos: 45.5,-34.5 + rot: 1.5707963267948966 rad + pos: 4.5,15.5 parent: 2 - - uid: 4442 + - type: DeviceLinkSource + linkedPorts: + 14912: + - Pressed: Toggle + 14910: + - Pressed: Toggle + 14911: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 543 components: + - type: MetaData + name: Bar Shutters - type: Transform - pos: 45.5,-32.5 + rot: 3.141592653589793 rad + pos: 40.5,-8.5 parent: 2 - - uid: 4452 + - type: DeviceLinkSource + linkedPorts: + 419: + - Pressed: Toggle + 1658: + - Pressed: Toggle + 6512: + - Pressed: Toggle + 913: + - Pressed: Toggle + 1154: + - Pressed: Toggle + - uid: 3993 components: - type: Transform - pos: 33.5,-44.5 + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 parent: 2 - - uid: 4482 + - type: DeviceLinkSource + linkedPorts: + 4636: + - Pressed: Toggle + 4635: + - Pressed: Toggle + 3972: + - Pressed: Toggle + 3241: + - Pressed: Toggle + 3992: + - Pressed: Toggle + 7808: + - Pressed: Toggle + 8031: + - Pressed: Toggle + 10999: + - Pressed: Toggle + 10959: + - Pressed: Toggle + - uid: 11001 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-40.5 + pos: 18.5,-37.5 parent: 2 - - uid: 4483 + - type: DeviceLinkSource + linkedPorts: + 449: + - Pressed: Toggle + 2044: + - Pressed: Toggle + 779: + - Pressed: Toggle + 780: + - Pressed: Toggle + 4502: + - Pressed: Toggle + 4503: + - Pressed: Toggle + - uid: 13654 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-39.5 + pos: 30.5,27.5 parent: 2 - - uid: 4484 + - type: DeviceLinkSource + linkedPorts: + 13915: + - Pressed: Toggle + - uid: 13655 components: + - type: MetaData + name: perma shutters - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-38.5 + rot: 1.5707963267948966 rad + pos: 52.5,33.5 parent: 2 - - uid: 4485 + - type: DeviceLinkSource + linkedPorts: + 13650: + - Pressed: Toggle + 13651: + - Pressed: Toggle + 13652: + - Pressed: Toggle + 13644: + - Pressed: Toggle + 13645: + - Pressed: Toggle + 13646: + - Pressed: Toggle + 13647: + - Pressed: Toggle + 13648: + - Pressed: Toggle + 13649: + - Pressed: Toggle + - uid: 14742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-37.5 + pos: 31.77084,21.456566 parent: 2 - - uid: 4812 + - type: DeviceLinkSource + linkedPorts: + 12825: + - Pressed: Toggle + 13183: + - Pressed: Toggle + - uid: 14924 components: - type: Transform - pos: -13.5,-10.5 + rot: 3.141592653589793 rad + pos: 31.777786,17.53082 parent: 2 - - uid: 5016 + - type: DeviceLinkSource + linkedPorts: + 12826: + - Pressed: Toggle + 12824: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 5066 components: - type: Transform - pos: 49.5,-3.5 + pos: 61.5,21.5 parent: 2 - - uid: 5017 +- proto: SignAnomaly2 + entities: + - uid: 6475 components: - type: Transform - pos: 54.5,-3.5 + pos: 65.5,13.5 parent: 2 - - uid: 5021 +- proto: SignArmory + entities: + - uid: 7678 components: - type: Transform - pos: 55.5,-8.5 + rot: -1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - - uid: 5022 +- proto: SignAtmos + entities: + - uid: 4574 components: - type: Transform - pos: 57.5,-8.5 + pos: 37.5,-38.5 parent: 2 - - uid: 5094 + - uid: 4575 components: - type: Transform - pos: 67.5,-2.5 + pos: 28.5,-26.5 parent: 2 - - uid: 5095 +- proto: SignBar + entities: + - uid: 11198 components: - type: Transform - pos: 66.5,-2.5 + pos: 36.515213,-1.5077809 parent: 2 - - uid: 5096 +- proto: SignBiohazardMed + entities: + - uid: 12243 components: - type: Transform - pos: 65.5,-2.5 + rot: 3.141592653589793 rad + pos: 76.5,0.5 parent: 2 - - uid: 5097 +- proto: SignCans + entities: + - uid: 4569 components: - type: Transform - pos: 64.5,-2.5 + pos: 41.5,-36.5 parent: 2 - - uid: 5102 +- proto: SignCargo + entities: + - uid: 11211 components: - type: Transform - pos: 59.5,26.5 + pos: 22.44822,19.533756 parent: 2 - - uid: 5128 +- proto: SignCargoDock + entities: + - uid: 6853 components: - type: Transform - pos: 45.5,-25.5 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - - uid: 5133 +- proto: SignChapel + entities: + - uid: 11193 components: - type: Transform - pos: 34.5,-27.5 + pos: 39.519363,4.4919653 parent: 2 - - uid: 5134 +- proto: SignChem + entities: + - uid: 6817 components: - type: Transform - pos: 45.5,-28.5 + pos: 51.5,-2.5 parent: 2 - - uid: 5207 +- proto: SignConference + entities: + - uid: 11192 components: - type: Transform - pos: 45.5,-30.5 + pos: 25.484035,39.437214 parent: 2 - - uid: 5289 +- proto: SignCryo + entities: + - uid: 13541 components: - type: Transform - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: 22.5,16.5 parent: 2 - - uid: 5293 +- proto: SignCryogenicsMed + entities: + - uid: 11804 components: - type: Transform - pos: 2.5,2.5 + pos: 63.5,-0.5 parent: 2 - - uid: 5295 +- proto: SignDangerMed + entities: + - uid: 10436 components: - type: Transform - pos: 2.5,3.5 + pos: 61.5,26.5 parent: 2 - - uid: 5357 +- proto: SignDirectionalBridge + entities: + - uid: 7329 components: - type: Transform - pos: 1.5,1.5 + rot: 3.141592653589793 rad + pos: 24.503027,16.714216 parent: 2 - - uid: 5358 + - uid: 8119 components: - type: Transform - pos: 2.5,4.5 + rot: 3.141592653589793 rad + pos: 7.4992805,2.707316 parent: 2 - - uid: 5417 + - uid: 11181 components: - type: Transform - pos: 43.5,-41.5 + rot: 3.141592653589793 rad + pos: 28.54057,12.41816 parent: 2 - - uid: 5434 +- proto: SignDirectionalDorms + entities: + - uid: 40 components: - type: Transform - pos: 41.5,-41.5 + rot: 1.5707963267948966 rad + pos: 7.5,11.5 parent: 2 - - uid: 5435 + - uid: 13540 components: - type: Transform - pos: 39.5,-41.5 + rot: -1.5707963267948966 rad + pos: 17.5,14.5 parent: 2 - - uid: 5489 +- proto: SignDirectionalEng + entities: + - uid: 11817 components: - type: Transform - pos: 72.5,33.5 + pos: 28.5037,2.3089128 parent: 2 - - uid: 5490 +- proto: SignDirectionalEvac + entities: + - uid: 7848 components: - type: Transform - pos: 72.5,32.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 2 - - uid: 5491 + - uid: 7894 components: - type: Transform - pos: 72.5,31.5 + rot: -1.5707963267948966 rad + pos: 2.5,1.5 parent: 2 - - uid: 5492 + - uid: 8120 components: - type: Transform - pos: 72.5,29.5 + rot: -1.5707963267948966 rad + pos: 7.4992805,2.2952788 parent: 2 - - uid: 5493 + - uid: 11806 components: - type: Transform - pos: 72.5,28.5 + rot: -1.5707963267948966 rad + pos: 24.498083,2.3033948 parent: 2 - - uid: 5494 +- proto: SignDirectionalHop + entities: + - uid: 11809 components: - type: Transform - pos: 72.5,27.5 + rot: -1.5707963267948966 rad + pos: 24.5,2.5 parent: 2 - - uid: 5677 +- proto: SignDirectionalLibrary + entities: + - uid: 11816 components: - type: Transform - pos: -20.5,-10.5 + rot: -1.5707963267948966 rad + pos: 24.498083,2.6830244 parent: 2 - - uid: 5728 +- proto: SignDirectionalMed + entities: + - uid: 8118 components: - type: Transform - pos: 45.5,-29.5 + rot: 1.5707963267948966 rad + pos: 7.5,2.5 parent: 2 - - uid: 5729 + - uid: 11184 components: - type: Transform - pos: 45.5,-26.5 + pos: 39.55419,12.695712 parent: 2 - - uid: 6113 + - uid: 11813 components: - type: Transform - pos: 8.5,-40.5 + rot: 1.5707963267948966 rad + pos: 28.5,2.5 parent: 2 - - uid: 6114 + - uid: 11853 components: - type: Transform - pos: 8.5,-39.5 + rot: 1.5707963267948966 rad + pos: 39.50202,2.3010597 parent: 2 - - uid: 6115 +- proto: SignDirectionalSci + entities: + - uid: 11182 components: - type: Transform - pos: 9.5,-39.5 + rot: 1.5707963267948966 rad + pos: 28.5195,12.147359 parent: 2 - - uid: 6116 + - uid: 11188 components: - type: Transform - pos: 10.5,-39.5 + rot: 1.5707963267948966 rad + pos: 39.557316,12.409777 parent: 2 - - uid: 6118 + - uid: 11812 components: - type: Transform - pos: 12.5,-39.5 + rot: 1.5707963267948966 rad + pos: 28.505745,2.6978016 parent: 2 - - uid: 6134 + - uid: 11851 components: - type: Transform - pos: 8.5,-42.5 + rot: 3.141592653589793 rad + pos: 39.5,2.5 parent: 2 - - uid: 6135 +- proto: SignDirectionalSec + entities: + - uid: 5416 components: - type: Transform - pos: 8.5,-43.5 + rot: 1.5707963267948966 rad + pos: 7.4984922,11.283884 parent: 2 - - uid: 6136 + - uid: 7327 components: - type: Transform - pos: 9.5,-43.5 + rot: 3.141592653589793 rad + pos: 24.5,16.5 parent: 2 - - uid: 6137 + - uid: 11180 components: - type: Transform - pos: 11.5,-43.5 + rot: 3.141592653589793 rad + pos: 28.54057,12.66816 parent: 2 - - uid: 6140 + - uid: 11852 components: - type: Transform - pos: 12.5,-42.5 + rot: 3.141592653589793 rad + pos: 39.50202,2.708467 parent: 2 - - uid: 6483 +- proto: SignDirectionalSolar + entities: + - uid: 12297 components: - type: Transform - pos: 45.5,-2.5 + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 parent: 2 - - uid: 6485 + - uid: 12298 components: - type: Transform - pos: 42.5,-2.5 + rot: 3.141592653589793 rad + pos: 68.5,19.5 parent: 2 - - uid: 6814 + - uid: 12299 components: - type: Transform - pos: -11.5,-10.5 + rot: 1.5707963267948966 rad + pos: 45.5,45.5 parent: 2 - - uid: 6815 +- proto: SignDirectionalSupply + entities: + - uid: 5418 components: - type: Transform - pos: -18.5,-15.5 + rot: 1.5707963267948966 rad + pos: 7.4984922,11.714439 parent: 2 - - uid: 6821 + - uid: 7328 components: - type: Transform - pos: -18.5,-10.5 + rot: 3.141592653589793 rad + pos: 24.503027,16.29755 parent: 2 - - uid: 6840 +- proto: SignDirectionalWash + entities: + - uid: 11815 components: - type: Transform - pos: -1.5,1.5 + rot: 3.141592653589793 rad + pos: 12.5,11.5 parent: 2 - - uid: 6841 +- proto: SignElectricalMed + entities: + - uid: 4874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: 3.5,-33.5 parent: 2 - - uid: 6857 + - uid: 12351 components: - type: Transform - pos: -5.5,2.5 + pos: 3.5,-8.5 parent: 2 - - uid: 6896 + - uid: 13003 components: - type: Transform - pos: -20.5,-15.5 + pos: 36.5,-41.5 parent: 2 - - uid: 7664 + - uid: 13004 components: - type: Transform - pos: -5.5,1.5 + pos: 31.5,-49.5 parent: 2 - - uid: 7765 + - uid: 14698 components: - type: Transform - pos: 24.5,38.5 + pos: 28.5,22.5 parent: 2 - - uid: 8736 + - uid: 14850 components: - type: Transform - pos: 92.5,-17.5 + pos: 50.5,38.5 parent: 2 - - uid: 8737 + - uid: 14851 components: - type: Transform - pos: 93.5,-17.5 + pos: 50.5,43.5 parent: 2 - - uid: 8738 + - uid: 14852 components: - type: Transform - pos: 94.5,-17.5 + pos: 52.5,44.5 parent: 2 - - uid: 8739 + - uid: 14853 components: - type: Transform - pos: 95.5,-17.5 + pos: 60.5,44.5 parent: 2 - - uid: 8740 + - uid: 14854 components: - type: Transform - pos: 96.5,-17.5 + pos: 62.5,41.5 parent: 2 - - uid: 8741 + - uid: 14855 components: - type: Transform - pos: 97.5,-17.5 + pos: 62.5,31.5 parent: 2 - - uid: 8742 + - uid: 14949 components: - type: Transform - pos: 98.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,42.5 parent: 2 - - uid: 8743 + - uid: 14950 components: - type: Transform - pos: 98.5,-22.5 + rot: -1.5707963267948966 rad + pos: 33.5,49.5 parent: 2 - - uid: 8744 +- proto: SignEngine + entities: + - uid: 5157 components: - type: Transform - pos: 97.5,-22.5 + pos: 30.5,-37.5 parent: 2 - - uid: 8745 + - uid: 5301 components: - type: Transform - pos: 96.5,-22.5 + pos: 33.5,-40.5 parent: 2 - - uid: 8746 +- proto: SignEngineering + entities: + - uid: 5156 components: - type: Transform - pos: 95.5,-22.5 + pos: 24.5,-26.5 parent: 2 - - uid: 8747 +- proto: SignEscapePods + entities: + - uid: 5027 components: - type: Transform - pos: 94.5,-22.5 + pos: 85.5,3.5 parent: 2 - - uid: 8748 +- proto: SignEVA + entities: + - uid: 5204 components: - type: Transform - pos: 93.5,-22.5 + pos: 10.5,-2.5 parent: 2 - - uid: 8749 +- proto: SignExamroom + entities: + - uid: 12239 components: - type: Transform - pos: 92.5,-22.5 + rot: 3.141592653589793 rad + pos: 67.5,5.5 parent: 2 - - uid: 8787 + - uid: 12240 components: - type: Transform - pos: 99.5,-17.5 + rot: 3.141592653589793 rad + pos: 59.5,-8.5 parent: 2 - - uid: 8788 +- proto: SignFire + entities: + - uid: 12280 components: - type: Transform - pos: 100.5,-17.5 + rot: 1.5707963267948966 rad + pos: 65.5,26.5 parent: 2 - - uid: 8789 + - uid: 12993 components: - type: Transform - pos: 99.5,-22.5 + pos: 45.5,-49.5 parent: 2 - - uid: 8790 + - uid: 12994 components: - type: Transform - pos: 100.5,-22.5 + pos: 45.5,-43.5 parent: 2 - - uid: 8802 +- proto: SignFlammableMed + entities: + - uid: 1650 components: - type: Transform - pos: 105.5,-25.5 + pos: 33.5,-31.5 parent: 2 - - uid: 8803 + - uid: 10437 components: - type: Transform - pos: 106.5,-25.5 + pos: 61.5,27.5 parent: 2 - - uid: 8804 +- proto: SignGravity + entities: + - uid: 11199 components: - type: Transform - pos: 107.5,-25.5 + pos: 16.482166,37.47681 parent: 2 - - uid: 8808 +- proto: SignHead + entities: + - uid: 11814 components: - type: Transform - pos: 105.5,-20.5 + rot: 3.141592653589793 rad + pos: 13.5,-2.5 parent: 2 - - uid: 8809 +- proto: SignHydro1 + entities: + - uid: 6648 components: - type: Transform - pos: 107.5,-20.5 + pos: 47.5,-2.5 parent: 2 - - uid: 8839 + - uid: 6651 components: - type: Transform - pos: 105.5,-14.5 + pos: 41.5,-2.5 parent: 2 - - uid: 8840 +- proto: SignInterrogation + entities: + - uid: 8439 components: - type: Transform - pos: 107.5,-14.5 + pos: 38.5,32.5 parent: 2 - - uid: 8845 +- proto: SignJanitor + entities: + - uid: 13164 components: - type: Transform - pos: 105.5,-9.5 + pos: 6.5,-2.5 parent: 2 - - uid: 8846 +- proto: SignKiddiePlaque + entities: + - uid: 12282 components: - type: Transform - pos: 106.5,-9.5 + rot: 1.5707963267948966 rad + pos: 12.5,2.5 parent: 2 - - uid: 8847 +- proto: SignLaserMed + entities: + - uid: 12289 components: - type: Transform - pos: 107.5,-9.5 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 - - uid: 8879 +- proto: SignLawyer + entities: + - uid: 13165 components: - type: Transform - pos: 111.5,-20.5 + pos: -4.5,-6.5 parent: 2 - - uid: 8880 + - uid: 13166 components: - type: Transform - pos: 112.5,-20.5 + pos: 24.5,28.5 parent: 2 - - uid: 8881 +- proto: SignLibrary + entities: + - uid: 11201 components: - type: Transform - pos: 114.5,-20.5 + pos: 7.478853,8.535535 parent: 2 - - uid: 8882 +- proto: SignMagneticsMed + entities: + - uid: 6846 components: - type: Transform - pos: 115.5,-20.5 + pos: 3.5,39.5 parent: 2 - - uid: 8925 + - uid: 14680 components: - type: Transform - pos: 45.5,-24.5 + rot: -1.5707963267948966 rad + pos: 10.5,32.5 parent: 2 - - uid: 8926 +- proto: SignMedical + entities: + - uid: 6788 components: - type: Transform - pos: 45.5,-23.5 + pos: 53.5,1.5 parent: 2 - - uid: 8942 +- proto: SignMorgue + entities: + - uid: 11196 components: - type: Transform - pos: 111.5,-14.5 + pos: 71.560074,0.5078441 parent: 2 - - uid: 8943 + - uid: 11843 components: - type: Transform - pos: 112.5,-14.5 + pos: 70.5,-6.5 parent: 2 - - uid: 8944 +- proto: SignNosmoking + entities: + - uid: 10074 components: - type: Transform - pos: 114.5,-14.5 + pos: 68.5,-4.5 parent: 2 - - uid: 8945 + - uid: 11397 components: - type: Transform - pos: 115.5,-14.5 + pos: 65.5,-7.5 parent: 2 - - uid: 8956 +- proto: SignNTMine + entities: + - uid: 10969 components: - type: Transform - pos: 116.5,-15.5 + pos: 3.5,36.5 parent: 2 - - uid: 8957 +- proto: SignPlaque + entities: + - uid: 12281 components: - type: Transform - pos: 116.5,-16.5 + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 parent: 2 - - uid: 8958 +- proto: SignPrison + entities: + - uid: 13138 components: - type: Transform - pos: 116.5,-18.5 + pos: 47.5,33.5 parent: 2 - - uid: 8959 +- proto: SignRadiationMed + entities: + - uid: 747 components: - type: Transform - pos: 116.5,-19.5 + pos: 18.5,-40.5 parent: 2 - - uid: 9571 + - uid: 4012 components: - type: Transform - pos: 6.5,19.5 + pos: 24.5,-37.5 parent: 2 - - uid: 10085 +- proto: SignRND + entities: + - uid: 11190 components: - type: Transform - pos: 60.5,26.5 + pos: 57.499714,16.503765 parent: 2 - - uid: 10086 + - uid: 12293 components: - type: Transform - pos: 52.5,25.5 + rot: 1.5707963267948966 rad + pos: 48.5,16.5 parent: 2 - - uid: 10087 +- proto: SignRobo + entities: + - uid: 12291 components: - type: Transform - pos: 52.5,23.5 + rot: 1.5707963267948966 rad + pos: 46.5,12.5 parent: 2 - - uid: 10123 + - uid: 12292 components: - type: Transform - pos: 21.5,24.5 + rot: 1.5707963267948966 rad + pos: 56.5,12.5 parent: 2 - - uid: 10124 +- proto: SignSalvage + entities: + - uid: 6779 components: - type: Transform - pos: 21.5,23.5 + rot: -1.5707963267948966 rad + pos: 7.5,29.5 parent: 2 - - uid: 10125 +- proto: SignScience + entities: + - uid: 11191 components: - type: Transform - pos: 53.5,-0.5 + pos: 48.50537,15.474182 parent: 2 - - uid: 10126 +- proto: SignSecurearea + entities: + - uid: 11939 components: - type: Transform - pos: 52.5,1.5 + pos: 17.5,-15.5 parent: 2 - - uid: 11971 +- proto: SignSecureMed + entities: + - uid: 1518 components: - type: Transform - pos: 45.5,-31.5 + pos: 28.5,-25.5 parent: 2 - - uid: 12779 + - uid: 7963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 + rot: 1.5707963267948966 rad + pos: 21.5,-59.5 parent: 2 - - uid: 12780 + - uid: 8176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,29.5 + pos: 16.5,35.5 parent: 2 - - uid: 12979 + - uid: 8288 components: - type: Transform - pos: 43.5,-49.5 + rot: 1.5707963267948966 rad + pos: 11.5,-51.5 parent: 2 - - uid: 12982 + - uid: 8332 components: - type: Transform - pos: 42.5,-49.5 + rot: 1.5707963267948966 rad + pos: 30.5,-51.5 parent: 2 - - uid: 12983 + - uid: 9958 components: - type: Transform - pos: 41.5,-49.5 + rot: 3.141592653589793 rad + pos: 94.5,24.5 parent: 2 - - uid: 13440 + - uid: 11690 components: - type: Transform - pos: 45.5,-27.5 + pos: -21.5,14.5 parent: 2 - - uid: 13467 + - uid: 14572 components: - type: Transform - pos: 10.5,-43.5 + pos: 80.5,26.5 parent: 2 - - uid: 13468 + - uid: 14573 components: - type: Transform - pos: 8.5,-41.5 + pos: 87.5,32.5 parent: 2 -- proto: RemoteSignaller - entities: - - uid: 9222 + - uid: 14574 components: - type: Transform - pos: 19.330996,46.803196 + pos: 82.5,32.5 parent: 2 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 8233 + - uid: 14592 components: - type: Transform - pos: 49.5,25.5 + rot: -1.5707963267948966 rad + pos: 68.5,24.5 parent: 2 -- proto: Retractor - entities: - - uid: 6808 + - uid: 14849 components: - type: Transform - pos: 66.55991,-3.281434 + pos: 47.5,36.5 parent: 2 -- proto: RiotShield - entities: - - uid: 8428 + - uid: 14951 components: - type: Transform - pos: 38.223476,28.307878 + rot: -1.5707963267948966 rad + pos: 21.5,49.5 parent: 2 - - uid: 8429 + - uid: 14952 components: - type: Transform - pos: 38.223476,28.307878 + rot: -1.5707963267948966 rad + pos: 12.5,42.5 parent: 2 -- proto: RobocopCircuitBoard - entities: - - uid: 13758 + - uid: 14966 components: - type: Transform - pos: 52.427402,30.935076 + rot: 3.141592653589793 rad + pos: 99.5,30.5 parent: 2 -- proto: RockGuitarInstrument - entities: - - uid: 9741 + - uid: 14972 components: - type: Transform - pos: 19.5661,-11.900069 + rot: 3.141592653589793 rad + pos: 94.5,36.5 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 4811 + - uid: 14976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,16.5 + rot: 3.141592653589793 rad + pos: 78.5,34.5 parent: 2 -- proto: Saw +- proto: SignSecurity entities: - - uid: 12333 + - uid: 12294 components: - type: Transform - pos: 57.474747,-14.628655 + rot: 1.5707963267948966 rad + pos: 28.5,27.5 parent: 2 -- proto: SawElectric +- proto: SignShock entities: - - uid: 5210 + - uid: 11017 components: - type: Transform - pos: 67.45054,-4.453309 + pos: 42.5,-13.5 parent: 2 - - uid: 5395 + - uid: 11019 components: - type: Transform - pos: 55.53906,10.407994 + pos: 20.5,38.5 parent: 2 -- proto: Scalpel - entities: - - uid: 5137 + - uid: 11020 components: - type: Transform - pos: 74.5,-0.5 + pos: 25.5,38.5 parent: 2 - - uid: 5394 +- proto: SignSmoking + entities: + - uid: 5466 components: - type: Transform - pos: 55.523434,10.407994 + pos: 68.5,38.5 parent: 2 - - uid: 10073 + - uid: 9721 components: - type: Transform - pos: 66.473175,-3.547059 + pos: 54.5,-2.5 parent: 2 -- proto: ScrapCamera +- proto: SignSpace entities: - - uid: 6843 + - uid: 5397 components: - type: Transform - pos: 67.493965,34.506084 + pos: 34.5,-37.5 parent: 2 -- proto: Screen - entities: - - uid: 13232 + - uid: 7562 components: - type: Transform - pos: 24.5,-20.5 + pos: 2.4978352,-16.484226 parent: 2 - - uid: 13233 + - uid: 7563 components: - type: Transform - pos: 24.5,-2.5 + pos: 5.529085,-16.484226 parent: 2 - - uid: 13234 + - uid: 10083 components: - type: Transform - pos: 32.5,-1.5 + pos: 62.5,29.5 parent: 2 - - uid: 13235 + - uid: 12823 components: - type: Transform - pos: 21.5,-1.5 + pos: 4.5,34.5 parent: 2 - - uid: 13236 + - uid: 12992 components: - type: Transform - pos: 2.5,-2.5 + pos: 33.5,-48.5 parent: 2 - - uid: 13237 + - uid: 14157 components: - type: Transform - pos: 2.5,9.5 + pos: 73.5,21.5 parent: 2 - - uid: 13238 + - uid: 14241 components: - type: Transform - pos: 17.5,11.5 + pos: 80.5,28.5 parent: 2 - - uid: 13239 +- proto: SignSurgery + entities: + - uid: 11202 components: - type: Transform - pos: 38.5,16.5 + pos: 63.483078,-4.4704685 parent: 2 - - uid: 13240 + - uid: 11203 components: - type: Transform - pos: 39.5,10.5 + pos: 54.505295,-16.448315 parent: 2 - - uid: 13241 +- proto: SignTelecomms + entities: + - uid: 11206 components: - type: Transform - pos: 29.5,38.5 + pos: 24.48286,-16.522787 parent: 2 - - uid: 13242 +- proto: SignToolStorage + entities: + - uid: 5704 components: - type: Transform - pos: 20.5,43.5 + pos: 68.5,40.5 parent: 2 - - uid: 13243 + - uid: 11200 components: - type: Transform - pos: 23.5,19.5 + pos: 28.472525,-18.512623 parent: 2 - - uid: 13619 + - uid: 12302 components: - type: Transform - pos: 55.5,32.5 + rot: 1.5707963267948966 rad + pos: 28.5,-13.5 parent: 2 - - uid: 13620 +- proto: SignToxins + entities: + - uid: 12304 components: - type: Transform - pos: 57.5,32.5 + rot: 1.5707963267948966 rad + pos: 59.5,12.5 parent: 2 - - uid: 13621 +- proto: SignVirology + entities: + - uid: 10909 components: - type: Transform - pos: 60.5,28.5 + pos: 78.5,0.5 parent: 2 - - uid: 13622 +- proto: SingularityGenerator + entities: + - uid: 750 components: - type: Transform - pos: 52.5,28.5 + anchored: False + pos: 12.5,-31.5 parent: 2 - - uid: 13623 + - type: Physics + bodyType: Dynamic +- proto: Sink + entities: + - uid: 1530 components: - type: Transform - pos: 54.5,40.5 + pos: 11.5,13.5 parent: 2 - - uid: 13624 + - uid: 5276 components: - type: Transform - pos: 58.5,40.5 + rot: 1.5707963267948966 rad + pos: 64.5,-6.5 parent: 2 - - uid: 13625 + - uid: 6932 components: - type: Transform - pos: 61.5,38.5 + pos: 10.5,13.5 parent: 2 - - uid: 13626 + - uid: 7412 components: - type: Transform - pos: 51.5,38.5 + pos: 78.5,-0.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 11132 + - uid: 7575 components: - type: Transform - pos: 57.5176,-14.309467 + rot: -1.5707963267948966 rad + pos: 53.5,-7.5 parent: 2 - - uid: 13707 + - uid: 10446 components: - type: Transform - pos: 25.478437,-38.442886 + pos: 51.5,15.5 parent: 2 -- proto: SecurityTechFab - entities: - - uid: 1831 + - uid: 10853 components: - type: Transform - pos: 38.5,24.5 + rot: 3.141592653589793 rad + pos: 103.5,-13.5 parent: 2 -- proto: SeedExtractor - entities: - - uid: 2305 + - uid: 11406 components: - type: Transform - pos: 38.5,36.5 + pos: 65.5,-8.5 parent: 2 - - uid: 6677 + - uid: 11899 components: - type: Transform - pos: 45.5,-4.5 + rot: 1.5707963267948966 rad + pos: 77.5,8.5 parent: 2 -- proto: ShardGlass - entities: - - uid: 10809 + - uid: 12166 components: - type: Transform - pos: 89.55373,-21.433664 + rot: 1.5707963267948966 rad + pos: 17.5,6.5 parent: 2 - - uid: 10810 + - uid: 13628 components: - type: Transform - pos: 90.27248,-20.82429 + rot: -1.5707963267948966 rad + pos: 59.5,36.5 parent: 2 -- proto: SheetGlass +- proto: SinkWide entities: - - uid: 784 - components: - - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1648 + - uid: 4559 components: - type: Transform - pos: 33.519444,-17.381672 + pos: 37.5,-9.5 parent: 2 - - uid: 5327 + - uid: 9720 components: - type: Transform - pos: 56.186665,17.583338 + rot: -1.5707963267948966 rad + pos: 39.5,-4.5 parent: 2 - - uid: 5328 + - uid: 15010 components: - type: Transform - pos: 56.186665,17.583338 + rot: 3.141592653589793 rad + pos: 41.5,-7.5 parent: 2 - - uid: 5329 +- proto: Skub + entities: + - uid: 5403 components: - type: Transform - pos: 56.186665,17.583338 + pos: 62.485527,20.60704 parent: 2 - - uid: 5636 + - uid: 13072 components: - type: Transform - pos: 16.999237,-26.465462 + pos: 7.5138106,-13.335101 parent: 2 - - uid: 5640 + - uid: 13073 components: - type: Transform - pos: 16.999237,-26.465462 + pos: 4.5294356,-11.475726 parent: 2 - - uid: 10311 + - uid: 13074 components: - type: Transform - pos: 8.421515,-6.356274 + pos: 8.498186,-12.475726 parent: 2 -- proto: SheetPlasma +- proto: SmartFridge entities: - - uid: 2129 - components: - - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7529 + - uid: 228 components: - type: Transform - pos: 71.06963,13.620979 + pos: 40.5,-6.5 parent: 2 -- proto: SheetPlasteel - entities: - - uid: 1842 + - uid: 2963 components: - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5635 + pos: 54.5,-5.5 + parent: 2 + - uid: 11837 components: - type: Transform - pos: 17.5,-26.5 + pos: 62.5,-3.5 parent: 2 - - uid: 10312 + - uid: 13110 components: - type: Transform - pos: 8.609015,-6.340649 + pos: 67.5,-8.5 parent: 2 -- proto: SheetPlastic +- proto: SMESBasic entities: - - uid: 5333 + - uid: 875 components: + - type: MetaData + name: SMES Bank 1 - type: Transform - pos: 56.436665,17.505213 + pos: 25.5,-31.5 parent: 2 - - uid: 5334 + - uid: 876 components: + - type: MetaData + name: SMES Bank 2 - type: Transform - pos: 56.436665,17.505213 + pos: 26.5,-31.5 parent: 2 - - uid: 5335 + - uid: 885 components: + - type: MetaData + name: SMES Bank 3 - type: Transform - pos: 56.436665,17.505213 + pos: 27.5,-31.5 parent: 2 -- proto: SheetSteel - entities: - - uid: 1239 - components: - - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1789 + - uid: 2121 components: + - type: MetaData + name: Singulo SMES - type: Transform - pos: 33.507664,-17.468887 + pos: 16.5,-38.5 parent: 2 - - uid: 5152 + - uid: 3263 components: + - type: MetaData + name: Gravity/Bridge SMES - type: Transform - pos: 43.528275,-35.489674 + pos: 13.5,35.5 parent: 2 - - uid: 5153 + - uid: 3405 components: - type: Transform - pos: 43.528275,-35.489674 + pos: 71.5,44.5 parent: 2 - - uid: 5330 + - uid: 4075 components: + - type: MetaData + name: Telecomms SMES - type: Transform - pos: 56.63979,17.598963 + pos: 23.5,-14.5 parent: 2 - - uid: 5331 + - uid: 9002 components: - type: Transform - pos: 56.63979,17.598963 + pos: 112.5,-17.5 parent: 2 - - uid: 5332 + - type: PowerNetworkBattery + loadingNetworkDemand: 60.000237 + currentSupply: 60.000237 + supplyRampPosition: 60.000237 + - uid: 10856 components: - type: Transform - pos: 56.63979,17.598963 + pos: 3.5,-34.5 parent: 2 - - uid: 5383 + - uid: 14394 components: + - type: MetaData + name: AI Core SMES - type: Transform - pos: 50.524685,8.532994 + pos: 79.5,34.5 parent: 2 - - uid: 5384 + - uid: 14741 components: + - type: MetaData + name: Security SMES - type: Transform - pos: 50.524685,8.532994 + pos: 37.5,33.5 parent: 2 - - uid: 5385 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 11946 components: - type: Transform - pos: 50.524685,8.532994 + pos: 32.982197,41.628204 parent: 2 - - uid: 5633 +- proto: SodaDispenser + entities: + - uid: 2922 components: - type: Transform - pos: 16.5,-26.5 + pos: 67.5,-17.5 parent: 2 - - uid: 5634 + - type: ContainerContainer + containers: + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6526 components: - type: Transform - pos: 16.5,-26.5 + pos: 39.5,-2.5 parent: 2 - - uid: 7271 +- proto: SolarPanel + entities: + - uid: 1386 components: - type: Transform - pos: 30.5,-30.5 + pos: -5.5,-31.5 parent: 2 - - uid: 7272 + - uid: 1387 components: - type: Transform - pos: 30.5,-30.5 + pos: -3.5,-31.5 parent: 2 - - uid: 8175 + - uid: 1388 components: - type: Transform - pos: 43.528275,-35.489674 + pos: -3.5,-32.5 parent: 2 - - uid: 10313 + - uid: 1389 components: - type: Transform - pos: 8.53089,-6.434399 + pos: -5.5,-32.5 parent: 2 - - uid: 12088 + - uid: 1390 components: - type: Transform - pos: 16.49948,-26.476994 + pos: -5.5,-33.5 parent: 2 - - uid: 13432 + - uid: 1391 components: - type: Transform - pos: 43.528275,-35.489674 + pos: -3.5,-33.5 parent: 2 -- proto: SheetSteel1 - entities: - - uid: 4672 + - uid: 1392 components: - type: Transform - pos: 90.36041,-10.650079 + pos: -5.5,-37.5 parent: 2 - - uid: 6720 + - uid: 1393 components: - type: Transform - pos: 90.60682,-10.582865 + pos: -3.5,-37.5 parent: 2 - - uid: 6721 + - uid: 1394 components: - type: Transform - pos: 90.45002,-10.358817 + pos: -3.5,-38.5 parent: 2 -- proto: SheetUranium - entities: - - uid: 1460 + - uid: 1395 components: - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Shovel - entities: - - uid: 8254 + pos: -3.5,-39.5 + parent: 2 + - uid: 1396 components: - type: Transform - pos: 9.453524,15.534067 + pos: -5.5,-39.5 parent: 2 -- proto: ShuttersNormal - entities: - - uid: 5268 + - uid: 1397 components: - type: Transform - pos: 44.5,12.5 + pos: -5.5,-38.5 parent: 2 - - uid: 6513 + - uid: 1412 components: - type: Transform - pos: 46.5,-11.5 + pos: -7.5,-33.5 parent: 2 - - uid: 6514 + - uid: 1413 components: - type: Transform - pos: 47.5,-11.5 + pos: -7.5,-32.5 parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 265 + - uid: 1414 components: - type: Transform - pos: 34.5,-8.5 + pos: -7.5,-31.5 parent: 2 - - uid: 267 + - uid: 1415 components: - type: Transform - pos: 35.5,-8.5 + pos: -7.5,-30.5 parent: 2 - - uid: 270 + - uid: 1416 components: - type: Transform - pos: 36.5,-8.5 + pos: -9.5,-30.5 parent: 2 - - uid: 320 + - uid: 1417 components: - type: Transform - pos: 8.5,29.5 + pos: -9.5,-31.5 parent: 2 - - uid: 419 + - uid: 1418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 + pos: -9.5,-32.5 parent: 2 - - uid: 913 + - uid: 1419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 + pos: -9.5,-33.5 parent: 2 - - uid: 1154 + - uid: 1420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 + pos: -9.5,-37.5 parent: 2 - - uid: 1658 + - uid: 1421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 + pos: -9.5,-38.5 parent: 2 - - uid: 2087 + - uid: 1422 components: - type: Transform - pos: 28.5,17.5 + pos: -9.5,-39.5 parent: 2 - - uid: 2831 + - uid: 1423 components: - type: Transform - pos: 9.5,29.5 + pos: -9.5,-40.5 parent: 2 - - uid: 2990 + - uid: 1424 components: - type: Transform - pos: 50.5,1.5 + pos: -7.5,-40.5 parent: 2 - - uid: 6512 + - uid: 1425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 + pos: -7.5,-39.5 parent: 2 - - uid: 12424 + - uid: 1426 components: - type: Transform - pos: 49.5,1.5 + pos: -7.5,-38.5 parent: 2 - - uid: 12425 + - uid: 1427 components: - type: Transform - pos: 51.5,1.5 + pos: -7.5,-37.5 parent: 2 - - uid: 12822 + - uid: 1444 components: - type: Transform - pos: 28.5,20.5 + pos: -13.5,-37.5 parent: 2 - - uid: 12823 + - uid: 1445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 + pos: -13.5,-38.5 parent: 2 - - uid: 12824 + - uid: 1446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,21.5 + pos: -13.5,-39.5 parent: 2 - - uid: 13422 + - uid: 1447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-42.5 + pos: -11.5,-39.5 parent: 2 - - uid: 13476 + - uid: 1448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 + pos: -11.5,-38.5 parent: 2 - - uid: 13477 + - uid: 1449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 + pos: -11.5,-37.5 parent: 2 - - uid: 13478 + - uid: 1450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-40.5 + pos: -11.5,-33.5 parent: 2 - - uid: 13479 + - uid: 1451 components: - type: Transform - pos: 8.5,-43.5 + pos: -11.5,-32.5 parent: 2 - - uid: 13480 + - uid: 1452 components: - type: Transform - pos: 9.5,-43.5 + pos: -11.5,-31.5 parent: 2 - - uid: 13481 + - uid: 1453 components: - type: Transform - pos: 10.5,-43.5 + pos: -13.5,-31.5 parent: 2 - - uid: 13482 + - uid: 1454 components: - type: Transform - pos: 11.5,-43.5 + pos: -13.5,-32.5 parent: 2 - - uid: 13483 + - uid: 1455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-39.5 + pos: -13.5,-33.5 parent: 2 - - uid: 13484 + - uid: 5535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-39.5 + pos: 77.5,49.5 parent: 2 - - uid: 13485 + - uid: 5536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-39.5 + pos: 77.5,48.5 parent: 2 - - uid: 13486 + - uid: 5537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-39.5 + pos: 77.5,47.5 parent: 2 - - uid: 13488 + - uid: 5538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-36.5 + pos: 79.5,47.5 parent: 2 - - uid: 13489 + - uid: 5539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-35.5 + pos: 79.5,48.5 parent: 2 - - uid: 13490 + - uid: 5540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-33.5 + pos: 79.5,49.5 parent: 2 -- proto: ShuttersRadiationOpen - entities: - - uid: 779 + - uid: 5541 components: - type: Transform - pos: 19.5,-37.5 + pos: 81.5,50.5 parent: 2 - - uid: 780 + - uid: 5542 components: - type: Transform - pos: 20.5,-37.5 + pos: 81.5,49.5 parent: 2 - - uid: 4502 + - uid: 5543 components: - type: Transform - pos: 22.5,-37.5 + pos: 81.5,48.5 parent: 2 - - uid: 4503 + - uid: 5544 components: - type: Transform - pos: 23.5,-37.5 + pos: 81.5,47.5 parent: 2 -- proto: SignAi - entities: - - uid: 12242 + - uid: 5545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,28.5 + pos: 83.5,47.5 parent: 2 -- proto: SignalButton - entities: - - uid: 202 + - uid: 5546 components: - type: Transform - pos: 37.5,-29.5 + pos: 83.5,48.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 55: - - Pressed: Toggle - - uid: 374 + - uid: 5547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,28.5 + pos: 83.5,49.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7462: - - Pressed: Toggle - - uid: 1025 + - uid: 5548 components: - - type: MetaData - name: Radiation Shutters - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 + pos: 83.5,50.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 779: - - Pressed: Toggle - 780: - - Pressed: Toggle - 4502: - - Pressed: Toggle - 4503: - - Pressed: Toggle - - uid: 1471 + - uid: 5549 components: - - type: MetaData - name: Kitchen Counter Shutters - type: Transform - pos: 32.5,-9.5 + pos: 83.5,40.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 265: - - Pressed: Toggle - 267: - - Pressed: Toggle - 270: - - Pressed: Toggle - - uid: 4245 + - uid: 5550 components: - type: Transform - pos: 37.5,-33.5 + pos: 81.5,40.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4257: - - Pressed: Toggle - - uid: 5043 + - uid: 5551 components: - type: Transform - pos: 16.5,-30.5 + pos: 81.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5124: - - Pressed: Toggle - - uid: 5685 + - uid: 5552 components: - - type: MetaData - name: Engineering Secure Storage Button - type: Transform - pos: 12.5,-25.5 + pos: 81.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2834: - - Pressed: Toggle - 2835: - - Pressed: Toggle - - uid: 6749 + - uid: 5553 components: - - type: MetaData - name: Pen Maints Hatch - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-9.5 + pos: 81.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6513: - - Pressed: Toggle - 6514: - - Pressed: Toggle - - uid: 6856 + - uid: 5554 components: - - type: MetaData - name: Conveyor Blast Door - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 + pos: 83.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7618: - - Pressed: Toggle - - uid: 7463 + - uid: 5555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,22.5 + pos: 83.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 384: - - Pressed: Toggle - - uid: 8163 + - uid: 5556 components: - type: Transform - pos: 10.5,29.5 + pos: 83.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2831: - - Pressed: Toggle - 320: - - Pressed: Toggle - - uid: 8288 + - uid: 5557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,2.5 + pos: 79.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12424: - - Pressed: Toggle - 2990: - - Pressed: Toggle - 12425: - - Pressed: Toggle - - uid: 10321 + - uid: 5558 components: - type: Transform - pos: 48.5,12.5 + pos: 79.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 150: - - Pressed: Toggle - - uid: 12825 + - uid: 5559 components: - type: Transform - pos: 31.772217,19.196745 + pos: 79.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2087: - - Pressed: Toggle - 12823: - - Pressed: Toggle - - uid: 12826 + - uid: 5560 components: - type: Transform - pos: 31.756592,22.24362 + pos: 77.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12822: - - Pressed: Toggle - 12824: - - Pressed: Toggle - - uid: 13491 + - uid: 5561 components: - type: Transform - pos: 11.5,-32.5 + pos: 77.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13490: - - Pressed: Toggle - 13489: - - Pressed: Toggle - 13488: - - Pressed: Toggle - - uid: 13492 + - uid: 5562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-41.5 + pos: 77.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13422: - - Pressed: Toggle - 13483: - - Pressed: Toggle - 13484: - - Pressed: Toggle - 13485: - - Pressed: Toggle - 13486: - - Pressed: Toggle - 13478: - - Pressed: Toggle - 13477: - - Pressed: Toggle - 13476: - - Pressed: Toggle - 13479: - - Pressed: Toggle - 13480: - - Pressed: Toggle - 13481: - - Pressed: Toggle - 13482: - - Pressed: Toggle -- proto: SignalButtonDirectional - entities: - - uid: 543 + - uid: 5563 components: - - type: MetaData - name: Bar Shutters - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-8.5 + pos: 85.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 419: - - Pressed: Toggle - 1658: - - Pressed: Toggle - 6512: - - Pressed: Toggle - 913: - - Pressed: Toggle - 1154: - - Pressed: Toggle - - uid: 13594 + - uid: 5564 components: - type: Transform - pos: 55.5,35.5 + pos: 85.5,42.5 parent: 2 -- proto: SignAnomaly - entities: - - uid: 5066 + - uid: 5565 components: - type: Transform - pos: 61.5,21.5 + pos: 85.5,43.5 parent: 2 -- proto: SignAnomaly2 - entities: - - uid: 6475 + - uid: 5566 components: - type: Transform - pos: 65.5,13.5 + pos: 87.5,43.5 parent: 2 -- proto: SignArmory - entities: - - uid: 11210 + - uid: 5567 components: - type: Transform - pos: 42.47835,25.502422 + pos: 87.5,42.5 parent: 2 -- proto: SignAtmos - entities: - - uid: 4574 + - uid: 5568 components: - type: Transform - pos: 37.5,-38.5 + pos: 87.5,41.5 parent: 2 - - uid: 4575 + - uid: 5569 components: - type: Transform - pos: 28.5,-26.5 + pos: 87.5,47.5 parent: 2 -- proto: SignBar - entities: - - uid: 11198 + - uid: 5570 components: - type: Transform - pos: 36.515213,-1.5077809 + pos: 87.5,48.5 parent: 2 -- proto: SignBiohazardMed - entities: - - uid: 12243 + - uid: 5571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,0.5 + pos: 87.5,49.5 parent: 2 -- proto: SignCans - entities: - - uid: 4569 + - uid: 5572 components: - type: Transform - pos: 41.5,-36.5 + pos: 85.5,49.5 parent: 2 -- proto: SignCargo - entities: - - uid: 11211 + - uid: 5573 components: - type: Transform - pos: 22.44822,19.533756 + pos: 85.5,48.5 parent: 2 -- proto: SignCargoDock - entities: - - uid: 11212 + - uid: 5574 components: - type: Transform - pos: 6.565961,21.533756 + pos: 85.5,47.5 parent: 2 -- proto: SignChapel - entities: - - uid: 11193 + - uid: 8904 components: - type: Transform - pos: 39.519363,4.4919653 + pos: 111.5,-21.5 parent: 2 -- proto: SignChem - entities: - - uid: 6817 + - uid: 8905 components: - type: Transform - pos: 51.5,-2.5 + pos: 111.5,-22.5 parent: 2 -- proto: SignConference - entities: - - uid: 11192 + - uid: 8906 components: - type: Transform - pos: 25.484035,39.437214 + pos: 111.5,-23.5 parent: 2 -- proto: SignCryo - entities: - - uid: 13541 + - uid: 8907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 + pos: 111.5,-24.5 parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 11804 + - uid: 8908 components: - type: Transform - pos: 63.5,-0.5 + pos: 113.5,-24.5 parent: 2 -- proto: SignDangerMed - entities: - - uid: 10436 + - uid: 8909 components: - type: Transform - pos: 61.5,26.5 + pos: 113.5,-23.5 parent: 2 -- proto: SignDirectionalBridge - entities: - - uid: 7329 + - uid: 8910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.503027,16.714216 + pos: 113.5,-22.5 parent: 2 - - uid: 8119 + - uid: 8911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.4992805,2.707316 + pos: 113.5,-21.5 parent: 2 - - uid: 11181 + - uid: 8912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.54057,12.41816 + pos: 115.5,-21.5 parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 12270 + - uid: 8913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,31.5 + pos: 115.5,-22.5 parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 40 + - uid: 8914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 + pos: 115.5,-23.5 parent: 2 - - uid: 13540 + - uid: 8915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,14.5 + pos: 115.5,-24.5 parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 11817 + - uid: 8961 components: - type: Transform - pos: 28.5037,2.3089128 + pos: 111.5,-13.5 parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 1936 + - uid: 8962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 + pos: 111.5,-12.5 parent: 2 - - uid: 7848 + - uid: 8963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: 111.5,-11.5 parent: 2 - - uid: 7894 + - uid: 8964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 + pos: 111.5,-10.5 parent: 2 - - uid: 8120 + - uid: 8965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.4992805,2.2952788 + pos: 113.5,-12.5 parent: 2 - - uid: 11806 + - uid: 8966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.498083,2.3033948 + pos: 113.5,-13.5 parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 11809 + - uid: 8967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,2.5 + pos: 113.5,-11.5 parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 11816 + - uid: 8968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.498083,2.6830244 + pos: 113.5,-10.5 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 8118 + - uid: 8969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 + pos: 115.5,-13.5 parent: 2 - - uid: 11184 + - uid: 8970 components: - type: Transform - pos: 39.55419,12.695712 + pos: 115.5,-12.5 parent: 2 - - uid: 11813 + - uid: 8971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,2.5 + pos: 115.5,-11.5 parent: 2 - - uid: 11853 + - uid: 8972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.50202,2.3010597 + pos: 115.5,-10.5 parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 11182 + - uid: 9081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5195,12.147359 + pos: 120.5,-15.5 parent: 2 - - uid: 11188 + - uid: 9082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.557316,12.409777 + pos: 119.5,-15.5 parent: 2 - - uid: 11812 + - uid: 9083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.505745,2.6978016 + pos: 118.5,-15.5 parent: 2 - - uid: 11851 + - uid: 9084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 + pos: 117.5,-15.5 parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 5416 + - uid: 9085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.4984922,11.283884 + pos: 119.5,-17.5 parent: 2 - - uid: 7327 + - uid: 9086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,16.5 + pos: 118.5,-17.5 parent: 2 - - uid: 11180 + - uid: 9087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.54057,12.66816 + pos: 117.5,-17.5 parent: 2 - - uid: 11852 + - uid: 9088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.50202,2.708467 + pos: 120.5,-19.5 parent: 2 -- proto: SignDirectionalSolar - entities: - - uid: 12297 + - uid: 9089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 119.5,-19.5 parent: 2 - - uid: 12298 + - uid: 9090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,19.5 + pos: 118.5,-19.5 parent: 2 - - uid: 12299 + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,45.5 + pos: 117.5,-19.5 parent: 2 -- proto: SignDirectionalSupply +- proto: SolarTracker entities: - - uid: 5418 + - uid: 1443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.4984922,11.714439 + pos: -15.5,-35.5 parent: 2 - - uid: 7328 + - uid: 5575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.503027,16.29755 + pos: 89.5,45.5 parent: 2 -- proto: SignDirectionalWash - entities: - - uid: 11815 + - uid: 9080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,11.5 + pos: 120.5,-17.5 parent: 2 -- proto: SignElectricalMed +- proto: SpaceVillainArcadeFilled entities: - - uid: 7 + - uid: 1 components: - type: Transform - pos: 14.5,32.5 + pos: 20.5,10.5 parent: 2 - - uid: 1599 + - type: SpamEmitSound + enabled: False +- proto: SpawnMechRipley + entities: + - uid: 14751 components: - type: Transform - pos: 24.5,-40.5 + pos: 12.5,31.5 parent: 2 - - uid: 4874 +- proto: SpawnMobAlexander + entities: + - uid: 1866 components: - type: Transform - pos: 3.5,-33.5 + pos: 34.5,-11.5 parent: 2 - - uid: 12351 +- proto: SpawnMobBandito + entities: + - uid: 12772 components: - type: Transform - pos: 3.5,-8.5 + pos: 62.5,10.5 parent: 2 - - uid: 13003 +- proto: SpawnMobCatGeneric + entities: + - uid: 11419 components: - type: Transform - pos: 36.5,-41.5 + pos: 57.5,-11.5 parent: 2 - - uid: 13004 +- proto: SpawnMobCorgi + entities: + - uid: 10281 components: - type: Transform - pos: 31.5,-49.5 + pos: 19.5,-5.5 parent: 2 -- proto: SignEngine +- proto: SpawnMobCrabAtmos entities: - - uid: 5157 + - uid: 5859 components: - type: Transform - pos: 30.5,-37.5 + pos: 38.5,-28.5 parent: 2 - - uid: 5301 +- proto: SpawnMobFoxRenault + entities: + - uid: 12231 components: - type: Transform - pos: 33.5,-40.5 + pos: 31.5,41.5 parent: 2 -- proto: SignEngineering +- proto: SpawnMobMcGriff entities: - - uid: 5156 + - uid: 2493 components: - type: Transform - pos: 24.5,-26.5 + pos: 36.5,19.5 parent: 2 -- proto: SignEscapePods +- proto: SpawnMobMonkeyPunpun entities: - - uid: 5027 + - uid: 6527 components: - type: Transform - pos: 85.5,3.5 + pos: 39.5,-5.5 parent: 2 -- proto: SignEVA +- proto: SpawnMobMouse entities: - - uid: 5204 + - uid: 12324 components: - type: Transform - pos: 10.5,-2.5 + pos: 13.5,18.5 parent: 2 -- proto: SignExamroom - entities: - - uid: 12239 + - uid: 12327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,5.5 + pos: 73.5,-15.5 parent: 2 - - uid: 12240 + - uid: 12797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-8.5 + pos: 43.5,44.5 parent: 2 -- proto: SignFire - entities: - - uid: 12280 + - uid: 12798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,26.5 + pos: 67.5,39.5 parent: 2 - - uid: 12993 + - uid: 12799 components: - type: Transform - pos: 45.5,-49.5 + pos: 81.5,7.5 parent: 2 - - uid: 12994 + - uid: 12801 components: - type: Transform - pos: 45.5,-43.5 + pos: 1.5,-7.5 parent: 2 -- proto: SignFlammableMed - entities: - - uid: 1650 + - uid: 14926 components: - type: Transform - pos: 33.5,-31.5 + pos: -14.5,-22.5 parent: 2 - - uid: 10437 +- proto: SpawnMobPossumMorty + entities: + - uid: 12303 components: - type: Transform - pos: 61.5,27.5 + pos: 73.5,-1.5 parent: 2 -- proto: SignGravity +- proto: SpawnMobRaccoonMorticia entities: - - uid: 11199 + - uid: 14740 components: - type: Transform - pos: 16.482166,37.47681 + pos: 5.5,15.5 parent: 2 -- proto: SignHead +- proto: SpawnMobShiva entities: - - uid: 11814 + - uid: 8444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 + pos: 44.5,22.5 parent: 2 -- proto: SignHydro1 +- proto: SpawnMobSlothPaperwork entities: - - uid: 6648 + - uid: 12305 components: - type: Transform - pos: 47.5,-2.5 + pos: 9.5,5.5 parent: 2 - - uid: 6651 +- proto: SpawnMobSmile + entities: + - uid: 12771 components: - type: Transform - pos: 41.5,-2.5 + pos: 59.5,19.5 parent: 2 -- proto: SignInterrogation +- proto: SpawnMobWalter entities: - - uid: 11209 + - uid: 12230 components: - type: Transform - pos: 31.49329,27.493366 + pos: 50.5,-8.5 parent: 2 -- proto: SignJanitor +- proto: SpawnPointAtmos entities: - - uid: 13164 + - uid: 4577 components: - type: Transform - pos: 6.5,-2.5 + pos: 30.5,-31.5 parent: 2 -- proto: SignKiddiePlaque - entities: - - uid: 12282 + - uid: 4578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 + pos: 29.5,-31.5 parent: 2 -- proto: SignLaserMed +- proto: SpawnPointBartender entities: - - uid: 12289 + - uid: 13732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 + pos: 39.5,-9.5 parent: 2 -- proto: SignLawyer +- proto: SpawnPointBorg entities: - - uid: 13165 + - uid: 13142 components: - type: Transform - pos: -4.5,-6.5 + pos: 45.5,10.5 parent: 2 - - uid: 13166 + - uid: 14628 components: - type: Transform - pos: 24.5,28.5 + pos: 49.5,9.5 parent: 2 -- proto: SignLibrary - entities: - - uid: 11201 + - uid: 14629 components: - type: Transform - pos: 7.478853,8.535535 + pos: 51.5,9.5 parent: 2 -- proto: SignMagneticsMed +- proto: SpawnPointBotanist entities: - - uid: 12283 + - uid: 6750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 + pos: 43.5,-6.5 parent: 2 -- proto: SignMedical - entities: - - uid: 6788 + - uid: 6751 components: - type: Transform - pos: 53.5,1.5 + pos: 44.5,-6.5 parent: 2 -- proto: SignMorgue +- proto: SpawnPointCaptain entities: - - uid: 11196 + - uid: 8682 components: - type: Transform - pos: 71.560074,0.5078441 + pos: 33.5,40.5 parent: 2 - - uid: 11843 +- proto: SpawnPointCargoTechnician + entities: + - uid: 8258 components: - type: Transform - pos: 70.5,-6.5 + pos: 13.5,22.5 parent: 2 -- proto: SignNosmoking - entities: - - uid: 10074 + - uid: 8259 components: - type: Transform - pos: 68.5,-4.5 + pos: 12.5,22.5 parent: 2 - - uid: 11397 + - uid: 8260 components: - type: Transform - pos: 65.5,-7.5 + pos: 11.5,22.5 parent: 2 -- proto: SignPlaque +- proto: SpawnPointChaplain entities: - - uid: 12281 + - uid: 10638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 + pos: 32.5,8.5 parent: 2 -- proto: SignPrison +- proto: SpawnPointChef entities: - - uid: 11208 + - uid: 8294 components: - type: Transform - pos: 35.478874,29.508991 + pos: 36.5,-11.5 parent: 2 -- proto: SignRadiationMed +- proto: SpawnPointChemist entities: - - uid: 747 + - uid: 5071 components: - type: Transform - pos: 18.5,-40.5 + pos: 53.5,-4.5 parent: 2 - - uid: 4012 + - uid: 6650 components: - type: Transform - pos: 24.5,-37.5 + pos: 50.5,-4.5 parent: 2 -- proto: SignRND +- proto: SpawnPointChiefEngineer entities: - - uid: 11190 + - uid: 8692 components: - type: Transform - pos: 57.499714,16.503765 + pos: 11.5,-34.5 parent: 2 - - uid: 12293 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 11418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 + pos: 56.5,-11.5 parent: 2 -- proto: SignRobo +- proto: SpawnPointClown entities: - - uid: 12291 + - uid: 9608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,12.5 + pos: 26.5,6.5 parent: 2 - - uid: 12292 +- proto: SpawnPointDetective + entities: + - uid: 8679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 + pos: 42.5,19.5 parent: 2 -- proto: SignScience +- proto: SpawnPointHeadOfPersonnel entities: - - uid: 11191 + - uid: 12791 components: - type: Transform - pos: 48.50537,15.474182 + pos: 19.5,-4.5 parent: 2 -- proto: SignSecurearea +- proto: SpawnPointHeadOfSecurity entities: - - uid: 11939 + - uid: 8438 components: - type: Transform - pos: 17.5,-15.5 + pos: 44.5,24.5 parent: 2 - - uid: 13644 +- proto: SpawnPointJanitor + entities: + - uid: 8711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,28.5 + pos: 5.5,-4.5 parent: 2 - - uid: 13645 +- proto: SpawnPointLatejoin + entities: + - uid: 15 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,28.5 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 2 -- proto: SignSecureMed - entities: - - uid: 1518 + - uid: 98 components: - type: Transform - pos: 28.5,-25.5 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 parent: 2 -- proto: SignSecurity - entities: - - uid: 12294 + - uid: 3343 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,27.5 + pos: -25.5,-12.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 2 -- proto: SignShipDock +- proto: SpawnPointLawyer entities: - - uid: 7784 + - uid: 8160 components: - type: Transform - pos: 6.5,18.5 + pos: -2.5,-11.5 parent: 2 - - uid: 9306 + - uid: 8161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,51.5 + pos: -3.5,-10.5 parent: 2 -- proto: SignShock +- proto: SpawnPointLibrarian entities: - - uid: 8410 + - uid: 11708 components: - type: Transform - pos: 42.5,30.5 + pos: 9.5,3.5 parent: 2 - - uid: 8411 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 11958 components: - type: Transform - pos: 42.5,34.5 + pos: 71.5,5.5 parent: 2 - - uid: 11017 + - uid: 11959 components: - type: Transform - pos: 42.5,-13.5 + pos: 71.5,6.5 parent: 2 - - uid: 11019 + - uid: 11960 components: - type: Transform - pos: 20.5,38.5 + pos: 71.5,7.5 parent: 2 - - uid: 11020 +- proto: SpawnPointMedicalIntern + entities: + - uid: 11961 components: - type: Transform - pos: 25.5,38.5 + pos: 73.5,5.5 parent: 2 - - uid: 11089 + - uid: 11962 components: - type: Transform - pos: 28.5,22.5 + pos: 73.5,6.5 parent: 2 - - uid: 13631 +- proto: SpawnPointMime + entities: + - uid: 9610 components: - type: Transform - pos: 50.5,39.5 + pos: 25.5,7.5 parent: 2 - - uid: 13632 +- proto: SpawnPointMusician + entities: + - uid: 9355 components: - type: Transform - pos: 53.5,41.5 + pos: 20.5,-11.5 parent: 2 - - uid: 13633 +- proto: SpawnPointObserver + entities: + - uid: 5419 components: - type: Transform - pos: 59.5,41.5 + pos: 26.5,1.5 parent: 2 - - uid: 13634 +- proto: SpawnPointParamedic + entities: + - uid: 8314 components: - type: Transform - pos: 62.5,39.5 + pos: 46.5,3.5 parent: 2 -- proto: SignSmoking +- proto: SpawnPointPassenger entities: - - uid: 5466 + - uid: 1791 components: - type: Transform - pos: 68.5,38.5 + pos: 32.5,-15.5 parent: 2 - - uid: 9721 + - uid: 1792 components: - type: Transform - pos: 54.5,-2.5 + pos: 31.5,-15.5 parent: 2 -- proto: SignSpace - entities: - - uid: 5397 + - uid: 1793 components: - type: Transform - pos: 34.5,-37.5 + pos: 30.5,-15.5 parent: 2 - - uid: 7562 + - uid: 1794 components: - type: Transform - pos: 2.4978352,-16.484226 + pos: 30.5,-16.5 parent: 2 - - uid: 7563 + - uid: 1795 components: - type: Transform - pos: 5.529085,-16.484226 + pos: 31.5,-16.5 parent: 2 - - uid: 10083 + - uid: 1796 components: - type: Transform - pos: 62.5,29.5 + pos: 32.5,-16.5 parent: 2 - - uid: 12992 +- proto: SpawnPointQuartermaster + entities: + - uid: 14990 components: - type: Transform - pos: 33.5,-48.5 + pos: 7.5,18.5 parent: 2 -- proto: SignSurgery +- proto: SpawnPointResearchAssistant entities: - - uid: 11202 + - uid: 10657 components: - type: Transform - pos: 63.483078,-4.4704685 + pos: 57.5,23.5 parent: 2 - - uid: 11203 + - uid: 10658 components: - type: Transform - pos: 54.505295,-16.448315 + pos: 56.5,23.5 parent: 2 -- proto: SignTelecomms +- proto: SpawnPointResearchDirector entities: - - uid: 11206 + - uid: 12770 components: - type: Transform - pos: 24.48286,-16.522787 + pos: 61.5,9.5 parent: 2 -- proto: SignToolStorage +- proto: SpawnPointSalvageSpecialist entities: - - uid: 5704 + - uid: 14764 components: - type: Transform - pos: 68.5,40.5 + pos: 7.5,31.5 parent: 2 - - uid: 11200 + - uid: 14765 components: - type: Transform - pos: 28.472525,-18.512623 + pos: 8.5,32.5 parent: 2 - - uid: 12302 +- proto: SpawnPointScientist + entities: + - uid: 10654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 + pos: 57.5,24.5 parent: 2 -- proto: SignToxins - entities: - - uid: 12304 + - uid: 10655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,12.5 + pos: 56.5,24.5 parent: 2 -- proto: SignVirology - entities: - - uid: 10909 + - uid: 10656 components: - type: Transform - pos: 78.5,0.5 + pos: 55.5,24.5 parent: 2 -- proto: SingularityGenerator +- proto: SpawnPointSecurityCadet entities: - - uid: 750 + - uid: 8437 components: - type: Transform - pos: 12.5,-31.5 + pos: 34.5,27.5 parent: 2 -- proto: Sink - entities: - - uid: 1530 + - uid: 8696 components: - type: Transform - pos: 11.5,13.5 + pos: 34.5,26.5 parent: 2 - - uid: 5276 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 8159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-6.5 + pos: 31.5,29.5 parent: 2 - - uid: 6932 + - uid: 13584 components: - type: Transform - pos: 10.5,13.5 + pos: 30.5,29.5 parent: 2 - - uid: 7412 + - uid: 13585 components: - type: Transform - pos: 78.5,-0.5 + pos: 29.5,29.5 parent: 2 - - uid: 7575 +- proto: SpawnPointServiceWorker + entities: + - uid: 12792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-7.5 + pos: 32.5,-5.5 parent: 2 - - uid: 10446 + - uid: 12793 components: - type: Transform - pos: 51.5,15.5 + pos: 32.5,-4.5 parent: 2 - - uid: 10853 + - uid: 12794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-13.5 + pos: 34.5,-5.5 parent: 2 - - uid: 11406 + - uid: 12795 components: - type: Transform - pos: 65.5,-8.5 + pos: 34.5,-4.5 parent: 2 - - uid: 11899 +- proto: SpawnPointStationEngineer + entities: + - uid: 4579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,8.5 + pos: 23.5,-31.5 parent: 2 - - uid: 12166 + - uid: 4580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,6.5 + pos: 22.5,-31.5 parent: 2 -- proto: SinkWide - entities: - - uid: 4559 + - uid: 4581 components: - type: Transform - pos: 37.5,-9.5 + pos: 21.5,-31.5 parent: 2 - - uid: 6680 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 5660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-6.5 + pos: 26.5,-32.5 parent: 2 - - uid: 9720 + - uid: 5661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 + pos: 25.5,-32.5 parent: 2 -- proto: Skub - entities: - - uid: 5403 + - uid: 5662 components: - type: Transform - pos: 62.485527,20.60704 + pos: 27.5,-32.5 parent: 2 - - uid: 13072 +- proto: SpawnPointWarden + entities: + - uid: 8375 components: - type: Transform - pos: 7.5138106,-13.335101 + pos: 38.5,18.5 parent: 2 - - uid: 13073 +- proto: SprayBottle + entities: + - uid: 5393 components: - type: Transform - pos: 4.5294356,-11.475726 + rot: 3.589668631320819E-05 rad + pos: 55.735016,10.470499 parent: 2 - - uid: 13074 + - uid: 7793 components: - type: Transform - pos: 8.498186,-12.475726 + pos: 55.34302,10.727416 parent: 2 -- proto: SmartFridge +- proto: SprayBottleSpaceCleaner entities: - - uid: 228 + - uid: 7812 components: - type: Transform - pos: 40.5,-6.5 + pos: 82.67393,-4.422255 parent: 2 - - uid: 2963 +- proto: SprayBottleWater + entities: + - uid: 6812 components: - type: Transform - pos: 54.5,-5.5 + pos: 67.05991,-3.359559 parent: 2 - - uid: 11837 +- proto: StasisBed + entities: + - uid: 1711 components: - type: Transform - pos: 62.5,-3.5 + pos: 60.5,4.5 parent: 2 - - uid: 13110 +- proto: StationAiUploadComputer + entities: + - uid: 11004 components: - type: Transform - pos: 67.5,-8.5 + pos: 85.5,32.5 parent: 2 -- proto: SMESBasic +- proto: StationAnchor entities: - - uid: 875 + - uid: 13717 components: - - type: MetaData - name: SMES Bank 1 - type: Transform - pos: 25.5,-31.5 + pos: 6.5,-19.5 parent: 2 - - uid: 876 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 14285 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: 26.5,-31.5 + pos: 84.42593,28.382923 parent: 2 - - uid: 885 +- proto: StationMap + entities: + - uid: 484 components: - - type: MetaData - name: SMES Bank 3 - type: Transform - pos: 27.5,-31.5 + rot: 3.141592653589793 rad + pos: -14.5,-2.5 parent: 2 - - uid: 3405 + - uid: 1761 components: - type: Transform - pos: 71.5,44.5 + pos: 19.5,38.5 parent: 2 - - uid: 4075 + - uid: 2022 components: - - type: MetaData - name: Telecomms SMES - type: Transform - pos: 23.5,-14.5 + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 parent: 2 - - uid: 5116 + - uid: 2024 components: - type: Transform - pos: 56.5,38.5 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 parent: 2 - - uid: 9002 + - uid: 8116 components: - type: Transform - pos: 112.5,-17.5 + pos: 9.5,2.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 60.000237 - currentSupply: 60.000237 - supplyRampPosition: 60.000237 - - uid: 10856 + - uid: 8984 components: - type: Transform - pos: 3.5,-34.5 + pos: 34.5,16.5 parent: 2 -- proto: SmokingPipeFilledTobacco - entities: - - uid: 11946 + - uid: 11292 components: - type: Transform - pos: 32.982197,41.628204 + pos: 28.5,-1.5 parent: 2 -- proto: SodaDispenser +- proto: Stimpack entities: - - uid: 2922 - components: - - type: Transform - pos: 67.5,-17.5 - parent: 2 - - type: ContainerContainer - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6526 + - uid: 12493 components: - type: Transform - pos: 39.5,-2.5 + pos: 11.490012,-11.457567 parent: 2 -- proto: SolarPanel +- proto: Stool entities: - - uid: 1386 + - uid: 172 components: - type: Transform - pos: -5.5,-31.5 + pos: 5.5,-4.5 parent: 2 - - uid: 1387 + - uid: 943 components: - type: Transform - pos: -3.5,-31.5 + rot: -1.5707963267948966 rad + pos: 3.5,-36.5 parent: 2 - - uid: 1388 + - uid: 1665 components: - type: Transform - pos: -3.5,-32.5 + rot: -1.5707963267948966 rad + pos: 30.5,-7.5 parent: 2 - - uid: 1389 + - uid: 3406 components: - type: Transform - pos: -5.5,-32.5 + pos: 71.5,46.5 parent: 2 - - uid: 1390 + - uid: 4304 components: - type: Transform - pos: -5.5,-33.5 + rot: 3.141592653589793 rad + pos: 20.5,-41.5 parent: 2 - - uid: 1391 + - uid: 4406 components: - type: Transform - pos: -3.5,-33.5 + rot: 3.141592653589793 rad + pos: 30.5,28.5 parent: 2 - - uid: 1392 + - uid: 5067 components: - type: Transform - pos: -5.5,-37.5 + pos: 51.5,-6.5 parent: 2 - - uid: 1393 + - uid: 5512 components: - type: Transform - pos: -3.5,-37.5 + rot: 3.141592653589793 rad + pos: 55.5,40.5 parent: 2 - - uid: 1394 + - uid: 5879 components: - type: Transform - pos: -3.5,-38.5 + rot: -1.5707963267948966 rad + pos: 3.5,-30.5 parent: 2 - - uid: 1395 + - uid: 6495 components: - type: Transform - pos: -3.5,-39.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 2 - - uid: 1396 + - uid: 6953 components: - type: Transform - pos: -5.5,-39.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 2 - - uid: 1397 + - uid: 9360 components: - type: Transform - pos: -5.5,-38.5 + pos: 27.5,7.5 parent: 2 - - uid: 1412 + - uid: 13626 components: - type: Transform - pos: -7.5,-33.5 + pos: 55.5,32.5 parent: 2 - - uid: 1413 + - uid: 13627 components: - type: Transform - pos: -7.5,-32.5 + pos: 56.5,32.5 parent: 2 - - uid: 1414 + - uid: 13752 components: - type: Transform - pos: -7.5,-31.5 + pos: 54.5,37.5 parent: 2 - - uid: 1415 +- proto: StoolBar + entities: + - uid: 1615 components: - type: Transform - pos: -7.5,-30.5 + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 parent: 2 - - uid: 1416 + - uid: 1616 components: - type: Transform - pos: -9.5,-30.5 + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 parent: 2 - - uid: 1417 + - uid: 1617 components: - type: Transform - pos: -9.5,-31.5 + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 parent: 2 - - uid: 1418 + - uid: 1627 components: - type: Transform - pos: -9.5,-32.5 + rot: 1.5707963267948966 rad + pos: 36.5,-7.5 parent: 2 - - uid: 1419 + - uid: 1628 components: - type: Transform - pos: -9.5,-33.5 + rot: 1.5707963267948966 rad + pos: 36.5,-6.5 parent: 2 - - uid: 1420 + - uid: 2903 components: - type: Transform - pos: -9.5,-37.5 + pos: 61.5,-15.5 parent: 2 - - uid: 1421 + - uid: 2904 components: - type: Transform - pos: -9.5,-38.5 + pos: 60.5,-15.5 parent: 2 - - uid: 1422 + - uid: 2905 components: - type: Transform - pos: -9.5,-39.5 + pos: 60.5,-16.5 parent: 2 - - uid: 1423 + - uid: 12695 components: - type: Transform - pos: -9.5,-40.5 + rot: -1.5707963267948966 rad + pos: 107.5,-17.5 parent: 2 - - uid: 1424 +- proto: StorageCanister + entities: + - uid: 950 components: - type: Transform - pos: -7.5,-40.5 + pos: 46.5,-38.5 parent: 2 - - uid: 1425 + - uid: 951 components: - type: Transform - pos: -7.5,-39.5 + pos: 46.5,-37.5 parent: 2 - - uid: 1426 + - uid: 1817 components: - type: Transform - pos: -7.5,-38.5 + pos: 50.5,-33.5 parent: 2 - - uid: 1427 + - uid: 3967 components: - type: Transform - pos: -7.5,-37.5 + pos: 37.5,-26.5 parent: 2 - - uid: 1444 + - uid: 5117 components: - type: Transform - pos: -13.5,-37.5 + pos: 36.5,-26.5 parent: 2 - - uid: 1445 + - uid: 10440 components: - type: Transform - pos: -13.5,-38.5 + pos: 58.5,9.5 parent: 2 - - uid: 1446 +- proto: SubstationBasic + entities: + - uid: 54 components: + - type: MetaData + name: Dock Substation - type: Transform - pos: -13.5,-39.5 + pos: 6.5,-8.5 parent: 2 - - uid: 1447 + - uid: 443 components: + - type: MetaData + name: Gravity/Bridge Substation - type: Transform - pos: -11.5,-39.5 + pos: 14.5,35.5 parent: 2 - - uid: 1448 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 2039 components: + - type: MetaData + name: Singulo Substation - type: Transform - pos: -11.5,-38.5 + pos: 15.5,-38.5 parent: 2 - - uid: 1449 + - uid: 2160 components: + - type: MetaData + name: Library/Chapel Substation - type: Transform - pos: -11.5,-37.5 + pos: 14.5,7.5 parent: 2 - - uid: 1450 + - uid: 4076 components: + - type: MetaData + name: Telecomms Substation - type: Transform - pos: -11.5,-33.5 + pos: 22.5,-14.5 parent: 2 - - uid: 1451 + - uid: 4096 components: + - type: MetaData + name: Engineering Substation - type: Transform - pos: -11.5,-32.5 + pos: 10.5,-25.5 parent: 2 - - uid: 1452 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 4101 components: + - type: MetaData + name: South West Substation - type: Transform - pos: -11.5,-31.5 + pos: 16.5,-14.5 parent: 2 - - uid: 1453 + - uid: 4431 components: + - type: MetaData + name: Solars South West Substation - type: Transform - pos: -13.5,-31.5 + pos: 4.5,-36.5 parent: 2 - - uid: 1454 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 4613 components: - type: Transform - pos: -13.5,-32.5 + pos: 90.5,-2.5 parent: 2 - - uid: 1455 + - uid: 5637 components: + - type: MetaData + name: Solars North East Substation - type: Transform - pos: -13.5,-33.5 + pos: 70.5,44.5 parent: 2 - - uid: 5535 + - type: PowerNetworkBattery + loadingNetworkDemand: 10.019571 + currentSupply: 10.019571 + supplyRampPosition: 10.019571 + - uid: 6199 components: + - type: MetaData + name: Medical Substation - type: Transform - pos: 77.5,49.5 + pos: 69.5,-13.5 parent: 2 - - uid: 5536 + - uid: 6379 components: + - type: MetaData + name: Science Substation - type: Transform - pos: 77.5,48.5 + pos: 50.5,27.5 parent: 2 - - uid: 5537 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 7576 components: + - type: MetaData + name: Bar/Chemistry Substation - type: Transform - pos: 77.5,47.5 + pos: 52.5,-10.5 parent: 2 - - uid: 5538 + - uid: 8307 components: + - type: MetaData + name: Toolroom Substation - type: Transform - pos: 79.5,47.5 + pos: 35.5,-14.5 parent: 2 - - uid: 5539 + - uid: 9016 components: - type: Transform - pos: 79.5,48.5 + pos: 112.5,-15.5 parent: 2 - - uid: 5540 + - type: PowerNetworkBattery + loadingNetworkDemand: 60.000237 + currentReceiving: 60.000237 + currentSupply: 60.000237 + - uid: 9041 components: + - type: MetaData + name: Security Substation - type: Transform - pos: 79.5,49.5 + pos: 37.5,34.5 parent: 2 - - uid: 5541 + - uid: 13688 components: + - type: MetaData + name: Cargo Substation - type: Transform - pos: 81.5,50.5 + pos: 8.5,15.5 parent: 2 - - uid: 5542 + - uid: 14395 components: + - type: MetaData + name: AI Core Substation - type: Transform - pos: 81.5,49.5 + pos: 80.5,34.5 parent: 2 - - uid: 5543 +- proto: SuitStorageCaptain + entities: + - uid: 869 components: - type: Transform - pos: 81.5,48.5 + pos: 30.5,39.5 parent: 2 - - uid: 5544 +- proto: SuitStorageCE + entities: + - uid: 597 components: - type: Transform - pos: 81.5,47.5 + pos: 10.5,-36.5 parent: 2 - - uid: 5545 +- proto: SuitStorageEngi + entities: + - uid: 870 components: - type: Transform - pos: 83.5,47.5 + pos: 15.5,-30.5 parent: 2 - - uid: 5546 + - uid: 5654 components: - type: Transform - pos: 83.5,48.5 + pos: 30.5,-34.5 parent: 2 - - uid: 5547 + - uid: 5655 components: - type: Transform - pos: 83.5,49.5 + pos: 32.5,-34.5 parent: 2 - - uid: 5548 +- proto: SuitStorageEVA + entities: + - uid: 10300 components: - type: Transform - pos: 83.5,50.5 + pos: 10.5,-8.5 parent: 2 - - uid: 5549 + - uid: 10301 components: - type: Transform - pos: 83.5,40.5 + pos: 11.5,-8.5 parent: 2 - - uid: 5550 + - uid: 10302 components: - type: Transform - pos: 81.5,40.5 + pos: 12.5,-8.5 parent: 2 - - uid: 5551 +- proto: SuitStorageEVAAlternate + entities: + - uid: 10297 components: - type: Transform - pos: 81.5,41.5 + pos: 10.5,-5.5 parent: 2 - - uid: 5552 + - uid: 10298 components: - type: Transform - pos: 81.5,42.5 + pos: 11.5,-5.5 parent: 2 - - uid: 5553 + - uid: 10299 components: - type: Transform - pos: 81.5,43.5 + pos: 12.5,-5.5 parent: 2 - - uid: 5554 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 3460 components: - type: Transform - pos: 83.5,43.5 + pos: 48.5,33.5 parent: 2 - - uid: 5555 + - uid: 3493 components: - type: Transform - pos: 83.5,42.5 + pos: 49.5,33.5 parent: 2 - - uid: 5556 +- proto: SuitStorageNTSRA + entities: + - uid: 12168 components: - type: Transform - pos: 83.5,41.5 + pos: 49.5,-15.5 parent: 2 - - uid: 5557 +- proto: SuitStorageRD + entities: + - uid: 10661 components: - type: Transform - pos: 79.5,41.5 + pos: 60.5,8.5 parent: 2 - - uid: 5558 +- proto: SuitStorageSec + entities: + - uid: 2311 components: - type: Transform - pos: 79.5,42.5 + pos: 41.5,28.5 parent: 2 - - uid: 5559 + - uid: 11209 components: - type: Transform - pos: 79.5,43.5 + pos: 38.5,24.5 parent: 2 - - uid: 5560 + - uid: 11735 components: - type: Transform - pos: 77.5,43.5 + pos: 41.5,24.5 parent: 2 - - uid: 5561 +- proto: SuitStorageWarden + entities: + - uid: 7780 components: - type: Transform - pos: 77.5,42.5 + pos: 39.5,19.5 parent: 2 - - uid: 5562 +- proto: SurveillanceCameraCommand + entities: + - uid: 1290 components: - type: Transform - pos: 77.5,41.5 + rot: -1.5707963267948966 rad + pos: 66.5,22.5 parent: 2 - - uid: 5563 + - type: SurveillanceCamera + id: AI Core Hallway + - uid: 12735 components: - type: Transform - pos: 85.5,41.5 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 parent: 2 - - uid: 5564 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Storage + - uid: 12736 components: - type: Transform - pos: 85.5,42.5 + rot: 3.141592653589793 rad + pos: 17.5,-3.5 parent: 2 - - uid: 5565 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Office + - uid: 12754 components: - type: Transform - pos: 85.5,43.5 + rot: 3.141592653589793 rad + pos: 19.5,41.5 parent: 2 - - uid: 5566 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 12755 components: - type: Transform - pos: 87.5,43.5 + rot: 3.141592653589793 rad + pos: 24.5,42.5 parent: 2 - - uid: 5567 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + - uid: 12756 components: - type: Transform - pos: 87.5,42.5 + rot: 3.141592653589793 rad + pos: 21.5,46.5 parent: 2 - - uid: 5568 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge West + - uid: 12757 components: - type: Transform - pos: 87.5,41.5 + rot: 3.141592653589793 rad + pos: 28.5,48.5 parent: 2 - - uid: 5569 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge North + - uid: 12758 components: - type: Transform - pos: 87.5,47.5 + rot: 3.141592653589793 rad + pos: 33.5,46.5 parent: 2 - - uid: 5570 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge East + - uid: 12762 components: - type: Transform - pos: 87.5,48.5 + rot: 1.5707963267948966 rad + pos: 28.5,41.5 parent: 2 - - uid: 5571 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Entrance + - uid: 13742 components: - type: Transform - pos: 87.5,49.5 + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 parent: 2 - - uid: 5572 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Secure Storage Boards + - uid: 13761 components: - type: Transform - pos: 85.5,49.5 + rot: 1.5707963267948966 rad + pos: 32.5,36.5 parent: 2 - - uid: 5573 + - type: SurveillanceCamera + id: Camera Routers + - uid: 14168 components: - type: Transform - pos: 85.5,48.5 + pos: 84.5,36.5 parent: 2 - - uid: 5574 + - type: SurveillanceCamera + id: AI Core Exterior 1 + - uid: 14346 components: - type: Transform - pos: 85.5,47.5 + rot: 1.5707963267948966 rad + pos: 77.5,33.5 parent: 2 - - uid: 8904 + - type: SurveillanceCamera + id: AI Core Exterior 2 + - uid: 14575 components: - type: Transform - pos: 111.5,-21.5 + rot: 3.141592653589793 rad + pos: 81.5,34.5 parent: 2 - - uid: 8905 + - type: SurveillanceCamera + id: AI Core Engineering + - uid: 14576 components: - type: Transform - pos: 111.5,-22.5 + rot: 1.5707963267948966 rad + pos: 82.5,31.5 parent: 2 - - uid: 8906 + - type: SurveillanceCamera + id: AI Core Entrance + - uid: 14577 components: - type: Transform - pos: 111.5,-23.5 + rot: 1.5707963267948966 rad + pos: 86.5,31.5 parent: 2 - - uid: 8907 + - type: SurveillanceCamera + id: AI Upload + - uid: 14578 components: - type: Transform - pos: 111.5,-24.5 + rot: 3.141592653589793 rad + pos: 89.5,32.5 parent: 2 - - uid: 8908 + - type: SurveillanceCamera + id: AI Core Front + - uid: 14579 components: - type: Transform - pos: 113.5,-24.5 + rot: 1.5707963267948966 rad + pos: 96.5,30.5 parent: 2 - - uid: 8909 + - type: SurveillanceCamera + id: AI Core Rear + - uid: 14580 components: - type: Transform - pos: 113.5,-23.5 + rot: 3.141592653589793 rad + pos: 83.5,24.5 parent: 2 - - uid: 8910 + - type: SurveillanceCamera + id: AI Core Exterior 3 + - uid: 14596 components: - type: Transform - pos: 113.5,-22.5 + rot: -1.5707963267948966 rad + pos: 71.5,23.5 parent: 2 - - uid: 8911 + - type: SurveillanceCamera + id: AI Core Chute + - uid: 14624 components: - type: Transform - pos: 113.5,-21.5 + pos: 70.5,20.5 parent: 2 - - uid: 8912 + - type: SurveillanceCamera + id: AI Core Access + - uid: 14675 components: - type: Transform - pos: 115.5,-21.5 + rot: -1.5707963267948966 rad + pos: 30.5,40.5 parent: 2 - - uid: 8913 + - type: SurveillanceCamera + id: Captain's Office + - uid: 14676 components: - type: Transform - pos: 115.5,-22.5 + rot: 1.5707963267948966 rad + pos: 37.5,42.5 parent: 2 - - uid: 8914 + - type: SurveillanceCamera + id: Captain's Bedroom + - uid: 14677 components: - type: Transform - pos: 115.5,-23.5 + rot: 1.5707963267948966 rad + pos: 15.5,37.5 parent: 2 - - uid: 8915 + - type: SurveillanceCamera + id: Gravity Generator +- proto: SurveillanceCameraEngineering + entities: + - uid: 2035 components: - type: Transform - pos: 115.5,-24.5 + pos: 21.5,-58.5 parent: 2 - - uid: 8961 + - type: SurveillanceCamera + id: Singulo South + - uid: 5877 components: - type: Transform - pos: 111.5,-13.5 + rot: 3.141592653589793 rad + pos: 71.5,46.5 parent: 2 - - uid: 8962 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: 'Solars Northwest ' + - uid: 7462 components: - type: Transform - pos: 111.5,-12.5 + rot: 1.5707963267948966 rad + pos: 29.5,-47.5 parent: 2 - - uid: 8963 + - type: SurveillanceCamera + id: Singulo East + - uid: 7918 components: - type: Transform - pos: 111.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,-18.5 parent: 2 - - uid: 8964 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Anchor Room + - uid: 10986 components: - type: Transform - pos: 111.5,-10.5 + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 parent: 2 - - uid: 8965 + - type: SurveillanceCamera + id: Singulo West + - uid: 10989 components: - type: Transform - pos: 113.5,-12.5 + rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 2 - - uid: 8966 + - type: SurveillanceCamera + id: Telecomms + - uid: 10995 components: - type: Transform - pos: 113.5,-13.5 + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 parent: 2 - - uid: 8967 + - type: SurveillanceCamera + id: Telecomms Entrance + - uid: 12663 components: - type: Transform - pos: 113.5,-11.5 + rot: 1.5707963267948966 rad + pos: -1.5,-34.5 parent: 2 - - uid: 8968 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars Southwest Door + - uid: 12778 components: - type: Transform - pos: 113.5,-10.5 + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 parent: 2 - - uid: 8969 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Entrance + - uid: 12781 components: - type: Transform - pos: 115.5,-13.5 + pos: 42.5,-40.5 parent: 2 - - uid: 8970 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Canister Storage + - uid: 12782 components: - type: Transform - pos: 115.5,-12.5 + rot: 1.5707963267948966 rad + pos: 32.5,-40.5 parent: 2 - - uid: 8971 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + - uid: 12783 components: - type: Transform - pos: 115.5,-11.5 + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - - uid: 8972 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Particle Accelerator + - uid: 12785 components: - type: Transform - pos: 115.5,-10.5 + rot: 3.141592653589793 rad + pos: 11.5,-33.5 parent: 2 - - uid: 9081 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE Office + - uid: 12787 components: - type: Transform - pos: 120.5,-15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 parent: 2 - - uid: 9082 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Secure Storage + - uid: 12788 components: - type: Transform - pos: 119.5,-15.5 + pos: 19.5,-28.5 parent: 2 - - uid: 9083 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break Room + - uid: 12789 components: - type: Transform - pos: 118.5,-15.5 + rot: -1.5707963267948966 rad + pos: 25.5,-25.5 parent: 2 - - uid: 9084 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Entrance + - uid: 12790 components: - type: Transform - pos: 117.5,-15.5 + rot: 3.141592653589793 rad + pos: 26.5,-31.5 parent: 2 - - uid: 9085 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Locker Room + - uid: 13542 components: - type: Transform - pos: 119.5,-17.5 + rot: 3.141592653589793 rad + pos: 2.5,-34.5 parent: 2 - - uid: 9086 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: 'Solars Southwest ' + - uid: 13593 components: - type: Transform - pos: 118.5,-17.5 + rot: 1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - - uid: 9087 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE bedroom + - uid: 13615 components: - type: Transform - pos: 117.5,-17.5 + rot: 1.5707963267948966 rad + pos: 26.5,-40.5 parent: 2 - - uid: 9088 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: PA room east + - uid: 13616 components: - type: Transform - pos: 120.5,-19.5 + rot: 3.141592653589793 rad + pos: 33.5,-50.5 parent: 2 - - uid: 9089 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + - uid: 13617 components: - type: Transform - pos: 119.5,-19.5 + rot: -1.5707963267948966 rad + pos: 31.5,-48.5 parent: 2 - - uid: 9090 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + - uid: 13618 components: - type: Transform - pos: 118.5,-19.5 + pos: 41.5,-48.5 parent: 2 - - uid: 9091 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG Room + - uid: 13733 components: - type: Transform - pos: 117.5,-19.5 + rot: -1.5707963267948966 rad + pos: 38.5,-33.5 parent: 2 -- proto: SolarTracker - entities: - - uid: 1443 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos South + - uid: 13734 components: - type: Transform - pos: -15.5,-35.5 + pos: 36.5,-40.5 parent: 2 - - uid: 5575 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Central Airlock + - uid: 13735 components: - type: Transform - pos: 89.5,45.5 + rot: -1.5707963267948966 rad + pos: 38.5,-27.5 parent: 2 - - uid: 9080 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos North + - uid: 13736 components: - type: Transform - pos: 120.5,-17.5 + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 parent: 2 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Tanks North + - uid: 13737 components: - type: Transform - pos: 20.5,10.5 + rot: 1.5707963267948966 rad + pos: 46.5,-34.5 parent: 2 - - type: SpamEmitSound - enabled: False -- proto: SpawnMechRipley - entities: - - uid: 13762 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Tanks South + - uid: 13738 components: - type: Transform - pos: 7.5,30.5 + rot: 3.141592653589793 rad + pos: 19.5,-14.5 parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 1866 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms Airlock + - uid: 13748 components: - type: Transform - pos: 34.5,-11.5 + rot: -1.5707963267948966 rad + pos: 75.5,46.5 parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 12772 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars Northwest Door + - uid: 14678 components: - type: Transform - pos: 62.5,10.5 + rot: -1.5707963267948966 rad + pos: 16.5,-40.5 parent: 2 -- proto: SpawnMobCatGeneric + - type: SurveillanceCamera + id: Singulo Power +- proto: SurveillanceCameraGeneral entities: - - uid: 11419 + - uid: 12665 components: - type: Transform - pos: 57.5,-11.5 + rot: 3.141592653589793 rad + pos: 19.5,37.5 parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 10281 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Vault + - uid: 12667 components: - type: Transform - pos: 19.5,-5.5 + rot: 3.141592653589793 rad + pos: 21.5,18.5 parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 5859 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryo + - uid: 12668 components: - type: Transform - pos: 38.5,-28.5 + rot: -1.5707963267948966 rad + pos: 14.5,13.5 parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 12231 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms + - uid: 12714 components: - type: Transform - pos: 31.5,41.5 + pos: 32.5,-7.5 parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 8443 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cafeteria + - uid: 12716 components: - type: Transform - pos: 40.5,23.5 + rot: 3.141592653589793 rad + pos: 21.5,-9.5 parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 6527 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Theater + - uid: 12719 components: - type: Transform - pos: 39.5,-5.5 + rot: -1.5707963267948966 rad + pos: 34.5,7.5 parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 12324 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel + - uid: 12721 components: - type: Transform - pos: 13.5,18.5 + pos: 10.5,3.5 parent: 2 - - uid: 12327 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library + - uid: 12722 components: - type: Transform - pos: 73.5,-15.5 + rot: -1.5707963267948966 rad + pos: 17.5,7.5 parent: 2 - - uid: 12797 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Laundry Room + - uid: 12723 components: - type: Transform - pos: 43.5,44.5 + rot: 3.141592653589793 rad + pos: 19.5,15.5 parent: 2 - - uid: 12798 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dormitory + - uid: 12730 components: - type: Transform - pos: 67.5,39.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 2 - - uid: 12799 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac + - uid: 12737 components: - type: Transform - pos: 81.5,7.5 + rot: 3.141592653589793 rad + pos: 24.5,1.5 parent: 2 - - uid: 12801 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall + - uid: 12738 components: - type: Transform - pos: 1.5,-7.5 + rot: 3.141592653589793 rad + pos: 28.5,15.5 parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 12303 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall North + - uid: 12739 components: - type: Transform - pos: 73.5,-1.5 + rot: 1.5707963267948966 rad + pos: 42.5,8.5 parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 243 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall East + - uid: 12740 components: - type: Transform - pos: 12.5,31.5 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 8444 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall West + - uid: 12776 components: - type: Transform - pos: 44.5,22.5 + rot: 1.5707963267948966 rad + pos: 33.5,-15.5 parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 12305 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Toolroom + - uid: 12786 components: - type: Transform - pos: 9.5,5.5 + rot: 3.141592653589793 rad + pos: 2.5,-28.5 parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 12771 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Disposals + - uid: 13739 components: - type: Transform - pos: 59.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,1.5 parent: 2 -- proto: SpawnMobWalter - entities: - - uid: 12230 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: HoP Line + - uid: 13743 components: - type: Transform - pos: 50.5,-8.5 + pos: 36.5,-0.5 parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 4577 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Bar + - uid: 13744 components: - type: Transform - pos: 30.5,-31.5 + rot: 3.141592653589793 rad + pos: 35.5,15.5 parent: 2 - - uid: 4578 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Security South + - uid: 13745 components: - type: Transform - pos: 29.5,-31.5 + rot: 1.5707963267948966 rad + pos: 27.5,22.5 parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 13732 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Security/Cargo + - uid: 13747 components: - type: Transform - pos: 39.5,-9.5 + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 13142 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Bar South + - uid: 13760 components: - type: Transform - pos: 45.5,10.5 + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 parent: 2 + - type: SurveillanceCamera + id: Arrivals Port - uid: 13765 components: - type: Transform - pos: 55.5,31.5 + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 parent: 2 + - type: SurveillanceCamera + id: Arrivals Port Bow - uid: 13766 components: - type: Transform - pos: 57.5,31.5 + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 6750 + - uid: 14081 components: - type: Transform - pos: 43.5,-6.5 + rot: 3.141592653589793 rad + pos: -14.5,0.5 parent: 2 - - uid: 6751 + - type: SurveillanceCamera + id: Evac + - uid: 14082 components: - type: Transform - pos: 44.5,-6.5 + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 parent: 2 -- proto: SpawnPointCaptain + - type: SurveillanceCamera + id: Arrivals Starboard +- proto: SurveillanceCameraMedical entities: - - uid: 8682 + - uid: 1712 components: - type: Transform - pos: 33.5,40.5 + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 8258 + - type: SurveillanceCamera + id: Treatment + - uid: 12215 components: - type: Transform - pos: 13.5,22.5 + rot: -1.5707963267948966 rad + pos: 76.5,-5.5 parent: 2 - - uid: 8259 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 12216 components: - type: Transform - pos: 12.5,22.5 + rot: 3.141592653589793 rad + pos: 73.5,-0.5 parent: 2 - - uid: 8260 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 12217 components: - type: Transform - pos: 11.5,22.5 + rot: 3.141592653589793 rad + pos: 78.5,5.5 parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 10638 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Break Room + - uid: 12218 components: - type: Transform - pos: 32.5,8.5 + pos: 72.5,4.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 8294 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Supply Room + - uid: 12221 components: - type: Transform - pos: 36.5,-11.5 + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 5071 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + - uid: 12222 components: - type: Transform - pos: 53.5,-4.5 + rot: -1.5707963267948966 rad + pos: 65.5,-9.5 parent: 2 - - uid: 6650 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery Secondary + - uid: 12223 components: - type: Transform - pos: 50.5,-4.5 + rot: 3.141592653589793 rad + pos: 62.5,-9.5 parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 8692 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Private Practice + - uid: 12224 components: - type: Transform - pos: 11.5,-34.5 + rot: 3.141592653589793 rad + pos: 57.5,-9.5 parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 11418 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO Office + - uid: 12225 components: - type: Transform - pos: 56.5,-11.5 + rot: 3.141592653589793 rad + pos: 51.5,-4.5 parent: 2 -- proto: SpawnPointClown - entities: - - uid: 9608 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 12227 components: - type: Transform - pos: 26.5,6.5 + rot: 3.141592653589793 rad + pos: 52.5,0.5 parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 8679 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Entrance + - uid: 12235 components: - type: Transform - pos: 42.5,19.5 + rot: 3.141592653589793 rad + pos: 46.5,4.5 parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 12791 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic Room + - uid: 12236 components: - type: Transform - pos: 19.5,-4.5 + rot: 1.5707963267948966 rad + pos: 62.5,-0.5 parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 8438 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryo + - uid: 12238 components: - type: Transform - pos: 44.5,24.5 + rot: 3.141592653589793 rad + pos: 64.5,4.5 parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 8711 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Exam + - uid: 13741 components: - type: Transform - pos: 5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 80.5,-2.5 parent: 2 -- proto: SpawnPointLatejoin + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology Quarantine 1 +- proto: SurveillanceCameraRouterCommand entities: - - uid: 12803 + - uid: 2300 components: - type: Transform - pos: -16.5,-12.5 + pos: 32.5,35.5 parent: 2 - - uid: 12804 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 8404 components: - type: Transform - pos: -15.5,-12.5 + pos: 30.5,35.5 parent: 2 - - uid: 12805 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8230 components: - type: Transform - pos: -9.5,-12.5 + pos: 49.5,23.5 parent: 2 - - uid: 12806 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 10316 components: - type: Transform - pos: -8.5,-12.5 + pos: 32.5,37.5 parent: 2 -- proto: SpawnPointLawyer +- proto: SurveillanceCameraRouterScience entities: - - uid: 8160 + - uid: 10317 components: - type: Transform - pos: -2.5,-11.5 + pos: 31.5,37.5 parent: 2 - - uid: 8161 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 3160 components: - type: Transform - pos: -3.5,-10.5 + pos: 31.5,35.5 parent: 2 -- proto: SpawnPointLibrarian +- proto: SurveillanceCameraRouterService entities: - - uid: 11708 + - uid: 8139 components: - type: Transform - pos: 9.5,3.5 + pos: 51.5,23.5 parent: 2 -- proto: SpawnPointMedicalDoctor +- proto: SurveillanceCameraRouterSupply entities: - - uid: 11958 + - uid: 10315 components: - type: Transform - pos: 71.5,5.5 + pos: 30.5,37.5 parent: 2 - - uid: 11959 +- proto: SurveillanceCameraScience + entities: + - uid: 12763 components: - type: Transform - pos: 71.5,6.5 + rot: 1.5707963267948966 rad + pos: 47.5,16.5 parent: 2 - - uid: 11960 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Front + - uid: 12764 components: - type: Transform - pos: 71.5,7.5 + rot: 3.141592653589793 rad + pos: 53.5,20.5 parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 11961 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RND + - uid: 12765 components: - type: Transform - pos: 73.5,5.5 + rot: -1.5707963267948966 rad + pos: 49.5,24.5 parent: 2 - - uid: 11962 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Server Room + - uid: 12768 components: - type: Transform - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 66.5,14.5 parent: 2 -- proto: SpawnPointMime - entities: - - uid: 9610 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly Lab + - uid: 12769 components: - type: Transform - pos: 25.5,7.5 + rot: -1.5707963267948966 rad + pos: 60.5,10.5 parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 9355 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RD Office + - uid: 12773 components: - type: Transform - pos: 20.5,-11.5 + rot: 3.141592653589793 rad + pos: 50.5,15.5 parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 5419 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Entrance + - uid: 12774 components: - type: Transform - pos: 26.5,1.5 + rot: 3.141592653589793 rad + pos: 51.5,11.5 parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 8314 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 13740 components: - type: Transform - pos: 46.5,3.5 + rot: 1.5707963267948966 rad + pos: 64.5,24.5 parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 1791 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Artifact Chamber + - uid: 13746 components: - type: Transform - pos: 32.5,-15.5 + rot: 3.141592653589793 rad + pos: 55.5,15.5 parent: 2 - - uid: 1792 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Entrance +- proto: SurveillanceCameraSecurity + entities: + - uid: 3204 components: - type: Transform - pos: 31.5,-15.5 + rot: -1.5707963267948966 rad + pos: 39.5,35.5 parent: 2 - - uid: 1793 + - type: SurveillanceCamera + id: Interrogation + - uid: 7722 components: - type: Transform - pos: 30.5,-15.5 + pos: 31.5,28.5 parent: 2 - - uid: 1794 + - type: SurveillanceCamera + id: Security Locker Room + - uid: 12732 components: - type: Transform - pos: 30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 parent: 2 - - uid: 1795 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Law Office + - uid: 12733 components: - type: Transform - pos: 31.5,-16.5 + rot: 3.141592653589793 rad + pos: -1.5,-3.5 parent: 2 - - uid: 1796 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evac Checkpoint + - uid: 12744 components: - type: Transform - pos: 32.5,-16.5 + rot: -1.5707963267948966 rad + pos: 38.5,27.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 11985 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 12745 components: - type: Transform - pos: 12.5,30.5 + rot: -1.5707963267948966 rad + pos: 38.5,23.5 parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 10657 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Room + - uid: 12746 components: - type: Transform - pos: 57.5,23.5 + rot: -1.5707963267948966 rad + pos: 43.5,24.5 parent: 2 - - uid: 10658 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS Room + - uid: 12747 components: - type: Transform - pos: 56.5,23.5 + rot: -1.5707963267948966 rad + pos: 41.5,19.5 parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 12770 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Office + - uid: 12748 components: - type: Transform - pos: 61.5,9.5 + rot: 3.141592653589793 rad + pos: 37.5,19.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 8256 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Locker Room + - uid: 12749 components: - type: Transform - pos: 8.5,17.5 + rot: 3.141592653589793 rad + pos: 30.5,18.5 parent: 2 - - uid: 8257 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 2 + - uid: 12750 components: - type: Transform - pos: 8.5,18.5 + rot: 3.141592653589793 rad + pos: 30.5,21.5 parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 10654 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 1 + - uid: 12751 components: - type: Transform - pos: 57.5,24.5 + rot: 3.141592653589793 rad + pos: 30.5,24.5 parent: 2 - - uid: 10655 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Entrance + - uid: 12752 components: - type: Transform - pos: 56.5,24.5 + rot: 3.141592653589793 rad + pos: 21.5,33.5 parent: 2 - - uid: 10656 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court House + - uid: 13757 components: - type: Transform - pos: 55.5,24.5 + rot: -1.5707963267948966 rad + pos: 53.5,36.5 parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 8437 + - type: SurveillanceCamera + id: Perma Brig + - uid: 13758 components: - type: Transform - pos: 34.5,27.5 + rot: 3.141592653589793 rad + pos: 50.5,35.5 parent: 2 - - uid: 8696 + - type: SurveillanceCamera + id: Perma Entrance + - uid: 13759 components: - type: Transform - pos: 34.5,26.5 + pos: 38.5,30.5 parent: 2 -- proto: SpawnPointSecurityOfficer + - type: SurveillanceCamera + id: Security Hallway +- proto: SurveillanceCameraService entities: - - uid: 8439 + - uid: 12711 components: - type: Transform - pos: 38.5,18.5 + rot: 3.141592653589793 rad + pos: 45.5,-3.5 parent: 2 - - uid: 8440 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 12712 components: - type: Transform - pos: 39.5,18.5 + rot: 3.141592653589793 rad + pos: 37.5,-9.5 parent: 2 - - uid: 8441 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 12713 components: - type: Transform - pos: 37.5,18.5 + rot: 1.5707963267948966 rad + pos: 39.5,-5.5 parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 12792 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 12715 components: - type: Transform - pos: 32.5,-5.5 + rot: 1.5707963267948966 rad + pos: 31.5,-11.5 parent: 2 - - uid: 12793 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 12717 components: - type: Transform - pos: 32.5,-4.5 + rot: 1.5707963267948966 rad + pos: 27.5,7.5 parent: 2 - - uid: 12794 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Clown Room + - uid: 12718 components: - type: Transform - pos: 34.5,-5.5 + rot: 1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 - - uid: 12795 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chaplain's Office + - uid: 12734 components: - type: Transform - pos: 34.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 parent: 2 -- proto: SpawnPointStationEngineer + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor's Office +- proto: SurveillanceCameraSupply entities: - - uid: 4579 + - uid: 9297 components: - type: Transform - pos: 23.5,-31.5 + rot: -1.5707963267948966 rad + pos: 6.5,30.5 parent: 2 - - uid: 4580 + - type: SurveillanceCamera + id: Salvage + - uid: 10979 components: - type: Transform - pos: 22.5,-31.5 + pos: 3.5,37.5 parent: 2 - - uid: 4581 + - type: SurveillanceCamera + id: Salvage Platform + - uid: 12724 components: - type: Transform - pos: 21.5,-31.5 + rot: 3.141592653589793 rad + pos: 19.5,24.5 parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 5660 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Desk + - uid: 12777 components: - type: Transform - pos: 26.5,-32.5 + rot: 3.141592653589793 rad + pos: 37.5,-14.5 parent: 2 - - uid: 5661 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Technical Storage + - uid: 12840 components: - type: Transform - pos: 25.5,-32.5 + pos: 10.5,21.5 parent: 2 - - uid: 5662 + - type: SurveillanceCamera + id: Cargo Bay + - uid: 14673 components: - type: Transform - pos: 27.5,-32.5 + rot: -1.5707963267948966 rad + pos: 5.5,15.5 parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 8442 + - type: SurveillanceCamera + id: Quartermaster's Bedroom + - uid: 14674 components: - type: Transform - pos: 39.5,23.5 + pos: 7.5,18.5 parent: 2 -- proto: SprayBottle - entities: - - uid: 5393 + - type: SurveillanceCamera + id: Quartermaster's Office + - uid: 14768 components: - type: Transform - rot: 3.589668631320819E-05 rad - pos: 55.735016,10.470499 + rot: 1.5707963267948966 rad + pos: 13.5,30.5 parent: 2 - - uid: 7793 + - type: SurveillanceCamera + id: Cargo Storage + - uid: 14954 components: - type: Transform - pos: 55.34302,10.727416 + pos: 4.5,26.5 parent: 2 -- proto: SprayBottleSpaceCleaner + - type: SurveillanceCamera + id: Cargo Dock +- proto: SynthesizerInstrument entities: - - uid: 7812 + - uid: 9740 components: - type: Transform - pos: 82.67393,-4.422255 + pos: 19.550474,-10.884444 parent: 2 -- proto: SprayBottleWater - entities: - - uid: 6812 + - uid: 14075 components: - type: Transform - pos: 67.05991,-3.359559 + pos: 3.5,-18.5 parent: 2 -- proto: StasisBed +- proto: Syringe entities: - - uid: 11819 + - uid: 10709 components: - type: Transform - pos: 63.5,4.5 + pos: 63.47666,-9.457929 parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 12102 + - uid: 11803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,29.5 + pos: 61.49895,-0.38000047 parent: 2 -- proto: StationAnchor +- proto: Table entities: - - uid: 13717 + - uid: 52 components: - type: Transform - pos: 6.5,-19.5 + pos: -2.5,-9.5 parent: 2 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 13759 + - uid: 163 components: - type: Transform - pos: 52.427402,30.778826 + pos: 5.5,-3.5 parent: 2 -- proto: StationMap - entities: - - uid: 1761 + - uid: 164 components: - type: Transform - pos: 19.5,38.5 + pos: 6.5,-3.5 parent: 2 - - uid: 8115 + - uid: 165 components: - type: Transform - pos: -7.5,-7.5 + pos: 6.5,-4.5 parent: 2 - - uid: 8116 + - uid: 300 components: - type: Transform - pos: 9.5,2.5 + pos: 33.5,-4.5 parent: 2 - - uid: 8984 + - uid: 679 components: - type: Transform - pos: 34.5,16.5 + rot: 1.5707963267948966 rad + pos: 21.5,-19.5 parent: 2 - - uid: 11292 + - uid: 778 components: - type: Transform - pos: 28.5,-1.5 + pos: 19.5,-23.5 parent: 2 -- proto: Stimpack - entities: - - uid: 12493 + - uid: 786 components: - type: Transform - pos: 11.490012,-11.457567 + pos: 19.5,-26.5 parent: 2 -- proto: Stool - entities: - - uid: 172 + - uid: 787 components: - type: Transform - pos: 5.5,-4.5 + pos: 18.5,-26.5 parent: 2 - - uid: 365 + - uid: 788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,30.5 + pos: 17.5,-26.5 parent: 2 - - uid: 943 + - uid: 789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-36.5 + pos: 16.5,-26.5 parent: 2 - - uid: 1665 + - uid: 884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-7.5 + pos: 32.5,-30.5 parent: 2 - - uid: 2465 + - uid: 1033 components: - type: Transform - pos: 38.5,19.5 + rot: 3.141592653589793 rad + pos: 29.5,-24.5 parent: 2 - - uid: 2466 + - uid: 1034 components: - type: Transform - pos: 39.5,19.5 + rot: 3.141592653589793 rad + pos: 23.5,-24.5 parent: 2 - - uid: 3406 + - uid: 1035 components: - type: Transform - pos: 71.5,46.5 + rot: 3.141592653589793 rad + pos: 29.5,-23.5 parent: 2 - - uid: 4304 + - uid: 1331 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-41.5 + pos: 20.5,5.5 parent: 2 - - uid: 5045 + - uid: 1507 components: - type: Transform - pos: 50.5,4.5 + pos: 36.5,-10.5 parent: 2 - - uid: 5067 + - uid: 1512 components: - type: Transform - pos: 51.5,-6.5 + pos: 38.5,-2.5 parent: 2 - - uid: 5879 + - uid: 1524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-30.5 + pos: 39.5,-2.5 parent: 2 - - uid: 6495 + - uid: 1543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 + pos: 35.5,-12.5 parent: 2 - - uid: 6953 + - uid: 1544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 + pos: 36.5,-12.5 parent: 2 - - uid: 9360 + - uid: 1552 components: - type: Transform - pos: 27.5,7.5 + pos: 35.5,-10.5 parent: 2 -- proto: StoolBar - entities: - - uid: 1615 + - uid: 1623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 + pos: 64.5,13.5 parent: 2 - - uid: 1616 + - uid: 1642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 + pos: 48.5,-7.5 parent: 2 - - uid: 1617 + - uid: 1656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 + pos: 33.5,-5.5 parent: 2 - - uid: 1627 + - uid: 1660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 + pos: 29.5,-3.5 parent: 2 - - uid: 1628 + - uid: 1661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 + pos: 30.5,-3.5 parent: 2 - - uid: 2903 + - uid: 1758 components: - type: Transform - pos: 61.5,-15.5 + pos: 33.5,-14.5 parent: 2 - - uid: 2904 + - uid: 1768 components: - type: Transform - pos: 60.5,-15.5 + pos: 38.5,-17.5 parent: 2 - - uid: 2905 + - uid: 1777 components: - type: Transform - pos: 60.5,-16.5 + pos: 31.5,-14.5 parent: 2 - - uid: 12695 + - uid: 1778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 107.5,-17.5 + pos: 30.5,-14.5 parent: 2 -- proto: StorageCanister - entities: - - uid: 950 + - uid: 1853 components: - type: Transform - pos: 46.5,-38.5 + pos: -3.5,-9.5 parent: 2 - - uid: 951 + - uid: 1857 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: 19.5,5.5 parent: 2 - - uid: 1817 + - uid: 2151 components: - type: Transform - pos: 50.5,-33.5 + rot: 3.141592653589793 rad + pos: 11.5,20.5 parent: 2 - - uid: 3967 + - uid: 2156 components: - type: Transform - pos: 37.5,-26.5 + pos: 15.5,35.5 parent: 2 - - uid: 5117 + - uid: 2486 components: - type: Transform - pos: 36.5,-26.5 + pos: 36.5,25.5 parent: 2 - - uid: 10440 + - uid: 2906 components: - type: Transform - pos: 58.5,9.5 + pos: 62.5,-16.5 parent: 2 -- proto: Stunbaton - entities: - - uid: 10137 + - uid: 2907 components: - type: Transform - pos: 40.348335,22.308064 + pos: 63.5,-16.5 parent: 2 - - uid: 10138 + - uid: 3021 components: - type: Transform - pos: 40.348335,22.526814 + pos: 51.5,-7.5 parent: 2 - - uid: 10139 + - uid: 3200 components: - type: Transform - pos: 40.348335,22.745564 + pos: 79.5,-7.5 parent: 2 -- proto: SubstationBasic - entities: - - uid: 30 + - uid: 3240 components: - - type: MetaData - name: Cargo Substation - type: Transform - pos: 12.5,34.5 + pos: 36.5,26.5 parent: 2 - - uid: 54 + - uid: 3430 components: - - type: MetaData - name: Arrivals Substation - type: Transform - pos: 6.5,-8.5 + rot: -1.5707963267948966 rad + pos: 74.5,18.5 parent: 2 - - uid: 443 + - uid: 3474 components: - - type: MetaData - name: Gravity/Bridge Substation - type: Transform - pos: 14.5,35.5 + pos: 78.5,-7.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 2160 + - uid: 3569 components: - - type: MetaData - name: Library/Chapel Substation - type: Transform - pos: 14.5,7.5 + pos: 63.5,-11.5 parent: 2 - - uid: 4076 + - uid: 3593 components: - - type: MetaData - name: Telecomms Substation - type: Transform - pos: 22.5,-14.5 + pos: 63.5,-9.5 parent: 2 - - uid: 4096 + - uid: 3611 components: - - type: MetaData - name: Engineering Substation - type: Transform - pos: 10.5,-25.5 + pos: 72.5,6.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 4101 + - uid: 3614 components: - - type: MetaData - name: South West Substation - type: Transform - pos: 16.5,-14.5 + pos: 72.5,5.5 parent: 2 - - uid: 4431 + - uid: 4001 components: - - type: MetaData - name: Solars South West Substation - type: Transform - pos: 4.5,-36.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 4613 + - uid: 4017 components: - type: Transform - pos: 90.5,-2.5 + pos: 57.5,17.5 parent: 2 - - uid: 5637 + - uid: 4117 components: - - type: MetaData - name: Solars North East Substation - type: Transform - pos: 70.5,44.5 + pos: 18.5,-23.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 10.019571 - currentSupply: 10.019571 - supplyRampPosition: 10.019571 - - uid: 6199 + - uid: 4141 components: - - type: MetaData - name: Medical Substation - type: Transform - pos: 69.5,-13.5 + rot: 3.141592653589793 rad + pos: 38.5,-9.5 parent: 2 - - uid: 6379 + - uid: 4280 components: - - type: MetaData - name: Science Substation - type: Transform - pos: 50.5,27.5 + pos: 57.5,20.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 7576 + - uid: 4302 components: - - type: MetaData - name: Bar/Chemistry Substation - type: Transform - pos: 52.5,-10.5 + pos: 17.5,-23.5 parent: 2 - - uid: 8307 + - uid: 4303 components: - - type: MetaData - name: Toolroom Substation - type: Transform - pos: 35.5,-14.5 + pos: 16.5,-23.5 parent: 2 - - uid: 8324 + - uid: 4693 components: - - type: MetaData - name: Security Substation - type: Transform - pos: 43.5,27.5 + pos: 20.5,15.5 parent: 2 - - uid: 9016 + - uid: 4694 components: - type: Transform - pos: 112.5,-15.5 + pos: 23.5,15.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 60.000237 - currentReceiving: 60.000237 - currentSupply: 60.000237 -- proto: SubstationWallBasic - entities: - - uid: 1014 + - uid: 4767 components: - type: Transform - pos: 57.5,37.5 + rot: -1.5707963267948966 rad + pos: 20.5,24.5 parent: 2 - - uid: 5576 + - uid: 5003 components: - - type: MetaData - name: Singulo Substation - type: Transform - pos: 16.5,-37.5 + pos: 52.5,-7.5 parent: 2 -- proto: SuitStorageCaptain - entities: - - uid: 869 + - uid: 5054 components: - type: Transform - pos: 30.5,39.5 + pos: 49.5,-6.5 parent: 2 -- proto: SuitStorageCE - entities: - - uid: 597 + - uid: 5092 components: - type: Transform - pos: 10.5,-36.5 + pos: 69.5,-7.5 parent: 2 -- proto: SuitStorageEngi - entities: - - uid: 870 + - uid: 5125 components: - type: Transform - pos: 15.5,-30.5 + rot: 3.141592653589793 rad + pos: 23.5,-23.5 parent: 2 - - uid: 5654 + - uid: 5135 components: - type: Transform - pos: 30.5,-34.5 + pos: 75.5,-0.5 parent: 2 - - uid: 5655 + - uid: 5136 components: - type: Transform - pos: 32.5,-34.5 + pos: 74.5,-0.5 parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 10300 + - uid: 5203 components: - type: Transform - pos: 10.5,-8.5 + pos: 66.5,-3.5 parent: 2 - - uid: 10301 + - uid: 5224 components: - type: Transform - pos: 11.5,-8.5 + pos: 82.5,-6.5 parent: 2 - - uid: 10302 + - uid: 5225 components: - type: Transform - pos: 12.5,-8.5 + pos: 82.5,-4.5 parent: 2 -- proto: SuitStorageEVAAlternate - entities: - - uid: 10297 + - uid: 5226 components: - type: Transform - pos: 10.5,-5.5 + pos: 81.5,-4.5 parent: 2 - - uid: 10298 + - uid: 5283 components: - type: Transform - pos: 11.5,-5.5 + pos: 15.5,25.5 parent: 2 - - uid: 10299 + - uid: 5306 components: - type: Transform - pos: 12.5,-5.5 + pos: 56.5,17.5 parent: 2 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 8337 + - uid: 5307 components: - type: Transform - pos: 37.5,31.5 + pos: 55.5,17.5 parent: 2 -- proto: SuitStorageNTSRA - entities: - - uid: 12168 + - uid: 5308 components: - type: Transform - pos: 49.5,-15.5 + pos: 54.5,17.5 parent: 2 -- proto: SuitStorageRD - entities: - - uid: 10661 + - uid: 5309 components: - type: Transform - pos: 60.5,8.5 + pos: 55.5,20.5 parent: 2 -- proto: SuitStorageSec - entities: - - uid: 2311 + - uid: 5310 components: - type: Transform - pos: 41.5,28.5 + pos: 55.5,20.5 parent: 2 - - uid: 7946 + - uid: 5311 components: - type: Transform - pos: 39.5,21.5 + pos: 56.5,20.5 parent: 2 - - uid: 7947 + - uid: 5317 components: - type: Transform - pos: 38.5,21.5 + rot: 1.5707963267948966 rad + pos: 49.5,19.5 parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 12735 + - uid: 5318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 + rot: 1.5707963267948966 rad + pos: 49.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - - uid: 12736 + - uid: 5368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-3.5 + pos: 55.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - - uid: 12753 + - uid: 5369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,37.5 + pos: 50.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - - uid: 12754 + - uid: 5370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,41.5 + pos: 52.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 12755 + - uid: 5449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 + pos: 71.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - - uid: 12756 + - uid: 5450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,46.5 + pos: 71.5,37.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - - uid: 12757 + - uid: 5473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,48.5 + pos: 67.5,37.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge North - - uid: 12758 + - uid: 5475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,46.5 + pos: 67.5,38.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - - uid: 12759 + - uid: 5521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,41.5 + pos: 86.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - - uid: 12760 + - uid: 5710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,41.5 + pos: 77.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - - uid: 12761 + - uid: 6756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,35.5 + pos: 31.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Camera Server Room - - uid: 12762 + - uid: 6811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,41.5 + pos: 58.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance - - uid: 13635 + - uid: 7077 components: - type: Transform - pos: 58.5,33.5 + pos: 30.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior - - uid: 13636 + - uid: 7331 components: - type: Transform - pos: 56.5,38.5 + pos: 18.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior North - - uid: 13637 + - uid: 7467 components: - type: Transform - pos: 56.5,41.5 + pos: 17.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior North - - uid: 13638 + - uid: 7526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,36.5 + pos: 67.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior East - - uid: 13639 + - uid: 7773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,36.5 + pos: 21.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior West - - uid: 13640 + - uid: 7853 components: - type: Transform - pos: 54.5,33.5 + pos: 53.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior 2 - - uid: 13641 + - uid: 7978 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,31.5 + pos: -1.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance Left - - uid: 13642 + - uid: 8383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance Right - - uid: 13643 + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 8538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,27.5 + pos: 34.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance - - uid: 13742 + - uid: 8569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-15.5 + pos: 35.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Secure Storage Boards -- proto: SurveillanceCameraEngineering - entities: - - uid: 5877 + - uid: 8858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,46.5 + pos: 107.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Solars Northwest ' - - uid: 7918 + - uid: 8859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-18.5 + pos: 107.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Anchor Room - - uid: 12663 + - uid: 9354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-34.5 + pos: 25.5,6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars Southwest Door - - uid: 12775 + - uid: 9356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-16.5 + pos: 27.5,6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - - uid: 12778 + - uid: 9621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-25.5 + pos: 46.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Entrance - - uid: 12781 + - uid: 9707 components: - type: Transform - pos: 42.5,-40.5 + pos: 78.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Canister Storage - - uid: 12782 + - uid: 9956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-40.5 + pos: 5.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - - uid: 12783 + - uid: 10072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 + pos: 67.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle Accelerator - - uid: 12784 + - uid: 10077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-44.5 + pos: 78.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Airlock - - uid: 12785 + - uid: 10137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-33.5 + pos: 36.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE Office - - uid: 12787 + - uid: 10268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 + pos: 18.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Secure Storage - - uid: 12788 + - uid: 10269 components: - type: Transform - pos: 19.5,-28.5 + pos: 18.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break Room - - uid: 12789 + - uid: 10270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-25.5 + pos: 19.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Entrance - - uid: 12790 + - uid: 10277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 + pos: 16.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker Room - - uid: 13542 + - uid: 10664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-34.5 + pos: 63.5,9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Solars Southwest ' - - uid: 13593 + - uid: 10665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-40.5 + pos: 63.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE bedroom - - uid: 13614 + - uid: 10668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-41.5 + pos: 63.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Cage Airlock - - uid: 13615 + - uid: 10763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-40.5 + pos: 4.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: PA room east - - uid: 13616 + - uid: 10803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-50.5 + pos: 85.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - - uid: 13617 + - uid: 10828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-48.5 + pos: 70.5,11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - - uid: 13618 + - uid: 11119 components: - type: Transform - pos: 41.5,-48.5 + pos: 54.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Room - - uid: 13733 + - uid: 11120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-33.5 + pos: 54.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos South - - uid: 13734 + - uid: 11121 components: - type: Transform - pos: 36.5,-40.5 + pos: 54.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Central Airlock - - uid: 13735 + - uid: 11122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-27.5 + pos: 57.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - - uid: 13736 + - uid: 11123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-22.5 + pos: 57.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks North - - uid: 13737 + - uid: 11302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-34.5 + pos: 60.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks South - - uid: 13738 + - uid: 11303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 + pos: 63.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Airlock - - uid: 13748 + - uid: 11403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,46.5 + pos: 65.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars Northwest Door -- proto: SurveillanceCameraGeneral - entities: - - uid: 7971 + - uid: 11404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 + pos: 65.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Competitive Shitting - - uid: 12662 + - uid: 11405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-17.5 + pos: 65.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: External Dock Airlock - - uid: 12664 + - uid: 11427 components: - type: Transform - pos: 10.5,38.5 + rot: 1.5707963267948966 rad + pos: 76.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Grav Gen External Airlock Door - - uid: 12665 + - uid: 11428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,37.5 + rot: 1.5707963267948966 rad + pos: 76.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Vault - - uid: 12666 + - uid: 11432 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,13.5 + pos: 51.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - - uid: 12667 + - uid: 11736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,18.5 + pos: 36.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cryo - - uid: 12668 + - uid: 11830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 + pos: 59.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - - uid: 12714 + - uid: 11832 components: - type: Transform - pos: 32.5,-7.5 + pos: 59.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cafeteria - - uid: 12716 + - uid: 11833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 + pos: 67.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Theater - - uid: 12719 + - uid: 11834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,7.5 + pos: 67.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - - uid: 12721 + - uid: 11835 components: - type: Transform - pos: 10.5,3.5 + pos: 64.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - - uid: 12722 + - uid: 11836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,7.5 + pos: 64.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry Room - - uid: 12723 + - uid: 11841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 + pos: 59.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dormitory - - uid: 12730 + - uid: 11844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 + pos: 57.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac - - uid: 12731 + - uid: 11904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 + pos: 78.5,7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - - uid: 12737 + - uid: 12582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 + rot: 1.5707963267948966 rad + pos: 20.5,-19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall - - uid: 12738 + - uid: 13105 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,15.5 + pos: 15.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall North - - uid: 12739 + - uid: 13120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,8.5 + pos: 48.5,11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall East - - uid: 12740 + - uid: 13564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 + pos: 50.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall West - - uid: 12776 + - uid: 13609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-15.5 + pos: 54.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Toolroom - - uid: 12786 + - uid: 13610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-28.5 + pos: 55.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - - uid: 13739 + - uid: 13611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 + pos: 56.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: HoP Line - - uid: 13743 + - uid: 13624 components: - type: Transform - pos: 36.5,-0.5 + rot: -1.5707963267948966 rad + pos: 56.5,31.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Bar - - uid: 13744 + - uid: 13625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,31.5 + parent: 2 + - uid: 14068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 + pos: -17.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security South - - uid: 13745 +- proto: TableCarpet + entities: + - uid: 2266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,22.5 + pos: 70.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security/Cargo - - uid: 13747 + - uid: 3429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 + pos: 70.5,29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Bar South -- proto: SurveillanceCameraMedical - entities: - - uid: 12215 + - uid: 5501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-5.5 + pos: 70.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - - uid: 12216 + - uid: 6007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-0.5 + pos: 70.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 12217 + - uid: 13473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,5.5 + pos: 10.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Break Room - - uid: 12218 + - uid: 13475 components: - type: Transform - pos: 72.5,4.5 + pos: 9.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Supply Room - - uid: 12221 +- proto: TableCounterWood + entities: + - uid: 9735 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-5.5 + pos: 19.5,-12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - - uid: 12222 + - uid: 9736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery Secondary - - uid: 12223 + - uid: 9737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-9.5 + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Private Practice - - uid: 12224 + - uid: 9738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-9.5 + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO Office - - uid: 12225 +- proto: TableGlass + entities: + - uid: 12696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-4.5 + rot: -1.5707963267948966 rad + pos: 104.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 12227 + - uid: 12697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,0.5 + rot: -1.5707963267948966 rad + pos: 103.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Entrance - - uid: 12235 + - uid: 12698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 + rot: -1.5707963267948966 rad + pos: 102.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Paramedic Room - - uid: 12236 + - uid: 12699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-0.5 + rot: -1.5707963267948966 rad + pos: 102.5,-16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryo - - uid: 12237 +- proto: TablePlasmaGlass + entities: + - uid: 5708 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-4.5 + pos: 70.5,13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery Prep - - uid: 12238 + - uid: 5861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Exam - - uid: 13741 + - uid: 6476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-2.5 + rot: 1.5707963267948966 rad + pos: 71.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology Quarantine 1 -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 10318 + - uid: 12690 components: - type: Transform - pos: 32.5,34.5 + pos: 107.5,-16.5 parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 10320 + - uid: 12691 components: - type: Transform - pos: 30.5,34.5 + pos: 106.5,-16.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 8230 + - uid: 12693 components: - type: Transform - pos: 49.5,23.5 + pos: 106.5,-18.5 parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 10316 + - uid: 12694 components: - type: Transform - pos: 32.5,37.5 + pos: 107.5,-18.5 parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 10317 + - uid: 13064 components: - type: Transform - pos: 31.5,37.5 + pos: 7.5,-13.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 10319 + - uid: 13065 components: - type: Transform - pos: 31.5,34.5 + pos: 6.5,-13.5 parent: 2 -- proto: SurveillanceCameraRouterService +- proto: TableReinforced entities: - - uid: 8139 + - uid: 133 components: - type: Transform - pos: 51.5,23.5 + pos: -2.5,-12.5 parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 10315 + - uid: 134 components: - type: Transform - pos: 30.5,37.5 + pos: -1.5,-12.5 parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 12763 + - uid: 513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,16.5 + pos: 40.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Front - - uid: 12764 + - uid: 564 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,20.5 + pos: 16.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - - uid: 12765 + - uid: 572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + pos: 37.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - - uid: 12766 + - uid: 935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,25.5 + pos: 12.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Locker Room - - uid: 12768 + - uid: 937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 + pos: 12.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - - uid: 12769 + - uid: 1598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 + pos: 37.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - - uid: 12773 + - uid: 1618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,15.5 + pos: 36.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance - - uid: 12774 + - uid: 1626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,11.5 + pos: 35.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - - uid: 13740 + - uid: 1629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,24.5 + pos: 37.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact Chamber - - uid: 13746 + - uid: 1651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,15.5 + pos: 37.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance -- proto: SurveillanceCameraSecurity - entities: - - uid: 12732 + - uid: 1659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + pos: 37.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Law Office - - uid: 12733 + - uid: 2395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: 17.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Evac Checkpoint - - uid: 12741 + - uid: 2420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,30.5 + pos: 28.5,25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - - uid: 12742 + - uid: 2431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,34.5 + rot: 1.5707963267948966 rad + pos: 32.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Left - - uid: 12743 + - uid: 2432 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,33.5 + pos: 32.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Right - - uid: 12744 + - uid: 2991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,27.5 + pos: 50.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 12745 + - uid: 2992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 + pos: 51.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - - uid: 12746 + - uid: 3512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,24.5 + pos: 48.5,18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - - uid: 12747 + - uid: 4146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 + pos: -1.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - - uid: 12748 + - uid: 4915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 + pos: 19.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - - uid: 12749 + - uid: 4916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 + pos: 19.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - - uid: 12750 + - uid: 4917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,21.5 + pos: 17.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - - uid: 12751 + - uid: 4972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 + pos: 26.5,47.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - - uid: 12752 + - uid: 4973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,33.5 + pos: 28.5,47.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court House -- proto: SurveillanceCameraService - entities: - - uid: 12711 + - uid: 4974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-3.5 + pos: 19.5,46.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - - uid: 12712 + - uid: 4975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-9.5 + pos: 21.5,46.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 12713 + - uid: 4980 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 4981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 + pos: 33.5,46.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 12715 + - uid: 4983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-11.5 + pos: 29.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - - uid: 12717 + - uid: 4984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,7.5 + pos: 30.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Clown Room - - uid: 12718 + - uid: 4985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,7.5 + pos: 25.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chaplain's Office - - uid: 12734 + - uid: 4994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 32.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor's Office -- proto: SurveillanceCameraSupply - entities: - - uid: 12724 + - uid: 4995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,24.5 + rot: -1.5707963267948966 rad + pos: 22.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Desk - - uid: 12725 + - uid: 5031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 + pos: 50.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - - uid: 12726 + - uid: 5032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,31.5 + pos: 54.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM Office - - uid: 12727 + - uid: 5365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,31.5 + pos: 47.5,12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Storage - - uid: 12728 + - uid: 5813 components: - type: Transform - pos: 5.5,26.5 + pos: 34.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Dock - - uid: 12729 + - uid: 7545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + pos: 55.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - - uid: 12777 + - uid: 7611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-14.5 + pos: 56.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Technical Storage -- proto: SynthesizerInstrument - entities: - - uid: 9740 + - uid: 7612 components: - type: Transform - pos: 19.550474,-10.884444 + pos: 54.5,-10.5 parent: 2 -- proto: Syringe - entities: - - uid: 10709 + - uid: 7679 components: - type: Transform - pos: 63.47666,-9.457929 + pos: 38.5,19.5 parent: 2 - - uid: 11803 + - uid: 7739 components: - type: Transform - pos: 61.49895,-0.38000047 + pos: -2.5,-2.5 parent: 2 -- proto: Table - entities: - - uid: 52 + - uid: 8433 components: - type: Transform - pos: -2.5,-9.5 + pos: 39.5,21.5 parent: 2 - - uid: 163 + - uid: 8675 components: - type: Transform - pos: 5.5,-3.5 + pos: 40.5,35.5 parent: 2 - - uid: 164 + - uid: 10310 components: - type: Transform - pos: 6.5,-3.5 + pos: 8.5,-6.5 parent: 2 - - uid: 165 + - uid: 11475 components: - type: Transform - pos: 6.5,-4.5 + rot: 3.141592653589793 rad + pos: 39.5,17.5 parent: 2 - - uid: 300 + - uid: 11800 components: - type: Transform - pos: 33.5,-4.5 + rot: 3.141592653589793 rad + pos: 61.5,-0.5 parent: 2 - - uid: 679 + - uid: 11839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 + pos: 12.5,-34.5 parent: 2 - - uid: 778 + - uid: 12423 components: - type: Transform - pos: 19.5,-23.5 + pos: 49.5,1.5 parent: 2 - - uid: 786 + - uid: 14245 components: - type: Transform - pos: 19.5,-26.5 + pos: 85.5,28.5 parent: 2 - - uid: 787 + - uid: 14265 components: - type: Transform - pos: 18.5,-26.5 + pos: 84.5,28.5 parent: 2 - - uid: 788 + - uid: 14272 components: - type: Transform - pos: 17.5,-26.5 + pos: 86.5,28.5 parent: 2 - - uid: 789 + - uid: 14554 components: - type: Transform - pos: 16.5,-26.5 + rot: -1.5707963267948966 rad + pos: 89.5,28.5 parent: 2 - - uid: 884 + - uid: 14555 components: - type: Transform - pos: 32.5,-30.5 + rot: -1.5707963267948966 rad + pos: 90.5,28.5 parent: 2 - - uid: 1033 + - uid: 14556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-24.5 + rot: -1.5707963267948966 rad + pos: 90.5,32.5 parent: 2 - - uid: 1034 + - uid: 14557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 + rot: -1.5707963267948966 rad + pos: 89.5,32.5 parent: 2 - - uid: 1035 + - uid: 14661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-23.5 + pos: 44.5,-2.5 parent: 2 - - uid: 1146 + - uid: 14662 components: - type: Transform pos: 43.5,-2.5 parent: 2 - - uid: 1331 +- proto: TableReinforcedGlass + entities: + - uid: 14145 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: 36.5,-10.5 + pos: 74.5,22.5 parent: 2 - - uid: 1512 + - uid: 14152 components: - type: Transform - pos: 38.5,-2.5 + pos: 71.5,23.5 parent: 2 - - uid: 1524 + - uid: 14153 components: - type: Transform - pos: 39.5,-2.5 + pos: 71.5,22.5 parent: 2 - - uid: 1543 +- proto: TableWood + entities: + - uid: 302 components: - type: Transform - pos: 35.5,-12.5 + pos: 13.5,4.5 parent: 2 - - uid: 1544 + - uid: 304 components: - type: Transform - pos: 36.5,-12.5 + pos: 11.5,4.5 parent: 2 - - uid: 1552 + - uid: 305 components: - type: Transform - pos: 35.5,-10.5 + pos: 10.5,4.5 parent: 2 - - uid: 1623 + - uid: 306 components: - type: Transform - pos: 64.5,13.5 + pos: 8.5,4.5 parent: 2 - - uid: 1642 + - uid: 307 components: - type: Transform - pos: 48.5,-7.5 + pos: 8.5,3.5 parent: 2 - - uid: 1656 + - uid: 2405 components: - type: Transform - pos: 33.5,-5.5 + pos: 44.5,23.5 parent: 2 - - uid: 1660 + - uid: 2406 components: - type: Transform - pos: 29.5,-3.5 + pos: 45.5,23.5 parent: 2 - - uid: 1661 + - uid: 2407 components: - type: Transform - pos: 30.5,-3.5 + pos: 45.5,24.5 parent: 2 - - uid: 1758 + - uid: 2478 components: - type: Transform - pos: 33.5,-14.5 + pos: 43.5,19.5 parent: 2 - - uid: 1768 + - uid: 2713 components: - type: Transform - pos: 38.5,-17.5 + rot: -1.5707963267948966 rad + pos: 20.5,33.5 parent: 2 - - uid: 1777 + - uid: 2714 components: - type: Transform - pos: 31.5,-14.5 + rot: -1.5707963267948966 rad + pos: 20.5,32.5 parent: 2 - - uid: 1778 + - uid: 2715 components: - type: Transform - pos: 30.5,-14.5 + rot: -1.5707963267948966 rad + pos: 20.5,30.5 parent: 2 - - uid: 1853 + - uid: 2716 components: - type: Transform - pos: -3.5,-9.5 + rot: -1.5707963267948966 rad + pos: 20.5,29.5 parent: 2 - - uid: 1857 + - uid: 2719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,5.5 + pos: 18.5,31.5 parent: 2 - - uid: 2121 + - uid: 2776 components: - type: Transform - pos: 11.5,21.5 + rot: 1.5707963267948966 rad + pos: 23.5,40.5 parent: 2 - - uid: 2122 + - uid: 2777 components: - type: Transform - pos: 10.5,21.5 + rot: 1.5707963267948966 rad + pos: 22.5,40.5 parent: 2 - - uid: 2127 + - uid: 2778 components: - type: Transform - pos: 20.5,24.5 + rot: 1.5707963267948966 rad + pos: 22.5,39.5 parent: 2 - - uid: 2147 + - uid: 2779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,31.5 + pos: 23.5,39.5 parent: 2 - - uid: 2156 + - uid: 5407 components: - type: Transform - pos: 15.5,35.5 + pos: 34.5,41.5 parent: 2 - - uid: 2306 + - uid: 5408 components: - type: Transform - pos: 37.5,36.5 + pos: 33.5,41.5 parent: 2 - - uid: 2319 + - uid: 5409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,34.5 + pos: 32.5,41.5 parent: 2 - - uid: 2462 + - uid: 5410 components: - type: Transform - pos: 36.5,20.5 + pos: 30.5,41.5 parent: 2 - - uid: 2486 + - uid: 5413 components: - type: Transform - pos: 36.5,25.5 + pos: 37.5,43.5 parent: 2 - - uid: 2906 + - uid: 7262 components: - type: Transform - pos: 62.5,-16.5 + pos: 6.5,19.5 parent: 2 - - uid: 2907 + - uid: 7547 components: - type: Transform - pos: 63.5,-16.5 + pos: 30.5,6.5 parent: 2 - - uid: 3021 + - uid: 8646 components: - type: Transform - pos: 51.5,-7.5 + pos: 86.5,10.5 parent: 2 - - uid: 3200 + - uid: 8647 components: - type: Transform - pos: 79.5,-7.5 + pos: 84.5,10.5 parent: 2 - - uid: 3474 + - uid: 8648 components: - type: Transform - pos: 78.5,-7.5 + pos: 86.5,12.5 parent: 2 - - uid: 3569 + - uid: 8649 components: - type: Transform - pos: 63.5,-11.5 + pos: 83.5,8.5 parent: 2 - - uid: 3593 + - uid: 8650 components: - type: Transform - pos: 63.5,-9.5 + pos: 83.5,7.5 parent: 2 - - uid: 3611 + - uid: 9004 components: - type: Transform - pos: 72.5,6.5 + pos: 18.5,29.5 parent: 2 - - uid: 3614 + - uid: 10635 components: - type: Transform - pos: 72.5,5.5 + pos: 30.5,7.5 parent: 2 - - uid: 4017 + - uid: 11477 components: - type: Transform - pos: 57.5,17.5 + pos: 43.5,20.5 parent: 2 - - uid: 4117 + - uid: 12727 components: - type: Transform - pos: 18.5,-23.5 + rot: 1.5707963267948966 rad + pos: 9.5,18.5 parent: 2 - - uid: 4141 +- proto: TargetClown + entities: + - uid: 9607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-9.5 + pos: 27.5,8.5 parent: 2 - - uid: 4280 +- proto: TegCenter + entities: + - uid: 13127 components: - type: Transform - pos: 57.5,20.5 + pos: 40.5,-46.5 parent: 2 - - uid: 4302 +- proto: TegCirculator + entities: + - uid: 13128 components: - type: Transform - pos: 17.5,-23.5 + rot: -1.5707963267948966 rad + pos: 40.5,-47.5 parent: 2 - - uid: 4303 + - type: PointLight + color: '#FF3300FF' + - uid: 13129 components: - type: Transform - pos: 16.5,-23.5 + rot: 1.5707963267948966 rad + pos: 40.5,-45.5 parent: 2 - - uid: 4693 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 533 components: - type: Transform - pos: 20.5,15.5 + pos: 16.5,-16.5 parent: 2 - - uid: 4694 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 535 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5183 components: - type: Transform - pos: 23.5,15.5 + pos: 13.5,-16.5 parent: 2 - - uid: 5003 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 412 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10443 components: - type: Transform - pos: 52.5,-7.5 + pos: 14.5,-16.5 parent: 2 - - uid: 5054 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 413 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12111 components: - type: Transform - pos: 49.5,-6.5 + pos: 15.5,-16.5 parent: 2 - - uid: 5092 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 414 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12112 components: - type: Transform - pos: 69.5,-7.5 + pos: 13.5,-18.5 parent: 2 - - uid: 5125 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 421 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-23.5 + pos: 14.5,-18.5 parent: 2 - - uid: 5135 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 422 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12233 components: - type: Transform - pos: 75.5,-0.5 + pos: 15.5,-18.5 parent: 2 - - uid: 5136 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 423 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12395 components: - type: Transform - pos: 74.5,-0.5 + pos: 16.5,-18.5 parent: 2 - - uid: 5203 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 424 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TeslaCoil + entities: + - uid: 2038 components: - type: Transform - pos: 66.5,-3.5 + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 parent: 2 - - uid: 5224 + - uid: 2081 components: - type: Transform - pos: 82.5,-6.5 + rot: 3.141592653589793 rad + pos: 25.5,-41.5 parent: 2 - - uid: 5225 + - uid: 7969 components: - type: Transform - pos: 82.5,-4.5 + rot: 3.141592653589793 rad + pos: 26.5,-42.5 parent: 2 - - uid: 5226 + - uid: 7971 components: - type: Transform - pos: 81.5,-4.5 + rot: 3.141592653589793 rad + pos: 25.5,-42.5 parent: 2 - - uid: 5306 + - uid: 8108 components: - type: Transform - pos: 56.5,17.5 + rot: -1.5707963267948966 rad + pos: 26.5,-40.5 parent: 2 - - uid: 5307 + - uid: 11070 components: - type: Transform - pos: 55.5,17.5 + rot: 3.141592653589793 rad + pos: 26.5,-41.5 parent: 2 - - uid: 5308 +- proto: TeslaGenerator + entities: + - uid: 832 components: - type: Transform - pos: 54.5,17.5 + pos: 13.5,-31.5 parent: 2 - - uid: 5309 +- proto: TeslaGroundingRod + entities: + - uid: 14755 components: - type: Transform - pos: 55.5,20.5 + rot: 3.141592653589793 rad + pos: 26.5,-44.5 parent: 2 - - uid: 5310 + - uid: 14756 components: - type: Transform - pos: 55.5,20.5 + rot: 3.141592653589793 rad + pos: 25.5,-44.5 parent: 2 - - uid: 5311 + - uid: 14757 components: - type: Transform - pos: 56.5,20.5 + rot: 3.141592653589793 rad + pos: 17.5,-44.5 parent: 2 - - uid: 5317 + - uid: 14758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,-44.5 parent: 2 - - uid: 5318 +- proto: TintedWindow + entities: + - uid: 171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,17.5 + pos: 41.5,32.5 parent: 2 - - uid: 5368 + - uid: 1165 components: - type: Transform - pos: 55.5,10.5 + pos: 24.5,-12.5 parent: 2 - - uid: 5369 + - uid: 1196 components: - type: Transform - pos: 50.5,8.5 + pos: 24.5,-9.5 parent: 2 - - uid: 5370 + - uid: 6813 components: - type: Transform - pos: 52.5,8.5 + pos: 63.5,-8.5 parent: 2 - - uid: 5449 + - uid: 7580 components: - type: Transform - pos: 71.5,40.5 + pos: 62.5,-8.5 parent: 2 - - uid: 5450 + - uid: 10993 components: - type: Transform - pos: 71.5,37.5 + rot: 3.141592653589793 rad + pos: 17.5,-16.5 parent: 2 - - uid: 5473 + - uid: 10994 components: - type: Transform - pos: 67.5,37.5 + rot: 3.141592653589793 rad + pos: 17.5,-18.5 parent: 2 - - uid: 5475 + - uid: 11195 components: - type: Transform - pos: 67.5,38.5 + pos: 60.5,-8.5 parent: 2 - - uid: 5521 + - uid: 14525 components: - type: Transform - pos: 86.5,1.5 + pos: 39.5,32.5 parent: 2 - - uid: 5528 +- proto: ToiletEmpty + entities: + - uid: 460 components: - type: Transform - pos: 64.5,20.5 + pos: 8.5,13.5 parent: 2 - - uid: 5710 + - uid: 461 components: - type: Transform - pos: 77.5,-13.5 + rot: 3.141592653589793 rad + pos: 8.5,12.5 parent: 2 - - uid: 6572 + - uid: 3253 components: - type: Transform - pos: 44.5,-2.5 + rot: 3.141592653589793 rad + pos: 59.5,34.5 parent: 2 - - uid: 6756 + - uid: 5701 components: - type: Transform - pos: 31.5,-7.5 + pos: 79.5,-12.5 parent: 2 - - uid: 6811 + - uid: 5702 components: - type: Transform - pos: 58.5,-9.5 + rot: 3.141592653589793 rad + pos: 79.5,-13.5 parent: 2 - - uid: 7077 + - uid: 8702 components: - type: Transform - pos: 30.5,2.5 + pos: 59.5,38.5 parent: 2 - - uid: 7331 + - uid: 9019 components: - type: Transform - pos: 18.5,24.5 + pos: 102.5,-12.5 parent: 2 - - uid: 7467 + - uid: 11901 components: - type: Transform - pos: 17.5,24.5 + rot: -1.5707963267948966 rad + pos: 78.5,8.5 parent: 2 - - uid: 7526 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 10474 components: - type: Transform - pos: 67.5,-4.5 + rot: 1.5707963267948966 rad + pos: 17.5,39.5 parent: 2 - - uid: 7773 +- proto: ToolboxElectricalFilled + entities: + - uid: 5378 components: - type: Transform - pos: 21.5,22.5 + pos: 52.6158,11.657994 parent: 2 - - uid: 7853 + - uid: 5626 components: - type: Transform - pos: 53.5,-5.5 + pos: 18.84633,-23.378391 parent: 2 - - uid: 7978 + - uid: 12356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: 36.482082,-14.3137665 parent: 2 - - uid: 8858 +- proto: ToolboxEmergencyFilled + entities: + - uid: 4997 components: - type: Transform - pos: 107.5,-10.5 + rot: 3.573787398636341E-05 rad + pos: 35.50106,46.735016 parent: 2 - - uid: 8859 + - uid: 11411 components: - type: Transform - pos: 107.5,-11.5 + pos: 31.521385,-17.29768 parent: 2 - - uid: 9354 +- proto: ToolboxGoldFilled + entities: + - uid: 12095 components: - type: Transform - pos: 25.5,6.5 + pos: 19.490185,40.6353 parent: 2 - - uid: 9356 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2949 components: - type: Transform - pos: 27.5,6.5 + pos: 6.500301,40.636074 parent: 2 - - uid: 9621 + - uid: 4998 components: - type: Transform - pos: 46.5,2.5 + pos: 35.491802,46.459015 parent: 2 - - uid: 10072 + - uid: 7357 components: - type: Transform - pos: 67.5,-3.5 + pos: 18.414553,24.540695 parent: 2 - - uid: 10077 + - uid: 11410 components: - type: Transform - pos: 78.5,-6.5 + pos: 31.521385,-17.500805 parent: 2 - - uid: 10268 + - uid: 12357 components: - type: Transform - pos: 18.5,-3.5 + pos: 36.482082,-14.5012665 parent: 2 - - uid: 10269 +- proto: ToyAi + entities: + - uid: 14649 components: - type: Transform - pos: 18.5,-2.5 + pos: 69.5,25.5 parent: 2 - - uid: 10270 +- proto: ToyRubberDuck + entities: + - uid: 6933 components: - type: Transform - pos: 19.5,-2.5 + pos: 12.5,12.5 parent: 2 - - uid: 10277 + - uid: 13632 components: - type: Transform - pos: 16.5,-5.5 + pos: 56.426826,31.732376 parent: 2 - - uid: 10664 +- proto: ToySpawner + entities: + - uid: 8652 components: - type: Transform - pos: 63.5,9.5 + pos: 84.5,12.5 parent: 2 - - uid: 10665 +- proto: TrashBag + entities: + - uid: 10811 components: - type: Transform - pos: 63.5,10.5 + pos: 89.33498,-20.63679 parent: 2 - - uid: 10668 +- proto: TrashBananaPeel + entities: + - uid: 5880 components: - type: Transform - pos: 63.5,8.5 + pos: 0.13960361,-25.931139 parent: 2 - - uid: 10803 + - uid: 9603 components: - type: Transform - pos: 85.5,-15.5 + pos: 26.493341,6.2912045 parent: 2 - - uid: 10828 +- proto: TrumpetInstrument + entities: + - uid: 5030 components: - type: Transform - pos: 70.5,11.5 + pos: 84.55714,10.563628 parent: 2 - - uid: 11119 +- proto: TwoWayLever + entities: + - uid: 607 components: - type: Transform - pos: 54.5,-13.5 + pos: 9.5,33.5 parent: 2 - - uid: 11120 + - type: DeviceLinkSource + linkedPorts: + 829: + - Left: Forward + - Right: Reverse + - Middle: Off + 967: + - Left: Forward + - Right: Reverse + - Middle: Off + 944: + - Left: Forward + - Right: Reverse + - Middle: Off + 450: + - Left: Forward + - Right: Reverse + - Middle: Off + 999: + - Left: Forward + - Right: Reverse + - Middle: Off + 14660: + - Left: Forward + - Right: Reverse + - Middle: Off + 12384: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 5856 components: - type: Transform - pos: 54.5,-14.5 + pos: 2.5,-30.5 parent: 2 - - uid: 11121 + - type: DeviceLinkSource + linkedPorts: + 5842: + - Left: Forward + - Right: Reverse + - Middle: Off + 5843: + - Left: Forward + - Right: Reverse + - Middle: Off + 5844: + - Left: Forward + - Right: Reverse + - Middle: Off + 5845: + - Left: Forward + - Right: Reverse + - Middle: Off + 5846: + - Left: Forward + - Right: Reverse + - Middle: Off + 5847: + - Left: Forward + - Right: Reverse + - Middle: Off + 5850: + - Left: Forward + - Right: Reverse + - Middle: Off + 5851: + - Left: Forward + - Right: Reverse + - Middle: Off + 5852: + - Left: Forward + - Right: Reverse + - Middle: Off + 5853: + - Left: Forward + - Right: Reverse + - Middle: Off + 5854: + - Left: Forward + - Right: Reverse + - Middle: Off + 5855: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 5857 components: - type: Transform - pos: 54.5,-15.5 + pos: 2.5,-31.5 parent: 2 - - uid: 11122 + - type: DeviceLinkSource + linkedPorts: + 5875: + - Left: Open + - Right: Open + - Middle: Close + - uid: 8101 components: - type: Transform - pos: 57.5,-13.5 + pos: 6.5,28.5 parent: 2 - - uid: 11123 + - type: DeviceLinkSource + linkedPorts: + 2037: + - Left: Forward + - Right: Reverse + - Middle: Off + 2041: + - Left: Forward + - Right: Reverse + - Middle: Off + 2042: + - Left: Forward + - Right: Reverse + - Middle: Off + 2064: + - Left: Forward + - Right: Reverse + - Middle: Off + 13731: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 8446 components: - type: Transform - pos: 57.5,-14.5 + pos: 6.5,22.5 parent: 2 - - uid: 11302 + - type: DeviceLinkSource + linkedPorts: + 2040: + - Left: Forward + - Right: Reverse + - Middle: Off + 2067: + - Left: Forward + - Right: Reverse + - Middle: Off + 2051: + - Left: Forward + - Right: Reverse + - Middle: Off + 2066: + - Left: Forward + - Right: Reverse + - Middle: Off + 8239: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 8665 components: - type: Transform - pos: 60.5,-9.5 + pos: 63.5,25.5 parent: 2 - - uid: 11303 + - type: DeviceLinkSource + linkedPorts: + 5351: + - Left: Open + - Right: Open + - Middle: Close + 5361: + - Left: Open + - Right: Open + - Middle: Close + - uid: 10322 components: - type: Transform - pos: 63.5,-10.5 + pos: 44.5,11.5 parent: 2 - - uid: 11403 + - type: DeviceLinkSource + linkedPorts: + 5268: + - Left: Open + - Right: Open + - Middle: Close + - uid: 13115 components: - type: Transform - pos: 65.5,-11.5 + pos: 44.5,-46.5 parent: 2 - - uid: 11404 + - type: DeviceLinkSource + linkedPorts: + 12890: + - Left: Open + - Right: Open + - Middle: Close + 12891: + - Left: Open + - Right: Open + - Middle: Close +- proto: UniformPrinter + entities: + - uid: 10283 components: - type: Transform - pos: 65.5,-10.5 + pos: 20.5,-4.5 parent: 2 - - uid: 11405 +- proto: Vaccinator + entities: + - uid: 12157 components: - type: Transform - pos: 65.5,-9.5 + pos: 81.5,-7.5 parent: 2 - - uid: 11427 +- proto: VendingBarDrobe + entities: + - uid: 4407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,4.5 + pos: 40.5,-9.5 parent: 2 - - uid: 11428 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 4100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,5.5 + pos: 29.5,-30.5 parent: 2 - - uid: 11830 +- proto: VendingMachineBooze + entities: + - uid: 540 components: - type: Transform - pos: 59.5,3.5 + pos: 38.5,-8.5 parent: 2 - - uid: 11832 + - uid: 2900 components: - type: Transform - pos: 59.5,4.5 + pos: 66.5,-13.5 parent: 2 - - uid: 11833 +- proto: VendingMachineCargoDrobe + entities: + - uid: 9040 components: - type: Transform - pos: 67.5,3.5 + pos: 6.5,21.5 parent: 2 - - uid: 11834 +- proto: VendingMachineCart + entities: + - uid: 10267 components: - type: Transform - pos: 67.5,4.5 + pos: 20.5,-5.5 parent: 2 - - uid: 11835 +- proto: VendingMachineChapel + entities: + - uid: 12201 components: - type: Transform - pos: 64.5,4.5 + pos: 31.5,9.5 parent: 2 - - uid: 11836 +- proto: VendingMachineChefDrobe + entities: + - uid: 4249 components: - type: Transform - pos: 64.5,3.5 + pos: 29.5,-9.5 parent: 2 - - uid: 11841 +- proto: VendingMachineChefvend + entities: + - uid: 4248 components: - type: Transform - pos: 59.5,-3.5 + pos: 34.5,-12.5 parent: 2 - - uid: 11844 +- proto: VendingMachineChemDrobe + entities: + - uid: 5058 components: - type: Transform - pos: 57.5,-3.5 + pos: 49.5,-8.5 parent: 2 - - uid: 11904 +- proto: VendingMachineChemicals + entities: + - uid: 5061 components: - type: Transform - pos: 78.5,7.5 + pos: 51.5,-4.5 parent: 2 - - uid: 12582 +- proto: VendingMachineCigs + entities: + - uid: 2771 components: + - type: MetaData + name: cigarette machine - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 + pos: 24.5,42.5 parent: 2 - - uid: 13120 + - uid: 5349 components: + - type: MetaData + name: cigarette machine - type: Transform - pos: 48.5,11.5 + pos: 63.5,16.5 parent: 2 - - uid: 13650 + - uid: 5426 components: + - type: MetaData + name: cigarette machine - type: Transform - pos: 52.5,30.5 + pos: 34.5,43.5 parent: 2 - - uid: 13651 + - uid: 6615 components: - type: Transform - pos: 52.5,31.5 + pos: 32.5,-2.5 parent: 2 -- proto: TableCarpet - entities: - - uid: 5501 + - uid: 7507 components: - type: Transform - pos: 70.5,33.5 + pos: -21.5,-14.5 parent: 2 - - uid: 5508 + - uid: 11033 components: - type: Transform - pos: 70.5,27.5 + pos: 19.5,35.5 parent: 2 - - uid: 5509 +- proto: VendingMachineClothing + entities: + - uid: 127 components: - type: Transform - pos: 70.5,28.5 + pos: 20.5,7.5 parent: 2 - - uid: 5510 +- proto: VendingMachineCoffee + entities: + - uid: 90 components: - type: Transform - pos: 70.5,29.5 + pos: -25.5,-11.5 parent: 2 - - uid: 13473 + - uid: 586 components: + - type: MetaData + name: Hot drinks machine - type: Transform - pos: 10.5,-42.5 + pos: 11.5,-3.5 parent: 2 - - uid: 13475 + - uid: 613 components: + - type: MetaData + name: Hot drinks machine - type: Transform - pos: 9.5,-42.5 + pos: 21.5,42.5 parent: 2 -- proto: TableCounterWood - entities: - - uid: 9735 + - uid: 5350 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 + pos: 62.5,16.5 parent: 2 - - uid: 9736 + - uid: 5468 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 + pos: 67.5,41.5 parent: 2 - - uid: 9737 + - uid: 8864 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 + pos: 107.5,-12.5 parent: 2 - - uid: 9738 + - uid: 11224 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 45.5,20.5 parent: 2 -- proto: TableGlass +- proto: VendingMachineCondiments entities: - - uid: 12696 + - uid: 6757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-15.5 + pos: 31.5,-7.5 parent: 2 - - uid: 12697 +- proto: VendingMachineCuraDrobe + entities: + - uid: 7770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-15.5 + pos: 13.5,3.5 parent: 2 - - uid: 12698 +- proto: VendingMachineDetDrobe + entities: + - uid: 7711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-15.5 + pos: 41.5,17.5 parent: 2 - - uid: 12699 +- proto: VendingMachineDinnerware + entities: + - uid: 1550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-16.5 + pos: 33.5,-12.5 parent: 2 -- proto: TablePlasmaGlass +- proto: VendingMachineEngiDrobe entities: - - uid: 5708 + - uid: 4093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,13.5 + pos: 23.5,-30.5 parent: 2 - - uid: 5861 +- proto: VendingMachineEngivend + entities: + - uid: 799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,13.5 + pos: 23.5,-27.5 parent: 2 - - uid: 6476 +- proto: VendingMachineGames + entities: + - uid: 570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,14.5 + pos: 8.5,5.5 parent: 2 - - uid: 12690 + - uid: 13622 components: - type: Transform - pos: 107.5,-16.5 + pos: 54.5,31.5 parent: 2 - - uid: 12691 +- proto: VendingMachineGeneDrobe + entities: + - uid: 11912 components: - type: Transform - pos: 106.5,-16.5 + pos: 74.5,4.5 parent: 2 - - uid: 12693 +- proto: VendingMachineHydrobe + entities: + - uid: 6664 components: - type: Transform - pos: 106.5,-18.5 + pos: 44.5,-9.5 parent: 2 - - uid: 12694 +- proto: VendingMachineJaniDrobe + entities: + - uid: 11963 components: - type: Transform - pos: 107.5,-18.5 + pos: 3.5,-6.5 parent: 2 - - uid: 13064 +- proto: VendingMachineLawDrobe + entities: + - uid: 140 components: - type: Transform - pos: 7.5,-13.5 + pos: -0.5,-7.5 parent: 2 - - uid: 13065 +- proto: VendingMachineMedical + entities: + - uid: 5048 components: - type: Transform - pos: 6.5,-13.5 + pos: 53.5,4.5 parent: 2 -- proto: TableReinforced +- proto: VendingMachineMediDrobe entities: - - uid: 133 + - uid: 11913 components: - type: Transform - pos: -2.5,-12.5 + pos: 70.5,4.5 parent: 2 - - uid: 134 +- proto: VendingMachineNutri + entities: + - uid: 6678 components: - type: Transform - pos: -1.5,-12.5 + pos: 44.5,-4.5 parent: 2 - - uid: 349 +- proto: VendingMachineRoboDrobe + entities: + - uid: 5376 components: - type: Transform - pos: 41.5,22.5 + pos: 53.5,11.5 parent: 2 - - uid: 513 +- proto: VendingMachineRobotics + entities: + - uid: 10078 components: - type: Transform - pos: 40.5,-7.5 + pos: 50.5,11.5 parent: 2 - - uid: 564 +- proto: VendingMachineSalvage + entities: + - uid: 12158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-2.5 + pos: 9.5,32.5 parent: 2 - - uid: 572 +- proto: VendingMachineSciDrobe + entities: + - uid: 11953 components: - type: Transform - pos: 37.5,-7.5 + pos: 58.5,25.5 parent: 2 - - uid: 935 +- proto: VendingMachineSec + entities: + - uid: 8442 components: - type: Transform - pos: 12.5,-33.5 + pos: 31.5,28.5 parent: 2 - - uid: 937 +- proto: VendingMachineSecDrobe + entities: + - uid: 6184 components: - type: Transform - pos: 12.5,-35.5 + pos: 29.5,28.5 parent: 2 - - uid: 1598 +- proto: VendingMachineSeeds + entities: + - uid: 6676 components: - type: Transform - pos: 37.5,-4.5 + pos: 43.5,-4.5 parent: 2 - - uid: 1618 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 13605 components: - type: Transform - pos: 36.5,-8.5 + pos: 55.5,36.5 parent: 2 - - uid: 1626 +- proto: VendingMachineSovietSoda + entities: + - uid: 5467 components: - type: Transform - pos: 35.5,-8.5 + pos: 67.5,35.5 parent: 2 - - uid: 1629 +- proto: VendingMachineSustenance + entities: + - uid: 13623 components: - type: Transform - pos: 37.5,-3.5 + pos: 57.5,31.5 parent: 2 - - uid: 1651 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 8172 components: - type: Transform - pos: 37.5,-6.5 + pos: 17.5,-42.5 parent: 2 - - uid: 1659 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 3476 components: - type: Transform - pos: 37.5,-5.5 + pos: 50.5,33.5 parent: 2 - - uid: 2395 + - uid: 10305 components: - type: Transform - pos: 17.5,40.5 + pos: 8.5,-7.5 parent: 2 - - uid: 2420 + - uid: 14747 components: - type: Transform - pos: 28.5,25.5 + pos: 4.5,35.5 parent: 2 - - uid: 2431 +- proto: VendingMachineTheater + entities: + - uid: 1144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,27.5 + pos: 25.5,8.5 parent: 2 - - uid: 2432 +- proto: VendingMachineVendomat + entities: + - uid: 12214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,26.5 + pos: 29.5,-14.5 parent: 2 - - uid: 2492 +- proto: VendingMachineViroDrobe + entities: + - uid: 11964 components: - type: Transform - pos: 30.5,29.5 + pos: 79.5,-3.5 parent: 2 - - uid: 2991 +- proto: VendingMachineWinter + entities: + - uid: 10706 components: - type: Transform - pos: 50.5,1.5 + pos: 20.5,8.5 parent: 2 - - uid: 2992 +- proto: VendingMachineYouTool + entities: + - uid: 798 components: - type: Transform - pos: 51.5,1.5 + pos: 23.5,-26.5 parent: 2 - - uid: 3512 + - uid: 1759 components: - type: Transform - pos: 48.5,18.5 + pos: 32.5,-14.5 parent: 2 - - uid: 4146 +- proto: ViolinInstrument + entities: + - uid: 9357 components: - type: Transform - pos: -1.5,-11.5 + pos: 25.493341,6.5724545 parent: 2 - - uid: 4915 +- proto: WallmountTelescreen + entities: + - uid: 10669 components: - type: Transform - pos: 19.5,41.5 + rot: -1.5707963267948966 rad + pos: 63.5,9.5 parent: 2 - - uid: 4916 + - uid: 10831 components: - type: Transform - pos: 19.5,40.5 + pos: 31.5,43.5 parent: 2 - - uid: 4917 +- proto: WallmountTelescreenFrame + entities: + - uid: 14562 components: - type: Transform - pos: 17.5,41.5 + rot: 1.5707963267948966 rad + pos: 93.5,30.5 parent: 2 - - uid: 4972 +- proto: WallReinforced + entities: + - uid: 4 components: - type: Transform - pos: 26.5,47.5 + pos: 5.5,14.5 parent: 2 - - uid: 4973 + - uid: 20 components: - type: Transform - pos: 28.5,47.5 + rot: -1.5707963267948966 rad + pos: -9.5,-17.5 parent: 2 - - uid: 4974 + - uid: 23 components: - type: Transform - pos: 19.5,46.5 + pos: -9.5,-21.5 parent: 2 - - uid: 4975 + - uid: 67 components: - type: Transform - pos: 21.5,46.5 + pos: 14.5,-13.5 parent: 2 - - uid: 4980 + - uid: 83 components: - type: Transform - pos: 35.5,46.5 + pos: -17.5,-23.5 parent: 2 - - uid: 4981 + - uid: 89 components: - type: Transform - pos: 33.5,46.5 + rot: 3.141592653589793 rad + pos: -25.5,1.5 parent: 2 - - uid: 4983 + - uid: 100 components: - type: Transform - pos: 29.5,48.5 + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 parent: 2 - - uid: 4984 + - uid: 101 components: - type: Transform - pos: 30.5,48.5 + rot: -1.5707963267948966 rad + pos: -4.5,-18.5 parent: 2 - - uid: 4985 + - uid: 106 components: - type: Transform - pos: 25.5,48.5 + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 parent: 2 - - uid: 4994 + - uid: 156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,48.5 + pos: 7.5,-2.5 parent: 2 - - uid: 4995 + - uid: 157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,48.5 + pos: 7.5,-3.5 parent: 2 - - uid: 5031 + - uid: 158 components: - type: Transform - pos: 50.5,-3.5 + pos: 7.5,-4.5 parent: 2 - - uid: 5032 + - uid: 159 components: - type: Transform - pos: 54.5,-4.5 + pos: 7.5,-5.5 parent: 2 - - uid: 5365 + - uid: 160 components: - type: Transform - pos: 47.5,12.5 + pos: 7.5,-6.5 parent: 2 - - uid: 5813 + - uid: 161 components: - type: Transform - pos: 34.5,-8.5 + pos: 7.5,-7.5 parent: 2 - - uid: 7545 + - uid: 179 components: - type: Transform - pos: 55.5,-10.5 + pos: 7.5,-8.5 parent: 2 - - uid: 7611 + - uid: 180 components: - type: Transform - pos: 56.5,-10.5 + pos: 7.5,-9.5 parent: 2 - - uid: 7612 + - uid: 181 components: - type: Transform - pos: 54.5,-10.5 + pos: 7.5,-10.5 parent: 2 - - uid: 7739 + - uid: 201 components: - type: Transform - pos: -2.5,-2.5 + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 parent: 2 - - uid: 7937 + - uid: 206 components: - type: Transform - pos: 40.5,22.5 + pos: 10.5,-3.5 parent: 2 - - uid: 7939 + - uid: 207 components: - type: Transform - pos: 41.5,24.5 + pos: 10.5,-4.5 parent: 2 - - uid: 10310 + - uid: 208 components: - type: Transform - pos: 8.5,-6.5 + pos: 11.5,-4.5 parent: 2 - - uid: 11800 + - uid: 209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 + pos: 12.5,-4.5 parent: 2 - - uid: 11839 + - uid: 210 components: - type: Transform - pos: 12.5,-34.5 + pos: 13.5,-4.5 parent: 2 - - uid: 12423 + - uid: 211 components: - type: Transform - pos: 49.5,1.5 + pos: 13.5,-5.5 parent: 2 -- proto: TableWood - entities: - - uid: 302 + - uid: 212 components: - type: Transform - pos: 13.5,4.5 + pos: 13.5,-6.5 parent: 2 - - uid: 304 + - uid: 213 components: - type: Transform - pos: 11.5,4.5 + pos: 13.5,-7.5 parent: 2 - - uid: 305 + - uid: 214 components: - type: Transform - pos: 10.5,4.5 + pos: 13.5,-8.5 parent: 2 - - uid: 306 + - uid: 215 components: - type: Transform - pos: 8.5,4.5 + pos: 13.5,-9.5 parent: 2 - - uid: 307 + - uid: 216 components: - type: Transform - pos: 8.5,3.5 + pos: 12.5,-9.5 parent: 2 - - uid: 2405 + - uid: 217 components: - type: Transform - pos: 44.5,23.5 + pos: 11.5,-9.5 parent: 2 - - uid: 2406 + - uid: 218 components: - type: Transform - pos: 45.5,23.5 + pos: 10.5,-9.5 parent: 2 - - uid: 2407 + - uid: 219 components: - type: Transform - pos: 45.5,24.5 + pos: 10.5,-10.5 parent: 2 - - uid: 2478 + - uid: 220 components: - type: Transform - pos: 43.5,19.5 + pos: 8.5,-10.5 parent: 2 - - uid: 2713 + - uid: 319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,33.5 + rot: 3.141592653589793 rad + pos: 60.5,32.5 parent: 2 - - uid: 2714 + - uid: 324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,32.5 + pos: 6.5,14.5 parent: 2 - - uid: 2715 + - uid: 331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,30.5 + pos: -4.5,-19.5 parent: 2 - - uid: 2716 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,29.5 + pos: -25.5,-2.5 parent: 2 - - uid: 2719 + - uid: 343 components: - type: Transform - pos: 18.5,31.5 + pos: 10.5,19.5 parent: 2 - - uid: 2776 + - uid: 346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,40.5 + rot: -1.5707963267948966 rad + pos: -25.5,-3.5 parent: 2 - - uid: 2777 + - uid: 435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,40.5 + pos: 65.5,24.5 parent: 2 - - uid: 2778 + - uid: 437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,39.5 + pos: 5.5,20.5 parent: 2 - - uid: 2779 + - uid: 462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,39.5 + rot: -1.5707963267948966 rad + pos: -27.5,1.5 parent: 2 - - uid: 5407 + - uid: 470 components: - type: Transform - pos: 34.5,41.5 + pos: 5.5,-16.5 parent: 2 - - uid: 5408 + - uid: 471 components: - type: Transform - pos: 33.5,41.5 + pos: 8.5,36.5 parent: 2 - - uid: 5409 + - uid: 481 components: - type: Transform - pos: 32.5,41.5 + rot: 3.141592653589793 rad + pos: 4.5,-17.5 parent: 2 - - uid: 5410 + - uid: 485 components: - type: Transform - pos: 30.5,41.5 + pos: 15.5,-6.5 parent: 2 - - uid: 5413 + - uid: 490 components: - type: Transform - pos: 37.5,43.5 + pos: 16.5,-6.5 parent: 2 - - uid: 7547 + - uid: 491 components: - type: Transform - pos: 30.5,6.5 + pos: 17.5,-6.5 parent: 2 - - uid: 8646 + - uid: 492 components: - type: Transform - pos: 86.5,10.5 + pos: 18.5,-6.5 parent: 2 - - uid: 8647 + - uid: 493 components: - type: Transform - pos: 84.5,10.5 + pos: 19.5,-6.5 parent: 2 - - uid: 8648 + - uid: 494 components: - type: Transform - pos: 86.5,12.5 + pos: 20.5,-6.5 parent: 2 - - uid: 8649 + - uid: 495 components: - type: Transform - pos: 83.5,8.5 + pos: 21.5,-6.5 parent: 2 - - uid: 8650 + - uid: 496 components: - type: Transform - pos: 83.5,7.5 + pos: 21.5,-5.5 parent: 2 - - uid: 9004 + - uid: 497 components: - type: Transform - pos: 18.5,29.5 + pos: 21.5,-4.5 parent: 2 - - uid: 10635 + - uid: 498 components: - type: Transform - pos: 30.5,7.5 + pos: 21.5,-3.5 parent: 2 - - uid: 11477 + - uid: 499 components: - type: Transform - pos: 43.5,20.5 + pos: 21.5,-2.5 parent: 2 -- proto: TargetClown - entities: - - uid: 9607 + - uid: 500 components: - type: Transform - pos: 27.5,8.5 + pos: 21.5,-1.5 parent: 2 -- proto: TegCenter - entities: - - uid: 13127 + - uid: 501 components: - type: Transform - pos: 40.5,-46.5 + pos: 20.5,-1.5 parent: 2 -- proto: TegCirculator - entities: - - uid: 13128 + - uid: 502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-47.5 + pos: 19.5,-1.5 parent: 2 - - type: PointLight - color: '#FF3300FF' - - uid: 13129 + - uid: 503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-45.5 + pos: 18.5,-1.5 parent: 2 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 533 + - uid: 504 components: - type: Transform - pos: 16.5,-16.5 + pos: 17.5,-1.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 535 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 5183 + - uid: 505 components: - type: Transform - pos: 13.5,-16.5 + pos: 17.5,-2.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 412 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 10443 + - uid: 506 components: - type: Transform - pos: 14.5,-16.5 + pos: 13.5,-2.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 413 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12111 + - uid: 510 components: - type: Transform - pos: 15.5,-16.5 + rot: -1.5707963267948966 rad + pos: -26.5,1.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 414 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12112 + - uid: 534 components: - type: Transform - pos: 13.5,-18.5 + pos: 18.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 421 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12232 + - uid: 536 components: - type: Transform - pos: 14.5,-18.5 + pos: 20.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 422 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12233 + - uid: 537 components: - type: Transform - pos: 15.5,-18.5 + pos: 21.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 423 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12395 + - uid: 538 components: - type: Transform - pos: 16.5,-18.5 + pos: 22.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 424 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: TeslaCoil - entities: - - uid: 5664 + - uid: 539 components: - type: Transform - pos: 14.5,-50.5 + pos: 23.5,-13.5 parent: 2 - - uid: 13188 + - uid: 541 components: - type: Transform - pos: 14.5,-52.5 + pos: 17.5,-13.5 parent: 2 - - uid: 13189 + - uid: 573 components: - type: Transform - pos: 28.5,-52.5 + pos: 16.5,-22.5 parent: 2 - - uid: 13190 + - uid: 580 components: - type: Transform - pos: 28.5,-50.5 + pos: 17.5,-22.5 parent: 2 -- proto: TeslaGenerator - entities: - - uid: 832 + - uid: 581 components: - type: Transform - pos: 13.5,-31.5 + pos: 18.5,-22.5 parent: 2 -- proto: TeslaGroundingRod - entities: - - uid: 12384 + - uid: 610 components: - type: Transform - pos: 12.5,-46.5 + pos: 6.5,34.5 parent: 2 - - uid: 13183 + - uid: 615 components: - type: Transform - pos: 12.5,-47.5 + pos: 17.5,-14.5 parent: 2 - - uid: 13184 + - uid: 616 components: - type: Transform - pos: 12.5,-48.5 + pos: 17.5,-15.5 parent: 2 - - uid: 13185 + - uid: 618 components: - type: Transform - pos: 12.5,-49.5 + pos: 14.5,-14.5 parent: 2 -- proto: TintedWindow - entities: - - uid: 1165 + - uid: 619 components: - type: Transform - pos: 24.5,-12.5 + pos: 15.5,-14.5 parent: 2 - - uid: 1196 + - uid: 620 components: - type: Transform - pos: 24.5,-9.5 + pos: 13.5,-14.5 parent: 2 - - uid: 6813 + - uid: 621 components: - type: Transform - pos: 63.5,-8.5 + pos: 12.5,-14.5 parent: 2 - - uid: 7580 + - uid: 623 components: - type: Transform - pos: 62.5,-8.5 + pos: 11.5,-15.5 parent: 2 - - uid: 11195 + - uid: 624 components: - type: Transform - pos: 60.5,-8.5 + pos: 11.5,-16.5 parent: 2 -- proto: ToiletEmpty - entities: - - uid: 460 + - uid: 625 components: - type: Transform - pos: 8.5,13.5 + pos: 11.5,-17.5 parent: 2 - - uid: 461 + - uid: 626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,12.5 + pos: 11.5,-18.5 parent: 2 - - uid: 2291 + - uid: 627 components: - type: Transform - pos: 41.5,37.5 + pos: 11.5,-19.5 parent: 2 - - uid: 5701 + - uid: 629 components: - type: Transform - pos: 79.5,-12.5 + pos: 12.5,-15.5 parent: 2 - - uid: 5702 + - uid: 630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-13.5 + pos: 12.5,-16.5 parent: 2 - - uid: 9019 + - uid: 631 components: - type: Transform - pos: 102.5,-12.5 + pos: 12.5,-17.5 parent: 2 - - uid: 11901 + - uid: 632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,8.5 + pos: 12.5,-18.5 parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 10474 + - uid: 633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,39.5 + pos: 12.5,-19.5 parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 5378 + - uid: 634 components: - type: Transform - pos: 52.6158,11.657994 + pos: 12.5,-20.5 parent: 2 - - uid: 5626 + - uid: 635 components: - type: Transform - pos: 18.84633,-23.378391 + pos: 15.5,-15.5 parent: 2 - - uid: 12356 + - uid: 636 components: - type: Transform - pos: 36.482082,-14.3137665 + pos: 14.5,-15.5 parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 4997 + - uid: 637 components: - type: Transform - rot: 3.573787398636341E-05 rad - pos: 35.50106,46.735016 + pos: 13.5,-15.5 parent: 2 - - uid: 11411 + - uid: 638 components: - type: Transform - pos: 31.521385,-17.29768 + pos: 13.5,-20.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 12095 + - uid: 639 components: - type: Transform - pos: 19.490185,40.6353 + pos: 14.5,-20.5 parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 4998 + - uid: 640 components: - type: Transform - pos: 35.491802,46.459015 + pos: 15.5,-20.5 parent: 2 - - uid: 7357 + - uid: 641 components: - type: Transform - pos: 18.414553,24.540695 + pos: 16.5,-20.5 parent: 2 - - uid: 11410 + - uid: 642 components: - type: Transform - pos: 31.521385,-17.500805 + pos: 19.5,-20.5 parent: 2 - - uid: 12357 + - uid: 643 components: - type: Transform - pos: 36.482082,-14.5012665 + pos: 20.5,-20.5 parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 2321 + - uid: 644 components: - type: Transform - pos: 37.63663,34.272766 + pos: 21.5,-20.5 parent: 2 - - uid: 6933 + - uid: 645 components: - type: Transform - pos: 12.5,12.5 + pos: 22.5,-20.5 parent: 2 -- proto: ToySpawner - entities: - - uid: 8652 + - uid: 646 components: - type: Transform - pos: 84.5,12.5 + pos: 23.5,-20.5 parent: 2 -- proto: TrashBag - entities: - - uid: 10811 + - uid: 647 components: - type: Transform - pos: 89.33498,-20.63679 + pos: 24.5,-20.5 parent: 2 -- proto: TrashBananaPeel - entities: - - uid: 5880 + - uid: 648 components: - type: Transform - pos: 0.13960361,-25.931139 + pos: 13.5,-19.5 parent: 2 - - uid: 9603 + - uid: 649 components: - type: Transform - pos: 26.493341,6.2912045 + pos: 14.5,-19.5 parent: 2 -- proto: TrumpetInstrument - entities: - - uid: 5030 + - uid: 650 components: - type: Transform - pos: 84.55714,10.563628 + pos: 15.5,-19.5 parent: 2 -- proto: TwoWayLever - entities: - - uid: 944 + - uid: 651 components: - type: Transform - pos: 8.5,16.5 + pos: 16.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12229: - - Left: Forward - - Right: Reverse - - Middle: Off - 7667: - - Left: Forward - - Right: Reverse - - Middle: Off - 6844: - - Left: Forward - - Right: Reverse - - Middle: Off - 7891: - - Left: Forward - - Right: Reverse - - Middle: Off - 7841: - - Left: Forward - - Right: Reverse - - Middle: Off - 7875: - - Left: Forward - - Right: Reverse - - Middle: Off - 7949: - - Left: Forward - - Right: Reverse - - Middle: Off - 7586: - - Left: Forward - - Right: Reverse - - Middle: Off - 6825: - - Left: Forward - - Right: Reverse - - Middle: Off - 7672: - - Left: Forward - - Right: Reverse - - Middle: Off - 7585: - - Left: Forward - - Right: Reverse - - Middle: Off - 2028: - - Left: Forward - - Right: Reverse - - Middle: Off - 6823: - - Left: Forward - - Right: Reverse - - Middle: Off - 7888: - - Left: Forward - - Right: Reverse - - Middle: Off - 6820: - - Left: Forward - - Right: Reverse - - Middle: Off - 7849: - - Left: Forward - - Right: Reverse - - Middle: Off - 2030: - - Left: Forward - - Right: Reverse - - Middle: Off - 7671: - - Left: Forward - - Right: Reverse - - Middle: Off - 6846: - - Left: Forward - - Right: Reverse - - Middle: Off - 7880: - - Left: Forward - - Right: Reverse - - Middle: Off - 7878: - - Left: Forward - - Right: Reverse - - Middle: Off - 7879: - - Left: Forward - - Right: Reverse - - Middle: Off - 7876: - - Left: Forward - - Right: Reverse - - Middle: Off - 5285: - - Left: Forward - - Right: Reverse - - Middle: Off - 1319: - - Left: Forward - - Right: Reverse - - Middle: Off - 6775: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 2154 + - uid: 652 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 653 components: - type: Transform - pos: 8.479812,22.588839 + pos: 18.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2039: - - Left: Forward - - Right: Reverse - - Middle: Off - 2040: - - Left: Forward - - Right: Reverse - - Middle: Off - 2067: - - Left: Forward - - Right: Reverse - - Middle: Off - 2051: - - Left: Forward - - Right: Reverse - - Middle: Off - 2066: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5856 + - uid: 654 components: - type: Transform - pos: 2.5,-30.5 + pos: 19.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5842: - - Left: Forward - - Right: Reverse - - Middle: Off - 5843: - - Left: Forward - - Right: Reverse - - Middle: Off - 5844: - - Left: Forward - - Right: Reverse - - Middle: Off - 5845: - - Left: Forward - - Right: Reverse - - Middle: Off - 5846: - - Left: Forward - - Right: Reverse - - Middle: Off - 5847: - - Left: Forward - - Right: Reverse - - Middle: Off - 5850: - - Left: Forward - - Right: Reverse - - Middle: Off - 5851: - - Left: Forward - - Right: Reverse - - Middle: Off - 5852: - - Left: Forward - - Right: Reverse - - Middle: Off - 5853: - - Left: Forward - - Right: Reverse - - Middle: Off - 5854: - - Left: Forward - - Right: Reverse - - Middle: Off - 5855: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5857 + - uid: 655 components: - type: Transform - pos: 2.5,-31.5 + pos: 24.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5875: - - Left: Open - - Right: Open - - Middle: Close - - uid: 7808 + - uid: 656 components: - type: Transform - pos: 8.5,28.5 + pos: 24.5,-18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2038: - - Left: Forward - - Right: Reverse - - Middle: Off - 2037: - - Left: Forward - - Right: Reverse - - Middle: Off - 2041: - - Left: Forward - - Right: Reverse - - Middle: Off - 2042: - - Left: Forward - - Right: Reverse - - Middle: Off - 2064: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 8665 + - uid: 657 components: - type: Transform - pos: 63.5,25.5 + pos: 24.5,-16.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5351: - - Left: Open - - Right: Open - - Middle: Close - 5361: - - Left: Open - - Right: Open - - Middle: Close - - uid: 10322 + - uid: 658 components: - type: Transform - pos: 44.5,11.5 + pos: 24.5,-15.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5268: - - Left: Open - - Right: Open - - Middle: Close - - uid: 13115 + - uid: 659 components: - type: Transform - pos: 44.5,-46.5 + pos: 24.5,-14.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12890: - - Left: Open - - Right: Open - - Middle: Close - 12891: - - Left: Open - - Right: Open - - Middle: Close -- proto: UniformPrinter - entities: - - uid: 10283 + - uid: 669 components: - type: Transform - pos: 20.5,-4.5 + rot: 3.141592653589793 rad + pos: 53.5,42.5 parent: 2 -- proto: Vaccinator - entities: - - uid: 12157 + - uid: 687 components: - type: Transform - pos: 81.5,-7.5 + rot: 3.141592653589793 rad + pos: 6.5,36.5 parent: 2 -- proto: VendingBarDrobe - entities: - - uid: 4407 + - uid: 690 components: - type: Transform - pos: 40.5,-9.5 + pos: 3.5,-17.5 parent: 2 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 4100 + - uid: 694 components: - type: Transform - pos: 29.5,-30.5 + pos: -7.5,-21.5 parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 540 + - uid: 707 components: - type: Transform - pos: 38.5,-8.5 + pos: 12.5,-22.5 parent: 2 - - uid: 2900 + - uid: 708 components: - type: Transform - pos: 66.5,-13.5 + pos: 12.5,-23.5 parent: 2 -- proto: VendingMachineCargoDrobe - entities: - - uid: 8176 + - uid: 709 components: - type: Transform - pos: 9.5,32.5 + pos: 12.5,-24.5 parent: 2 -- proto: VendingMachineCart - entities: - - uid: 10267 + - uid: 710 components: - type: Transform - pos: 20.5,-5.5 + pos: 12.5,-25.5 parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 12201 + - uid: 711 components: - type: Transform - pos: 31.5,9.5 + pos: 11.5,-24.5 parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 4249 + - uid: 712 components: - type: Transform - pos: 29.5,-9.5 + pos: 10.5,-24.5 parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 4248 + - uid: 713 components: - type: Transform - pos: 34.5,-12.5 + pos: 9.5,-24.5 parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 5058 + - uid: 714 components: - type: Transform - pos: 49.5,-8.5 + pos: 9.5,-25.5 parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 5061 + - uid: 715 components: - type: Transform - pos: 51.5,-4.5 + pos: 8.5,-25.5 parent: 2 -- proto: VendingMachineCigs - entities: - - uid: 2771 + - uid: 716 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: 24.5,42.5 + pos: 8.5,-26.5 parent: 2 - - uid: 5349 + - uid: 717 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: 63.5,16.5 + pos: 8.5,-27.5 parent: 2 - - uid: 5426 + - uid: 718 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: 34.5,43.5 + pos: 8.5,-28.5 parent: 2 - - uid: 6615 + - uid: 719 components: - type: Transform - pos: 32.5,-2.5 + pos: 8.5,-29.5 parent: 2 - - uid: 11033 + - uid: 720 components: - type: Transform - pos: 19.5,35.5 + pos: 8.5,-30.5 parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 127 + - uid: 721 components: - type: Transform - pos: 20.5,7.5 + pos: 8.5,-31.5 parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 586 + - uid: 722 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 11.5,-3.5 + pos: 8.5,-32.5 parent: 2 - - uid: 613 + - uid: 723 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 21.5,42.5 + pos: 9.5,-32.5 parent: 2 - - uid: 5350 + - uid: 724 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 62.5,16.5 + pos: 10.5,-32.5 parent: 2 - - uid: 5468 + - uid: 725 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 67.5,41.5 + pos: 11.5,-32.5 parent: 2 - - uid: 8864 + - uid: 726 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 107.5,-12.5 + pos: 12.5,-32.5 parent: 2 - - uid: 11224 + - uid: 727 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 45.5,20.5 + pos: 13.5,-32.5 parent: 2 - - uid: 11432 + - uid: 728 components: - type: Transform - pos: 78.5,3.5 + pos: 14.5,-32.5 parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 6757 + - uid: 729 components: - type: Transform - pos: 31.5,-7.5 + pos: 15.5,-32.5 parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 7770 + - uid: 730 components: - type: Transform - pos: 13.5,3.5 + pos: 16.5,-32.5 parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 7711 + - uid: 731 components: - type: Transform - pos: 41.5,17.5 + pos: 12.5,-28.5 parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 1550 + - uid: 732 components: - type: Transform - pos: 33.5,-12.5 + pos: 12.5,-29.5 parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 4093 + - uid: 733 components: - type: Transform - pos: 23.5,-30.5 + pos: 13.5,-29.5 parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 799 + - uid: 734 components: - type: Transform - pos: 23.5,-27.5 + pos: 14.5,-29.5 parent: 2 -- proto: VendingMachineGames - entities: - - uid: 570 + - uid: 735 components: - type: Transform - pos: 8.5,5.5 + pos: 15.5,-29.5 parent: 2 -- proto: VendingMachineGeneDrobe - entities: - - uid: 11912 + - uid: 736 components: - type: Transform - pos: 74.5,4.5 + pos: 16.5,-29.5 parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 6664 + - uid: 737 components: - type: Transform - pos: 44.5,-9.5 + pos: 16.5,-30.5 parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 11963 + - uid: 745 components: - type: Transform - pos: 3.5,-6.5 + rot: 1.5707963267948966 rad + pos: 51.5,-34.5 parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 140 + - uid: 753 components: - type: Transform - pos: -0.5,-7.5 + pos: 14.5,-22.5 parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 5048 + - uid: 754 components: - type: Transform - pos: 53.5,4.5 + pos: 15.5,-22.5 parent: 2 -- proto: VendingMachineMediDrobe - entities: - - uid: 11913 + - uid: 757 components: - type: Transform - pos: 70.5,4.5 + rot: 1.5707963267948966 rad + pos: 47.5,-34.5 parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 6678 + - uid: 758 components: - type: Transform - pos: 44.5,-4.5 + pos: 19.5,-22.5 parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 5376 + - uid: 759 components: - type: Transform - pos: 53.5,11.5 + pos: 20.5,-22.5 parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 10078 + - uid: 760 components: - type: Transform - pos: 50.5,11.5 + pos: 21.5,-22.5 parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 11811 + - uid: 761 components: - - type: MetaData - name: Salvage Equipment - type: Transform - pos: 7.5,19.5 + pos: 22.5,-22.5 parent: 2 -- proto: VendingMachineSciDrobe - entities: - - uid: 11953 + - uid: 762 components: - type: Transform - pos: 58.5,25.5 + pos: 23.5,-22.5 parent: 2 -- proto: VendingMachineSec - entities: - - uid: 2467 + - uid: 765 components: - type: Transform - pos: 36.5,17.5 + rot: 1.5707963267948966 rad + pos: 47.5,-32.5 parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 2464 + - uid: 766 components: - type: Transform - pos: 37.5,19.5 + pos: 23.5,-25.5 parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 6676 + - uid: 767 components: - type: Transform - pos: 43.5,-4.5 + pos: 24.5,-25.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 6866 + - uid: 768 components: - type: Transform - pos: 39.5,36.5 + pos: 24.5,-26.5 parent: 2 -- proto: VendingMachineSovietSoda - entities: - - uid: 5467 + - uid: 776 components: - type: Transform - pos: 67.5,35.5 + rot: 1.5707963267948966 rad + pos: 49.5,-32.5 parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 12080 + - uid: 777 components: - type: Transform - pos: 41.5,34.5 + rot: 1.5707963267948966 rad + pos: 50.5,-32.5 parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 13706 + - uid: 785 components: - type: Transform - pos: 17.5,-38.5 + rot: 1.5707963267948966 rad + pos: 51.5,-32.5 parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 10305 + - uid: 804 components: - type: Transform - pos: 8.5,-7.5 + rot: 1.5707963267948966 rad + pos: 48.5,-32.5 parent: 2 -- proto: VendingMachineTheater - entities: - - uid: 1144 + - uid: 805 components: - type: Transform - pos: 25.5,8.5 + rot: 1.5707963267948966 rad + pos: 51.5,-33.5 parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 12214 + - uid: 823 components: - type: Transform - pos: 29.5,-14.5 + pos: 28.5,-25.5 parent: 2 -- proto: VendingMachineViroDrobe - entities: - - uid: 11964 + - uid: 824 components: - type: Transform - pos: 79.5,-3.5 + pos: 28.5,-26.5 parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 10706 + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-31.5 + parent: 2 + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-30.5 + parent: 2 + - uid: 842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-29.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 2 + - uid: 915 components: - type: Transform - pos: 20.5,8.5 + pos: 9.5,-33.5 parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 798 + - uid: 916 components: - type: Transform - pos: 23.5,-26.5 + pos: 9.5,-34.5 parent: 2 - - uid: 1759 + - uid: 917 components: - type: Transform - pos: 32.5,-14.5 + pos: 9.5,-35.5 parent: 2 -- proto: ViolinInstrument - entities: - - uid: 9357 + - uid: 918 components: - type: Transform - pos: 25.493341,6.5724545 + pos: 9.5,-36.5 parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 10669 + - uid: 919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 + pos: 9.5,-37.5 parent: 2 - - uid: 10831 + - uid: 920 components: - type: Transform - pos: 31.5,43.5 + pos: 14.5,-37.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 4 + - uid: 949 components: - type: Transform - pos: 5.5,14.5 + pos: 15.5,-37.5 parent: 2 - - uid: 22 + - uid: 952 components: - type: Transform - pos: -7.5,-3.5 + pos: 18.5,-37.5 parent: 2 - - uid: 49 + - uid: 955 components: - type: Transform - pos: -10.5,1.5 + pos: 15.5,-40.5 parent: 2 - - uid: 67 + - uid: 956 components: - type: Transform - pos: 14.5,-13.5 + pos: 24.5,-37.5 parent: 2 - - uid: 72 + - uid: 957 components: - type: Transform - pos: 10.5,37.5 + pos: 24.5,-40.5 parent: 2 - - uid: 75 + - uid: 958 components: - type: Transform - pos: 10.5,36.5 + pos: 18.5,-40.5 parent: 2 - - uid: 156 + - uid: 993 components: - type: Transform - pos: 7.5,-2.5 + pos: 9.5,35.5 parent: 2 - - uid: 157 + - uid: 1007 components: - type: Transform - pos: 7.5,-3.5 + rot: 1.5707963267948966 rad + pos: 48.5,-34.5 parent: 2 - - uid: 158 + - uid: 1008 components: - type: Transform - pos: 7.5,-4.5 + rot: 1.5707963267948966 rad + pos: 49.5,-34.5 parent: 2 - - uid: 159 + - uid: 1021 components: - type: Transform - pos: 7.5,-5.5 + pos: 14.5,-43.5 parent: 2 - - uid: 160 + - uid: 1022 components: - type: Transform - pos: 7.5,-6.5 + pos: 15.5,-43.5 parent: 2 - - uid: 161 + - uid: 1042 components: - type: Transform - pos: 7.5,-7.5 + pos: 8.5,35.5 parent: 2 - - uid: 179 + - uid: 1055 components: - type: Transform - pos: 7.5,-8.5 + pos: 4.5,36.5 parent: 2 - - uid: 180 + - uid: 1057 components: - type: Transform - pos: 7.5,-9.5 + pos: 14.5,-39.5 parent: 2 - - uid: 181 + - uid: 1218 components: - type: Transform - pos: 7.5,-10.5 + pos: 37.5,-29.5 parent: 2 - - uid: 206 + - uid: 1219 components: - type: Transform - pos: 10.5,-3.5 + pos: 16.5,-15.5 parent: 2 - - uid: 207 + - uid: 1230 components: - type: Transform - pos: 10.5,-4.5 + pos: 48.5,32.5 parent: 2 - - uid: 208 + - uid: 1250 components: - type: Transform - pos: 11.5,-4.5 + pos: 30.5,-58.5 parent: 2 - - uid: 209 + - uid: 1264 components: - type: Transform - pos: 12.5,-4.5 + pos: 30.5,-46.5 parent: 2 - - uid: 210 + - uid: 1265 components: - type: Transform - pos: 13.5,-4.5 + pos: 30.5,-47.5 parent: 2 - - uid: 211 + - uid: 1266 components: - type: Transform - pos: 13.5,-5.5 + pos: 30.5,-48.5 parent: 2 - - uid: 212 + - uid: 1267 components: - type: Transform - pos: 13.5,-6.5 + pos: 30.5,-49.5 parent: 2 - - uid: 213 + - uid: 1268 components: - type: Transform - pos: 13.5,-7.5 + pos: 30.5,-50.5 parent: 2 - - uid: 214 + - uid: 1269 components: - type: Transform - pos: 13.5,-8.5 + pos: 30.5,-51.5 parent: 2 - - uid: 215 + - uid: 1270 components: - type: Transform - pos: 13.5,-9.5 + pos: 30.5,-52.5 parent: 2 - - uid: 216 + - uid: 1271 components: - type: Transform - pos: 12.5,-9.5 + pos: 30.5,-53.5 parent: 2 - - uid: 217 + - uid: 1272 components: - type: Transform - pos: 11.5,-9.5 + pos: 30.5,-54.5 parent: 2 - - uid: 218 + - uid: 1273 components: - type: Transform - pos: 10.5,-9.5 + pos: 30.5,-55.5 parent: 2 - - uid: 219 + - uid: 1276 components: - type: Transform - pos: 10.5,-10.5 + pos: 30.5,-57.5 parent: 2 - - uid: 220 + - uid: 1277 components: - type: Transform - pos: 8.5,-10.5 + pos: 30.5,-56.5 parent: 2 - - uid: 246 + - uid: 1278 components: - type: Transform - pos: -7.5,1.5 + pos: 12.5,-43.5 parent: 2 - - uid: 250 + - uid: 1279 components: - type: Transform - pos: -6.5,14.5 + pos: 12.5,-44.5 parent: 2 - - uid: 254 + - uid: 1280 components: - type: Transform - pos: -8.5,1.5 + pos: 12.5,-45.5 parent: 2 - - uid: 324 + - uid: 1282 components: - type: Transform - pos: 6.5,14.5 + pos: 11.5,-46.5 parent: 2 - - uid: 343 + - uid: 1283 components: - type: Transform - pos: 0.5,14.5 + pos: 11.5,-47.5 parent: 2 - - uid: 344 + - uid: 1284 components: - type: Transform - pos: -12.5,1.5 + pos: 11.5,-48.5 parent: 2 - - uid: 398 + - uid: 1285 components: - type: Transform - pos: 4.5,20.5 + pos: 11.5,-49.5 parent: 2 - - uid: 430 + - uid: 1292 components: - type: Transform - pos: 6.5,21.5 + pos: 11.5,-50.5 parent: 2 - - uid: 431 + - uid: 1293 components: - type: Transform - pos: 6.5,20.5 + pos: 11.5,-51.5 parent: 2 - - uid: 435 + - uid: 1294 components: - type: Transform - pos: 65.5,24.5 + pos: 11.5,-52.5 parent: 2 - - uid: 462 + - uid: 1295 components: - type: Transform - pos: -14.5,-11.5 + rot: -1.5707963267948966 rad + pos: 12.5,-46.5 parent: 2 - - uid: 470 + - uid: 1296 components: - type: Transform - pos: 5.5,-16.5 + rot: -1.5707963267948966 rad + pos: 12.5,-48.5 parent: 2 - - uid: 481 + - uid: 1297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-17.5 + pos: 11.5,-55.5 parent: 2 - - uid: 485 + - uid: 1299 components: - type: Transform - pos: 15.5,-6.5 + pos: 30.5,-59.5 parent: 2 - - uid: 490 + - uid: 1326 components: - type: Transform - pos: 16.5,-6.5 + pos: 5.5,-33.5 parent: 2 - - uid: 491 + - uid: 1334 components: - type: Transform - pos: 17.5,-6.5 + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 parent: 2 - - uid: 492 + - uid: 1337 components: - type: Transform - pos: 18.5,-6.5 + pos: 2.5,13.5 parent: 2 - - uid: 493 + - uid: 1348 components: - type: Transform - pos: 19.5,-6.5 + pos: 5.5,-34.5 parent: 2 - - uid: 494 + - uid: 1349 components: - type: Transform - pos: 20.5,-6.5 + pos: 5.5,-35.5 parent: 2 - - uid: 495 + - uid: 1350 components: - type: Transform - pos: 21.5,-6.5 + pos: 5.5,-36.5 parent: 2 - - uid: 496 + - uid: 1351 components: - type: Transform - pos: 21.5,-5.5 + pos: 5.5,-37.5 parent: 2 - - uid: 497 + - uid: 1352 components: - type: Transform - pos: 21.5,-4.5 + pos: 4.5,-37.5 parent: 2 - - uid: 498 + - uid: 1353 components: - type: Transform - pos: 21.5,-3.5 + pos: 3.5,-37.5 parent: 2 - - uid: 499 + - uid: 1354 components: - type: Transform - pos: 21.5,-2.5 + pos: 2.5,-37.5 parent: 2 - - uid: 500 + - uid: 1355 components: - type: Transform - pos: 21.5,-1.5 + pos: 1.5,-37.5 parent: 2 - - uid: 501 + - uid: 1356 components: - type: Transform - pos: 20.5,-1.5 + pos: 0.5,-37.5 parent: 2 - - uid: 502 + - uid: 1487 components: - type: Transform - pos: 19.5,-1.5 + pos: 16.5,39.5 parent: 2 - - uid: 503 + - uid: 1576 components: - type: Transform - pos: 18.5,-1.5 + pos: 24.5,-13.5 parent: 2 - - uid: 504 + - uid: 1577 components: - type: Transform - pos: 17.5,-1.5 + pos: 10.5,-2.5 parent: 2 - - uid: 505 + - uid: 1597 components: - type: Transform - pos: 17.5,-2.5 + pos: 40.5,-13.5 parent: 2 - - uid: 506 + - uid: 1599 components: - type: Transform - pos: 13.5,-2.5 + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 parent: 2 - - uid: 509 + - uid: 1638 components: - type: Transform - pos: -7.5,-11.5 + pos: 48.5,-3.5 parent: 2 - - uid: 534 + - uid: 1639 components: - type: Transform - pos: 18.5,-13.5 + pos: 48.5,-4.5 parent: 2 - - uid: 536 + - uid: 1640 components: - type: Transform - pos: 20.5,-13.5 + pos: 48.5,-5.5 parent: 2 - - uid: 537 + - uid: 1641 components: - type: Transform - pos: 21.5,-13.5 + pos: 48.5,-6.5 parent: 2 - - uid: 538 + - uid: 1643 components: - type: Transform - pos: 22.5,-13.5 + pos: 48.5,-8.5 parent: 2 - - uid: 539 + - uid: 1652 components: - type: Transform - pos: 23.5,-13.5 + pos: 48.5,-9.5 parent: 2 - - uid: 541 + - uid: 1673 components: - type: Transform - pos: 17.5,-13.5 + rot: 3.141592653589793 rad + pos: 19.5,-15.5 parent: 2 - - uid: 553 + - uid: 1700 components: - type: Transform - pos: -12.5,14.5 + pos: 45.5,-13.5 parent: 2 - - uid: 573 + - uid: 1701 components: - type: Transform - pos: 16.5,-22.5 + pos: 44.5,-13.5 parent: 2 - - uid: 580 + - uid: 1702 components: - type: Transform - pos: 17.5,-22.5 + pos: 43.5,-13.5 parent: 2 - - uid: 581 + - uid: 1703 components: - type: Transform - pos: 18.5,-22.5 + pos: 42.5,-13.5 parent: 2 - - uid: 612 + - uid: 1704 components: - type: Transform - pos: -15.5,-15.5 + pos: 41.5,-13.5 parent: 2 - - uid: 615 + - uid: 1706 components: - type: Transform - pos: 17.5,-14.5 + pos: 45.5,-17.5 parent: 2 - - uid: 616 + - uid: 1707 components: - type: Transform - pos: 17.5,-15.5 + pos: 44.5,-17.5 parent: 2 - - uid: 618 + - uid: 1708 components: - type: Transform - pos: 14.5,-14.5 + pos: 43.5,-17.5 parent: 2 - - uid: 619 + - uid: 1709 components: - type: Transform - pos: 15.5,-14.5 + pos: 42.5,-17.5 parent: 2 - - uid: 620 + - uid: 1716 components: - type: Transform - pos: 13.5,-14.5 + pos: 41.5,-17.5 parent: 2 - - uid: 621 + - uid: 1720 components: - type: Transform - pos: 12.5,-14.5 + pos: 40.5,-17.5 parent: 2 - - uid: 623 + - uid: 1763 components: - type: Transform - pos: 11.5,-15.5 + pos: 37.5,32.5 parent: 2 - - uid: 624 + - uid: 1828 components: - type: Transform - pos: 11.5,-16.5 + pos: 29.5,-25.5 parent: 2 - - uid: 625 + - uid: 1936 components: - type: Transform - pos: 11.5,-17.5 + pos: -21.5,-21.5 parent: 2 - - uid: 626 + - uid: 1980 components: - type: Transform - pos: 11.5,-18.5 + pos: 58.5,-14.5 parent: 2 - - uid: 627 + - uid: 1981 components: - type: Transform - pos: 11.5,-19.5 + pos: 58.5,-13.5 parent: 2 - - uid: 629 + - uid: 1984 components: - type: Transform - pos: 12.5,-15.5 + pos: 58.5,-12.5 parent: 2 - - uid: 630 + - uid: 1985 components: - type: Transform - pos: 12.5,-16.5 + pos: 57.5,-12.5 parent: 2 - - uid: 631 + - uid: 1986 components: - type: Transform - pos: 12.5,-17.5 + pos: 56.5,-12.5 parent: 2 - - uid: 632 + - uid: 1987 components: - type: Transform - pos: 12.5,-18.5 + pos: 55.5,-12.5 parent: 2 - - uid: 633 + - uid: 1988 components: - type: Transform - pos: 12.5,-19.5 + pos: 54.5,-12.5 parent: 2 - - uid: 634 + - uid: 1989 components: - type: Transform - pos: 12.5,-20.5 + pos: 53.5,-12.5 parent: 2 - - uid: 635 + - uid: 2033 components: - type: Transform - pos: 15.5,-15.5 + rot: 1.5707963267948966 rad + pos: -0.5,-20.5 parent: 2 - - uid: 636 + - uid: 2058 components: - type: Transform - pos: 14.5,-15.5 + rot: -1.5707963267948966 rad + pos: 15.5,-42.5 parent: 2 - - uid: 637 + - uid: 2070 components: - type: Transform - pos: 13.5,-15.5 + rot: 1.5707963267948966 rad + pos: 48.5,-30.5 parent: 2 - - uid: 638 + - uid: 2075 components: - type: Transform - pos: 13.5,-20.5 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 parent: 2 - - uid: 639 + - uid: 2077 components: - type: Transform - pos: 14.5,-20.5 + pos: 4.5,30.5 parent: 2 - - uid: 640 + - uid: 2088 components: - type: Transform - pos: 15.5,-20.5 + rot: 1.5707963267948966 rad + pos: 47.5,-24.5 parent: 2 - - uid: 641 + - uid: 2102 components: - type: Transform - pos: 16.5,-20.5 + pos: 24.5,28.5 parent: 2 - - uid: 642 + - uid: 2122 components: - type: Transform - pos: 19.5,-20.5 + pos: 10.5,36.5 parent: 2 - - uid: 643 + - uid: 2138 components: - type: Transform - pos: 20.5,-20.5 + rot: 1.5707963267948966 rad + pos: 50.5,-28.5 parent: 2 - - uid: 644 + - uid: 2141 components: - type: Transform - pos: 21.5,-20.5 + rot: 1.5707963267948966 rad + pos: 48.5,-28.5 parent: 2 - - uid: 645 + - uid: 2142 components: - type: Transform - pos: 22.5,-20.5 + rot: 1.5707963267948966 rad + pos: 47.5,-30.5 parent: 2 - - uid: 646 + - uid: 2144 components: - type: Transform - pos: 23.5,-20.5 + rot: 1.5707963267948966 rad + pos: 49.5,-28.5 parent: 2 - - uid: 647 + - uid: 2190 components: - type: Transform - pos: 24.5,-20.5 + pos: 28.5,16.5 parent: 2 - - uid: 648 + - uid: 2191 components: - type: Transform - pos: 13.5,-19.5 + pos: 29.5,16.5 parent: 2 - - uid: 649 + - uid: 2192 components: - type: Transform - pos: 14.5,-19.5 + pos: 30.5,16.5 parent: 2 - - uid: 650 + - uid: 2193 components: - type: Transform - pos: 15.5,-19.5 + pos: 31.5,16.5 parent: 2 - - uid: 651 + - uid: 2194 components: - type: Transform - pos: 16.5,-19.5 + pos: 32.5,16.5 parent: 2 - - uid: 652 + - uid: 2195 components: - type: Transform - pos: 17.5,-19.5 + pos: 33.5,16.5 parent: 2 - - uid: 653 + - uid: 2196 components: - type: Transform - pos: 18.5,-19.5 + pos: 28.5,19.5 parent: 2 - - uid: 654 + - uid: 2197 components: - type: Transform - pos: 19.5,-19.5 + pos: 28.5,22.5 parent: 2 - - uid: 655 + - uid: 2198 components: - type: Transform - pos: 24.5,-19.5 + pos: 28.5,26.5 parent: 2 - - uid: 656 + - uid: 2199 components: - type: Transform - pos: 24.5,-18.5 + pos: 28.5,27.5 parent: 2 - - uid: 657 + - uid: 2200 components: - type: Transform - pos: 24.5,-16.5 + pos: 29.5,27.5 parent: 2 - - uid: 658 + - uid: 2201 components: - type: Transform - pos: 24.5,-15.5 + pos: 30.5,27.5 parent: 2 - - uid: 659 + - uid: 2202 components: - type: Transform - pos: 24.5,-14.5 + pos: 31.5,27.5 parent: 2 - - uid: 680 + - uid: 2203 components: - type: Transform - pos: -17.5,-15.5 + pos: 28.5,28.5 parent: 2 - - uid: 690 + - uid: 2204 components: - type: Transform - pos: -17.5,-11.5 + pos: 36.5,29.5 parent: 2 - - uid: 691 + - uid: 2205 components: - type: Transform - pos: -21.5,-11.5 + pos: 28.5,30.5 parent: 2 - - uid: 693 + - uid: 2206 components: - type: Transform - pos: -9.5,-15.5 + pos: 28.5,31.5 parent: 2 - - uid: 705 + - uid: 2207 components: - type: Transform - pos: -7.5,14.5 + pos: 29.5,31.5 parent: 2 - - uid: 707 + - uid: 2208 components: - type: Transform - pos: 12.5,-22.5 + pos: 30.5,31.5 parent: 2 - - uid: 708 + - uid: 2209 components: - type: Transform - pos: 12.5,-23.5 + pos: 31.5,31.5 parent: 2 - - uid: 709 + - uid: 2211 components: - type: Transform - pos: 12.5,-24.5 + rot: 3.141592653589793 rad + pos: 51.5,29.5 parent: 2 - - uid: 710 + - uid: 2212 components: - type: Transform - pos: 12.5,-25.5 + pos: 60.5,35.5 parent: 2 - - uid: 711 + - uid: 2214 components: - type: Transform - pos: 11.5,-24.5 + pos: 60.5,37.5 parent: 2 - - uid: 712 + - uid: 2215 components: - type: Transform - pos: 10.5,-24.5 + pos: 60.5,38.5 parent: 2 - - uid: 713 + - uid: 2217 components: - type: Transform - pos: 9.5,-24.5 + pos: 60.5,34.5 parent: 2 - - uid: 714 + - uid: 2218 components: - type: Transform - pos: 9.5,-25.5 + rot: 3.141592653589793 rad + pos: 49.5,29.5 parent: 2 - - uid: 715 + - uid: 2219 components: - type: Transform - pos: 8.5,-25.5 + pos: 43.5,32.5 parent: 2 - - uid: 716 + - uid: 2220 components: - type: Transform - pos: 8.5,-26.5 + rot: 3.141592653589793 rad + pos: 50.5,29.5 parent: 2 - - uid: 717 + - uid: 2226 components: - type: Transform - pos: 8.5,-27.5 + rot: 3.141592653589793 rad + pos: 63.5,44.5 parent: 2 - - uid: 718 + - uid: 2228 components: - type: Transform - pos: 8.5,-28.5 + rot: 3.141592653589793 rad + pos: 31.5,32.5 parent: 2 - - uid: 719 + - uid: 2229 components: - type: Transform - pos: 8.5,-29.5 + pos: 40.5,38.5 parent: 2 - - uid: 720 + - uid: 2230 components: - type: Transform - pos: 8.5,-30.5 + rot: 3.141592653589793 rad + pos: 34.5,32.5 parent: 2 - - uid: 721 + - uid: 2232 components: - type: Transform - pos: 8.5,-31.5 + pos: 42.5,37.5 parent: 2 - - uid: 722 + - uid: 2233 components: - type: Transform - pos: 8.5,-32.5 + pos: 42.5,36.5 parent: 2 - - uid: 723 + - uid: 2234 components: - type: Transform - pos: 9.5,-32.5 + pos: 42.5,35.5 parent: 2 - - uid: 724 + - uid: 2235 components: - type: Transform - pos: 10.5,-32.5 + pos: 42.5,34.5 parent: 2 - - uid: 725 + - uid: 2260 components: - type: Transform - pos: 11.5,-32.5 + pos: 35.5,29.5 parent: 2 - - uid: 726 + - uid: 2262 components: - type: Transform - pos: 12.5,-32.5 + pos: 37.5,29.5 parent: 2 - - uid: 727 + - uid: 2267 components: - type: Transform - pos: 13.5,-32.5 + pos: 42.5,29.5 parent: 2 - - uid: 728 + - uid: 2268 components: - type: Transform - pos: 14.5,-32.5 + pos: 43.5,29.5 parent: 2 - - uid: 729 + - uid: 2269 components: - type: Transform - pos: 15.5,-32.5 + pos: 44.5,29.5 parent: 2 - - uid: 730 + - uid: 2272 components: - type: Transform - pos: 16.5,-32.5 + pos: 44.5,32.5 parent: 2 - - uid: 731 + - uid: 2273 components: - type: Transform - pos: 12.5,-28.5 + pos: 44.5,33.5 parent: 2 - - uid: 732 + - uid: 2277 components: - type: Transform - pos: 12.5,-29.5 + pos: 44.5,38.5 parent: 2 - - uid: 733 + - uid: 2278 components: - type: Transform - pos: 13.5,-29.5 + pos: 44.5,37.5 parent: 2 - - uid: 734 + - uid: 2306 components: - type: Transform - pos: 14.5,-29.5 + rot: -1.5707963267948966 rad + pos: 12.5,-57.5 parent: 2 - - uid: 735 + - uid: 2313 components: - type: Transform - pos: 15.5,-29.5 + pos: 40.5,18.5 parent: 2 - - uid: 736 + - uid: 2327 components: - type: Transform - pos: 16.5,-29.5 + pos: 37.5,25.5 parent: 2 - - uid: 737 + - uid: 2328 components: - type: Transform - pos: 16.5,-30.5 + pos: 42.5,28.5 parent: 2 - - uid: 745 + - uid: 2329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-34.5 + pos: 42.5,27.5 parent: 2 - - uid: 753 + - uid: 2330 components: - type: Transform - pos: 14.5,-22.5 + pos: 42.5,26.5 parent: 2 - - uid: 754 + - uid: 2331 components: - type: Transform - pos: 15.5,-22.5 + pos: 42.5,25.5 parent: 2 - - uid: 757 + - uid: 2334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 + pos: 43.5,26.5 parent: 2 - - uid: 758 + - uid: 2335 components: - type: Transform - pos: 19.5,-22.5 + pos: 44.5,26.5 parent: 2 - - uid: 759 + - uid: 2336 components: - type: Transform - pos: 20.5,-22.5 + pos: 45.5,26.5 parent: 2 - - uid: 760 + - uid: 2337 components: - type: Transform - pos: 21.5,-22.5 + pos: 46.5,26.5 parent: 2 - - uid: 761 + - uid: 2338 components: - type: Transform - pos: 22.5,-22.5 + pos: 46.5,25.5 parent: 2 - - uid: 762 + - uid: 2339 components: - type: Transform - pos: 23.5,-22.5 + pos: 46.5,24.5 parent: 2 - - uid: 765 + - uid: 2340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 + pos: 46.5,23.5 parent: 2 - - uid: 766 + - uid: 2341 components: - type: Transform - pos: 23.5,-25.5 + pos: 46.5,22.5 parent: 2 - - uid: 767 + - uid: 2342 components: - type: Transform - pos: 24.5,-25.5 + pos: 46.5,21.5 parent: 2 - - uid: 768 + - uid: 2343 components: - type: Transform - pos: 24.5,-26.5 + pos: 45.5,21.5 parent: 2 - - uid: 776 + - uid: 2344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-32.5 + pos: 44.5,21.5 parent: 2 - - uid: 777 + - uid: 2345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-32.5 + pos: 43.5,21.5 parent: 2 - - uid: 785 + - uid: 2346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-32.5 + pos: 42.5,21.5 parent: 2 - - uid: 804 + - uid: 2348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-32.5 + pos: 40.5,21.5 parent: 2 - - uid: 805 + - uid: 2349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-33.5 + pos: 40.5,20.5 parent: 2 - - uid: 823 + - uid: 2350 components: - type: Transform - pos: 28.5,-25.5 + pos: 40.5,19.5 parent: 2 - - uid: 824 + - uid: 2400 components: - type: Transform - pos: 28.5,-26.5 + rot: 1.5707963267948966 rad + pos: 51.5,-27.5 parent: 2 - - uid: 838 + - uid: 2439 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-31.5 + pos: 49.5,-30.5 parent: 2 - - uid: 839 + - uid: 2441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-30.5 + pos: 51.5,-23.5 parent: 2 - - uid: 842 + - uid: 2443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-29.5 + pos: 40.5,17.5 parent: 2 - - uid: 895 + - uid: 2444 components: - type: Transform - pos: -9.5,14.5 + pos: 40.5,16.5 parent: 2 - - uid: 900 + - uid: 2445 components: - type: Transform - pos: -10.5,14.5 + pos: 39.5,16.5 parent: 2 - - uid: 915 + - uid: 2446 components: - type: Transform - pos: 9.5,-33.5 + pos: 38.5,16.5 parent: 2 - - uid: 916 + - uid: 2447 components: - type: Transform - pos: 9.5,-34.5 + pos: 37.5,16.5 parent: 2 - - uid: 917 + - uid: 2448 components: - type: Transform - pos: 9.5,-35.5 + pos: 36.5,16.5 parent: 2 - - uid: 918 + - uid: 2449 components: - type: Transform - pos: 9.5,-36.5 + pos: 35.5,16.5 parent: 2 - - uid: 919 + - uid: 2450 components: - type: Transform - pos: 9.5,-37.5 + pos: 34.5,16.5 parent: 2 - - uid: 920 + - uid: 2485 components: - type: Transform - pos: 14.5,-37.5 + pos: 3.5,14.5 parent: 2 - - uid: 949 + - uid: 2563 components: - type: Transform - pos: 15.5,-37.5 + pos: 29.5,33.5 parent: 2 - - uid: 952 + - uid: 2568 components: - type: Transform - pos: 18.5,-37.5 + pos: 33.5,34.5 parent: 2 - - uid: 953 + - uid: 2569 components: - type: Transform - pos: 15.5,-38.5 + pos: 29.5,34.5 parent: 2 - - uid: 954 + - uid: 2570 components: - type: Transform - pos: 15.5,-39.5 + pos: 29.5,35.5 parent: 2 - - uid: 955 + - uid: 2571 components: - type: Transform - pos: 15.5,-40.5 + pos: 29.5,37.5 parent: 2 - - uid: 956 + - uid: 2572 components: - type: Transform - pos: 24.5,-37.5 + pos: 33.5,35.5 parent: 2 - - uid: 957 + - uid: 2573 components: - type: Transform - pos: 24.5,-40.5 + pos: 33.5,36.5 parent: 2 - - uid: 958 + - uid: 2574 components: - type: Transform - pos: 18.5,-40.5 + pos: 33.5,37.5 parent: 2 - - uid: 1007 + - uid: 2575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-34.5 + pos: 33.5,38.5 parent: 2 - - uid: 1008 + - uid: 2576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-34.5 + pos: 32.5,38.5 parent: 2 - - uid: 1013 + - uid: 2577 components: - type: Transform - pos: -27.5,7.5 + pos: 31.5,38.5 parent: 2 - - uid: 1021 + - uid: 2578 components: - type: Transform - pos: 14.5,-43.5 + pos: 30.5,38.5 parent: 2 - - uid: 1022 + - uid: 2579 components: - type: Transform - pos: 15.5,-43.5 + pos: 29.5,38.5 parent: 2 - - uid: 1023 + - uid: 2580 components: - type: Transform - pos: 15.5,-42.5 + pos: 29.5,39.5 parent: 2 - - uid: 1109 + - uid: 2581 components: - type: Transform - pos: -11.5,14.5 + pos: 29.5,40.5 parent: 2 - - uid: 1218 + - uid: 2582 components: - type: Transform - pos: 37.5,-29.5 + pos: 29.5,41.5 parent: 2 - - uid: 1219 + - uid: 2583 components: - type: Transform - pos: 16.5,-15.5 + pos: 29.5,42.5 parent: 2 - - uid: 1232 + - uid: 2584 components: - type: Transform - pos: -27.5,11.5 + pos: 29.5,43.5 parent: 2 - - uid: 1250 + - uid: 2585 components: - type: Transform - pos: 30.5,-58.5 + pos: 30.5,43.5 parent: 2 - - uid: 1264 + - uid: 2586 components: - type: Transform - pos: 30.5,-46.5 + pos: 31.5,43.5 parent: 2 - - uid: 1265 + - uid: 2587 components: - type: Transform - pos: 30.5,-47.5 + pos: 31.5,44.5 parent: 2 - - uid: 1266 + - uid: 2588 components: - type: Transform - pos: 30.5,-48.5 + pos: 33.5,44.5 parent: 2 - - uid: 1267 + - uid: 2589 components: - type: Transform - pos: 30.5,-49.5 + pos: 34.5,44.5 parent: 2 - - uid: 1268 + - uid: 2590 components: - type: Transform - pos: 30.5,-50.5 + pos: 35.5,44.5 parent: 2 - - uid: 1269 + - uid: 2591 components: - type: Transform - pos: 30.5,-51.5 + pos: 35.5,43.5 parent: 2 - - uid: 1270 + - uid: 2592 components: - type: Transform - pos: 30.5,-52.5 + pos: 35.5,42.5 parent: 2 - - uid: 1271 + - uid: 2593 components: - type: Transform - pos: 30.5,-53.5 + pos: 35.5,41.5 parent: 2 - - uid: 1272 + - uid: 2594 components: - type: Transform - pos: 30.5,-54.5 + pos: 36.5,44.5 parent: 2 - - uid: 1273 + - uid: 2595 components: - type: Transform - pos: 30.5,-55.5 + pos: 37.5,44.5 parent: 2 - - uid: 1274 + - uid: 2596 components: - type: Transform - pos: 11.5,-57.5 + pos: 38.5,44.5 parent: 2 - - uid: 1276 + - uid: 2597 components: - type: Transform - pos: 30.5,-57.5 + pos: 38.5,43.5 parent: 2 - - uid: 1277 + - uid: 2598 components: - type: Transform - pos: 30.5,-56.5 + pos: 38.5,42.5 parent: 2 - - uid: 1278 + - uid: 2599 components: - type: Transform - pos: 12.5,-43.5 + pos: 38.5,41.5 parent: 2 - - uid: 1279 + - uid: 2600 components: - type: Transform - pos: 12.5,-44.5 + pos: 38.5,40.5 parent: 2 - - uid: 1280 + - uid: 2601 components: - type: Transform - pos: 12.5,-45.5 + pos: 38.5,39.5 parent: 2 - - uid: 1281 + - uid: 2602 components: - type: Transform - pos: 11.5,-45.5 + pos: 37.5,39.5 parent: 2 - - uid: 1282 + - uid: 2603 components: - type: Transform - pos: 11.5,-46.5 + pos: 36.5,39.5 parent: 2 - - uid: 1283 + - uid: 2604 components: - type: Transform - pos: 11.5,-47.5 + pos: 35.5,39.5 parent: 2 - - uid: 1284 + - uid: 2605 components: - type: Transform - pos: 11.5,-48.5 + pos: 34.5,39.5 parent: 2 - - uid: 1285 + - uid: 2606 components: - type: Transform - pos: 11.5,-49.5 + pos: 34.5,38.5 parent: 2 - - uid: 1286 + - uid: 2617 components: - type: Transform - pos: 10.5,-47.5 + pos: 2.5,14.5 parent: 2 - - uid: 1287 + - uid: 2626 components: - type: Transform - pos: 10.5,-48.5 + pos: 20.5,43.5 parent: 2 - - uid: 1288 + - uid: 2627 components: - type: Transform - pos: 10.5,-49.5 + pos: 20.5,42.5 parent: 2 - - uid: 1289 + - uid: 2628 components: - type: Transform - pos: 10.5,-50.5 + pos: 19.5,42.5 parent: 2 - - uid: 1290 + - uid: 2629 components: - type: Transform - pos: 10.5,-51.5 + pos: 19.5,43.5 parent: 2 - - uid: 1291 + - uid: 2630 components: - type: Transform - pos: 10.5,-52.5 + pos: 18.5,43.5 parent: 2 - - uid: 1292 + - uid: 2631 components: - type: Transform - pos: 11.5,-50.5 + pos: 17.5,43.5 parent: 2 - - uid: 1293 + - uid: 2632 components: - type: Transform - pos: 11.5,-51.5 + pos: 17.5,42.5 parent: 2 - - uid: 1294 + - uid: 2633 components: - type: Transform - pos: 11.5,-52.5 + pos: 16.5,42.5 parent: 2 - - uid: 1295 + - uid: 2634 components: - type: Transform - pos: 11.5,-54.5 + pos: 16.5,41.5 parent: 2 - - uid: 1296 + - uid: 2635 components: - type: Transform - pos: 11.5,-53.5 + pos: 16.5,40.5 parent: 2 - - uid: 1297 + - uid: 2637 components: - type: Transform - pos: 11.5,-55.5 + pos: 16.5,38.5 parent: 2 - - uid: 1298 + - uid: 2638 components: - type: Transform - pos: 10.5,-55.5 + pos: 17.5,38.5 parent: 2 - - uid: 1299 + - uid: 2639 components: - type: Transform - pos: 30.5,-59.5 + pos: 19.5,38.5 parent: 2 - - uid: 1318 + - uid: 2640 components: - type: Transform - pos: -10.5,-11.5 + pos: 20.5,38.5 parent: 2 - - uid: 1326 + - uid: 2641 components: - type: Transform - pos: 5.5,-33.5 + pos: 20.5,39.5 parent: 2 - - uid: 1333 + - uid: 2642 components: - type: Transform - pos: -7.5,-15.5 + pos: 20.5,40.5 parent: 2 - - uid: 1337 + - uid: 2643 components: - type: Transform - pos: 2.5,13.5 + pos: 20.5,41.5 parent: 2 - - uid: 1348 + - uid: 2644 components: - type: Transform - pos: 5.5,-34.5 + pos: 25.5,38.5 parent: 2 - - uid: 1349 + - uid: 2645 components: - type: Transform - pos: 5.5,-35.5 + pos: 25.5,39.5 parent: 2 - - uid: 1350 + - uid: 2646 components: - type: Transform - pos: 5.5,-36.5 + pos: 25.5,40.5 parent: 2 - - uid: 1351 + - uid: 2647 components: - type: Transform - pos: 5.5,-37.5 + pos: 25.5,42.5 parent: 2 - - uid: 1352 + - uid: 2648 components: - type: Transform - pos: 4.5,-37.5 + pos: 25.5,43.5 parent: 2 - - uid: 1353 + - uid: 2652 components: - type: Transform - pos: 3.5,-37.5 + pos: 12.5,42.5 parent: 2 - - uid: 1354 + - uid: 2653 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 2654 components: - type: Transform - pos: 2.5,-37.5 + pos: 12.5,40.5 parent: 2 - - uid: 1355 + - uid: 2655 components: - type: Transform - pos: 1.5,-37.5 + pos: 12.5,39.5 parent: 2 - - uid: 1356 + - uid: 2656 components: - type: Transform - pos: 0.5,-37.5 + pos: 12.5,38.5 parent: 2 - - uid: 1487 + - uid: 2657 components: - type: Transform - pos: 16.5,39.5 + pos: 12.5,37.5 parent: 2 - - uid: 1545 + - uid: 2658 components: - type: Transform - pos: -8.5,14.5 + pos: 16.5,35.5 parent: 2 - - uid: 1576 + - uid: 2659 components: - type: Transform - pos: 24.5,-13.5 + pos: 15.5,34.5 parent: 2 - - uid: 1577 + - uid: 2660 components: - type: Transform - pos: 10.5,-2.5 + pos: 12.5,35.5 parent: 2 - - uid: 1597 + - uid: 2661 components: - type: Transform - pos: 40.5,-13.5 + pos: 31.5,-22.5 parent: 2 - - uid: 1638 + - uid: 2662 components: - type: Transform - pos: 48.5,-3.5 + pos: 12.5,36.5 parent: 2 - - uid: 1639 + - uid: 2663 components: - type: Transform - pos: 48.5,-4.5 + pos: 13.5,34.5 parent: 2 - - uid: 1640 + - uid: 2664 components: - type: Transform - pos: 48.5,-5.5 + pos: 16.5,37.5 parent: 2 - - uid: 1641 + - uid: 2665 components: - type: Transform - pos: 48.5,-6.5 + pos: 14.5,34.5 parent: 2 - - uid: 1643 + - uid: 2785 components: - type: Transform - pos: 48.5,-8.5 + rot: 1.5707963267948966 rad + pos: 49.5,-24.5 parent: 2 - - uid: 1652 + - uid: 2800 components: - type: Transform - pos: 48.5,-9.5 + pos: 33.5,49.5 parent: 2 - - uid: 1673 + - uid: 2801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-15.5 + pos: 33.5,48.5 parent: 2 - - uid: 1699 + - uid: 2802 components: - type: Transform - pos: 46.5,-13.5 + pos: 33.5,47.5 parent: 2 - - uid: 1700 + - uid: 2803 components: - type: Transform - pos: 45.5,-13.5 + pos: 34.5,47.5 parent: 2 - - uid: 1701 + - uid: 2804 components: - type: Transform - pos: 44.5,-13.5 + pos: 35.5,47.5 parent: 2 - - uid: 1702 + - uid: 2805 components: - type: Transform - pos: 43.5,-13.5 + pos: 36.5,47.5 parent: 2 - - uid: 1703 + - uid: 2810 components: - type: Transform - pos: 42.5,-13.5 + pos: 18.5,46.5 parent: 2 - - uid: 1704 + - uid: 2811 components: - type: Transform - pos: 41.5,-13.5 + pos: 18.5,47.5 parent: 2 - - uid: 1705 + - uid: 2812 components: - type: Transform - pos: 46.5,-17.5 + pos: 19.5,47.5 parent: 2 - - uid: 1706 + - uid: 2813 components: - type: Transform - pos: 45.5,-17.5 + pos: 20.5,47.5 parent: 2 - - uid: 1707 + - uid: 2814 components: - type: Transform - pos: 44.5,-17.5 + pos: 21.5,47.5 parent: 2 - - uid: 1708 + - uid: 2815 components: - type: Transform - pos: 43.5,-17.5 + pos: 21.5,48.5 parent: 2 - - uid: 1709 + - uid: 2816 components: - type: Transform - pos: 42.5,-17.5 + pos: 21.5,49.5 parent: 2 - - uid: 1716 + - uid: 2848 components: - type: Transform - pos: 41.5,-17.5 + pos: 59.5,-12.5 parent: 2 - - uid: 1720 + - uid: 2849 components: - type: Transform - pos: 40.5,-17.5 + pos: 59.5,-11.5 parent: 2 - - uid: 1828 + - uid: 2850 components: - type: Transform - pos: 29.5,-25.5 + pos: 59.5,-10.5 parent: 2 - - uid: 1980 + - uid: 2851 components: - type: Transform - pos: 58.5,-14.5 + pos: 59.5,-9.5 parent: 2 - - uid: 1981 + - uid: 2852 components: - type: Transform - pos: 58.5,-13.5 + pos: 59.5,-8.5 parent: 2 - - uid: 1984 + - uid: 2853 components: - type: Transform - pos: 58.5,-12.5 + pos: 58.5,-8.5 parent: 2 - - uid: 1985 + - uid: 2854 components: - type: Transform - pos: 57.5,-12.5 + pos: 54.5,-8.5 parent: 2 - - uid: 1986 + - uid: 2855 components: - type: Transform - pos: 56.5,-12.5 + pos: 53.5,-8.5 parent: 2 - - uid: 1987 + - uid: 2856 components: - type: Transform - pos: 55.5,-12.5 + pos: 53.5,-9.5 parent: 2 - - uid: 1988 + - uid: 2857 components: - type: Transform - pos: 54.5,-12.5 + pos: 53.5,-10.5 parent: 2 - - uid: 1989 + - uid: 2858 components: - type: Transform - pos: 53.5,-12.5 + pos: 53.5,-11.5 parent: 2 - - uid: 2011 + - uid: 2868 components: - type: Transform - pos: 5.5,29.5 + pos: 64.5,-12.5 parent: 2 - - uid: 2012 + - uid: 2869 components: - type: Transform - pos: 5.5,30.5 + pos: 64.5,-13.5 parent: 2 - - uid: 2013 + - uid: 2870 components: - type: Transform - pos: 5.5,31.5 + pos: 64.5,-14.5 parent: 2 - - uid: 2014 + - uid: 2912 components: - type: Transform - pos: 5.5,32.5 + rot: 1.5707963267948966 rad + pos: 51.5,-24.5 parent: 2 - - uid: 2015 + - uid: 2918 components: - type: Transform - pos: 5.5,33.5 + rot: 1.5707963267948966 rad + pos: 50.5,-24.5 parent: 2 - - uid: 2016 + - uid: 2933 components: - type: Transform - pos: 6.5,33.5 + pos: 68.5,-2.5 parent: 2 - - uid: 2017 + - uid: 2934 components: - type: Transform - pos: 7.5,33.5 + pos: 68.5,-3.5 parent: 2 - - uid: 2018 + - uid: 2935 components: - type: Transform - pos: 8.5,33.5 + pos: 68.5,-4.5 parent: 2 - - uid: 2019 + - uid: 2936 components: - type: Transform - pos: 9.5,33.5 + pos: 68.5,-5.5 parent: 2 - - uid: 2020 + - uid: 2937 components: - type: Transform - pos: 10.5,33.5 + pos: 68.5,-6.5 parent: 2 - - uid: 2024 + - uid: 2951 components: - type: Transform - pos: -22.5,-11.5 + pos: 51.5,-3.5 parent: 2 - - uid: 2033 + - uid: 2952 components: - type: Transform - pos: -14.5,-15.5 + pos: 51.5,-2.5 parent: 2 - - uid: 2043 + - uid: 2953 components: - type: Transform - pos: -16.5,-15.5 + pos: 52.5,-2.5 parent: 2 - - uid: 2070 + - uid: 2955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-30.5 + pos: 49.5,-9.5 parent: 2 - - uid: 2075 + - uid: 2956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 + pos: 51.5,-9.5 parent: 2 - - uid: 2085 + - uid: 3022 components: - type: Transform - pos: -17.5,14.5 + pos: 43.5,12.5 parent: 2 - - uid: 2088 + - uid: 3023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-24.5 + pos: 43.5,11.5 parent: 2 - - uid: 2102 + - uid: 3024 components: - type: Transform - pos: 24.5,28.5 + pos: 43.5,10.5 parent: 2 - - uid: 2138 + - uid: 3025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-28.5 + pos: 43.5,9.5 parent: 2 - - uid: 2141 + - uid: 3026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-28.5 + pos: 43.5,8.5 parent: 2 - - uid: 2142 + - uid: 3027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-30.5 + pos: 44.5,8.5 parent: 2 - - uid: 2144 + - uid: 3028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-28.5 + pos: 45.5,8.5 parent: 2 - - uid: 2190 + - uid: 3029 components: - type: Transform - pos: 28.5,16.5 + pos: 46.5,8.5 parent: 2 - - uid: 2191 + - uid: 3030 components: - type: Transform - pos: 29.5,16.5 + pos: 47.5,8.5 parent: 2 - - uid: 2192 + - uid: 3031 components: - type: Transform - pos: 30.5,16.5 + pos: 48.5,8.5 parent: 2 - - uid: 2193 + - uid: 3032 components: - type: Transform - pos: 31.5,16.5 + pos: 48.5,7.5 parent: 2 - - uid: 2194 + - uid: 3033 components: - type: Transform - pos: 32.5,16.5 + pos: 49.5,7.5 parent: 2 - - uid: 2195 + - uid: 3034 components: - type: Transform - pos: 33.5,16.5 + pos: 50.5,7.5 parent: 2 - - uid: 2196 + - uid: 3035 components: - type: Transform - pos: 28.5,19.5 + pos: 51.5,7.5 parent: 2 - - uid: 2197 + - uid: 3036 components: - type: Transform - pos: 28.5,22.5 + pos: 52.5,7.5 parent: 2 - - uid: 2198 + - uid: 3037 components: - type: Transform - pos: 28.5,26.5 + pos: 56.5,7.5 parent: 2 - - uid: 2199 + - uid: 3038 components: - type: Transform - pos: 28.5,27.5 + pos: 55.5,7.5 parent: 2 - - uid: 2200 + - uid: 3039 components: - type: Transform - pos: 29.5,27.5 + pos: 54.5,7.5 parent: 2 - - uid: 2201 + - uid: 3047 components: - type: Transform - pos: 30.5,27.5 + pos: 48.5,13.5 parent: 2 - - uid: 2202 + - uid: 3048 components: - type: Transform - pos: 31.5,27.5 + pos: 48.5,12.5 parent: 2 - - uid: 2203 + - uid: 3049 components: - type: Transform - pos: 28.5,28.5 + pos: 48.5,15.5 parent: 2 - - uid: 2204 + - uid: 3050 components: - type: Transform - pos: 28.5,29.5 + pos: 48.5,16.5 parent: 2 - - uid: 2205 + - uid: 3052 components: - type: Transform - pos: 28.5,30.5 + pos: 48.5,20.5 parent: 2 - - uid: 2206 + - uid: 3063 components: - type: Transform - pos: 28.5,31.5 + pos: 40.5,39.5 parent: 2 - - uid: 2207 + - uid: 3064 components: - type: Transform - pos: 29.5,31.5 + pos: 40.5,40.5 parent: 2 - - uid: 2208 + - uid: 3065 components: - type: Transform - pos: 30.5,31.5 + pos: 44.5,39.5 parent: 2 - - uid: 2209 + - uid: 3071 components: - type: Transform - pos: 31.5,31.5 + pos: 39.5,43.5 parent: 2 - - uid: 2210 + - uid: 3072 components: - type: Transform - pos: 32.5,31.5 + pos: 40.5,43.5 parent: 2 - - uid: 2211 + - uid: 3073 components: - type: Transform - pos: 34.5,31.5 + pos: 41.5,43.5 parent: 2 - - uid: 2212 + - uid: 3074 components: - type: Transform - pos: 35.5,31.5 + pos: 42.5,43.5 parent: 2 - - uid: 2213 + - uid: 3075 components: - type: Transform - pos: 35.5,32.5 + pos: 42.5,44.5 parent: 2 - - uid: 2214 + - uid: 3076 components: - type: Transform - pos: 36.5,32.5 + pos: 42.5,45.5 parent: 2 - - uid: 2215 + - uid: 3077 components: - type: Transform - pos: 37.5,32.5 + pos: 42.5,46.5 parent: 2 - - uid: 2216 + - uid: 3078 components: - type: Transform - pos: 38.5,32.5 + pos: 42.5,47.5 parent: 2 - - uid: 2217 + - uid: 3079 components: - type: Transform - pos: 38.5,31.5 + pos: 45.5,45.5 parent: 2 - - uid: 2218 + - uid: 3080 components: - type: Transform - pos: 35.5,33.5 + pos: 45.5,44.5 parent: 2 - - uid: 2219 + - uid: 3081 components: - type: Transform - pos: 35.5,34.5 + pos: 45.5,43.5 parent: 2 - - uid: 2220 + - uid: 3082 components: - type: Transform - pos: 35.5,35.5 + pos: 46.5,43.5 parent: 2 - - uid: 2221 + - uid: 3083 components: - type: Transform - pos: 35.5,36.5 + pos: 46.5,42.5 parent: 2 - - uid: 2222 + - uid: 3084 components: - type: Transform - pos: 36.5,36.5 + pos: 46.5,41.5 parent: 2 - - uid: 2223 + - uid: 3085 components: - type: Transform - pos: 36.5,37.5 + pos: 46.5,40.5 parent: 2 - - uid: 2224 + - uid: 3119 components: - type: Transform - pos: 37.5,37.5 + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 parent: 2 - - uid: 2225 + - uid: 3125 components: - type: Transform - pos: 38.5,37.5 + pos: 50.5,45.5 parent: 2 - - uid: 2226 + - uid: 3133 components: - type: Transform - pos: 39.5,37.5 + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 parent: 2 - - uid: 2227 + - uid: 3135 components: - type: Transform - pos: 40.5,37.5 + rot: 1.5707963267948966 rad + pos: -21.5,-3.5 parent: 2 - - uid: 2228 + - uid: 3142 components: - type: Transform - pos: 40.5,36.5 + rot: 1.5707963267948966 rad + pos: 37.5,28.5 parent: 2 - - uid: 2229 + - uid: 3146 components: - type: Transform - pos: 40.5,38.5 + pos: 47.5,36.5 parent: 2 - - uid: 2230 + - uid: 3149 components: - type: Transform - pos: 41.5,38.5 + pos: 47.5,33.5 parent: 2 - - uid: 2231 + - uid: 3150 components: - type: Transform - pos: 42.5,38.5 + pos: 47.5,32.5 parent: 2 - - uid: 2232 + - uid: 3153 components: - type: Transform - pos: 42.5,37.5 + pos: 47.5,29.5 parent: 2 - - uid: 2233 + - uid: 3155 components: - type: Transform - pos: 42.5,36.5 + pos: 48.5,28.5 parent: 2 - - uid: 2234 + - uid: 3158 components: - type: Transform - pos: 42.5,35.5 + pos: 51.5,28.5 parent: 2 - - uid: 2235 + - uid: 3164 components: - type: Transform - pos: 42.5,34.5 + pos: 40.5,37.5 parent: 2 - - uid: 2260 + - uid: 3169 components: - type: Transform - pos: 35.5,29.5 + pos: 35.5,35.5 parent: 2 - - uid: 2261 + - uid: 3170 components: - type: Transform - pos: 36.5,29.5 + pos: 38.5,37.5 parent: 2 - - uid: 2262 + - uid: 3178 components: - type: Transform - pos: 37.5,29.5 + pos: 52.5,33.5 parent: 2 - - uid: 2263 + - uid: 3179 components: - type: Transform - pos: 38.5,29.5 + pos: 35.5,34.5 parent: 2 - - uid: 2264 + - uid: 3180 components: - type: Transform - pos: 39.5,29.5 + pos: 36.5,35.5 parent: 2 - - uid: 2265 + - uid: 3181 components: - type: Transform - pos: 41.5,29.5 + pos: 38.5,36.5 parent: 2 - - uid: 2266 + - uid: 3182 components: - type: Transform - pos: 40.5,29.5 + rot: -1.5707963267948966 rad + pos: 69.5,-10.5 parent: 2 - - uid: 2267 + - uid: 3194 components: - type: Transform - pos: 42.5,29.5 + pos: 38.5,29.5 parent: 2 - - uid: 2268 + - uid: 3195 components: - type: Transform - pos: 43.5,29.5 + pos: 43.5,28.5 parent: 2 - - uid: 2269 + - uid: 3196 components: - type: Transform - pos: 44.5,29.5 + pos: 43.5,27.5 parent: 2 - - uid: 2270 + - uid: 3198 components: - type: Transform - pos: 44.5,30.5 + pos: 61.5,29.5 parent: 2 - - uid: 2271 + - uid: 3199 components: - type: Transform - pos: 44.5,31.5 + pos: 61.5,28.5 parent: 2 - - uid: 2272 + - uid: 3201 components: - type: Transform - pos: 44.5,32.5 + pos: 65.5,29.5 parent: 2 - - uid: 2273 + - uid: 3203 components: - type: Transform - pos: 44.5,33.5 + rot: -1.5707963267948966 rad + pos: 41.5,37.5 parent: 2 - - uid: 2275 + - uid: 3207 components: - type: Transform - pos: 42.5,30.5 + rot: 3.141592653589793 rad + pos: 32.5,32.5 parent: 2 - - uid: 2276 + - uid: 3210 components: - type: Transform - pos: 43.5,38.5 + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - - uid: 2277 + - uid: 3236 components: - type: Transform - pos: 44.5,38.5 + rot: -1.5707963267948966 rad + pos: 70.5,-13.5 parent: 2 - - uid: 2278 + - uid: 3256 components: - type: Transform - pos: 44.5,37.5 + rot: 3.141592653589793 rad + pos: 48.5,29.5 parent: 2 - - uid: 2327 + - uid: 3262 components: - type: Transform - pos: 37.5,25.5 + pos: 62.5,29.5 parent: 2 - - uid: 2328 + - uid: 3264 components: - type: Transform - pos: 42.5,28.5 + pos: 62.5,45.5 parent: 2 - - uid: 2329 + - uid: 3266 components: - type: Transform - pos: 42.5,27.5 + pos: 63.5,45.5 parent: 2 - - uid: 2330 + - uid: 3268 components: - type: Transform - pos: 42.5,26.5 + pos: 65.5,45.5 parent: 2 - - uid: 2331 + - uid: 3269 components: - type: Transform - pos: 42.5,25.5 + pos: 65.5,44.5 parent: 2 - - uid: 2334 + - uid: 3270 components: - type: Transform - pos: 43.5,26.5 + pos: 65.5,43.5 parent: 2 - - uid: 2335 + - uid: 3271 components: - type: Transform - pos: 44.5,26.5 + pos: 65.5,30.5 parent: 2 - - uid: 2336 + - uid: 3272 components: - type: Transform - pos: 45.5,26.5 + pos: 65.5,31.5 parent: 2 - - uid: 2337 + - uid: 3273 components: - type: Transform - pos: 46.5,26.5 + pos: 65.5,32.5 parent: 2 - - uid: 2338 + - uid: 3274 components: - type: Transform - pos: 46.5,25.5 + pos: 65.5,33.5 parent: 2 - - uid: 2339 + - uid: 3275 components: - type: Transform - pos: 46.5,24.5 + pos: 65.5,34.5 parent: 2 - - uid: 2340 + - uid: 3279 components: - type: Transform - pos: 46.5,23.5 + pos: 65.5,38.5 parent: 2 - - uid: 2341 + - uid: 3280 components: - type: Transform - pos: 46.5,22.5 + pos: 65.5,39.5 parent: 2 - - uid: 2342 + - uid: 3281 components: - type: Transform - pos: 46.5,21.5 + pos: 65.5,40.5 parent: 2 - - uid: 2343 + - uid: 3282 components: - type: Transform - pos: 45.5,21.5 + pos: 65.5,41.5 parent: 2 - - uid: 2344 + - uid: 3283 components: - type: Transform - pos: 44.5,21.5 + pos: 65.5,42.5 parent: 2 - - uid: 2345 + - uid: 3285 components: - type: Transform - pos: 43.5,21.5 + rot: 1.5707963267948966 rad + pos: 47.5,-22.5 parent: 2 - - uid: 2346 + - uid: 3287 components: - type: Transform - pos: 42.5,21.5 + rot: 1.5707963267948966 rad + pos: 51.5,-26.5 parent: 2 - - uid: 2347 + - uid: 3288 components: - type: Transform - pos: 41.5,21.5 + rot: 1.5707963267948966 rad + pos: 51.5,-28.5 parent: 2 - - uid: 2348 + - uid: 3298 components: - type: Transform - pos: 40.5,21.5 + rot: 1.5707963267948966 rad + pos: 50.5,-26.5 parent: 2 - - uid: 2349 + - uid: 3300 components: - type: Transform - pos: 40.5,20.5 + rot: 1.5707963267948966 rad + pos: 51.5,-25.5 parent: 2 - - uid: 2350 + - uid: 3305 components: - type: Transform - pos: 40.5,19.5 + rot: 1.5707963267948966 rad + pos: 48.5,-24.5 parent: 2 - - uid: 2400 + - uid: 3306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-27.5 + pos: 47.5,-28.5 parent: 2 - - uid: 2439 + - uid: 3313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-30.5 + pos: 47.5,-26.5 parent: 2 - - uid: 2441 + - uid: 3315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-23.5 + pos: 49.5,49.5 parent: 2 - - uid: 2443 + - uid: 3316 components: - type: Transform - pos: 40.5,17.5 + pos: 63.5,49.5 parent: 2 - - uid: 2444 + - uid: 3318 components: - type: Transform - pos: 40.5,16.5 + rot: -1.5707963267948966 rad + pos: -7.5,-17.5 parent: 2 - - uid: 2445 + - uid: 3352 components: - type: Transform - pos: 39.5,16.5 + pos: 72.5,47.5 parent: 2 - - uid: 2446 + - uid: 3353 components: - type: Transform - pos: 38.5,16.5 + pos: 71.5,47.5 parent: 2 - - uid: 2447 + - uid: 3354 components: - type: Transform - pos: 37.5,16.5 + pos: 69.5,47.5 parent: 2 - - uid: 2448 + - uid: 3355 components: - type: Transform - pos: 36.5,16.5 + pos: 70.5,47.5 parent: 2 - - uid: 2449 + - uid: 3361 components: - type: Transform - pos: 35.5,16.5 + pos: 72.5,41.5 parent: 2 - - uid: 2450 + - uid: 3362 components: - type: Transform - pos: 34.5,16.5 + pos: 71.5,41.5 parent: 2 - - uid: 2479 + - uid: 3363 components: - type: Transform - pos: -0.5,14.5 + pos: 71.5,42.5 parent: 2 - - uid: 2485 + - uid: 3370 components: - type: Transform - pos: 3.5,14.5 + pos: 72.5,43.5 parent: 2 - - uid: 2563 + - uid: 3371 components: - type: Transform - pos: 29.5,33.5 + pos: 71.5,43.5 parent: 2 - - uid: 2564 + - uid: 3372 components: - type: Transform - pos: 30.5,33.5 + pos: 70.5,43.5 parent: 2 - - uid: 2565 + - uid: 3373 components: - type: Transform - pos: 31.5,33.5 + pos: 72.5,35.5 parent: 2 - - uid: 2566 + - uid: 3374 components: - type: Transform - pos: 32.5,33.5 + pos: 71.5,35.5 parent: 2 - - uid: 2567 + - uid: 3375 components: - type: Transform - pos: 33.5,33.5 + pos: 72.5,36.5 parent: 2 - - uid: 2568 + - uid: 3376 components: - type: Transform - pos: 33.5,34.5 + pos: 72.5,38.5 parent: 2 - - uid: 2569 + - uid: 3377 components: - type: Transform - pos: 29.5,34.5 + pos: 72.5,37.5 parent: 2 - - uid: 2570 + - uid: 3378 components: - type: Transform - pos: 29.5,35.5 + pos: 72.5,39.5 parent: 2 - - uid: 2571 + - uid: 3379 components: - type: Transform - pos: 29.5,37.5 + pos: 72.5,40.5 parent: 2 - - uid: 2572 + - uid: 3383 components: - type: Transform - pos: 33.5,35.5 + pos: 70.5,35.5 parent: 2 - - uid: 2573 + - uid: 3384 components: - type: Transform - pos: 33.5,36.5 + pos: 69.5,35.5 parent: 2 - - uid: 2574 + - uid: 3385 components: - type: Transform - pos: 33.5,37.5 + pos: 68.5,35.5 parent: 2 - - uid: 2575 + - uid: 3419 components: - type: Transform - pos: 33.5,38.5 + pos: 68.5,22.5 parent: 2 - - uid: 2576 + - uid: 3420 components: - type: Transform - pos: 32.5,38.5 + pos: 68.5,21.5 parent: 2 - - uid: 2577 + - uid: 3421 components: - type: Transform - pos: 31.5,38.5 + pos: 68.5,20.5 parent: 2 - - uid: 2578 + - uid: 3422 components: - type: Transform - pos: 30.5,38.5 + pos: 68.5,19.5 parent: 2 - - uid: 2579 + - uid: 3423 components: - type: Transform - pos: 29.5,38.5 + pos: 69.5,19.5 parent: 2 - - uid: 2580 + - uid: 3424 components: - type: Transform - pos: 29.5,39.5 + pos: 70.5,19.5 parent: 2 - - uid: 2581 + - uid: 3425 components: - type: Transform - pos: 29.5,40.5 + pos: 71.5,19.5 parent: 2 - - uid: 2582 + - uid: 3426 components: - type: Transform - pos: 29.5,41.5 + pos: 72.5,19.5 parent: 2 - - uid: 2583 + - uid: 3427 components: - type: Transform - pos: 29.5,42.5 + pos: 73.5,19.5 parent: 2 - - uid: 2584 + - uid: 3435 components: - type: Transform - pos: 29.5,43.5 + pos: 72.5,24.5 parent: 2 - - uid: 2585 + - uid: 3436 components: - type: Transform - pos: 30.5,43.5 + pos: 70.5,24.5 parent: 2 - - uid: 2586 + - uid: 3437 components: - type: Transform - pos: 31.5,43.5 + pos: 69.5,24.5 parent: 2 - - uid: 2587 + - uid: 3438 components: - type: Transform - pos: 31.5,44.5 + pos: 68.5,24.5 parent: 2 - - uid: 2588 + - uid: 3439 components: - type: Transform - pos: 33.5,44.5 + pos: 68.5,25.5 parent: 2 - - uid: 2589 + - uid: 3440 components: - type: Transform - pos: 34.5,44.5 + pos: 68.5,26.5 parent: 2 - - uid: 2590 + - uid: 3445 components: - type: Transform - pos: 35.5,44.5 + pos: 70.5,23.5 parent: 2 - - uid: 2591 + - uid: 3449 components: - type: Transform - pos: 35.5,43.5 + pos: 65.5,28.5 parent: 2 - - uid: 2592 + - uid: 3450 components: - type: Transform - pos: 35.5,42.5 + pos: 65.5,27.5 parent: 2 - - uid: 2593 + - uid: 3451 components: - type: Transform - pos: 35.5,41.5 + pos: 65.5,26.5 parent: 2 - - uid: 2594 + - uid: 3452 components: - type: Transform - pos: 36.5,44.5 + pos: 65.5,25.5 parent: 2 - - uid: 2595 + - uid: 3453 components: - type: Transform - pos: 37.5,44.5 + pos: 61.5,27.5 parent: 2 - - uid: 2596 + - uid: 3454 components: - type: Transform - pos: 38.5,44.5 + pos: 61.5,26.5 parent: 2 - - uid: 2597 + - uid: 3456 components: - type: Transform - pos: 38.5,43.5 + rot: 3.141592653589793 rad + pos: 12.5,34.5 parent: 2 - - uid: 2598 + - uid: 3462 components: - type: Transform - pos: 38.5,42.5 + pos: 61.5,22.5 parent: 2 - - uid: 2599 + - uid: 3463 components: - type: Transform - pos: 38.5,41.5 + pos: 61.5,21.5 parent: 2 - - uid: 2600 + - uid: 3464 components: - type: Transform - pos: 38.5,40.5 + pos: 62.5,21.5 parent: 2 - - uid: 2601 + - uid: 3465 components: - type: Transform - pos: 38.5,39.5 + pos: 63.5,21.5 parent: 2 - - uid: 2602 + - uid: 3466 components: - type: Transform - pos: 37.5,39.5 + pos: 64.5,21.5 parent: 2 - - uid: 2603 + - uid: 3467 components: - type: Transform - pos: 36.5,39.5 + pos: 65.5,21.5 parent: 2 - - uid: 2604 + - uid: 3468 components: - type: Transform - pos: 35.5,39.5 + pos: 65.5,22.5 parent: 2 - - uid: 2605 + - uid: 3469 components: - type: Transform - pos: 34.5,39.5 + pos: 65.5,23.5 parent: 2 - - uid: 2606 + - uid: 3470 components: - type: Transform - pos: 34.5,38.5 + pos: 61.5,20.5 parent: 2 - - uid: 2607 + - uid: 3471 components: - type: Transform - pos: -2.5,14.5 + pos: 61.5,19.5 parent: 2 - - uid: 2608 + - uid: 3472 components: - type: Transform - pos: -8.5,-15.5 + pos: 61.5,18.5 parent: 2 - - uid: 2617 + - uid: 3473 components: - type: Transform - pos: 2.5,14.5 + pos: 61.5,17.5 parent: 2 - - uid: 2626 + - uid: 3481 components: - type: Transform - pos: 20.5,43.5 + pos: 50.5,26.5 parent: 2 - - uid: 2627 + - uid: 3482 components: - type: Transform - pos: 20.5,42.5 + pos: 52.5,26.5 parent: 2 - - uid: 2628 + - uid: 3483 components: - type: Transform - pos: 19.5,42.5 + pos: 51.5,22.5 parent: 2 - - uid: 2629 + - uid: 3484 components: - type: Transform - pos: 19.5,43.5 + pos: 52.5,22.5 parent: 2 - - uid: 2630 + - uid: 3488 components: - type: Transform - pos: 18.5,43.5 + pos: 51.5,26.5 parent: 2 - - uid: 2631 + - uid: 3491 components: - type: Transform - pos: 17.5,43.5 + pos: 49.5,22.5 parent: 2 - - uid: 2632 + - uid: 3492 components: - type: Transform - pos: 17.5,42.5 + pos: 50.5,22.5 parent: 2 - - uid: 2633 + - uid: 3494 components: - type: Transform - pos: 16.5,42.5 + pos: 51.5,27.5 parent: 2 - - uid: 2634 + - uid: 3498 components: - type: Transform - pos: 16.5,41.5 + pos: 49.5,26.5 parent: 2 - - uid: 2635 + - uid: 3505 components: - type: Transform - pos: 16.5,40.5 + pos: 48.5,22.5 parent: 2 - - uid: 2637 + - uid: 3506 components: - type: Transform - pos: 16.5,38.5 + pos: 48.5,23.5 parent: 2 - - uid: 2638 + - uid: 3507 components: - type: Transform - pos: 17.5,38.5 + pos: 48.5,24.5 parent: 2 - - uid: 2639 + - uid: 3508 components: - type: Transform - pos: 19.5,38.5 + pos: 48.5,25.5 parent: 2 - - uid: 2640 + - uid: 3509 components: - type: Transform - pos: 20.5,38.5 + pos: 48.5,26.5 parent: 2 - - uid: 2641 + - uid: 3510 components: - type: Transform - pos: 20.5,39.5 + pos: 53.5,26.5 parent: 2 - - uid: 2642 + - uid: 3514 components: - type: Transform - pos: 20.5,40.5 + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 parent: 2 - - uid: 2643 + - uid: 3517 components: - type: Transform - pos: 20.5,41.5 + rot: 1.5707963267948966 rad + pos: 48.5,-26.5 parent: 2 - - uid: 2644 + - uid: 3528 components: - type: Transform - pos: 25.5,38.5 + pos: 61.5,16.5 parent: 2 - - uid: 2645 + - uid: 3536 components: - type: Transform - pos: 25.5,39.5 + pos: 74.5,19.5 parent: 2 - - uid: 2646 + - uid: 3537 components: - type: Transform - pos: 25.5,40.5 + pos: 75.5,19.5 parent: 2 - - uid: 2647 + - uid: 3538 components: - type: Transform - pos: 25.5,42.5 + pos: 75.5,18.5 parent: 2 - - uid: 2648 + - uid: 3539 components: - type: Transform - pos: 25.5,43.5 + pos: 75.5,14.5 parent: 2 - - uid: 2652 + - uid: 3540 components: - type: Transform - pos: 12.5,42.5 + pos: 75.5,13.5 parent: 2 - - uid: 2653 + - uid: 3541 components: - type: Transform - pos: 12.5,41.5 + pos: 76.5,13.5 parent: 2 - - uid: 2654 + - uid: 3542 components: - type: Transform - pos: 12.5,40.5 + pos: 81.5,13.5 parent: 2 - - uid: 2655 + - uid: 3544 components: - type: Transform - pos: 12.5,39.5 + pos: 91.5,-5.5 parent: 2 - - uid: 2656 + - uid: 3545 components: - type: Transform - pos: 12.5,38.5 + pos: 91.5,-4.5 parent: 2 - - uid: 2657 + - uid: 3547 components: - type: Transform - pos: 12.5,37.5 + pos: 91.5,-3.5 parent: 2 - - uid: 2658 + - uid: 3548 components: - type: Transform - pos: 16.5,35.5 + pos: 91.5,-2.5 parent: 2 - - uid: 2659 + - uid: 3549 components: - type: Transform - pos: 15.5,34.5 + pos: 91.5,-1.5 parent: 2 - - uid: 2660 + - uid: 3552 components: - type: Transform - pos: 12.5,35.5 + pos: 88.5,2.5 parent: 2 - - uid: 2661 + - uid: 3554 components: - type: Transform - pos: 31.5,-22.5 + pos: 90.5,-1.5 parent: 2 - - uid: 2662 + - uid: 3555 components: - type: Transform - pos: 12.5,36.5 + pos: 90.5,-0.5 parent: 2 - - uid: 2663 + - uid: 3556 components: - type: Transform - pos: 13.5,34.5 + pos: 88.5,6.5 parent: 2 - - uid: 2664 + - uid: 3557 components: - type: Transform - pos: 16.5,37.5 + pos: 87.5,6.5 parent: 2 - - uid: 2665 + - uid: 3558 components: - type: Transform - pos: 14.5,34.5 + pos: 87.5,2.5 parent: 2 - - uid: 2666 + - uid: 3559 components: - type: Transform - pos: -9.5,1.5 + pos: 86.5,2.5 parent: 2 - - uid: 2737 + - uid: 3560 components: - type: Transform - pos: -4.5,-15.5 + pos: 85.5,2.5 parent: 2 - - uid: 2738 + - uid: 3561 components: - type: Transform - pos: 10.5,35.5 + pos: 85.5,3.5 parent: 2 - - uid: 2739 + - uid: 3562 components: - type: Transform - pos: 10.5,34.5 + pos: 85.5,5.5 parent: 2 - - uid: 2785 + - uid: 3564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-24.5 + pos: 90.5,6.5 parent: 2 - - uid: 2800 + - uid: 3565 components: - type: Transform - pos: 33.5,49.5 + pos: 89.5,6.5 parent: 2 - - uid: 2801 + - uid: 3584 components: - type: Transform - pos: 33.5,48.5 + pos: 86.5,6.5 parent: 2 - - uid: 2802 + - uid: 3587 components: - type: Transform - pos: 33.5,47.5 + pos: 89.5,2.5 parent: 2 - - uid: 2803 + - uid: 3589 components: - type: Transform - pos: 34.5,47.5 + pos: 84.5,13.5 parent: 2 - - uid: 2804 + - uid: 3590 components: - type: Transform - pos: 35.5,47.5 + pos: 85.5,13.5 parent: 2 - - uid: 2805 + - uid: 3591 components: - type: Transform - pos: 36.5,47.5 + pos: 82.5,13.5 parent: 2 - - uid: 2810 + - uid: 3596 components: - type: Transform - pos: 18.5,46.5 + pos: 86.5,7.5 parent: 2 - - uid: 2811 + - uid: 3597 components: - type: Transform - pos: 18.5,47.5 + pos: 90.5,2.5 parent: 2 - - uid: 2812 + - uid: 3599 components: - type: Transform - pos: 19.5,47.5 + pos: 87.5,13.5 parent: 2 - - uid: 2813 + - uid: 3600 components: - type: Transform - pos: 20.5,47.5 + pos: 87.5,12.5 parent: 2 - - uid: 2814 + - uid: 3601 components: - type: Transform - pos: 21.5,47.5 + pos: 87.5,11.5 parent: 2 - - uid: 2815 + - uid: 3602 components: - type: Transform - pos: 21.5,48.5 + pos: 87.5,10.5 parent: 2 - - uid: 2816 + - uid: 3603 components: - type: Transform - pos: 21.5,49.5 + pos: 87.5,9.5 parent: 2 - - uid: 2848 + - uid: 3604 components: - type: Transform - pos: 59.5,-12.5 + pos: 86.5,9.5 parent: 2 - - uid: 2849 + - uid: 3605 components: - type: Transform - pos: 59.5,-11.5 + pos: 86.5,8.5 parent: 2 - - uid: 2850 + - uid: 3607 components: - type: Transform - pos: 59.5,-10.5 + pos: 83.5,13.5 parent: 2 - - uid: 2851 + - uid: 3608 components: - type: Transform - pos: 59.5,-9.5 + pos: 86.5,13.5 parent: 2 - - uid: 2852 + - uid: 3628 components: - type: Transform - pos: 59.5,-8.5 + pos: 82.5,0.5 parent: 2 - - uid: 2853 + - uid: 3629 components: - type: Transform - pos: 58.5,-8.5 + pos: 82.5,-1.5 parent: 2 - - uid: 2854 + - uid: 3630 components: - type: Transform - pos: 54.5,-8.5 + pos: 82.5,-0.5 parent: 2 - - uid: 2855 + - uid: 3631 components: - type: Transform - pos: 53.5,-8.5 + pos: 82.5,-2.5 parent: 2 - - uid: 2856 + - uid: 3632 components: - type: Transform - pos: 53.5,-9.5 + pos: 83.5,-2.5 parent: 2 - - uid: 2857 + - uid: 3633 components: - type: Transform - pos: 53.5,-10.5 + pos: 83.5,-8.5 parent: 2 - - uid: 2858 + - uid: 3634 components: - type: Transform - pos: 53.5,-11.5 + pos: 69.5,12.5 parent: 2 - - uid: 2868 + - uid: 3635 components: - type: Transform - pos: 64.5,-12.5 + pos: 70.5,12.5 parent: 2 - - uid: 2869 + - uid: 3636 components: - type: Transform - pos: 64.5,-13.5 + pos: 71.5,12.5 parent: 2 - - uid: 2870 + - uid: 3637 components: - type: Transform - pos: 64.5,-14.5 + pos: 72.5,12.5 parent: 2 - - uid: 2912 + - uid: 3638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-24.5 + pos: 72.5,13.5 parent: 2 - - uid: 2918 + - uid: 3639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-24.5 + pos: 72.5,14.5 parent: 2 - - uid: 2933 + - uid: 3640 components: - type: Transform - pos: 68.5,-2.5 + pos: 72.5,15.5 parent: 2 - - uid: 2934 + - uid: 3641 components: - type: Transform - pos: 68.5,-3.5 + pos: 72.5,16.5 parent: 2 - - uid: 2935 + - uid: 3642 components: - type: Transform - pos: 68.5,-4.5 + pos: 72.5,17.5 parent: 2 - - uid: 2936 + - uid: 3643 components: - type: Transform - pos: 68.5,-5.5 + pos: 71.5,17.5 parent: 2 - - uid: 2937 + - uid: 3644 components: - type: Transform - pos: 68.5,-6.5 + pos: 70.5,17.5 parent: 2 - - uid: 2951 + - uid: 3645 components: - type: Transform - pos: 51.5,-3.5 + pos: 69.5,17.5 parent: 2 - - uid: 2952 + - uid: 3646 components: - type: Transform - pos: 51.5,-2.5 + pos: 68.5,17.5 parent: 2 - - uid: 2953 + - uid: 3647 components: - type: Transform - pos: 52.5,-2.5 + pos: 68.5,12.5 parent: 2 - - uid: 2955 + - uid: 3648 components: - type: Transform - pos: 49.5,-9.5 + pos: 67.5,12.5 parent: 2 - - uid: 2956 + - uid: 3649 components: - type: Transform - pos: 51.5,-9.5 + pos: 67.5,17.5 parent: 2 - - uid: 3022 + - uid: 3650 components: - type: Transform - pos: 43.5,12.5 + pos: 66.5,17.5 parent: 2 - - uid: 3023 + - uid: 3651 components: - type: Transform - pos: 43.5,11.5 + pos: 65.5,17.5 parent: 2 - - uid: 3024 + - uid: 3655 components: - type: Transform - pos: 43.5,10.5 + pos: 66.5,12.5 parent: 2 - - uid: 3025 + - uid: 3656 components: - type: Transform - pos: 43.5,9.5 + pos: 65.5,12.5 parent: 2 - - uid: 3026 + - uid: 3658 components: - type: Transform - pos: 43.5,8.5 + pos: 63.5,17.5 parent: 2 - - uid: 3027 + - uid: 3659 components: - type: Transform - pos: 44.5,8.5 + pos: 62.5,17.5 parent: 2 - - uid: 3028 + - uid: 3660 components: - type: Transform - pos: 45.5,8.5 + pos: 58.5,7.5 parent: 2 - - uid: 3029 + - uid: 3661 components: - type: Transform - pos: 46.5,8.5 + pos: 59.5,7.5 parent: 2 - - uid: 3030 + - uid: 3662 components: - type: Transform - pos: 47.5,8.5 + pos: 59.5,8.5 parent: 2 - - uid: 3031 + - uid: 3663 components: - type: Transform - pos: 48.5,8.5 + pos: 59.5,9.5 parent: 2 - - uid: 3032 + - uid: 3664 components: - type: Transform - pos: 48.5,7.5 + pos: 59.5,10.5 parent: 2 - - uid: 3033 + - uid: 3665 components: - type: Transform - pos: 49.5,7.5 + pos: 59.5,11.5 parent: 2 - - uid: 3034 + - uid: 3668 components: - type: Transform - pos: 50.5,7.5 + pos: 64.5,11.5 parent: 2 - - uid: 3035 + - uid: 3669 components: - type: Transform - pos: 51.5,7.5 + pos: 64.5,10.5 parent: 2 - - uid: 3036 + - uid: 3670 components: - type: Transform - pos: 52.5,7.5 + pos: 64.5,9.5 parent: 2 - - uid: 3037 + - uid: 3671 components: - type: Transform - pos: 56.5,7.5 + pos: 64.5,8.5 parent: 2 - - uid: 3038 + - uid: 3672 components: - type: Transform - pos: 55.5,7.5 + pos: 64.5,7.5 parent: 2 - - uid: 3039 + - uid: 3673 components: - type: Transform - pos: 54.5,7.5 + pos: 63.5,7.5 parent: 2 - - uid: 3047 + - uid: 3674 components: - type: Transform - pos: 48.5,13.5 + pos: 62.5,7.5 parent: 2 - - uid: 3048 + - uid: 3675 components: - type: Transform - pos: 48.5,12.5 + pos: 61.5,7.5 parent: 2 - - uid: 3049 + - uid: 3676 components: - type: Transform - pos: 48.5,15.5 + pos: 60.5,7.5 parent: 2 - - uid: 3050 + - uid: 3709 components: - type: Transform - pos: 48.5,16.5 + pos: 91.5,-7.5 parent: 2 - - uid: 3052 + - uid: 3710 components: - type: Transform - pos: 48.5,20.5 + pos: 91.5,-8.5 parent: 2 - - uid: 3063 + - uid: 3711 components: - type: Transform - pos: 40.5,39.5 + pos: 91.5,-9.5 parent: 2 - - uid: 3064 + - uid: 3712 components: - type: Transform - pos: 40.5,40.5 + pos: 91.5,-10.5 parent: 2 - - uid: 3065 + - uid: 3713 components: - type: Transform - pos: 43.5,40.5 + pos: 91.5,-11.5 parent: 2 - - uid: 3066 + - uid: 3714 components: - type: Transform - pos: 43.5,39.5 + pos: 90.5,-11.5 parent: 2 - - uid: 3071 + - uid: 3715 components: - type: Transform - pos: 39.5,43.5 + pos: 89.5,-11.5 parent: 2 - - uid: 3072 + - uid: 3716 components: - type: Transform - pos: 40.5,43.5 + pos: 88.5,-11.5 parent: 2 - - uid: 3073 + - uid: 3717 components: - type: Transform - pos: 41.5,43.5 + pos: 88.5,-9.5 parent: 2 - - uid: 3074 + - uid: 3718 components: - type: Transform - pos: 42.5,43.5 + pos: 88.5,-8.5 parent: 2 - - uid: 3075 + - uid: 3719 components: - type: Transform - pos: 42.5,44.5 + pos: 88.5,-7.5 parent: 2 - - uid: 3076 + - uid: 3722 components: - type: Transform - pos: 42.5,45.5 + pos: 83.5,-3.5 parent: 2 - - uid: 3077 + - uid: 3723 components: - type: Transform - pos: 42.5,46.5 + pos: 83.5,-4.5 parent: 2 - - uid: 3078 + - uid: 3724 components: - type: Transform - pos: 42.5,47.5 + pos: 83.5,-7.5 parent: 2 - - uid: 3079 + - uid: 3725 components: - type: Transform - pos: 45.5,45.5 + pos: 83.5,-5.5 parent: 2 - - uid: 3080 + - uid: 3726 components: - type: Transform - pos: 45.5,44.5 + pos: 83.5,-6.5 parent: 2 - - uid: 3081 + - uid: 3727 components: - type: Transform - pos: 45.5,43.5 + pos: 85.5,-6.5 parent: 2 - - uid: 3082 + - uid: 3728 components: - type: Transform - pos: 46.5,43.5 + pos: 84.5,-6.5 parent: 2 - - uid: 3083 + - uid: 3737 components: - type: Transform - pos: 46.5,42.5 + pos: 85.5,-7.5 parent: 2 - - uid: 3084 + - uid: 3738 components: - type: Transform - pos: 46.5,41.5 + pos: 85.5,-8.5 parent: 2 - - uid: 3085 + - uid: 3739 components: - type: Transform - pos: 46.5,40.5 + pos: 85.5,-9.5 parent: 2 - - uid: 3125 + - uid: 3740 components: - type: Transform - pos: 50.5,45.5 + pos: 85.5,-10.5 parent: 2 - - uid: 3146 + - uid: 3741 components: - type: Transform - pos: 47.5,36.5 + pos: 85.5,-11.5 parent: 2 - - uid: 3147 + - uid: 3744 components: - type: Transform - pos: 47.5,34.5 + pos: 81.5,0.5 parent: 2 - - uid: 3148 + - uid: 3745 components: - type: Transform - pos: 47.5,35.5 + pos: 80.5,0.5 parent: 2 - - uid: 3149 + - uid: 3746 components: - type: Transform - pos: 47.5,33.5 + pos: 79.5,0.5 parent: 2 - - uid: 3150 + - uid: 3747 components: - type: Transform - pos: 47.5,32.5 + pos: 79.5,-0.5 parent: 2 - - uid: 3151 + - uid: 3748 components: - type: Transform - pos: 47.5,31.5 + pos: 79.5,-1.5 parent: 2 - - uid: 3152 + - uid: 3749 components: - type: Transform - pos: 47.5,30.5 + pos: 79.5,-2.5 parent: 2 - - uid: 3153 + - uid: 3750 components: - type: Transform - pos: 47.5,29.5 + pos: 78.5,-2.5 parent: 2 - - uid: 3154 + - uid: 3751 components: - type: Transform - pos: 47.5,28.5 + pos: 78.5,-8.5 parent: 2 - - uid: 3155 + - uid: 3752 components: - type: Transform - pos: 48.5,28.5 + pos: 78.5,-9.5 parent: 2 - - uid: 3156 + - uid: 3753 components: - type: Transform - pos: 49.5,28.5 + pos: 77.5,-9.5 parent: 2 - - uid: 3157 + - uid: 3754 components: - type: Transform - pos: 50.5,28.5 + pos: 76.5,-9.5 parent: 2 - - uid: 3158 + - uid: 3755 components: - type: Transform - pos: 51.5,28.5 + pos: 75.5,-9.5 parent: 2 - - uid: 3159 + - uid: 3756 components: - type: Transform - pos: 51.5,29.5 + pos: 75.5,-8.5 parent: 2 - - uid: 3160 + - uid: 3757 components: - type: Transform - pos: 51.5,30.5 + pos: 75.5,-7.5 parent: 2 - - uid: 3161 + - uid: 3758 components: - type: Transform - pos: 51.5,31.5 + pos: 75.5,-6.5 parent: 2 - - uid: 3162 + - uid: 3759 components: - type: Transform - pos: 51.5,32.5 + pos: 75.5,-5.5 parent: 2 - - uid: 3163 + - uid: 3760 components: - type: Transform - pos: 51.5,33.5 + pos: 75.5,-4.5 parent: 2 - - uid: 3164 + - uid: 3761 components: - type: Transform - pos: 51.5,34.5 + pos: 75.5,-3.5 parent: 2 - - uid: 3165 + - uid: 3762 components: - type: Transform - pos: 51.5,35.5 + pos: 75.5,-2.5 parent: 2 - - uid: 3166 + - uid: 3763 components: - type: Transform - pos: 51.5,36.5 + pos: 76.5,-2.5 parent: 2 - - uid: 3167 + - uid: 3764 components: - type: Transform - pos: 51.5,37.5 + pos: 76.5,-1.5 parent: 2 - - uid: 3168 + - uid: 3765 components: - type: Transform - pos: 51.5,38.5 + pos: 76.5,-0.5 parent: 2 - - uid: 3169 + - uid: 3766 components: - type: Transform - pos: 52.5,37.5 + pos: 76.5,0.5 parent: 2 - - uid: 3170 + - uid: 3767 components: - type: Transform - pos: 52.5,38.5 + pos: 78.5,0.5 parent: 2 - - uid: 3171 + - uid: 3784 components: - type: Transform - pos: 52.5,39.5 + pos: 74.5,-7.5 parent: 2 - - uid: 3172 + - uid: 3785 components: - type: Transform - pos: 53.5,39.5 + pos: 73.5,-7.5 parent: 2 - - uid: 3173 + - uid: 3788 components: - type: Transform - pos: 53.5,38.5 + pos: 73.5,-8.5 parent: 2 - - uid: 3174 + - uid: 3789 components: - type: Transform - pos: 54.5,39.5 + pos: 73.5,-9.5 parent: 2 - - uid: 3175 + - uid: 3790 components: - type: Transform - pos: 54.5,40.5 + pos: 73.5,-10.5 parent: 2 - - uid: 3176 + - uid: 3791 components: - type: Transform - pos: 55.5,40.5 + pos: 73.5,-11.5 parent: 2 - - uid: 3177 + - uid: 3792 components: - type: Transform - pos: 55.5,39.5 + pos: 74.5,-11.5 parent: 2 - - uid: 3178 + - uid: 3793 components: - type: Transform - pos: 56.5,39.5 + pos: 75.5,-11.5 parent: 2 - - uid: 3179 + - uid: 3794 components: - type: Transform - pos: 56.5,40.5 + pos: 77.5,-11.5 parent: 2 - - uid: 3180 + - uid: 3795 components: - type: Transform - pos: 57.5,40.5 + pos: 76.5,-11.5 parent: 2 - - uid: 3181 + - uid: 3796 components: - type: Transform - pos: 57.5,39.5 + pos: 78.5,-11.5 parent: 2 - - uid: 3182 + - uid: 3797 components: - type: Transform - pos: 58.5,39.5 + pos: 79.5,-11.5 parent: 2 - - uid: 3183 + - uid: 3798 components: - type: Transform - pos: 58.5,40.5 + pos: 80.5,-11.5 parent: 2 - - uid: 3184 + - uid: 3799 components: - type: Transform - pos: 59.5,39.5 + pos: 81.5,-11.5 parent: 2 - - uid: 3185 + - uid: 3800 components: - type: Transform - pos: 60.5,39.5 + pos: 82.5,-11.5 parent: 2 - - uid: 3186 + - uid: 3801 components: - type: Transform - pos: 60.5,38.5 + pos: 83.5,-11.5 parent: 2 - - uid: 3187 + - uid: 3802 components: - type: Transform - pos: 59.5,38.5 + pos: 84.5,-11.5 parent: 2 - - uid: 3188 + - uid: 3821 components: - type: Transform - pos: 60.5,37.5 + rot: 3.141592653589793 rad + pos: 59.5,31.5 parent: 2 - - uid: 3189 + - uid: 3822 components: - type: Transform - pos: 61.5,38.5 + pos: 50.5,32.5 parent: 2 - - uid: 3190 + - uid: 3829 components: - type: Transform - pos: 61.5,37.5 + pos: 90.5,-12.5 parent: 2 - - uid: 3191 + - uid: 3830 components: - type: Transform - pos: 61.5,35.5 + pos: 90.5,-13.5 parent: 2 - - uid: 3192 + - uid: 3836 components: - type: Transform - pos: 61.5,34.5 + pos: 71.5,-20.5 parent: 2 - - uid: 3193 + - uid: 3837 components: - type: Transform - pos: 61.5,36.5 + pos: 70.5,-20.5 parent: 2 - - uid: 3194 + - uid: 3838 components: - type: Transform - pos: 61.5,33.5 + pos: 69.5,-20.5 parent: 2 - - uid: 3195 + - uid: 3839 components: - type: Transform - pos: 61.5,32.5 + pos: 67.5,-20.5 parent: 2 - - uid: 3196 + - uid: 3840 components: - type: Transform - pos: 61.5,31.5 + pos: 68.5,-20.5 parent: 2 - - uid: 3197 + - uid: 3841 components: - type: Transform - pos: 61.5,30.5 + pos: 65.5,-20.5 parent: 2 - - uid: 3198 + - uid: 3842 components: - type: Transform - pos: 61.5,29.5 + pos: 66.5,-20.5 parent: 2 - - uid: 3199 + - uid: 3844 components: - type: Transform - pos: 61.5,28.5 + pos: 57.5,-20.5 parent: 2 - - uid: 3201 + - uid: 3847 components: - type: Transform - pos: 65.5,29.5 + pos: 72.5,-20.5 parent: 2 - - uid: 3215 + - uid: 3848 components: - type: Transform - pos: 55.5,32.5 + pos: 72.5,-19.5 parent: 2 - - uid: 3216 + - uid: 3849 components: - type: Transform - pos: 54.5,32.5 + pos: 72.5,-18.5 parent: 2 - - uid: 3217 + - uid: 3850 components: - type: Transform - pos: 53.5,32.5 + pos: 72.5,-17.5 parent: 2 - - uid: 3218 + - uid: 3879 components: - type: Transform - pos: 52.5,32.5 + pos: 90.5,-14.5 parent: 2 - - uid: 3219 + - uid: 3880 components: - type: Transform - pos: 60.5,32.5 + pos: 90.5,-15.5 parent: 2 - - uid: 3220 + - uid: 3881 components: - type: Transform - pos: 59.5,32.5 + pos: 90.5,-16.5 parent: 2 - - uid: 3221 + - uid: 3882 components: - type: Transform - pos: 58.5,32.5 + pos: 90.5,-17.5 parent: 2 - - uid: 3222 + - uid: 3883 components: - type: Transform - pos: 57.5,32.5 + pos: 91.5,-17.5 parent: 2 - - uid: 3254 + - uid: 3884 components: - type: Transform - pos: 52.5,28.5 + pos: 91.5,-18.5 parent: 2 - - uid: 3255 + - uid: 3886 components: - type: Transform - pos: 53.5,28.5 + pos: 91.5,-21.5 parent: 2 - - uid: 3256 + - uid: 3887 components: - type: Transform - pos: 54.5,28.5 + pos: 91.5,-22.5 parent: 2 - - uid: 3257 + - uid: 3888 components: - type: Transform - pos: 55.5,28.5 + pos: 90.5,-22.5 parent: 2 - - uid: 3258 + - uid: 3890 components: - type: Transform - pos: 60.5,28.5 + pos: 88.5,-22.5 parent: 2 - - uid: 3259 + - uid: 3891 components: - type: Transform - pos: 59.5,28.5 + pos: 87.5,-22.5 parent: 2 - - uid: 3260 + - uid: 3894 components: - type: Transform - pos: 58.5,28.5 + pos: 93.5,-21.5 parent: 2 - - uid: 3261 + - uid: 3895 components: - type: Transform - pos: 57.5,28.5 + pos: 87.5,-21.5 parent: 2 - - uid: 3262 + - uid: 3896 components: - type: Transform - pos: 62.5,29.5 + pos: 89.5,-22.5 parent: 2 - - uid: 3264 + - uid: 3897 components: - type: Transform - pos: 62.5,45.5 + pos: 87.5,-19.5 parent: 2 - - uid: 3266 + - uid: 3898 components: - type: Transform - pos: 63.5,45.5 + pos: 87.5,-19.5 parent: 2 - - uid: 3267 + - uid: 3899 components: - type: Transform - pos: 64.5,45.5 + pos: 92.5,-18.5 parent: 2 - - uid: 3268 + - uid: 3900 components: - type: Transform - pos: 65.5,45.5 + pos: 87.5,-18.5 parent: 2 - - uid: 3269 + - uid: 3901 components: - type: Transform - pos: 65.5,44.5 + pos: 87.5,-17.5 parent: 2 - - uid: 3270 + - uid: 3989 components: - type: Transform - pos: 65.5,43.5 + pos: 21.5,-59.5 parent: 2 - - uid: 3271 + - uid: 3990 components: - type: Transform - pos: 65.5,30.5 + pos: 20.5,-59.5 parent: 2 - - uid: 3272 + - uid: 3991 components: - type: Transform - pos: 65.5,31.5 + pos: 29.5,-59.5 parent: 2 - - uid: 3273 + - uid: 3994 components: - type: Transform - pos: 65.5,32.5 + pos: 12.5,-59.5 parent: 2 - - uid: 3274 + - uid: 3995 components: - type: Transform - pos: 65.5,33.5 + pos: 22.5,-59.5 parent: 2 - - uid: 3275 + - uid: 3996 components: - type: Transform - pos: 65.5,34.5 + pos: 15.5,-59.5 parent: 2 - - uid: 3276 + - uid: 4044 components: - type: Transform - pos: 65.5,35.5 + pos: 37.5,-27.5 parent: 2 - - uid: 3277 + - uid: 4057 components: - type: Transform - pos: 65.5,36.5 + pos: 49.5,-22.5 parent: 2 - - uid: 3278 + - uid: 4077 components: - type: Transform - pos: 65.5,37.5 + pos: 48.5,-22.5 parent: 2 - - uid: 3279 + - uid: 4078 components: - type: Transform - pos: 65.5,38.5 + pos: 43.5,-36.5 parent: 2 - - uid: 3280 + - uid: 4079 components: - type: Transform - pos: 65.5,39.5 + pos: 45.5,-36.5 parent: 2 - - uid: 3281 + - uid: 4112 components: - type: Transform - pos: 65.5,40.5 + pos: 19.5,-13.5 parent: 2 - - uid: 3282 + - uid: 4127 components: - type: Transform - pos: 65.5,41.5 + rot: 3.141592653589793 rad + pos: 52.5,40.5 parent: 2 - - uid: 3283 + - uid: 4128 components: - type: Transform - pos: 65.5,42.5 + pos: 36.5,32.5 parent: 2 - - uid: 3285 + - uid: 4166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-22.5 + pos: 50.5,-21.5 parent: 2 - - uid: 3287 + - uid: 4168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-26.5 + pos: 49.5,-21.5 parent: 2 - - uid: 3288 + - uid: 4169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-28.5 + pos: 52.5,-21.5 parent: 2 - - uid: 3298 + - uid: 4170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-26.5 + pos: 51.5,-21.5 parent: 2 - - uid: 3300 + - uid: 4171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-25.5 + pos: 53.5,-21.5 parent: 2 - - uid: 3305 + - uid: 4172 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-24.5 + pos: 54.5,-21.5 parent: 2 - - uid: 3306 + - uid: 4173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-28.5 + pos: 55.5,-21.5 parent: 2 - - uid: 3313 + - uid: 4174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-26.5 + pos: 55.5,-20.5 parent: 2 - - uid: 3315 + - uid: 4175 components: - type: Transform - pos: 49.5,49.5 + rot: 1.5707963267948966 rad + pos: 50.5,-34.5 parent: 2 - - uid: 3316 + - uid: 4187 components: - type: Transform - pos: 63.5,49.5 + pos: 32.5,-21.5 parent: 2 - - uid: 3318 + - uid: 4229 components: - type: Transform - pos: 55.5,50.5 + pos: 37.5,-33.5 parent: 2 - - uid: 3319 + - uid: 4244 components: - type: Transform - pos: 57.5,50.5 + pos: 30.5,-22.5 parent: 2 - - uid: 3321 + - uid: 4246 components: - type: Transform - pos: 55.5,51.5 + pos: 31.5,-21.5 parent: 2 - - uid: 3322 + - uid: 4254 components: - type: Transform - pos: 57.5,51.5 + pos: 33.5,-29.5 parent: 2 - - uid: 3352 + - uid: 4255 components: - type: Transform - pos: 72.5,47.5 + pos: 33.5,-31.5 parent: 2 - - uid: 3353 + - uid: 4256 components: - type: Transform - pos: 71.5,47.5 + pos: 33.5,-33.5 parent: 2 - - uid: 3354 + - uid: 4279 components: - type: Transform - pos: 69.5,47.5 + pos: 17.5,-20.5 parent: 2 - - uid: 3355 + - uid: 4284 components: - type: Transform - pos: 70.5,47.5 + pos: 50.5,-22.5 parent: 2 - - uid: 3361 + - uid: 4293 components: - type: Transform - pos: 72.5,41.5 + pos: 18.5,-20.5 parent: 2 - - uid: 3362 + - uid: 4295 components: - type: Transform - pos: 71.5,41.5 + pos: 33.5,-27.5 parent: 2 - - uid: 3363 + - uid: 4299 components: - type: Transform - pos: 71.5,42.5 + pos: 50.5,-47.5 parent: 2 - - uid: 3370 + - uid: 4313 components: - type: Transform - pos: 72.5,43.5 + pos: 14.5,-38.5 parent: 2 - - uid: 3371 + - uid: 4329 components: - type: Transform - pos: 71.5,43.5 + pos: 30.5,-45.5 parent: 2 - - uid: 3372 + - uid: 4330 components: - type: Transform - pos: 70.5,43.5 + pos: 29.5,-45.5 parent: 2 - - uid: 3373 + - uid: 4331 components: - type: Transform - pos: 72.5,35.5 + pos: 27.5,-44.5 parent: 2 - - uid: 3374 + - uid: 4333 components: - type: Transform - pos: 71.5,35.5 + pos: 33.5,-37.5 parent: 2 - - uid: 3375 + - uid: 4346 components: - type: Transform - pos: 72.5,36.5 + rot: 3.141592653589793 rad + pos: 59.5,41.5 parent: 2 - - uid: 3376 + - uid: 4347 components: - type: Transform - pos: 72.5,38.5 + pos: 60.5,39.5 parent: 2 - - uid: 3377 + - uid: 4348 components: - type: Transform - pos: 72.5,37.5 + pos: 48.5,36.5 parent: 2 - - uid: 3378 + - uid: 4364 components: - type: Transform - pos: 72.5,39.5 + rot: -1.5707963267948966 rad + pos: 12.5,-53.5 parent: 2 - - uid: 3379 + - uid: 4367 components: - type: Transform - pos: 72.5,40.5 + pos: 59.5,39.5 parent: 2 - - uid: 3383 + - uid: 4368 components: - type: Transform - pos: 70.5,35.5 + pos: 50.5,36.5 parent: 2 - - uid: 3384 + - uid: 4369 components: - type: Transform - pos: 69.5,35.5 + pos: 37.5,-37.5 parent: 2 - - uid: 3385 + - uid: 4373 components: - type: Transform - pos: 68.5,35.5 + pos: 36.5,-37.5 parent: 2 - - uid: 3417 + - uid: 4374 components: - type: Transform - pos: 70.5,22.5 + pos: 33.5,-38.5 parent: 2 - - uid: 3418 + - uid: 4375 components: - type: Transform - pos: 69.5,22.5 + pos: 33.5,-41.5 parent: 2 - - uid: 3419 + - uid: 4382 components: - type: Transform - pos: 68.5,22.5 + pos: 34.5,-37.5 parent: 2 - - uid: 3420 + - uid: 4383 components: - type: Transform - pos: 68.5,21.5 + pos: 33.5,-40.5 parent: 2 - - uid: 3421 + - uid: 4384 components: - type: Transform - pos: 68.5,20.5 + pos: 34.5,-41.5 parent: 2 - - uid: 3422 + - uid: 4386 components: - type: Transform - pos: 68.5,19.5 + pos: 36.5,-41.5 parent: 2 - - uid: 3423 + - uid: 4387 components: - type: Transform - pos: 69.5,19.5 + pos: 37.5,-41.5 parent: 2 - - uid: 3424 + - uid: 4388 components: - type: Transform - pos: 70.5,19.5 + pos: 37.5,-40.5 parent: 2 - - uid: 3425 + - uid: 4389 components: - type: Transform - pos: 71.5,19.5 + pos: 37.5,-38.5 parent: 2 - - uid: 3426 + - uid: 4395 components: - type: Transform - pos: 72.5,19.5 + pos: 27.5,-45.5 parent: 2 - - uid: 3427 + - uid: 4396 components: - type: Transform - pos: 73.5,19.5 + pos: 28.5,-45.5 parent: 2 - - uid: 3428 + - uid: 4397 components: - type: Transform - pos: 73.5,20.5 + pos: 51.5,33.5 parent: 2 - - uid: 3429 + - uid: 4398 components: - type: Transform - pos: 73.5,21.5 + pos: 38.5,32.5 parent: 2 - - uid: 3430 + - uid: 4399 components: - type: Transform - pos: 73.5,22.5 + rot: 3.141592653589793 rad + pos: 47.5,40.5 parent: 2 - - uid: 3431 + - uid: 4417 components: - type: Transform - pos: 72.5,22.5 + pos: 47.5,-36.5 parent: 2 - - uid: 3432 + - uid: 4418 components: - type: Transform - pos: 73.5,23.5 + pos: 41.5,-36.5 parent: 2 - - uid: 3433 + - uid: 4435 components: - type: Transform - pos: 73.5,24.5 + pos: 44.5,-36.5 parent: 2 - - uid: 3434 + - uid: 4436 components: - type: Transform - pos: 72.5,24.5 + pos: 42.5,-36.5 parent: 2 - - uid: 3435 + - uid: 4450 components: - type: Transform - pos: 71.5,24.5 + pos: 33.5,-45.5 parent: 2 - - uid: 3436 + - uid: 4466 components: - type: Transform - pos: 70.5,24.5 + rot: 3.141592653589793 rad + pos: 38.5,-41.5 parent: 2 - - uid: 3437 + - uid: 4468 components: - type: Transform - pos: 69.5,24.5 + rot: 3.141592653589793 rad + pos: 40.5,-41.5 parent: 2 - - uid: 3438 + - uid: 4472 components: - type: Transform - pos: 68.5,24.5 + rot: 3.141592653589793 rad + pos: 42.5,-41.5 parent: 2 - - uid: 3439 + - uid: 4477 components: - type: Transform - pos: 68.5,25.5 + rot: 3.141592653589793 rad + pos: 44.5,-41.5 parent: 2 - - uid: 3440 + - uid: 4481 components: - type: Transform - pos: 68.5,26.5 + rot: 3.141592653589793 rad + pos: 46.5,-41.5 parent: 2 - - uid: 3449 + - uid: 4486 components: - type: Transform - pos: 65.5,28.5 + pos: 47.5,-41.5 parent: 2 - - uid: 3450 + - uid: 4491 components: - type: Transform - pos: 65.5,27.5 + pos: 45.5,-42.5 parent: 2 - - uid: 3451 + - uid: 4567 components: - type: Transform - pos: 65.5,26.5 + pos: 41.5,-37.5 parent: 2 - - uid: 3452 + - uid: 4568 components: - type: Transform - pos: 65.5,25.5 + rot: -1.5707963267948966 rad + pos: 59.5,26.5 parent: 2 - - uid: 3453 + - uid: 4573 components: - type: Transform - pos: 61.5,27.5 + rot: -1.5707963267948966 rad + pos: 60.5,26.5 parent: 2 - - uid: 3454 + - uid: 4633 components: - type: Transform - pos: 61.5,26.5 + rot: -1.5707963267948966 rad + pos: 12.5,-47.5 parent: 2 - - uid: 3462 + - uid: 4634 components: - type: Transform - pos: 61.5,22.5 + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 parent: 2 - - uid: 3463 + - uid: 4743 components: - type: Transform - pos: 61.5,21.5 + pos: -7.5,1.5 parent: 2 - - uid: 3464 + - uid: 4744 components: - type: Transform - pos: 62.5,21.5 + rot: 3.141592653589793 rad + pos: 52.5,32.5 parent: 2 - - uid: 3465 + - uid: 4829 components: - type: Transform - pos: 63.5,21.5 + pos: 6.5,17.5 parent: 2 - - uid: 3466 + - uid: 4885 components: - type: Transform - pos: 64.5,21.5 + pos: 4.5,15.5 parent: 2 - - uid: 3467 + - uid: 5194 components: - type: Transform - pos: 65.5,21.5 + pos: 38.5,33.5 parent: 2 - - uid: 3468 + - uid: 5199 components: - type: Transform - pos: 65.5,22.5 + rot: 3.141592653589793 rad + pos: 59.5,30.5 parent: 2 - - uid: 3469 + - uid: 5291 components: - type: Transform - pos: 65.5,23.5 + pos: -0.5,1.5 parent: 2 - - uid: 3470 + - uid: 5292 components: - type: Transform - pos: 61.5,20.5 + pos: 2.5,1.5 parent: 2 - - uid: 3471 + - uid: 5296 components: - type: Transform - pos: 61.5,19.5 + pos: 4.5,20.5 parent: 2 - - uid: 3472 + - uid: 5300 components: - type: Transform - pos: 61.5,18.5 + pos: 45.5,-41.5 parent: 2 - - uid: 3473 + - uid: 5353 components: - type: Transform - pos: 61.5,17.5 + pos: 2.5,5.5 parent: 2 - - uid: 3481 + - uid: 5354 components: - type: Transform - pos: 50.5,26.5 + pos: 2.5,9.5 parent: 2 - - uid: 3482 + - uid: 5362 components: - type: Transform - pos: 52.5,26.5 + rot: 3.141592653589793 rad + pos: 52.5,41.5 parent: 2 - - uid: 3483 + - uid: 5364 components: - type: Transform - pos: 51.5,22.5 + pos: 46.5,12.5 parent: 2 - - uid: 3484 + - uid: 5477 components: - type: Transform - pos: 52.5,22.5 + pos: 72.5,34.5 parent: 2 - - uid: 3488 + - uid: 5478 components: - type: Transform - pos: 51.5,26.5 + pos: 72.5,30.5 parent: 2 - - uid: 3491 + - uid: 5479 components: - type: Transform - pos: 49.5,22.5 + pos: 72.5,26.5 parent: 2 - - uid: 3492 + - uid: 5480 components: - type: Transform - pos: 50.5,22.5 + pos: 71.5,26.5 parent: 2 - - uid: 3494 + - uid: 5481 components: - type: Transform - pos: 51.5,27.5 + pos: 70.5,26.5 parent: 2 - - uid: 3498 + - uid: 5482 components: - type: Transform - pos: 49.5,26.5 + pos: 69.5,26.5 parent: 2 - - uid: 3505 + - uid: 5498 components: - type: Transform - pos: 48.5,22.5 + pos: 70.5,21.5 parent: 2 - - uid: 3506 + - uid: 5508 components: - type: Transform - pos: 48.5,23.5 + pos: 44.5,40.5 parent: 2 - - uid: 3507 + - uid: 5510 components: - type: Transform - pos: 48.5,24.5 + pos: 74.5,21.5 parent: 2 - - uid: 3508 + - uid: 5677 components: - type: Transform - pos: 48.5,25.5 + rot: 3.141592653589793 rad + pos: 53.5,46.5 parent: 2 - - uid: 3509 + - uid: 5724 components: - type: Transform - pos: 48.5,26.5 + pos: 51.5,-10.5 parent: 2 - - uid: 3510 + - uid: 5725 components: - type: Transform - pos: 53.5,26.5 + pos: 51.5,-11.5 parent: 2 - - uid: 3514 + - uid: 5736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 + pos: 58.5,35.5 parent: 2 - - uid: 3517 + - uid: 5967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-26.5 + rot: 3.141592653589793 rad + pos: 59.5,46.5 parent: 2 - - uid: 3528 + - uid: 6120 components: - type: Transform - pos: 61.5,16.5 + pos: 12.5,-41.5 parent: 2 - - uid: 3536 + - uid: 6121 components: - type: Transform - pos: 74.5,19.5 + pos: 12.5,-40.5 parent: 2 - - uid: 3537 + - uid: 6122 components: - type: Transform - pos: 75.5,19.5 + pos: 13.5,-40.5 parent: 2 - - uid: 3538 + - uid: 6123 components: - type: Transform - pos: 75.5,18.5 + pos: 14.5,-40.5 parent: 2 - - uid: 3539 + - uid: 6139 components: - type: Transform - pos: 75.5,14.5 + pos: 49.5,32.5 parent: 2 - - uid: 3540 + - uid: 6196 components: - type: Transform - pos: 75.5,13.5 + rot: 3.141592653589793 rad + pos: 60.5,41.5 parent: 2 - - uid: 3541 + - uid: 6209 components: - type: Transform - pos: 76.5,13.5 + pos: 62.5,-20.5 parent: 2 - - uid: 3542 + - uid: 6210 components: - type: Transform - pos: 81.5,13.5 + pos: 64.5,-20.5 parent: 2 - - uid: 3544 + - uid: 6211 components: - type: Transform - pos: 91.5,-5.5 + pos: 60.5,-20.5 parent: 2 - - uid: 3545 + - uid: 6212 components: - type: Transform - pos: 91.5,-4.5 + pos: 56.5,-20.5 parent: 2 - - uid: 3547 + - uid: 6335 components: - type: Transform - pos: 91.5,-3.5 + rot: 3.141592653589793 rad + pos: 30.5,34.5 parent: 2 - - uid: 3548 + - uid: 6782 components: - type: Transform - pos: 91.5,-2.5 + pos: 58.5,-20.5 parent: 2 - - uid: 3549 + - uid: 6783 components: - type: Transform - pos: 91.5,-1.5 + pos: 59.5,-20.5 parent: 2 - - uid: 3552 + - uid: 6784 components: - type: Transform - pos: 88.5,2.5 + pos: 61.5,-20.5 parent: 2 - - uid: 3554 + - uid: 6785 components: - type: Transform - pos: 90.5,-1.5 + pos: 63.5,-20.5 parent: 2 - - uid: 3555 + - uid: 6814 components: - type: Transform - pos: 90.5,-0.5 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 parent: 2 - - uid: 3556 + - uid: 6815 components: - type: Transform - pos: 88.5,6.5 + rot: -1.5707963267948966 rad + pos: -8.5,-17.5 parent: 2 - - uid: 3557 + - uid: 6822 components: - type: Transform - pos: 87.5,6.5 + pos: -4.5,-13.5 parent: 2 - - uid: 3558 + - uid: 6867 components: - type: Transform - pos: 87.5,2.5 + pos: 4.5,14.5 parent: 2 - - uid: 3559 + - uid: 6868 components: - type: Transform - pos: 86.5,2.5 + pos: 60.5,33.5 parent: 2 - - uid: 3560 + - uid: 6880 components: - type: Transform - pos: 85.5,2.5 + pos: 14.5,-12.5 parent: 2 - - uid: 3561 + - uid: 6881 components: - type: Transform - pos: 85.5,3.5 + pos: 15.5,-12.5 parent: 2 - - uid: 3562 + - uid: 6882 components: - type: Transform - pos: 85.5,5.5 + pos: 17.5,-12.5 parent: 2 - - uid: 3564 + - uid: 6889 components: - type: Transform - pos: 90.5,6.5 + rot: 3.141592653589793 rad + pos: -14.5,1.5 parent: 2 - - uid: 3565 + - uid: 6896 components: - type: Transform - pos: 89.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,1.5 parent: 2 - - uid: 3584 + - uid: 7251 components: - type: Transform - pos: 86.5,6.5 + pos: -14.5,14.5 parent: 2 - - uid: 3587 + - uid: 7252 components: - type: Transform - pos: 89.5,2.5 + pos: -15.5,14.5 parent: 2 - - uid: 3589 + - uid: 7264 components: - type: Transform - pos: 84.5,13.5 + pos: -3.5,14.5 parent: 2 - - uid: 3590 + - uid: 7346 components: - type: Transform - pos: 85.5,13.5 + pos: 0.5,14.5 parent: 2 - - uid: 3591 + - uid: 7455 components: - type: Transform - pos: 82.5,13.5 + pos: -0.5,14.5 parent: 2 - - uid: 3596 + - uid: 7456 components: - type: Transform - pos: 86.5,7.5 + pos: -12.5,14.5 parent: 2 - - uid: 3597 + - uid: 7461 components: - type: Transform - pos: 90.5,2.5 + pos: 18.5,-44.5 parent: 2 - - uid: 3599 + - uid: 7466 components: - type: Transform - pos: 87.5,13.5 + pos: 24.5,-44.5 parent: 2 - - uid: 3600 + - uid: 7474 components: - type: Transform - pos: 87.5,12.5 + pos: 1.5,14.5 parent: 2 - - uid: 3601 + - uid: 7533 components: - type: Transform - pos: 87.5,11.5 + pos: -17.5,14.5 parent: 2 - - uid: 3602 + - uid: 7550 components: - type: Transform - pos: 87.5,10.5 + pos: -16.5,14.5 parent: 2 - - uid: 3603 + - uid: 7585 components: - type: Transform - pos: 87.5,9.5 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 2 - - uid: 3604 + - uid: 7598 components: - type: Transform - pos: 86.5,9.5 + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 parent: 2 - - uid: 3605 + - uid: 7605 components: - type: Transform - pos: 86.5,8.5 + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 parent: 2 - - uid: 3607 + - uid: 7613 components: - type: Transform - pos: 83.5,13.5 + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 parent: 2 - - uid: 3608 + - uid: 7665 components: - type: Transform - pos: 86.5,13.5 + pos: -4.5,14.5 parent: 2 - - uid: 3628 + - uid: 7674 components: - type: Transform - pos: 82.5,0.5 + pos: -9.5,14.5 parent: 2 - - uid: 3629 + - uid: 7677 components: - type: Transform - pos: 82.5,-1.5 + pos: -8.5,14.5 parent: 2 - - uid: 3630 + - uid: 7750 components: - type: Transform - pos: 82.5,-0.5 + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 parent: 2 - - uid: 3631 + - uid: 7752 components: - type: Transform - pos: 82.5,-2.5 + rot: 1.5707963267948966 rad + pos: 37.5,27.5 parent: 2 - - uid: 3632 + - uid: 7754 components: - type: Transform - pos: 83.5,-2.5 + pos: 41.5,29.5 parent: 2 - - uid: 3633 + - uid: 7755 components: - type: Transform - pos: 83.5,-8.5 + pos: 35.5,32.5 parent: 2 - - uid: 3634 + - uid: 7756 components: - type: Transform - pos: 69.5,12.5 + rot: 3.141592653589793 rad + pos: 63.5,43.5 parent: 2 - - uid: 3635 + - uid: 7769 components: - type: Transform - pos: 70.5,12.5 + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 parent: 2 - - uid: 3636 + - uid: 7779 components: - type: Transform - pos: 71.5,12.5 + rot: -1.5707963267948966 rad + pos: -19.5,-8.5 parent: 2 - - uid: 3637 + - uid: 7839 components: - type: Transform - pos: 72.5,12.5 + pos: 9.5,20.5 parent: 2 - - uid: 3638 + - uid: 7842 components: - type: Transform - pos: 72.5,13.5 + pos: 4.5,17.5 parent: 2 - - uid: 3639 + - uid: 7843 components: - type: Transform - pos: 72.5,14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 parent: 2 - - uid: 3640 + - uid: 7875 components: - type: Transform - pos: 72.5,15.5 + pos: 7.5,17.5 parent: 2 - - uid: 3641 + - uid: 7896 components: - type: Transform - pos: 72.5,16.5 + pos: 4.5,34.5 parent: 2 - - uid: 3642 + - uid: 7897 components: - type: Transform - pos: 72.5,17.5 + pos: 3.5,-33.5 parent: 2 - - uid: 3643 + - uid: 7898 components: - type: Transform - pos: 71.5,17.5 + pos: 2.5,-33.5 parent: 2 - - uid: 3644 + - uid: 7899 components: - type: Transform - pos: 70.5,17.5 + pos: 1.5,-33.5 parent: 2 - - uid: 3645 + - uid: 7900 components: - type: Transform - pos: 69.5,17.5 + pos: -0.5,-13.5 parent: 2 - - uid: 3646 + - uid: 7901 components: - type: Transform - pos: 68.5,17.5 + pos: 2.5,-17.5 parent: 2 - - uid: 3647 + - uid: 7902 components: - type: Transform - pos: 68.5,12.5 + pos: -0.5,-14.5 parent: 2 - - uid: 3648 + - uid: 7904 components: - type: Transform - pos: 67.5,12.5 + pos: -0.5,-16.5 parent: 2 - - uid: 3649 + - uid: 7905 components: - type: Transform - pos: 67.5,17.5 + pos: -0.5,-17.5 parent: 2 - - uid: 3650 + - uid: 7906 components: - type: Transform - pos: 66.5,17.5 + pos: 5.5,-17.5 parent: 2 - - uid: 3651 + - uid: 7907 components: - type: Transform - pos: 65.5,17.5 + pos: 6.5,-17.5 parent: 2 - - uid: 3655 + - uid: 7908 components: - type: Transform - pos: 66.5,12.5 + pos: 7.5,-17.5 parent: 2 - - uid: 3656 + - uid: 7909 components: - type: Transform - pos: 65.5,12.5 + pos: 8.5,-17.5 parent: 2 - - uid: 3658 + - uid: 7910 components: - type: Transform - pos: 63.5,17.5 + pos: 8.5,-18.5 parent: 2 - - uid: 3659 + - uid: 7911 components: - type: Transform - pos: 62.5,17.5 + pos: 8.5,-19.5 parent: 2 - - uid: 3660 + - uid: 7912 components: - type: Transform - pos: 58.5,7.5 + pos: 8.5,-20.5 parent: 2 - - uid: 3661 + - uid: 7913 components: - type: Transform - pos: 59.5,7.5 + pos: 8.5,-21.5 parent: 2 - - uid: 3662 + - uid: 7914 components: - type: Transform - pos: 59.5,8.5 + pos: 8.5,-22.5 parent: 2 - - uid: 3663 + - uid: 7915 components: - type: Transform - pos: 59.5,9.5 + pos: 6.5,-28.5 parent: 2 - - uid: 3664 + - uid: 7916 components: - type: Transform - pos: 59.5,10.5 + pos: 6.5,-29.5 parent: 2 - - uid: 3665 + - uid: 7917 components: - type: Transform - pos: 59.5,11.5 + pos: 7.5,-22.5 parent: 2 - - uid: 3668 + - uid: 7919 components: - type: Transform - pos: 64.5,11.5 + pos: 5.5,-22.5 parent: 2 - - uid: 3669 + - uid: 7920 components: - type: Transform - pos: 64.5,10.5 + pos: 4.5,-22.5 parent: 2 - - uid: 3670 + - uid: 7921 components: - type: Transform - pos: 64.5,9.5 + pos: 3.5,-22.5 parent: 2 - - uid: 3671 + - uid: 7922 components: - type: Transform - pos: 64.5,8.5 + pos: 3.5,-23.5 parent: 2 - - uid: 3672 + - uid: 7923 components: - type: Transform - pos: 64.5,7.5 + pos: 3.5,-24.5 parent: 2 - - uid: 3673 + - uid: 7924 components: - type: Transform - pos: 63.5,7.5 + pos: 3.5,-25.5 parent: 2 - - uid: 3674 + - uid: 7926 components: - type: Transform - pos: 62.5,7.5 + pos: 3.5,-26.5 parent: 2 - - uid: 3675 + - uid: 7927 components: - type: Transform - pos: 61.5,7.5 + pos: 3.5,-27.5 parent: 2 - - uid: 3676 + - uid: 7928 components: - type: Transform - pos: 60.5,7.5 + pos: 0.5,-33.5 parent: 2 - - uid: 3709 + - uid: 7929 components: - type: Transform - pos: 91.5,-7.5 + pos: 0.5,-32.5 parent: 2 - - uid: 3710 + - uid: 7930 components: - type: Transform - pos: 91.5,-8.5 + pos: -0.5,-32.5 parent: 2 - - uid: 3711 + - uid: 7931 components: - type: Transform - pos: 91.5,-9.5 + pos: -1.5,-32.5 parent: 2 - - uid: 3712 + - uid: 7932 components: - type: Transform - pos: 91.5,-10.5 + pos: -1.5,-31.5 parent: 2 - - uid: 3713 + - uid: 7933 components: - type: Transform - pos: 91.5,-11.5 + pos: -1.5,-30.5 parent: 2 - - uid: 3714 + - uid: 7934 components: - type: Transform - pos: 90.5,-11.5 + pos: -1.5,-27.5 parent: 2 - - uid: 3715 + - uid: 7935 components: - type: Transform - pos: 89.5,-11.5 + pos: 2.5,-27.5 parent: 2 - - uid: 3716 + - uid: 8044 components: - type: Transform - pos: 88.5,-11.5 + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 parent: 2 - - uid: 3717 + - uid: 8045 components: - type: Transform - pos: 88.5,-9.5 + rot: -1.5707963267948966 rad + pos: 12.5,-58.5 parent: 2 - - uid: 3718 + - uid: 8052 components: - type: Transform - pos: 88.5,-8.5 + rot: 1.5707963267948966 rad + pos: 5.5,29.5 parent: 2 - - uid: 3719 + - uid: 8102 components: - type: Transform - pos: 88.5,-7.5 + pos: 7.5,14.5 parent: 2 - - uid: 3722 + - uid: 8171 components: - type: Transform - pos: 83.5,-3.5 + pos: 10.5,35.5 parent: 2 - - uid: 3723 + - uid: 8223 components: - type: Transform - pos: 83.5,-4.5 + rot: -1.5707963267948966 rad + pos: 12.5,-56.5 parent: 2 - - uid: 3724 + - uid: 8251 components: - type: Transform - pos: 83.5,-7.5 + pos: 52.5,36.5 parent: 2 - - uid: 3725 + - uid: 8255 components: - type: Transform - pos: 83.5,-5.5 + pos: 10.5,34.5 parent: 2 - - uid: 3726 + - uid: 8256 components: - type: Transform - pos: 83.5,-6.5 + pos: -13.5,14.5 parent: 2 - - uid: 3727 + - uid: 8257 components: - type: Transform - pos: 85.5,-6.5 + pos: -5.5,14.5 parent: 2 - - uid: 3728 + - uid: 8304 components: - type: Transform - pos: 84.5,-6.5 + pos: 49.5,36.5 parent: 2 - - uid: 3737 + - uid: 8324 components: - type: Transform - pos: 85.5,-7.5 + pos: 51.5,36.5 parent: 2 - - uid: 3738 + - uid: 8326 components: - type: Transform - pos: 85.5,-8.5 + pos: 52.5,-9.5 parent: 2 - - uid: 3739 + - uid: 8328 components: - type: Transform - pos: 85.5,-9.5 + pos: 44.5,20.5 parent: 2 - - uid: 3740 + - uid: 8329 components: - type: Transform - pos: 85.5,-10.5 + pos: 44.5,19.5 parent: 2 - - uid: 3741 + - uid: 8330 components: - type: Transform - pos: 85.5,-11.5 + pos: 44.5,18.5 parent: 2 - - uid: 3744 + - uid: 8331 components: - type: Transform - pos: 81.5,0.5 + pos: 44.5,17.5 parent: 2 - - uid: 3745 + - uid: 8333 components: - type: Transform - pos: 80.5,0.5 + pos: 44.5,16.5 parent: 2 - - uid: 3746 + - uid: 8396 components: - type: Transform - pos: 79.5,0.5 + rot: 1.5707963267948966 rad + pos: 37.5,26.5 parent: 2 - - uid: 3747 + - uid: 8405 components: - type: Transform - pos: 79.5,-0.5 + pos: 58.5,39.5 parent: 2 - - uid: 3748 + - uid: 8411 components: - type: Transform - pos: 79.5,-1.5 + rot: 3.141592653589793 rad + pos: 60.5,40.5 parent: 2 - - uid: 3749 + - uid: 8436 components: - type: Transform - pos: 79.5,-2.5 + rot: 3.141592653589793 rad + pos: 53.5,41.5 parent: 2 - - uid: 3750 + - uid: 8447 components: - type: Transform - pos: 78.5,-2.5 + rot: -1.5707963267948966 rad + pos: 3.5,22.5 parent: 2 - - uid: 3751 + - uid: 8674 components: - type: Transform - pos: 78.5,-8.5 + pos: 52.5,37.5 parent: 2 - - uid: 3752 + - uid: 8677 components: - type: Transform - pos: 78.5,-9.5 + rot: 3.141592653589793 rad + pos: 53.5,31.5 parent: 2 - - uid: 3753 + - uid: 8700 components: - type: Transform - pos: 77.5,-9.5 + pos: 42.5,33.5 parent: 2 - - uid: 3754 + - uid: 8701 components: - type: Transform - pos: 76.5,-9.5 + pos: 42.5,32.5 parent: 2 - - uid: 3755 + - uid: 8720 components: - type: Transform - pos: 75.5,-9.5 + pos: 93.5,-18.5 parent: 2 - - uid: 3756 + - uid: 8723 components: - type: Transform - pos: 75.5,-8.5 + pos: 94.5,-18.5 parent: 2 - - uid: 3757 + - uid: 8724 components: - type: Transform - pos: 75.5,-7.5 + pos: 94.5,-21.5 parent: 2 - - uid: 3758 + - uid: 8726 components: - type: Transform - pos: 75.5,-6.5 + pos: 92.5,-21.5 parent: 2 - - uid: 3759 + - uid: 8758 components: - type: Transform - pos: 75.5,-5.5 + pos: 104.5,-10.5 parent: 2 - - uid: 3760 + - uid: 8760 components: - type: Transform - pos: 75.5,-4.5 + pos: 99.5,-18.5 parent: 2 - - uid: 3761 + - uid: 8761 components: - type: Transform - pos: 75.5,-3.5 + pos: 99.5,-21.5 parent: 2 - - uid: 3762 + - uid: 8762 components: - type: Transform - pos: 75.5,-2.5 + pos: 100.5,-18.5 parent: 2 - - uid: 3763 + - uid: 8763 components: - type: Transform - pos: 76.5,-2.5 + pos: 101.5,-18.5 parent: 2 - - uid: 3764 + - uid: 8764 components: - type: Transform - pos: 76.5,-1.5 + pos: 100.5,-21.5 parent: 2 - - uid: 3765 + - uid: 8765 components: - type: Transform - pos: 76.5,-0.5 + pos: 101.5,-21.5 parent: 2 - - uid: 3766 + - uid: 8768 components: - type: Transform - pos: 76.5,0.5 + pos: 101.5,-17.5 parent: 2 - - uid: 3767 + - uid: 8769 components: - type: Transform - pos: 78.5,0.5 + pos: 101.5,-16.5 parent: 2 - - uid: 3784 + - uid: 8770 components: - type: Transform - pos: 74.5,-7.5 + pos: 101.5,-15.5 parent: 2 - - uid: 3785 + - uid: 8771 components: - type: Transform - pos: 73.5,-7.5 + pos: 101.5,-14.5 parent: 2 - - uid: 3788 + - uid: 8772 components: - type: Transform - pos: 73.5,-8.5 + pos: 101.5,-13.5 parent: 2 - - uid: 3789 + - uid: 8773 components: - type: Transform - pos: 73.5,-9.5 + pos: 101.5,-12.5 parent: 2 - - uid: 3790 + - uid: 8774 components: - type: Transform - pos: 73.5,-10.5 + pos: 101.5,-11.5 parent: 2 - - uid: 3791 + - uid: 8778 components: - type: Transform - pos: 73.5,-11.5 + pos: 104.5,-9.5 parent: 2 - - uid: 3792 + - uid: 8780 components: - type: Transform - pos: 74.5,-11.5 + pos: 104.5,-11.5 parent: 2 - - uid: 3793 + - uid: 8781 components: - type: Transform - pos: 75.5,-11.5 + pos: 103.5,-11.5 parent: 2 - - uid: 3794 + - uid: 8782 components: - type: Transform - pos: 77.5,-11.5 + pos: 102.5,-11.5 parent: 2 - - uid: 3795 + - uid: 8792 components: - type: Transform - pos: 76.5,-11.5 + pos: 102.5,-21.5 parent: 2 - - uid: 3796 + - uid: 8793 components: - type: Transform - pos: 78.5,-11.5 + pos: 103.5,-21.5 parent: 2 - - uid: 3797 + - uid: 8794 components: - type: Transform - pos: 79.5,-11.5 + pos: 104.5,-21.5 parent: 2 - - uid: 3798 + - uid: 8811 components: - type: Transform - pos: 80.5,-11.5 + pos: 108.5,-25.5 parent: 2 - - uid: 3799 + - uid: 8812 components: - type: Transform - pos: 81.5,-11.5 + pos: 108.5,-24.5 parent: 2 - - uid: 3800 + - uid: 8813 components: - type: Transform - pos: 82.5,-11.5 + pos: 108.5,-23.5 parent: 2 - - uid: 3801 + - uid: 8814 components: - type: Transform - pos: 83.5,-11.5 + pos: 108.5,-22.5 parent: 2 - - uid: 3802 + - uid: 8815 components: - type: Transform - pos: 84.5,-11.5 + pos: 108.5,-21.5 parent: 2 - - uid: 3829 + - uid: 8816 components: - type: Transform - pos: 90.5,-12.5 + pos: 108.5,-20.5 parent: 2 - - uid: 3830 + - uid: 8865 components: - type: Transform - pos: 90.5,-13.5 + pos: 108.5,-10.5 parent: 2 - - uid: 3836 + - uid: 8866 components: - type: Transform - pos: 71.5,-20.5 + pos: 108.5,-9.5 parent: 2 - - uid: 3837 + - uid: 8867 components: - type: Transform - pos: 70.5,-20.5 + pos: 108.5,-11.5 parent: 2 - - uid: 3838 + - uid: 8868 components: - type: Transform - pos: 69.5,-20.5 + pos: 108.5,-12.5 parent: 2 - - uid: 3839 + - uid: 8869 components: - type: Transform - pos: 67.5,-20.5 + pos: 108.5,-13.5 parent: 2 - - uid: 3840 + - uid: 8870 components: - type: Transform - pos: 68.5,-20.5 + pos: 108.5,-14.5 parent: 2 - - uid: 3841 + - uid: 8875 components: - type: Transform - pos: 65.5,-20.5 + pos: 109.5,-20.5 parent: 2 - - uid: 3842 + - uid: 8876 components: - type: Transform - pos: 66.5,-20.5 + pos: 110.5,-20.5 parent: 2 - - uid: 3844 + - uid: 8877 components: - type: Transform - pos: 57.5,-20.5 + pos: 113.5,-20.5 parent: 2 - - uid: 3847 + - uid: 8878 components: - type: Transform - pos: 72.5,-20.5 + pos: 116.5,-20.5 parent: 2 - - uid: 3848 + - uid: 8885 components: - type: Transform - pos: 72.5,-19.5 + pos: 109.5,-14.5 parent: 2 - - uid: 3849 + - uid: 8935 components: - type: Transform - pos: 72.5,-18.5 + pos: 110.5,-14.5 parent: 2 - - uid: 3850 + - uid: 8936 components: - type: Transform - pos: 72.5,-17.5 + pos: 113.5,-14.5 parent: 2 - - uid: 3879 + - uid: 8937 components: - type: Transform - pos: 90.5,-14.5 + pos: 116.5,-14.5 parent: 2 - - uid: 3880 + - uid: 8955 components: - type: Transform - pos: 90.5,-15.5 + pos: 116.5,-17.5 parent: 2 - - uid: 3881 + - uid: 9175 components: - type: Transform - pos: 90.5,-16.5 + rot: 3.141592653589793 rad + pos: 69.5,-14.5 parent: 2 - - uid: 3882 + - uid: 9217 components: - type: Transform - pos: 90.5,-17.5 + pos: 39.5,-13.5 parent: 2 - - uid: 3883 + - uid: 9218 components: - type: Transform - pos: 91.5,-17.5 + pos: 39.5,-14.5 parent: 2 - - uid: 3884 + - uid: 9219 components: - type: Transform - pos: 91.5,-18.5 + pos: 39.5,-15.5 parent: 2 - - uid: 3886 + - uid: 9220 components: - type: Transform - pos: 91.5,-21.5 + pos: 39.5,-17.5 parent: 2 - - uid: 3887 + - uid: 9348 components: - type: Transform - pos: 91.5,-22.5 + rot: 3.141592653589793 rad + pos: 31.5,34.5 parent: 2 - - uid: 3888 + - uid: 9455 components: - type: Transform - pos: 90.5,-22.5 + rot: 3.141592653589793 rad + pos: 32.5,34.5 parent: 2 - - uid: 3890 + - uid: 9726 components: - type: Transform - pos: 88.5,-22.5 + pos: 58.5,38.5 parent: 2 - - uid: 3891 + - uid: 9860 components: - type: Transform - pos: 87.5,-22.5 + pos: 58.5,33.5 parent: 2 - - uid: 3894 + - uid: 10085 components: - type: Transform - pos: 93.5,-21.5 + pos: 58.5,34.5 parent: 2 - - uid: 3895 + - uid: 10089 components: - type: Transform - pos: 87.5,-21.5 + rot: 3.141592653589793 rad + pos: 39.5,-20.5 parent: 2 - - uid: 3896 + - uid: 10090 components: - type: Transform - pos: 89.5,-22.5 + rot: 3.141592653589793 rad + pos: 38.5,-20.5 parent: 2 - - uid: 3897 + - uid: 10091 components: - type: Transform - pos: 87.5,-19.5 + rot: 3.141592653589793 rad + pos: 37.5,-20.5 parent: 2 - - uid: 3898 + - uid: 10092 components: - type: Transform - pos: 87.5,-19.5 + pos: -4.5,-3.5 parent: 2 - - uid: 3899 + - uid: 10093 components: - type: Transform - pos: 92.5,-18.5 + pos: -4.5,-5.5 parent: 2 - - uid: 3900 + - uid: 10094 components: - type: Transform - pos: 87.5,-18.5 + pos: -4.5,-6.5 parent: 2 - - uid: 3901 + - uid: 10095 components: - type: Transform - pos: 87.5,-17.5 + pos: 3.5,-7.5 parent: 2 - - uid: 3972 + - uid: 10096 components: - type: Transform - pos: 11.5,-58.5 + pos: 4.5,-7.5 parent: 2 - - uid: 3989 + - uid: 10097 components: - type: Transform - pos: 21.5,-59.5 + pos: 6.5,-7.5 parent: 2 - - uid: 3990 + - uid: 10098 components: - type: Transform - pos: 20.5,-59.5 + pos: 6.5,-10.5 parent: 2 - - uid: 3991 + - uid: 10099 components: - type: Transform - pos: 29.5,-59.5 + pos: 5.5,-10.5 parent: 2 - - uid: 3992 + - uid: 10100 components: - type: Transform - pos: 11.5,-56.5 + pos: 4.5,-10.5 parent: 2 - - uid: 3993 + - uid: 10101 components: - type: Transform - pos: 11.5,-59.5 + pos: 3.5,-10.5 parent: 2 - - uid: 3994 + - uid: 10102 components: - type: Transform - pos: 12.5,-59.5 + pos: 3.5,-8.5 parent: 2 - - uid: 3995 + - uid: 10104 components: - type: Transform - pos: 22.5,-59.5 + pos: -4.5,-2.5 parent: 2 - - uid: 3996 + - uid: 10105 components: - type: Transform - pos: 15.5,-59.5 + pos: 5.5,-7.5 parent: 2 - - uid: 4044 + - uid: 10106 components: - type: Transform - pos: 37.5,-27.5 + pos: -0.5,-6.5 parent: 2 - - uid: 4057 + - uid: 10107 components: - type: Transform - pos: 49.5,-22.5 + pos: 0.5,-2.5 parent: 2 - - uid: 4077 + - uid: 10108 components: - type: Transform - pos: 48.5,-22.5 + pos: 0.5,-5.5 parent: 2 - - uid: 4078 + - uid: 10109 components: - type: Transform - pos: 43.5,-36.5 + pos: 0.5,-6.5 parent: 2 - - uid: 4079 + - uid: 10110 components: - type: Transform - pos: 45.5,-36.5 + pos: -3.5,-6.5 parent: 2 - - uid: 4112 + - uid: 10111 components: - type: Transform - pos: 19.5,-13.5 + pos: 0.5,-3.5 parent: 2 - - uid: 4139 + - uid: 10112 components: - type: Transform - pos: -27.5,10.5 + pos: -2.5,-6.5 parent: 2 - - uid: 4166 + - uid: 10113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 + pos: -1.5,-6.5 parent: 2 - - uid: 4168 + - uid: 10140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,-21.5 parent: 2 - - uid: 4169 + - uid: 10219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-21.5 + rot: 3.141592653589793 rad + pos: 41.5,-20.5 parent: 2 - - uid: 4170 + - uid: 10220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 + rot: 3.141592653589793 rad + pos: 49.5,-20.5 parent: 2 - - uid: 4171 + - uid: 10221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-21.5 + rot: 3.141592653589793 rad + pos: 48.5,-20.5 parent: 2 - - uid: 4172 + - uid: 10222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-21.5 + rot: 3.141592653589793 rad + pos: 47.5,-20.5 parent: 2 - - uid: 4173 + - uid: 10223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-21.5 + rot: 3.141592653589793 rad + pos: 46.5,-20.5 parent: 2 - - uid: 4174 + - uid: 10224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-20.5 + rot: 3.141592653589793 rad + pos: 45.5,-20.5 parent: 2 - - uid: 4175 + - uid: 10225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-34.5 + rot: 3.141592653589793 rad + pos: 44.5,-20.5 parent: 2 - - uid: 4187 + - uid: 10226 components: - type: Transform - pos: 32.5,-21.5 + rot: 3.141592653589793 rad + pos: 43.5,-20.5 parent: 2 - - uid: 4229 + - uid: 10227 components: - type: Transform - pos: 37.5,-33.5 + rot: 3.141592653589793 rad + pos: 42.5,-20.5 parent: 2 - - uid: 4244 + - uid: 10319 components: - type: Transform - pos: 30.5,-22.5 + pos: 58.5,37.5 parent: 2 - - uid: 4246 + - uid: 10320 components: - type: Transform - pos: 31.5,-21.5 + rot: 3.141592653589793 rad + pos: 53.5,30.5 parent: 2 - - uid: 4254 + - uid: 10745 components: - type: Transform - pos: 33.5,-29.5 + pos: 85.5,-19.5 parent: 2 - - uid: 4255 + - uid: 10746 components: - type: Transform - pos: 33.5,-31.5 + pos: 86.5,-19.5 parent: 2 - - uid: 4256 + - uid: 10747 components: - type: Transform - pos: 33.5,-33.5 + pos: 84.5,-19.5 parent: 2 - - uid: 4279 + - uid: 10748 components: - type: Transform - pos: 17.5,-20.5 + pos: 84.5,-21.5 parent: 2 - - uid: 4284 + - uid: 10749 components: - type: Transform - pos: 50.5,-22.5 + pos: 85.5,-21.5 parent: 2 - - uid: 4293 + - uid: 10750 components: - type: Transform - pos: 18.5,-20.5 + pos: 86.5,-21.5 parent: 2 - - uid: 4295 + - uid: 10842 components: - type: Transform - pos: 33.5,-27.5 + pos: 37.5,35.5 parent: 2 - - uid: 4299 + - uid: 10843 components: - type: Transform - pos: 50.5,-47.5 + pos: 38.5,35.5 parent: 2 - - uid: 4329 + - uid: 10844 components: - type: Transform - pos: 30.5,-45.5 + pos: 38.5,34.5 parent: 2 - - uid: 4330 + - uid: 10845 components: - type: Transform - pos: 29.5,-45.5 + pos: 59.5,33.5 parent: 2 - - uid: 4331 + - uid: 10878 components: - type: Transform - pos: 27.5,-44.5 + pos: 26.5,-59.5 parent: 2 - - uid: 4332 + - uid: 10967 components: - type: Transform - pos: 27.5,-43.5 + rot: -1.5707963267948966 rad + pos: 24.5,-43.5 parent: 2 - - uid: 4333 + - uid: 10987 components: - type: Transform - pos: 33.5,-37.5 + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 parent: 2 - - uid: 4369 + - uid: 10990 components: - type: Transform - pos: 37.5,-37.5 + rot: 1.5707963267948966 rad + pos: 11.5,-56.5 parent: 2 - - uid: 4373 + - uid: 10998 components: - type: Transform - pos: 36.5,-37.5 + rot: -1.5707963267948966 rad + pos: 18.5,-43.5 parent: 2 - - uid: 4374 + - uid: 11005 components: - type: Transform - pos: 33.5,-38.5 + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 parent: 2 - - uid: 4375 + - uid: 11006 components: - type: Transform - pos: 33.5,-41.5 + rot: 1.5707963267948966 rad + pos: 11.5,-54.5 parent: 2 - - uid: 4382 + - uid: 11280 components: - type: Transform - pos: 34.5,-37.5 + rot: 3.141592653589793 rad + pos: 52.5,31.5 parent: 2 - - uid: 4383 + - uid: 11398 components: - type: Transform - pos: 33.5,-40.5 + pos: 87.5,5.5 parent: 2 - - uid: 4384 + - uid: 11400 components: - type: Transform - pos: 34.5,-41.5 + pos: 87.5,3.5 parent: 2 - - uid: 4386 + - uid: 11613 components: - type: Transform - pos: 36.5,-41.5 + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 parent: 2 - - uid: 4387 + - uid: 11676 components: - type: Transform - pos: 37.5,-41.5 + rot: -1.5707963267948966 rad + pos: 8.5,37.5 parent: 2 - - uid: 4388 + - uid: 11691 components: - type: Transform - pos: 37.5,-40.5 + pos: 7.5,16.5 parent: 2 - - uid: 4389 + - uid: 11693 components: - type: Transform - pos: 37.5,-38.5 + pos: 7.5,15.5 parent: 2 - - uid: 4395 + - uid: 11733 components: - type: Transform - pos: 27.5,-45.5 + rot: 1.5707963267948966 rad + pos: 37.5,20.5 parent: 2 - - uid: 4396 + - uid: 11734 components: - type: Transform - pos: 28.5,-45.5 + rot: 1.5707963267948966 rad + pos: 39.5,20.5 parent: 2 - - uid: 4417 + - uid: 11769 components: - type: Transform - pos: 47.5,-36.5 + pos: 37.5,-21.5 parent: 2 - - uid: 4418 + - uid: 11770 components: - type: Transform - pos: 41.5,-36.5 + pos: 36.5,-21.5 parent: 2 - - uid: 4435 + - uid: 11771 components: - type: Transform - pos: 44.5,-36.5 + pos: 35.5,-21.5 parent: 2 - - uid: 4436 + - uid: 11772 components: - type: Transform - pos: 42.5,-36.5 + pos: 34.5,-21.5 parent: 2 - - uid: 4450 + - uid: 11773 components: - type: Transform - pos: 33.5,-45.5 + pos: 33.5,-21.5 parent: 2 - - uid: 4466 + - uid: 11778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-41.5 + pos: 29.5,-22.5 parent: 2 - - uid: 4468 + - uid: 11792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-41.5 + pos: 104.5,-24.5 parent: 2 - - uid: 4472 + - uid: 11793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-41.5 + pos: 104.5,-23.5 parent: 2 - - uid: 4477 + - uid: 11794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-41.5 + pos: 104.5,-22.5 parent: 2 - - uid: 4481 + - uid: 11795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-41.5 + pos: 104.5,-25.5 parent: 2 - - uid: 4486 + - uid: 11819 components: - type: Transform - pos: 47.5,-41.5 + rot: -1.5707963267948966 rad + pos: 3.5,39.5 parent: 2 - - uid: 4491 + - uid: 11820 components: - type: Transform - pos: 45.5,-42.5 + rot: 1.5707963267948966 rad + pos: 11.5,-53.5 parent: 2 - - uid: 4567 + - uid: 12102 components: - type: Transform - pos: 41.5,-37.5 + rot: 3.141592653589793 rad + pos: 54.5,42.5 parent: 2 - - uid: 4743 + - uid: 12142 components: - type: Transform - pos: 44.5,27.5 + rot: 3.141592653589793 rad + pos: 58.5,42.5 parent: 2 - - uid: 4745 + - uid: 12143 components: - type: Transform - pos: -27.5,13.5 + rot: 3.141592653589793 rad + pos: 59.5,42.5 parent: 2 - - uid: 4885 + - uid: 12228 components: - type: Transform - pos: 13.5,35.5 + pos: 70.5,22.5 parent: 2 - - uid: 5287 + - uid: 12424 components: - type: Transform - pos: 6.5,18.5 + rot: -1.5707963267948966 rad + pos: 7.5,39.5 parent: 2 - - uid: 5288 + - uid: 12432 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: 58.5,49.5 parent: 2 - - uid: 5291 + - uid: 12433 components: - type: Transform - pos: -0.5,1.5 + rot: 3.141592653589793 rad + pos: 58.5,51.5 parent: 2 - - uid: 5292 + - uid: 12434 components: - type: Transform - pos: 2.5,1.5 + rot: 3.141592653589793 rad + pos: 58.5,50.5 parent: 2 - - uid: 5298 + - uid: 12435 components: - type: Transform - pos: -13.5,1.5 + rot: 3.141592653589793 rad + pos: 54.5,50.5 parent: 2 - - uid: 5300 + - uid: 12436 components: - type: Transform - pos: 45.5,-41.5 + rot: 3.141592653589793 rad + pos: 54.5,49.5 parent: 2 - - uid: 5352 + - uid: 12438 components: - type: Transform - pos: -14.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,47.5 parent: 2 - - uid: 5353 + - uid: 12440 components: - type: Transform - pos: 2.5,5.5 + rot: 3.141592653589793 rad + pos: 53.5,47.5 parent: 2 - - uid: 5354 + - uid: 12446 components: - type: Transform - pos: 2.5,9.5 + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 parent: 2 - - uid: 5364 + - uid: 12520 components: - type: Transform - pos: 46.5,12.5 + rot: -1.5707963267948966 rad + pos: 5.5,30.5 parent: 2 - - uid: 5477 + - uid: 12521 components: - type: Transform - pos: 72.5,34.5 + pos: 27.5,-41.5 parent: 2 - - uid: 5478 + - uid: 12664 components: - type: Transform - pos: 72.5,30.5 + rot: -1.5707963267948966 rad + pos: 3.5,28.5 parent: 2 - - uid: 5479 + - uid: 12669 components: - type: Transform - pos: 72.5,26.5 + rot: 3.141592653589793 rad + pos: 56.5,46.5 parent: 2 - - uid: 5480 + - uid: 12775 components: - type: Transform - pos: 71.5,26.5 + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 parent: 2 - - uid: 5481 + - uid: 12888 components: - type: Transform - pos: 70.5,26.5 + pos: 50.5,-49.5 parent: 2 - - uid: 5482 + - uid: 12889 components: - type: Transform - pos: 69.5,26.5 + pos: 49.5,-49.5 parent: 2 - - uid: 5724 + - uid: 12892 components: - type: Transform - pos: 51.5,-10.5 + pos: 46.5,-49.5 parent: 2 - - uid: 5725 + - uid: 12893 components: - type: Transform - pos: 51.5,-11.5 + pos: 45.5,-49.5 parent: 2 - - uid: 6120 + - uid: 12894 components: - type: Transform - pos: 12.5,-41.5 + pos: 45.5,-43.5 parent: 2 - - uid: 6121 + - uid: 12895 components: - type: Transform - pos: 12.5,-40.5 + pos: 46.5,-43.5 parent: 2 - - uid: 6122 + - uid: 12896 components: - type: Transform - pos: 13.5,-40.5 + pos: 47.5,-43.5 parent: 2 - - uid: 6123 + - uid: 12897 components: - type: Transform - pos: 14.5,-40.5 + pos: 48.5,-43.5 parent: 2 - - uid: 6196 + - uid: 12898 components: - type: Transform - pos: 69.5,-12.5 + pos: 49.5,-43.5 parent: 2 - - uid: 6197 + - uid: 12899 components: - type: Transform - pos: 70.5,-12.5 + pos: 50.5,-43.5 parent: 2 - - uid: 6209 + - uid: 12905 components: - type: Transform - pos: 62.5,-20.5 + pos: 50.5,-48.5 parent: 2 - - uid: 6210 + - uid: 12907 components: - type: Transform - pos: 64.5,-20.5 + pos: 50.5,-46.5 parent: 2 - - uid: 6211 + - uid: 12908 components: - type: Transform - pos: 60.5,-20.5 + pos: 50.5,-45.5 parent: 2 - - uid: 6212 + - uid: 12909 components: - type: Transform - pos: 56.5,-20.5 + pos: 50.5,-44.5 parent: 2 - - uid: 6782 + - uid: 12920 components: - type: Transform - pos: 58.5,-20.5 + pos: 44.5,-49.5 parent: 2 - - uid: 6783 + - uid: 12921 components: - type: Transform - pos: 59.5,-20.5 + pos: 40.5,-49.5 parent: 2 - - uid: 6784 + - uid: 12922 components: - type: Transform - pos: 61.5,-20.5 + pos: 39.5,-49.5 parent: 2 - - uid: 6785 + - uid: 12923 components: - type: Transform - pos: 63.5,-20.5 + pos: 38.5,-49.5 parent: 2 - - uid: 6816 + - uid: 12924 components: - type: Transform - pos: -22.5,-15.5 + pos: 37.5,-49.5 parent: 2 - - uid: 6822 + - uid: 12925 components: - type: Transform - pos: -4.5,-13.5 + pos: 36.5,-49.5 parent: 2 - - uid: 6838 + - uid: 12926 components: - type: Transform - pos: -10.5,-15.5 + pos: 35.5,-49.5 parent: 2 - - uid: 6860 + - uid: 12927 components: - type: Transform - pos: -15.5,14.5 + pos: 34.5,-49.5 parent: 2 - - uid: 6867 + - uid: 12928 components: - type: Transform - pos: 4.5,14.5 + pos: 33.5,-49.5 parent: 2 - - uid: 6880 + - uid: 12929 components: - type: Transform - pos: 14.5,-12.5 + pos: 33.5,-48.5 parent: 2 - - uid: 6881 + - uid: 12930 components: - type: Transform - pos: 15.5,-12.5 + pos: 33.5,-46.5 parent: 2 - - uid: 6882 + - uid: 12933 components: - type: Transform - pos: 17.5,-12.5 + pos: 31.5,-49.5 parent: 2 - - uid: 6887 + - uid: 12941 components: - type: Transform - pos: -7.5,-7.5 + pos: -20.5,1.5 parent: 2 - - uid: 6895 + - uid: 13113 components: - type: Transform - pos: -21.5,-15.5 + pos: -24.5,1.5 parent: 2 - - uid: 6902 + - uid: 13117 components: - type: Transform - pos: 10.5,32.5 + rot: 1.5707963267948966 rad + pos: 36.5,20.5 parent: 2 - - uid: 6903 + - uid: 13184 components: - type: Transform - pos: 10.5,31.5 + pos: 8.5,14.5 parent: 2 - - uid: 6904 + - uid: 13185 components: - type: Transform - pos: 10.5,30.5 + pos: 9.5,14.5 parent: 2 - - uid: 6905 + - uid: 13186 components: - type: Transform - pos: 10.5,29.5 + pos: 9.5,17.5 parent: 2 - - uid: 6906 + - uid: 13188 components: - type: Transform - pos: 12.5,32.5 + pos: 10.5,14.5 parent: 2 - - uid: 6907 + - uid: 13190 components: - type: Transform - pos: 13.5,32.5 + pos: 27.5,-37.5 parent: 2 - - uid: 6908 + - uid: 13249 components: - type: Transform - pos: 11.5,32.5 + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 parent: 2 - - uid: 6909 + - uid: 13250 components: - type: Transform - pos: 14.5,32.5 + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 parent: 2 - - uid: 6910 + - uid: 13259 components: - type: Transform - pos: 14.5,31.5 + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 parent: 2 - - uid: 6911 + - uid: 13263 components: - type: Transform - pos: 14.5,29.5 + pos: -17.5,-21.5 parent: 2 - - uid: 6912 + - uid: 13264 components: - type: Transform - pos: 14.5,30.5 + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 parent: 2 - - uid: 7466 + - uid: 13265 components: - type: Transform - pos: -3.5,14.5 + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 parent: 2 - - uid: 7471 + - uid: 13266 components: - type: Transform - pos: -1.5,14.5 + pos: -18.5,-21.5 parent: 2 - - uid: 7474 + - uid: 13273 components: - type: Transform - pos: 1.5,14.5 + pos: -20.5,-23.5 parent: 2 - - uid: 7533 + - uid: 13274 components: - type: Transform - pos: -4.5,14.5 + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 parent: 2 - - uid: 7550 + - uid: 13275 components: - type: Transform - pos: -5.5,14.5 + pos: 2.5,-18.5 parent: 2 - - uid: 7551 + - uid: 13281 components: - type: Transform - pos: -6.5,1.5 + rot: 3.141592653589793 rad + pos: 54.5,51.5 parent: 2 - - uid: 7559 + - uid: 13289 components: - type: Transform - pos: -11.5,1.5 + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 parent: 2 - - uid: 7587 + - uid: 13303 components: - type: Transform - pos: -14.5,14.5 + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 parent: 2 - - uid: 7669 + - uid: 13307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 + rot: -1.5707963267948966 rad + pos: -27.5,-23.5 parent: 2 - - uid: 7712 + - uid: 13308 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-19.5 parent: 2 - - uid: 7763 + - uid: 13309 components: - type: Transform - pos: -13.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 parent: 2 - - uid: 7840 + - uid: 13310 components: - type: Transform - pos: -18.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-23.5 parent: 2 - - uid: 7897 + - uid: 13311 components: - type: Transform - pos: 3.5,-33.5 + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 parent: 2 - - uid: 7898 + - uid: 13315 components: - type: Transform - pos: 2.5,-33.5 + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 parent: 2 - - uid: 7899 + - uid: 13316 components: - type: Transform - pos: 1.5,-33.5 + pos: -24.5,-23.5 parent: 2 - - uid: 7900 + - uid: 13317 components: - type: Transform - pos: -0.5,-13.5 + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 parent: 2 - - uid: 7901 + - uid: 13322 components: - type: Transform - pos: 2.5,-17.5 + rot: -1.5707963267948966 rad + pos: -9.5,-8.5 parent: 2 - - uid: 7902 + - uid: 13332 components: - type: Transform - pos: -0.5,-14.5 + pos: -1.5,-20.5 parent: 2 - - uid: 7903 + - uid: 13335 components: - type: Transform - pos: -0.5,-15.5 + pos: -19.5,-21.5 parent: 2 - - uid: 7904 + - uid: 13336 components: - type: Transform - pos: -0.5,-16.5 + pos: -3.5,-20.5 parent: 2 - - uid: 7905 + - uid: 13339 components: - type: Transform - pos: -0.5,-17.5 + pos: -20.5,-21.5 parent: 2 - - uid: 7906 + - uid: 13342 components: - type: Transform - pos: 5.5,-17.5 + pos: -8.5,-21.5 parent: 2 - - uid: 7907 + - uid: 13444 components: - type: Transform - pos: 6.5,-17.5 + pos: 51.5,-22.5 parent: 2 - - uid: 7908 + - uid: 13451 components: - type: Transform - pos: 7.5,-17.5 + pos: 52.5,-22.5 parent: 2 - - uid: 7909 + - uid: 13454 components: - type: Transform - pos: 8.5,-17.5 + pos: 52.5,-24.5 parent: 2 - - uid: 7910 + - uid: 13455 components: - type: Transform - pos: 8.5,-18.5 + pos: 52.5,-25.5 parent: 2 - - uid: 7911 + - uid: 13456 components: - type: Transform - pos: 8.5,-19.5 + pos: 52.5,-23.5 parent: 2 - - uid: 7912 + - uid: 13457 components: - type: Transform - pos: 8.5,-20.5 + pos: 52.5,-26.5 parent: 2 - - uid: 7913 + - uid: 13458 components: - type: Transform - pos: 8.5,-21.5 + pos: 52.5,-27.5 parent: 2 - - uid: 7914 + - uid: 13459 components: - type: Transform - pos: 8.5,-22.5 + pos: 52.5,-28.5 parent: 2 - - uid: 7915 + - uid: 13460 components: - type: Transform - pos: 6.5,-28.5 + pos: 52.5,-29.5 parent: 2 - - uid: 7916 + - uid: 13461 components: - type: Transform - pos: 6.5,-29.5 + pos: 52.5,-30.5 parent: 2 - - uid: 7917 + - uid: 13462 components: - type: Transform - pos: 7.5,-22.5 + pos: 52.5,-31.5 parent: 2 - - uid: 7919 + - uid: 13463 components: - type: Transform - pos: 5.5,-22.5 + pos: 52.5,-32.5 parent: 2 - - uid: 7920 + - uid: 13464 components: - type: Transform - pos: 4.5,-22.5 + pos: 52.5,-33.5 parent: 2 - - uid: 7921 + - uid: 13465 components: - type: Transform - pos: 3.5,-22.5 + pos: 52.5,-34.5 parent: 2 - - uid: 7922 + - uid: 13487 components: - type: Transform - pos: 3.5,-23.5 + pos: -4.5,-20.5 parent: 2 - - uid: 7923 + - uid: 13493 components: - type: Transform - pos: 3.5,-24.5 + pos: 10.5,18.5 parent: 2 - - uid: 7924 + - uid: 13561 components: - type: Transform - pos: 3.5,-25.5 + rot: -1.5707963267948966 rad + pos: 70.5,-11.5 parent: 2 - - uid: 7926 + - uid: 13562 components: - type: Transform - pos: 3.5,-26.5 + rot: -1.5707963267948966 rad + pos: 70.5,-10.5 parent: 2 - - uid: 7927 + - uid: 13563 components: - type: Transform - pos: 3.5,-27.5 + rot: -1.5707963267948966 rad + pos: 70.5,-14.5 parent: 2 - - uid: 7928 + - uid: 13565 components: - type: Transform - pos: 0.5,-33.5 + pos: 51.5,32.5 parent: 2 - - uid: 7929 + - uid: 13566 components: - type: Transform - pos: 0.5,-32.5 + rot: 3.141592653589793 rad + pos: 60.5,31.5 parent: 2 - - uid: 7930 + - uid: 13573 components: - type: Transform - pos: -0.5,-32.5 + rot: 3.141592653589793 rad + pos: 54.5,30.5 parent: 2 - - uid: 7931 + - uid: 13574 components: - type: Transform - pos: -1.5,-32.5 + rot: 3.141592653589793 rad + pos: 58.5,30.5 parent: 2 - - uid: 7932 + - uid: 13614 components: - type: Transform - pos: -1.5,-31.5 + pos: 10.5,17.5 parent: 2 - - uid: 7933 + - uid: 13635 components: - type: Transform - pos: -1.5,-30.5 + pos: 73.5,21.5 parent: 2 - - uid: 7934 + - uid: 13638 components: - type: Transform - pos: -1.5,-27.5 + pos: 75.5,21.5 parent: 2 - - uid: 7935 + - uid: 13643 components: - type: Transform - pos: 2.5,-27.5 + pos: 8.5,17.5 parent: 2 - - uid: 8326 + - uid: 13682 components: - type: Transform - pos: 52.5,-9.5 + pos: 10.5,20.5 parent: 2 - - uid: 8328 + - uid: 13685 components: - type: Transform - pos: 44.5,20.5 + pos: 28.5,-37.5 parent: 2 - - uid: 8329 + - uid: 13686 components: - type: Transform - pos: 44.5,19.5 + pos: 29.5,-37.5 parent: 2 - - uid: 8330 + - uid: 13687 components: - type: Transform - pos: 44.5,18.5 + pos: 30.5,-37.5 parent: 2 - - uid: 8331 + - uid: 13694 components: - type: Transform - pos: 44.5,17.5 + pos: 25.5,-37.5 parent: 2 - - uid: 8333 + - uid: 13695 components: - type: Transform - pos: 44.5,16.5 + pos: 26.5,-37.5 parent: 2 - - uid: 8720 + - uid: 13696 components: - type: Transform - pos: 93.5,-18.5 + pos: 27.5,-38.5 parent: 2 - - uid: 8723 + - uid: 13697 components: - type: Transform - pos: 94.5,-18.5 + pos: 27.5,-39.5 parent: 2 - - uid: 8724 + - uid: 13698 components: - type: Transform - pos: 94.5,-21.5 + pos: 27.5,-40.5 parent: 2 - - uid: 8726 + - uid: 13699 components: - type: Transform - pos: 92.5,-21.5 + pos: 27.5,-43.5 parent: 2 - - uid: 8758 + - uid: 13700 components: - type: Transform - pos: 104.5,-10.5 + pos: 27.5,-42.5 parent: 2 - - uid: 8760 + - uid: 13704 components: - type: Transform - pos: 99.5,-18.5 + pos: 10.5,15.5 parent: 2 - - uid: 8761 + - uid: 13709 components: - type: Transform - pos: 99.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,-19.5 parent: 2 - - uid: 8762 + - uid: 13710 components: - type: Transform - pos: 100.5,-18.5 + rot: 3.141592653589793 rad + pos: 4.5,-18.5 parent: 2 - - uid: 8763 + - uid: 13767 components: - type: Transform - pos: 101.5,-18.5 + pos: -10.5,-21.5 parent: 2 - - uid: 8764 + - uid: 13768 components: - type: Transform - pos: 100.5,-21.5 + pos: -11.5,-21.5 parent: 2 - - uid: 8765 + - uid: 13770 components: - type: Transform - pos: 101.5,-21.5 + pos: -16.5,-23.5 parent: 2 - - uid: 8768 + - uid: 13771 components: - type: Transform - pos: 101.5,-17.5 + pos: -16.5,-24.5 parent: 2 - - uid: 8769 + - uid: 13772 components: - type: Transform - pos: 101.5,-16.5 + pos: -16.5,-25.5 parent: 2 - - uid: 8770 + - uid: 13773 components: - type: Transform - pos: 101.5,-15.5 + pos: -12.5,-25.5 parent: 2 - - uid: 8771 + - uid: 13774 components: - type: Transform - pos: 101.5,-14.5 + pos: -12.5,-24.5 parent: 2 - - uid: 8772 + - uid: 13775 components: - type: Transform - pos: 101.5,-13.5 + pos: -12.5,-23.5 parent: 2 - - uid: 8773 + - uid: 13776 components: - type: Transform - pos: 101.5,-12.5 + pos: -15.5,-25.5 parent: 2 - - uid: 8774 + - uid: 13777 components: - type: Transform - pos: 101.5,-11.5 + pos: -15.5,-23.5 parent: 2 - - uid: 8778 + - uid: 13778 components: - type: Transform - pos: 104.5,-9.5 + pos: -13.5,-23.5 parent: 2 - - uid: 8780 + - uid: 13779 components: - type: Transform - pos: 104.5,-11.5 + pos: -13.5,-25.5 parent: 2 - - uid: 8781 + - uid: 13781 components: - type: Transform - pos: 103.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,-60.5 parent: 2 - - uid: 8782 + - uid: 13783 components: - type: Transform - pos: 102.5,-11.5 + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 parent: 2 - - uid: 8792 + - uid: 13785 components: - type: Transform - pos: 102.5,-21.5 + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 parent: 2 - - uid: 8793 + - uid: 13791 components: - type: Transform - pos: 103.5,-21.5 + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 parent: 2 - - uid: 8794 + - uid: 13828 components: - type: Transform - pos: 104.5,-21.5 + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 parent: 2 - - uid: 8811 + - uid: 13830 components: - type: Transform - pos: 108.5,-25.5 + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 parent: 2 - - uid: 8812 + - uid: 13831 components: - type: Transform - pos: 108.5,-24.5 + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 parent: 2 - - uid: 8813 + - uid: 13832 components: - type: Transform - pos: 108.5,-23.5 + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 parent: 2 - - uid: 8814 + - uid: 13833 components: - type: Transform - pos: 108.5,-22.5 + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 parent: 2 - - uid: 8815 + - uid: 13834 components: - type: Transform - pos: 108.5,-21.5 + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 parent: 2 - - uid: 8816 + - uid: 13835 components: - type: Transform - pos: 108.5,-20.5 + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 parent: 2 - - uid: 8865 + - uid: 13836 components: - type: Transform - pos: 108.5,-10.5 + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 parent: 2 - - uid: 8866 + - uid: 13837 components: - type: Transform - pos: 108.5,-9.5 + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 parent: 2 - - uid: 8867 + - uid: 13838 components: - type: Transform - pos: 108.5,-11.5 + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 parent: 2 - - uid: 8868 + - uid: 13839 components: - type: Transform - pos: 108.5,-12.5 + rot: 1.5707963267948966 rad + pos: -4.5,-23.5 parent: 2 - - uid: 8869 + - uid: 13842 components: - type: Transform - pos: 108.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 parent: 2 - - uid: 8870 + - uid: 13843 components: - type: Transform - pos: 108.5,-14.5 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 parent: 2 - - uid: 8875 + - uid: 13844 components: - type: Transform - pos: 109.5,-20.5 + rot: 1.5707963267948966 rad + pos: -6.5,-24.5 parent: 2 - - uid: 8876 + - uid: 13845 components: - type: Transform - pos: 110.5,-20.5 + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 parent: 2 - - uid: 8877 + - uid: 13846 components: - type: Transform - pos: 113.5,-20.5 + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 parent: 2 - - uid: 8878 + - uid: 13847 components: - type: Transform - pos: 116.5,-20.5 + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 parent: 2 - - uid: 8885 + - uid: 13848 components: - type: Transform - pos: 109.5,-14.5 + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 parent: 2 - - uid: 8935 + - uid: 13849 components: - type: Transform - pos: 110.5,-14.5 + rot: 1.5707963267948966 rad + pos: -11.5,-24.5 parent: 2 - - uid: 8936 + - uid: 13873 components: - type: Transform - pos: 113.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,5.5 parent: 2 - - uid: 8937 + - uid: 13909 components: - type: Transform - pos: 116.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,6.5 parent: 2 - - uid: 8955 + - uid: 13910 components: - type: Transform - pos: 116.5,-17.5 + rot: 1.5707963267948966 rad + pos: -21.5,2.5 parent: 2 - - uid: 9217 + - uid: 13911 components: - type: Transform - pos: 39.5,-13.5 + rot: 1.5707963267948966 rad + pos: -21.5,-24.5 parent: 2 - - uid: 9218 + - uid: 13912 components: - type: Transform - pos: 39.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,7.5 parent: 2 - - uid: 9219 + - uid: 13913 components: - type: Transform - pos: 39.5,-15.5 + rot: 1.5707963267948966 rad + pos: -21.5,8.5 parent: 2 - - uid: 9220 + - uid: 13914 components: - type: Transform - pos: 39.5,-17.5 + rot: 1.5707963267948966 rad + pos: -21.5,9.5 parent: 2 - - uid: 10089 + - uid: 13916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-20.5 + rot: 1.5707963267948966 rad + pos: -20.5,14.5 parent: 2 - - uid: 10090 + - uid: 13917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-20.5 + rot: 1.5707963267948966 rad + pos: -21.5,14.5 parent: 2 - - uid: 10091 + - uid: 13918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-20.5 + rot: 1.5707963267948966 rad + pos: -21.5,13.5 parent: 2 - - uid: 10092 + - uid: 13919 components: - type: Transform - pos: -4.5,-3.5 + rot: 1.5707963267948966 rad + pos: -21.5,10.5 parent: 2 - - uid: 10093 + - uid: 14132 components: - type: Transform - pos: -4.5,-5.5 + pos: 71.5,24.5 parent: 2 - - uid: 10094 + - uid: 14169 components: - type: Transform - pos: -4.5,-6.5 + rot: 1.5707963267948966 rad + pos: 78.5,28.5 parent: 2 - - uid: 10095 + - uid: 14173 components: - type: Transform - pos: 3.5,-7.5 + rot: 1.5707963267948966 rad + pos: 78.5,34.5 parent: 2 - - uid: 10096 + - uid: 14174 components: - type: Transform - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: 80.5,28.5 parent: 2 - - uid: 10097 + - uid: 14175 components: - type: Transform - pos: 6.5,-7.5 + pos: 84.5,26.5 parent: 2 - - uid: 10098 + - uid: 14187 components: - type: Transform - pos: 6.5,-10.5 + pos: 80.5,27.5 parent: 2 - - uid: 10099 + - uid: 14188 components: - type: Transform - pos: 5.5,-10.5 + pos: 80.5,26.5 parent: 2 - - uid: 10100 + - uid: 14198 components: - type: Transform - pos: 4.5,-10.5 + pos: 87.5,26.5 parent: 2 - - uid: 10101 + - uid: 14202 components: - type: Transform - pos: 3.5,-10.5 + rot: 1.5707963267948966 rad + pos: 78.5,33.5 parent: 2 - - uid: 10102 + - uid: 14209 components: - type: Transform - pos: 3.5,-8.5 + pos: 83.5,34.5 parent: 2 - - uid: 10104 + - uid: 14211 components: - type: Transform - pos: -4.5,-2.5 + rot: 1.5707963267948966 rad + pos: 80.5,32.5 parent: 2 - - uid: 10105 + - uid: 14212 components: - type: Transform - pos: 5.5,-7.5 + pos: 87.5,28.5 parent: 2 - - uid: 10106 + - uid: 14213 components: - type: Transform - pos: -0.5,-6.5 + rot: 1.5707963267948966 rad + pos: 82.5,32.5 parent: 2 - - uid: 10107 + - uid: 14214 components: - type: Transform - pos: 0.5,-2.5 + pos: 83.5,31.5 parent: 2 - - uid: 10108 + - uid: 14215 components: - type: Transform - pos: 0.5,-5.5 + pos: 83.5,33.5 parent: 2 - - uid: 10109 + - uid: 14218 components: - type: Transform - pos: 0.5,-6.5 + pos: 87.5,31.5 parent: 2 - - uid: 10110 + - uid: 14219 components: - type: Transform - pos: -3.5,-6.5 + pos: 87.5,32.5 parent: 2 - - uid: 10111 + - uid: 14220 components: - type: Transform - pos: 0.5,-3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-60.5 parent: 2 - - uid: 10112 + - uid: 14223 components: - type: Transform - pos: -2.5,-6.5 + pos: 83.5,28.5 parent: 2 - - uid: 10113 + - uid: 14226 components: - type: Transform - pos: -1.5,-6.5 + pos: 83.5,27.5 parent: 2 - - uid: 10140 + - uid: 14227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-21.5 + pos: 83.5,29.5 parent: 2 - - uid: 10219 + - uid: 14228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-20.5 + pos: 82.5,26.5 parent: 2 - - uid: 10220 + - uid: 14229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-20.5 + pos: 85.5,27.5 parent: 2 - - uid: 10221 + - uid: 14233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-20.5 + pos: 82.5,28.5 parent: 2 - - uid: 10222 + - uid: 14234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-20.5 + pos: 85.5,33.5 parent: 2 - - uid: 10223 + - uid: 14236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-20.5 + rot: 1.5707963267948966 rad + pos: 81.5,35.5 parent: 2 - - uid: 10224 + - uid: 14237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-20.5 + rot: 1.5707963267948966 rad + pos: 78.5,35.5 parent: 2 - - uid: 10225 + - uid: 14239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-20.5 + pos: 86.5,33.5 parent: 2 - - uid: 10226 + - uid: 14244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-20.5 + pos: 83.5,32.5 parent: 2 - - uid: 10227 + - uid: 14246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-20.5 + pos: 87.5,29.5 parent: 2 - - uid: 10745 + - uid: 14248 components: - type: Transform - pos: 85.5,-19.5 + pos: 84.5,33.5 parent: 2 - - uid: 10746 + - uid: 14251 components: - type: Transform - pos: 86.5,-19.5 + pos: 84.5,27.5 parent: 2 - - uid: 10747 + - uid: 14252 components: - type: Transform - pos: 84.5,-19.5 + pos: 86.5,27.5 parent: 2 - - uid: 10748 + - uid: 14261 components: - type: Transform - pos: 84.5,-21.5 + pos: 87.5,27.5 parent: 2 - - uid: 10749 + - uid: 14262 components: - type: Transform - pos: 85.5,-21.5 + pos: 88.5,27.5 parent: 2 - - uid: 10750 + - uid: 14264 components: - type: Transform - pos: 86.5,-21.5 + pos: 83.5,26.5 parent: 2 - - uid: 10878 + - uid: 14266 components: - type: Transform - pos: 26.5,-59.5 + pos: 84.5,34.5 parent: 2 - - uid: 11398 + - uid: 14267 components: - type: Transform - pos: 87.5,5.5 + pos: 88.5,26.5 parent: 2 - - uid: 11400 + - uid: 14268 components: - type: Transform - pos: 87.5,3.5 + pos: 87.5,33.5 parent: 2 - - uid: 11769 + - uid: 14269 components: - type: Transform - pos: 37.5,-21.5 + pos: 87.5,34.5 parent: 2 - - uid: 11770 + - uid: 14270 components: - type: Transform - pos: 36.5,-21.5 + pos: 88.5,34.5 parent: 2 - - uid: 11771 + - uid: 14271 components: - type: Transform - pos: 35.5,-21.5 + pos: 88.5,33.5 parent: 2 - - uid: 11772 + - uid: 14287 components: - type: Transform - pos: 34.5,-21.5 + pos: 85.5,34.5 parent: 2 - - uid: 11773 + - uid: 14288 components: - type: Transform - pos: 33.5,-21.5 + pos: 86.5,34.5 parent: 2 - - uid: 11778 + - uid: 14289 components: - type: Transform - pos: 29.5,-22.5 + pos: 83.5,35.5 parent: 2 - - uid: 11792 + - uid: 14290 components: - type: Transform - pos: 104.5,-24.5 + pos: 84.5,35.5 parent: 2 - - uid: 11793 + - uid: 14291 components: - type: Transform - pos: 104.5,-23.5 + pos: 85.5,26.5 parent: 2 - - uid: 11794 + - uid: 14292 components: - type: Transform - pos: 104.5,-22.5 + pos: 86.5,26.5 parent: 2 - - uid: 11795 + - uid: 14293 components: - type: Transform - pos: 104.5,-25.5 + pos: 83.5,25.5 parent: 2 - - uid: 12835 + - uid: 14294 components: - type: Transform - pos: -23.5,-11.5 + pos: 84.5,25.5 parent: 2 - - uid: 12847 + - uid: 14295 components: - type: Transform - pos: -24.5,-11.5 + pos: 87.5,25.5 parent: 2 - - uid: 12848 + - uid: 14296 components: - type: Transform - pos: -25.5,-11.5 + pos: 88.5,25.5 parent: 2 - - uid: 12888 + - uid: 14297 components: - type: Transform - pos: 50.5,-49.5 + pos: 87.5,35.5 parent: 2 - - uid: 12889 + - uid: 14298 components: - type: Transform - pos: 49.5,-49.5 + pos: 88.5,35.5 parent: 2 - - uid: 12892 + - uid: 14303 components: - type: Transform - pos: 46.5,-49.5 + pos: 89.5,27.5 parent: 2 - - uid: 12893 + - uid: 14304 components: - type: Transform - pos: 45.5,-49.5 + pos: 89.5,26.5 parent: 2 - - uid: 12894 + - uid: 14305 components: - type: Transform - pos: 45.5,-43.5 + pos: 90.5,26.5 parent: 2 - - uid: 12895 + - uid: 14306 components: - type: Transform - pos: 46.5,-43.5 + pos: 91.5,26.5 parent: 2 - - uid: 12896 + - uid: 14307 components: - type: Transform - pos: 47.5,-43.5 + pos: 91.5,27.5 parent: 2 - - uid: 12897 + - uid: 14308 components: - type: Transform - pos: 48.5,-43.5 + pos: 90.5,27.5 parent: 2 - - uid: 12898 + - uid: 14311 components: - type: Transform - pos: 49.5,-43.5 + pos: 91.5,25.5 parent: 2 - - uid: 12899 + - uid: 14312 components: - type: Transform - pos: 50.5,-43.5 + pos: 89.5,33.5 parent: 2 - - uid: 12905 + - uid: 14313 components: - type: Transform - pos: 50.5,-48.5 + pos: 89.5,34.5 parent: 2 - - uid: 12907 + - uid: 14314 components: - type: Transform - pos: 50.5,-46.5 + pos: 90.5,34.5 parent: 2 - - uid: 12908 + - uid: 14315 components: - type: Transform - pos: 50.5,-45.5 + pos: 90.5,33.5 parent: 2 - - uid: 12909 + - uid: 14316 components: - type: Transform - pos: 50.5,-44.5 + pos: 91.5,33.5 parent: 2 - - uid: 12910 + - uid: 14317 components: - type: Transform - pos: -27.5,4.5 + pos: 91.5,34.5 parent: 2 - - uid: 12920 + - uid: 14318 components: - type: Transform - pos: 44.5,-49.5 + pos: 91.5,35.5 parent: 2 - - uid: 12921 + - uid: 14321 components: - type: Transform - pos: 40.5,-49.5 + rot: 3.141592653589793 rad + pos: 95.5,25.5 parent: 2 - - uid: 12922 + - uid: 14322 components: - type: Transform - pos: 39.5,-49.5 + pos: 92.5,26.5 parent: 2 - - uid: 12923 + - uid: 14323 components: - type: Transform - pos: 38.5,-49.5 + pos: 92.5,25.5 parent: 2 - - uid: 12924 + - uid: 14324 components: - type: Transform - pos: 37.5,-49.5 + pos: 93.5,26.5 parent: 2 - - uid: 12925 + - uid: 14325 components: - type: Transform - pos: 36.5,-49.5 + rot: 3.141592653589793 rad + pos: 94.5,25.5 parent: 2 - - uid: 12926 + - uid: 14340 components: - type: Transform - pos: 35.5,-49.5 + rot: 1.5707963267948966 rad + pos: 80.5,35.5 parent: 2 - - uid: 12927 + - uid: 14341 components: - type: Transform - pos: 34.5,-49.5 + rot: 1.5707963267948966 rad + pos: 79.5,35.5 parent: 2 - - uid: 12928 + - uid: 14342 components: - type: Transform - pos: 33.5,-49.5 + rot: 1.5707963267948966 rad + pos: 78.5,32.5 parent: 2 - - uid: 12929 + - uid: 14343 components: - type: Transform - pos: 33.5,-48.5 + rot: 1.5707963267948966 rad + pos: 79.5,32.5 parent: 2 - - uid: 12930 + - uid: 14347 components: - type: Transform - pos: 33.5,-46.5 + rot: 3.141592653589793 rad + pos: 96.5,25.5 parent: 2 - - uid: 12933 + - uid: 14348 components: - type: Transform - pos: 31.5,-49.5 + rot: 3.141592653589793 rad + pos: 92.5,34.5 parent: 2 - - uid: 12935 + - uid: 14349 components: - type: Transform - pos: -27.5,-11.5 + rot: 3.141592653589793 rad + pos: 92.5,35.5 parent: 2 - - uid: 12936 + - uid: 14350 components: - type: Transform - pos: -15.5,1.5 + rot: 3.141592653589793 rad + pos: 94.5,34.5 parent: 2 - - uid: 12937 + - uid: 14351 components: - type: Transform - pos: -16.5,1.5 + rot: 3.141592653589793 rad + pos: 93.5,34.5 parent: 2 - - uid: 12938 + - uid: 14352 components: - type: Transform - pos: -17.5,1.5 + rot: 3.141592653589793 rad + pos: 95.5,26.5 parent: 2 - - uid: 12939 + - uid: 14353 components: - type: Transform - pos: -18.5,1.5 + rot: 3.141592653589793 rad + pos: 96.5,26.5 parent: 2 - - uid: 12940 + - uid: 14354 components: - type: Transform - pos: -19.5,1.5 + rot: 3.141592653589793 rad + pos: 93.5,25.5 parent: 2 - - uid: 12941 + - uid: 14355 components: - type: Transform - pos: -20.5,1.5 + rot: 3.141592653589793 rad + pos: 94.5,26.5 parent: 2 - - uid: 13079 + - uid: 14356 components: - type: Transform - pos: -21.5,1.5 + rot: 1.5707963267948966 rad + pos: 88.5,32.5 parent: 2 - - uid: 13112 + - uid: 14359 components: - type: Transform - pos: -23.5,1.5 + rot: 1.5707963267948966 rad + pos: 88.5,28.5 parent: 2 - - uid: 13113 + - uid: 14366 components: - type: Transform - pos: -24.5,1.5 + pos: 94.5,29.5 parent: 2 - - uid: 13121 + - uid: 14480 components: - type: Transform - pos: -22.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,25.5 parent: 2 - - uid: 13143 + - uid: 14481 components: - type: Transform - pos: -25.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,26.5 parent: 2 - - uid: 13144 + - uid: 14482 components: - type: Transform - pos: -26.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,27.5 parent: 2 - - uid: 13145 + - uid: 14483 components: - type: Transform - pos: -27.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,28.5 parent: 2 - - uid: 13249 + - uid: 14484 components: - type: Transform - pos: -19.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,29.5 parent: 2 - - uid: 13250 + - uid: 14485 components: - type: Transform - pos: -20.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,30.5 parent: 2 - - uid: 13251 + - uid: 14486 components: - type: Transform - pos: -21.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,31.5 parent: 2 - - uid: 13252 + - uid: 14487 components: - type: Transform - pos: -22.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,32.5 parent: 2 - - uid: 13253 + - uid: 14488 components: - type: Transform - pos: -23.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,33.5 parent: 2 - - uid: 13254 + - uid: 14489 components: - type: Transform - pos: -24.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,34.5 parent: 2 - - uid: 13255 + - uid: 14490 components: - type: Transform - pos: -25.5,14.5 + rot: 3.141592653589793 rad + pos: 96.5,34.5 parent: 2 - - uid: 13256 + - uid: 14491 components: - type: Transform - pos: -26.5,14.5 + rot: 3.141592653589793 rad + pos: 95.5,34.5 parent: 2 - - uid: 13257 + - uid: 14492 components: - type: Transform - pos: -27.5,14.5 + rot: 3.141592653589793 rad + pos: 93.5,35.5 parent: 2 - - uid: 13277 + - uid: 14493 components: - type: Transform - pos: -16.5,-22.5 + rot: 3.141592653589793 rad + pos: 94.5,35.5 parent: 2 - - uid: 13278 + - uid: 14494 components: - type: Transform - pos: -17.5,-22.5 + rot: 3.141592653589793 rad + pos: 95.5,35.5 parent: 2 - - uid: 13279 + - uid: 14495 components: - type: Transform - pos: -18.5,-22.5 + rot: 3.141592653589793 rad + pos: 96.5,35.5 parent: 2 - - uid: 13280 + - uid: 14496 components: - type: Transform - pos: -19.5,-22.5 + rot: 3.141592653589793 rad + pos: 97.5,35.5 parent: 2 - - uid: 13281 + - uid: 14497 components: - type: Transform - pos: -20.5,-22.5 + rot: 3.141592653589793 rad + pos: 98.5,34.5 parent: 2 - - uid: 13282 + - uid: 14498 components: - type: Transform - pos: -21.5,-22.5 + rot: 3.141592653589793 rad + pos: 98.5,33.5 parent: 2 - - uid: 13283 + - uid: 14499 components: - type: Transform - pos: -22.5,-22.5 + rot: 3.141592653589793 rad + pos: 98.5,32.5 parent: 2 - - uid: 13284 + - uid: 14500 components: - type: Transform - pos: -15.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,31.5 parent: 2 - - uid: 13285 + - uid: 14501 components: - type: Transform - pos: -14.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,30.5 parent: 2 - - uid: 13286 + - uid: 14502 components: - type: Transform - pos: -13.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,29.5 parent: 2 - - uid: 13287 + - uid: 14503 components: - type: Transform - pos: -12.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,28.5 parent: 2 - - uid: 13288 + - uid: 14504 components: - type: Transform - pos: -11.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,27.5 parent: 2 - - uid: 13289 + - uid: 14505 components: - type: Transform - pos: -10.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,26.5 parent: 2 - - uid: 13290 + - uid: 14507 components: - type: Transform - pos: -9.5,-21.5 + pos: 99.5,27.5 parent: 2 - - uid: 13291 + - uid: 14509 components: - type: Transform - pos: -23.5,-21.5 + pos: 99.5,29.5 parent: 2 - - uid: 13292 + - uid: 14510 components: - type: Transform - pos: -29.5,-16.5 + pos: 99.5,30.5 parent: 2 - - uid: 13293 + - uid: 14511 components: - type: Transform - pos: -29.5,-15.5 + rot: -1.5707963267948966 rad + pos: 99.5,31.5 parent: 2 - - uid: 13294 + - uid: 14513 components: - type: Transform - pos: -29.5,-14.5 + pos: 99.5,33.5 parent: 2 - - uid: 13295 + - uid: 14519 components: - type: Transform - pos: -29.5,-13.5 + pos: 94.5,31.5 parent: 2 - - uid: 13296 + - uid: 14745 components: - type: Transform - pos: -29.5,-12.5 + rot: 3.141592653589793 rad + pos: 68.5,-12.5 parent: 2 - - uid: 13297 + - uid: 14746 components: - type: Transform - pos: -29.5,-11.5 + rot: 3.141592653589793 rad + pos: 68.5,-13.5 parent: 2 - - uid: 13298 + - uid: 14748 components: - type: Transform - pos: -29.5,-10.5 + rot: 3.141592653589793 rad + pos: 68.5,-14.5 parent: 2 - - uid: 13299 + - uid: 14773 components: - type: Transform - pos: -24.5,-21.5 + rot: 3.141592653589793 rad + pos: 68.5,-10.5 parent: 2 - - uid: 13300 + - uid: 14774 components: - type: Transform - pos: -25.5,-21.5 + rot: 3.141592653589793 rad + pos: 68.5,-11.5 parent: 2 - - uid: 13301 + - uid: 14776 components: - type: Transform - pos: -26.5,-21.5 + pos: 4.5,41.5 parent: 2 - - uid: 13302 + - uid: 14809 components: - type: Transform - pos: -27.5,-21.5 + pos: 92.5,24.5 parent: 2 - - uid: 13304 + - uid: 14810 components: - type: Transform - pos: -27.5,-9.5 + pos: 93.5,24.5 parent: 2 - - uid: 13305 + - uid: 14811 components: - type: Transform - pos: -27.5,-8.5 + pos: 94.5,24.5 parent: 2 - - uid: 13306 + - uid: 14812 components: - type: Transform - pos: -27.5,-7.5 + pos: 95.5,24.5 parent: 2 - - uid: 13307 + - uid: 14813 components: - type: Transform - pos: -27.5,-6.5 + pos: 96.5,24.5 parent: 2 - - uid: 13308 + - uid: 14814 components: - type: Transform - pos: -27.5,-5.5 + pos: 92.5,36.5 parent: 2 - - uid: 13310 + - uid: 14815 components: - type: Transform - pos: -27.5,-3.5 + pos: 93.5,36.5 parent: 2 - - uid: 13311 + - uid: 14816 components: - type: Transform - pos: -27.5,-2.5 + pos: 94.5,36.5 parent: 2 - - uid: 13312 + - uid: 14817 components: - type: Transform - pos: -27.5,3.5 + pos: 95.5,36.5 parent: 2 - - uid: 13314 + - uid: 14818 components: - type: Transform - pos: -27.5,-0.5 + pos: 96.5,36.5 parent: 2 - - uid: 13444 + - uid: 14823 components: - type: Transform - pos: 51.5,-22.5 + pos: 50.5,38.5 parent: 2 - - uid: 13451 + - uid: 14828 components: - type: Transform - pos: 52.5,-22.5 + pos: 50.5,43.5 parent: 2 - - uid: 13454 + - uid: 14835 components: - type: Transform - pos: 52.5,-24.5 + pos: 52.5,44.5 parent: 2 - - uid: 13455 + - uid: 14837 components: - type: Transform - pos: 52.5,-25.5 + pos: 62.5,41.5 parent: 2 - - uid: 13456 + - uid: 14838 components: - type: Transform - pos: 52.5,-23.5 + pos: 62.5,31.5 parent: 2 - - uid: 13457 + - uid: 14848 components: - type: Transform - pos: 52.5,-26.5 + pos: 60.5,44.5 parent: 2 - - uid: 13458 + - uid: 14920 components: - type: Transform - pos: 52.5,-27.5 + rot: 1.5707963267948966 rad + pos: 3.5,36.5 parent: 2 - - uid: 13459 + - uid: 14921 components: - type: Transform - pos: 52.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,35.5 parent: 2 - - uid: 13460 + - uid: 14922 components: - type: Transform - pos: 52.5,-29.5 + rot: 1.5707963267948966 rad + pos: 3.5,34.5 parent: 2 - - uid: 13461 + - uid: 14925 components: - type: Transform - pos: 52.5,-30.5 + rot: 3.141592653589793 rad + pos: 51.5,-12.5 parent: 2 - - uid: 13462 + - uid: 14965 components: - type: Transform - pos: 52.5,-31.5 + pos: 7.5,40.5 parent: 2 - - uid: 13463 + - uid: 14968 components: - type: Transform - pos: 52.5,-32.5 + rot: -1.5707963267948966 rad + pos: 3.5,41.5 parent: 2 - - uid: 13464 + - uid: 14969 components: - type: Transform - pos: 52.5,-33.5 + pos: 8.5,39.5 parent: 2 - - uid: 13465 + - uid: 14973 components: - type: Transform - pos: 52.5,-34.5 + rot: -1.5707963267948966 rad + pos: 6.5,41.5 parent: 2 - - uid: 13487 + - uid: 15084 components: - type: Transform - pos: -27.5,5.5 + rot: -1.5707963267948966 rad + pos: 12.5,-54.5 parent: 2 - - uid: 13708 +- proto: WallReinforcedRust + entities: + - uid: 14967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-20.5 + rot: -1.5707963267948966 rad + pos: 7.5,41.5 parent: 2 - - uid: 13709 + - uid: 14971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 + rot: -1.5707963267948966 rad + pos: 3.5,40.5 parent: 2 - - uid: 13710 + - uid: 14975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-18.5 + rot: -1.5707963267948966 rad + pos: 8.5,38.5 parent: 2 - proto: WallSolid entities: + - uid: 51 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 - uid: 109 components: - type: Transform @@ -81279,11 +90507,6 @@ entities: - type: Transform pos: 69.5,-6.5 parent: 2 - - uid: 237 - components: - - type: Transform - pos: 7.5,14.5 - parent: 2 - uid: 238 components: - type: Transform @@ -81399,25 +90622,10 @@ entities: - type: Transform pos: 7.5,11.5 parent: 2 - - uid: 448 - components: - - type: Transform - pos: 8.5,14.5 - parent: 2 - - uid: 449 - components: - - type: Transform - pos: 9.5,14.5 - parent: 2 - - uid: 450 - components: - - type: Transform - pos: 10.5,14.5 - parent: 2 - - uid: 451 + - uid: 433 components: - type: Transform - pos: 11.5,14.5 + pos: 10.5,32.5 parent: 2 - uid: 452 components: @@ -81624,6 +90832,16 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 2 + - uid: 691 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 - uid: 696 components: - type: Transform @@ -81719,11 +90937,6 @@ entities: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 1041 - components: - - type: Transform - pos: 27.5,-37.5 - parent: 2 - uid: 1049 components: - type: Transform @@ -81734,36 +90947,6 @@ entities: - type: Transform pos: 13.5,16.5 parent: 2 - - uid: 1053 - components: - - type: Transform - pos: 10.5,18.5 - parent: 2 - - uid: 1054 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 1055 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 1056 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - - uid: 1057 - components: - - type: Transform - pos: 12.5,20.5 - parent: 2 - - uid: 1058 - components: - - type: Transform - pos: 11.5,20.5 - parent: 2 - uid: 1059 components: - type: Transform @@ -82204,20 +91387,10 @@ entities: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 1208 - components: - - type: Transform - pos: 28.5,-37.5 - parent: 2 - - uid: 1209 - components: - - type: Transform - pos: 29.5,-37.5 - parent: 2 - - uid: 1210 + - uid: 1211 components: - type: Transform - pos: 30.5,-37.5 + pos: 16.5,25.5 parent: 2 - uid: 1482 components: @@ -82554,11 +91727,6 @@ entities: - type: Transform pos: 50.5,-15.5 parent: 2 - - uid: 1957 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - uid: 1958 components: - type: Transform @@ -82649,50 +91817,60 @@ entities: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 2025 + - uid: 2018 components: - type: Transform - pos: 6.5,29.5 + pos: 14.5,32.5 parent: 2 - - uid: 2026 + - uid: 2034 components: - type: Transform - pos: 7.5,29.5 + pos: 14.5,27.5 parent: 2 - - uid: 2034 + - uid: 2047 components: - type: Transform - pos: 14.5,27.5 + pos: 15.5,26.5 parent: 2 - - uid: 2044 + - uid: 2048 components: - type: Transform - pos: 16.5,23.5 + pos: 16.5,26.5 parent: 2 - - uid: 2045 + - uid: 2049 components: - type: Transform - pos: 16.5,24.5 + pos: 14.5,26.5 parent: 2 - - uid: 2046 + - uid: 2076 components: - type: Transform - pos: 16.5,25.5 + pos: 11.5,32.5 parent: 2 - - uid: 2047 + - uid: 2082 components: - type: Transform - pos: 15.5,26.5 + pos: 14.5,31.5 parent: 2 - - uid: 2048 + - uid: 2083 components: - type: Transform - pos: 16.5,26.5 + pos: 14.5,30.5 parent: 2 - - uid: 2049 + - uid: 2084 components: - type: Transform - pos: 14.5,26.5 + pos: 10.5,31.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 10.5,29.5 parent: 2 - uid: 2093 components: @@ -82869,16 +92047,6 @@ entities: - type: Transform pos: 31.5,19.5 parent: 2 - - uid: 2360 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - uid: 2496 components: - type: Transform @@ -83049,21 +92217,6 @@ entities: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 2874 - components: - - type: Transform - pos: 68.5,-12.5 - parent: 2 - - uid: 2875 - components: - - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 2876 - components: - - type: Transform - pos: 68.5,-14.5 - parent: 2 - uid: 2877 components: - type: Transform @@ -83194,16 +92347,6 @@ entities: - type: Transform pos: 64.5,-11.5 parent: 2 - - uid: 2949 - components: - - type: Transform - pos: 68.5,-10.5 - parent: 2 - - uid: 2950 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - uid: 2958 components: - type: Transform @@ -83469,36 +92612,6 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 3203 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - - uid: 3204 - components: - - type: Transform - pos: 56.5,37.5 - parent: 2 - - uid: 3205 - components: - - type: Transform - pos: 57.5,37.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: 55.5,37.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 57.5,35.5 - parent: 2 - uid: 3356 components: - type: Transform @@ -83589,6 +92702,12 @@ entities: - type: Transform pos: 68.5,34.5 parent: 2 + - uid: 3461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 - uid: 3523 components: - type: Transform @@ -83974,16 +93093,6 @@ entities: - type: Transform pos: 72.5,-11.5 parent: 2 - - uid: 3821 - components: - - type: Transform - pos: 70.5,-14.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: 69.5,-14.5 - parent: 2 - uid: 3823 components: - type: Transform @@ -84075,51 +93184,6 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 2 - - uid: 4312 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 4313 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 4319 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 4321 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 2 - - uid: 4323 - components: - - type: Transform - pos: 27.5,-40.5 - parent: 2 - - uid: 4324 - components: - - type: Transform - pos: 27.5,-41.5 - parent: 2 - - uid: 4326 - components: - - type: Transform - pos: 27.5,-42.5 - parent: 2 - uid: 5057 components: - type: Transform @@ -84156,6 +93220,12 @@ entities: - type: Transform pos: 32.5,-11.5 parent: 2 + - uid: 5421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 - uid: 5441 components: - type: Transform @@ -84286,10 +93356,10 @@ entities: - type: Transform pos: 75.5,5.5 parent: 2 - - uid: 7896 + - uid: 8169 components: - type: Transform - pos: 10.5,15.5 + pos: 13.5,32.5 parent: 2 - uid: 8805 components: @@ -84406,6 +93476,39 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 + - uid: 13189 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-17.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-14.5 + parent: 2 - proto: WallSolidRust entities: - uid: 7884 @@ -84539,29 +93642,27 @@ entities: - 0 - 0 - 0 -- proto: WardrobePrison +- proto: WardrobePrisonFilled entities: - - uid: 2308 + - uid: 8686 components: - type: Transform - pos: 41.5,33.5 + pos: 29.5,21.5 parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 2325 + - uid: 8687 components: - type: Transform - pos: 36.5,31.5 + pos: 29.5,17.5 parent: 2 - - uid: 8686 + - uid: 13591 components: - type: Transform - pos: 29.5,21.5 + pos: 58.5,31.5 parent: 2 - - uid: 8687 + - uid: 13592 components: - type: Transform - pos: 29.5,17.5 + pos: 58.5,41.5 parent: 2 - proto: WardrobeVirologyFilled entities: @@ -84656,11 +93757,6 @@ entities: parent: 2 - proto: WaterTankFull entities: - - uid: 201 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - uid: 606 components: - type: Transform @@ -84671,11 +93767,6 @@ entities: - type: Transform pos: 18.5,26.5 parent: 2 - - uid: 5532 - components: - - type: Transform - pos: 65.5,18.5 - parent: 2 - uid: 5715 components: - type: Transform @@ -84686,6 +93777,11 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 + - uid: 8830 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 - uid: 10790 components: - type: Transform @@ -84701,6 +93797,16 @@ entities: - type: Transform pos: 46.5,-19.5 parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 - proto: WaterTankHighCapacity entities: - uid: 4277 @@ -84722,20 +93828,15 @@ entities: parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 622 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - uid: 2050 components: - type: Transform pos: 34.5,41.5 parent: 2 - - uid: 5062 + - uid: 3235 components: - type: Transform - pos: 36.5,20.5 + pos: 36.5,26.5 parent: 2 - uid: 7979 components: @@ -84743,6 +93844,16 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 - uid: 11146 components: - type: Transform @@ -84779,17 +93890,22 @@ entities: parent: 2 - type: Physics canCollide: False + - uid: 14564 + components: + - type: Transform + pos: 90.5,28.5 + parent: 2 - proto: WeaponDisabler entities: - - uid: 10135 + - uid: 2287 components: - type: Transform - pos: 41.567085,22.308064 + pos: 36.50164,27.085938 parent: 2 - - uid: 10136 + - uid: 10139 components: - type: Transform - pos: 41.567085,22.558064 + pos: 36.48081,27.346535 parent: 2 - proto: WeaponSubMachineGunWt550 entities: @@ -84798,6 +93914,43 @@ entities: - type: Transform pos: 45.454727,23.618372 parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 14238 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 84.5,32.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: 92.5,33.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: 96.5,33.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 96.5,27.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: 92.5,27.5 + parent: 2 - proto: WeedSpray entities: - uid: 4061 @@ -84807,6 +93960,11 @@ entities: parent: 2 - proto: WelderIndustrial entities: + - uid: 7886 + components: + - type: Transform + pos: 16.569122,-42.41484 + parent: 2 - uid: 12300 components: - type: Transform @@ -84814,11 +93972,6 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 200 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - uid: 800 components: - type: Transform @@ -84829,6 +93982,11 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 - uid: 5391 components: - type: Transform @@ -84849,21 +94007,31 @@ entities: - type: Transform pos: 30.5,-17.5 parent: 2 - - uid: 10789 + - uid: 9899 components: - type: Transform - pos: 56.5,-17.5 + pos: 72.5,-7.5 parent: 2 - - uid: 10840 + - uid: 10789 components: - type: Transform - pos: 45.5,42.5 + pos: 56.5,-17.5 parent: 2 - uid: 12406 components: - type: Transform pos: 47.5,-19.5 parent: 2 + - uid: 13659 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 - proto: WetFloorSign entities: - uid: 12306 @@ -84902,12 +94070,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 - - uid: 2318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 - uid: 2528 components: - type: Transform @@ -84934,6 +94096,13 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-9.5 parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 7250 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 - proto: WindoorChapelLocked entities: - uid: 9730 @@ -84970,6 +94139,16 @@ entities: parent: 2 - proto: WindoorSecure entities: + - uid: 1318 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 - uid: 5266 components: - type: Transform @@ -84997,40 +94176,36 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,31.5 parent: 2 - - uid: 7942 + - uid: 8950 components: - type: Transform - pos: -19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 113.5,-19.5 parent: 2 - - uid: 7943 + - uid: 10121 components: - type: Transform - pos: -12.5,-12.5 + pos: 80.5,-2.5 parent: 2 - - uid: 8950 + - uid: 13596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 113.5,-19.5 + pos: 58.5,40.5 parent: 2 - - uid: 10121 + - uid: 13597 components: - type: Transform - pos: 80.5,-2.5 + rot: -1.5707963267948966 rad + pos: 58.5,32.5 parent: 2 - proto: WindoorSecureArmoryLocked entities: - - uid: 7679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 - parent: 2 - - uid: 7752 + - uid: 13091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,21.5 + rot: -1.5707963267948966 rad + pos: 36.5,18.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: @@ -85048,23 +94223,12 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 4556 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - uid: 10119 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,22.5 parent: 2 - - uid: 12840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,20.5 - parent: 2 - proto: WindoorSecureChemistryLocked entities: - uid: 5139 @@ -85097,40 +94261,49 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 - - uid: 13599 + - uid: 14210 components: - type: Transform - pos: 56.5,34.5 + rot: 3.141592653589793 rad + pos: 85.5,31.5 parent: 2 - - uid: 13600 + - uid: 14273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,36.5 + pos: 84.5,29.5 parent: 2 - - uid: 13601 + - uid: 14274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,36.5 + pos: 85.5,29.5 parent: 2 - - uid: 13654 + - uid: 14275 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 14362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,30.5 + pos: 90.5,30.5 parent: 2 - - uid: 13655 + - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,31.5 + pos: 95.5,30.5 parent: 2 - - uid: 13761 + - uid: 14651 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 14658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,29.5 + pos: 72.5,20.5 parent: 2 - proto: WindoorSecureEngineeringLocked entities: @@ -85173,6 +94346,32 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 2 + - uid: 12159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,1.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,1.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 14738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 3513 @@ -85223,24 +94422,12 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,25.5 parent: 2 - - uid: 2428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - uid: 2429 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,25.5 parent: 2 - - uid: 2471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - uid: 7738 components: - type: Transform @@ -85258,6 +94445,12 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 - proto: Window entities: - uid: 142 @@ -85331,16 +94524,6 @@ entities: - type: Transform pos: 28.5,-17.5 parent: 2 - - uid: 2086 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 2090 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - uid: 2184 components: - type: Transform @@ -85421,10 +94604,15 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 5004 + - uid: 4321 components: - type: Transform - pos: 43.5,1.5 + pos: 7.5,29.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 6.5,29.5 parent: 2 - uid: 5005 components: @@ -85451,11 +94639,28 @@ entities: - type: Transform pos: 58.5,-3.5 parent: 2 + - uid: 7238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 - uid: 9064 components: - type: Transform pos: 67.5,-18.5 parent: 2 + - uid: 9243 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 - uid: 10802 components: - type: Transform @@ -85504,18 +94709,6 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 6791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - uid: 7776 components: - type: Transform @@ -85550,26 +94743,6 @@ entities: - type: Transform pos: 58.5,12.5 parent: 2 - - uid: 10844 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 10845 - components: - - type: Transform - pos: 46.5,32.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 40.5,35.5 - parent: 2 - - uid: 12373 - components: - - type: Transform - pos: 41.5,35.5 - parent: 2 - uid: 12999 components: - type: Transform @@ -85657,24 +94830,6 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 77 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - uid: 78 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 2 - - uid: 81 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 2 - uid: 135 components: - type: Transform @@ -85687,12 +94842,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 2 - - uid: 358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 2 - uid: 673 components: - type: Transform @@ -85744,12 +94893,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 - - uid: 2463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,19.5 - parent: 2 - uid: 2733 components: - type: Transform @@ -85768,244 +94911,103 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-30.5 parent: 2 - - uid: 4346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,34.5 - parent: 2 - - uid: 4347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,35.5 - parent: 2 - - uid: 4348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,36.5 - parent: 2 - - uid: 4349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,38.5 - parent: 2 - - uid: 4351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,39.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,40.5 - parent: 2 - - uid: 4361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,39.5 - parent: 2 - - uid: 4362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,40.5 - parent: 2 - - uid: 4363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,40.5 - parent: 2 - - uid: 4364 + - uid: 4555 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,41.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,41.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,41.5 - parent: 2 - - uid: 4367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,41.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 - parent: 2 - - uid: 4397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,41.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,41.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,41.5 - parent: 2 - - uid: 4400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,41.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,40.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,40.5 - parent: 2 - - uid: 4403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,40.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,39.5 + pos: 10.5,-38.5 parent: 2 - - uid: 4405 + - uid: 5034 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,36.5 + pos: 25.5,48.5 parent: 2 - - uid: 4406 + - uid: 5808 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,39.5 + pos: 2.5,-30.5 parent: 2 - - uid: 4408 + - uid: 5864 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,38.5 + pos: 2.5,-32.5 parent: 2 - - uid: 4409 + - uid: 5866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,37.5 + rot: 3.141592653589793 rad + pos: 22.5,-15.5 parent: 2 - - uid: 4410 + - uid: 5867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,35.5 + pos: 2.5,-31.5 parent: 2 - - uid: 4411 + - uid: 5868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,33.5 + rot: 3.141592653589793 rad + pos: 2.5,-29.5 parent: 2 - - uid: 4412 + - uid: 5869 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,32.5 - parent: 2 - - uid: 4413 - components: - - type: Transform - pos: 50.5,32.5 + pos: 2.5,-29.5 parent: 2 - - uid: 4414 + - uid: 6198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,34.5 + pos: 28.5,25.5 parent: 2 - - uid: 4555 + - uid: 6327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + pos: 31.5,28.5 parent: 2 - - uid: 5034 + - uid: 6328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,48.5 + rot: 1.5707963267948966 rad + pos: 31.5,30.5 parent: 2 - - uid: 5808 + - uid: 6329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 + pos: 31.5,25.5 parent: 2 - - uid: 5864 + - uid: 6330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 + rot: 1.5707963267948966 rad + pos: 31.5,26.5 parent: 2 - - uid: 5866 + - uid: 6331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 + pos: 29.5,25.5 parent: 2 - - uid: 5867 + - uid: 6332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-31.5 + pos: 30.5,25.5 parent: 2 - - uid: 5868 + - uid: 6832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-29.5 + rot: 1.5707963267948966 rad + pos: -5.5,0.5 parent: 2 - - uid: 5869 + - uid: 6884 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-29.5 - parent: 2 - - uid: 6832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + pos: -9.5,0.5 parent: 2 - uid: 7762 components: @@ -86197,55 +95199,93 @@ entities: rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,41.5 + parent: 2 - uid: 13595 components: - type: Transform - pos: 55.5,34.5 + rot: -1.5707963267948966 rad + pos: 58.5,31.5 parent: 2 - - uid: 13596 + - uid: 14199 components: - type: Transform - pos: 57.5,34.5 + rot: 1.5707963267948966 rad + pos: 77.5,29.5 parent: 2 - - uid: 13597 + - uid: 14200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,30.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,31.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,27.5 + parent: 2 + - uid: 14235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,34.5 + pos: 86.5,32.5 parent: 2 - - uid: 13598 + - uid: 14249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,34.5 + pos: 84.5,32.5 parent: 2 - - uid: 13627 + - uid: 14357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,33.5 + pos: 90.5,32.5 parent: 2 - - uid: 13628 + - uid: 14358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,32.5 + pos: 90.5,31.5 parent: 2 - - uid: 13629 + - uid: 14360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,37.5 + pos: 90.5,28.5 parent: 2 - - uid: 13630 + - uid: 14361 components: - type: Transform - pos: 62.5,32.5 + rot: 1.5707963267948966 rad + pos: 90.5,29.5 parent: 2 - - uid: 13652 + - uid: 14571 components: - type: Transform - pos: 52.5,30.5 + pos: 82.5,36.5 parent: 2 - proto: Wirecutter entities: diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 6f190e187b5..91370dfeeb3 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -283,6 +283,7 @@ id: LockerFillResearchDirectorNoHardsuit table: !type:AllSelector children: + - id: Intellicard - id: BoxEncryptionKeyScience - id: CircuitImprinterMachineCircuitboard - id: ClothingBeltUtilityFilled diff --git a/Resources/Prototypes/Corvax/Datasets/Names/corvax_syndie_smuggler.yml b/Resources/Prototypes/Corvax/Datasets/Names/corvax_syndie_smuggler.yml new file mode 100644 index 00000000000..8c26d71d106 --- /dev/null +++ b/Resources/Prototypes/Corvax/Datasets/Names/corvax_syndie_smuggler.yml @@ -0,0 +1,55 @@ +- type: dataset + id: corvax_names_syndie_smuggler + values: + - "'Альфонс'" + - "'Арестант'" + - "'Баобаб'" + - "'Бес'" + - "'Бибер'" + - "'Братик'" + - "'Вездессущий'" + - "'Вилка'" + - "'Водолазик'" + - "'Вульполюб'" + - "'Головастик'" + - "'Должник'" + - "'Еретик'" + - "'Каблук'" + - "'Квартет'" + - "'Кесадилья'" + - "'Кочерга'" + - "'Контролёр'" + - "'Кровоотсос'" + - "'Крот'" + - "'Курва'" + - "'Кучерявый'" + - "'Леон'" + - "'Лис'" + - "'Ложка'" + - "'Лосьон'" + - "'Мейнкун'" + - "'Меченый'" + - "'Никотин'" + - "'Нож'" + - "'Отец'" + - "'Пастырь'" + - "'Петля'" + - "'Питбуль'" + - "'Полторашка'" + - "'Призрак'" + - "'Прокурор'" + - "'Прометей'" + - "'Проводник'" + - "'Прохожий'" + - "'Псина'" + - "'Сержант'" + - "'Сисадмин'" + - "'Скат'" + - "'Слипволкер'" + - "'Смотритель'" + - "'Харон'" + - "'Чирик'" + - "'Цирюльник'" + - "'Шкаф'" + - "'Шкет'" + - "'Юморист'" \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Entities/Mobs/NPCs/human.yml b/Resources/Prototypes/Corvax/Entities/Mobs/NPCs/human.yml new file mode 100644 index 00000000000..7462d3ec747 --- /dev/null +++ b/Resources/Prototypes/Corvax/Entities/Mobs/NPCs/human.yml @@ -0,0 +1,31 @@ +- type: entity + name: syndicate smuggler + parent: BaseMobHuman + id: MobSyndicateSmuggler + components: + - type: NpcFactionMember + factions: + - Syndicate + - type: Loadout + prototypes: + - SyndicateSmugglerGear + - SyndicateSmugglerMedicGear + - SyndicateSmugglerSoldierGear + - SyndicateSmugglerMinerGear + - type: InputMover + - type: MobMover + - type: HTN + rootTask: + task: SimpleHumanoidHostileCompound + - type: RandomMetadata + nameSegments: + - fake_human_first + - corvax_names_syndie_smuggler + - names_last + - type: GhostTakeoverAvailable + - type: GhostRole + name: ghost-role-information-syndicate-smuggler-name + description: ghost-role-information-syndicate-smuggler-description + rules: ghost-role-information-freeagent-rules + raffle: + settings: default \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml index 550fc2c5bd5..d636cc5229c 100644 --- a/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml @@ -30,10 +30,18 @@ maxCount: 2 stationGrid: false paths: - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml + - /Maps/Ruins/corvax_accident.yml + - /Maps/Ruins/corvax_adventurer.yml + - /Maps/Ruins/corvax_aplink.yml + - /Maps/Ruins/corvax_battleship.yml + - /Maps/Ruins/corvax_gas_station.yml + - /Maps/Ruins/corvax_bss_unluck.yml + - /Maps/Ruins/corvax_hotel_trivago.yml + - /Maps/Ruins/corvax_kamikaze.yml + - /Maps/Ruins/corvax_ore.yml + - /Maps/Ruins/corvax_research_station.yml + - /Maps/Ruins/corvax_rnd_debris.yml + - /Maps/Ruins/corvax_sanctus.yml + - /Maps/Ruins/corvax_syndi_base.yml + - /Maps/Ruins/corvax_ussp_debris.yml + - /Maps/Ruins/corvax_ussp_asteroid.yml diff --git a/Resources/Prototypes/Corvax/Loadouts/Fun/misc_startinggear.yml b/Resources/Prototypes/Corvax/Loadouts/Fun/misc_startinggear.yml new file mode 100644 index 00000000000..18d6d68e7e2 --- /dev/null +++ b/Resources/Prototypes/Corvax/Loadouts/Fun/misc_startinggear.yml @@ -0,0 +1,65 @@ +- type: startingGear + id: SyndicateSmugglerBase + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + head: ClothingHeadHatUshanka + eyes: ClothingEyesGlassesCheapSunglasses + outerClothing: ClothingOuterWinterSyndie + gloves: ClothingHandsGlovesColorBlack + back: ClothingBackpackSalvage + shoes: ClothingShoesBootsWinterSyndicate + neck: ClothingNeckScarfStripedSyndieRed + id: SyndiPDA + belt: ClothingBeltMilitaryWebbing + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateSmugglerGear + parent: SyndicateSmugglerBase + inhand: + - CombatKnife + +- type: startingGear + id: SyndicateSmugglerMedicGear + parent: SyndicateSmugglerBase + equipment: + back: ClothingBackpackSatchelGenetics + neck: ClothingNeckScarfStripedSyndieGreen + belt: ClothingBeltMilitaryWebbingMed + eyes: ClothingEyesEyepatchHudMedical + pocket1: EmergencyMedipen + mask: ClothingMaskBandGrey + storage: + back: + - MedkitCombatFilled + inhand: + - Scalpel + +- type: startingGear + id: SyndicateSmugglerSoldierGear + parent: SyndicateSmugglerBase + equipment: + shoes: ClothingShoesBootsCombat + outerClothing: ClothingOuterWinterSyndieCapArmored + gloves: ClothingHandsGlovesCombat + mask: ClothingMaskNeckGaiter + pocket1: WeaponPistolViper + pocket2: MagazinePistol + eyes: ClothingEyesGlassesHiddenSecurity + inhand: + - CombatKnife + +- type: startingGear + id: SyndicateSmugglerMinerGear + parent: SyndicateSmugglerBase + equipment: + jumpsuit: ClothingUniformJumpsuitTacticool + head: ClothingHeadHatHardhatArmored + eyes: ClothingEyesGlassesThermal + belt: OreBag + back: ClothingBackpackSatchelSalvage + pocket1: MineralScanner + inhand: + - Pickaxe diff --git a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml index ed04da69a4a..be6e1c4ae27 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml @@ -11,5 +11,6 @@ - CorvaxTerra - CorvaxPearl - CorvaxTushkan + #- CorvaxGlacier - Box #- Train diff --git a/Resources/Prototypes/Corvax/Maps/Pools/default.yml b/Resources/Prototypes/Corvax/Maps/Pools/default.yml index 945eef68f04..72e517d3679 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/default.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/default.yml @@ -6,7 +6,7 @@ - CorvaxAvrite - CorvaxAstra - CorvaxPilgrim -# - CorvaxGlacier + #- CorvaxGlacier - Box # Midpop - CorvaxPaper diff --git a/Resources/Prototypes/Corvax/Maps/astra.yml b/Resources/Prototypes/Corvax/Maps/astra.yml index cb7668ec620..80092b81abb 100644 --- a/Resources/Prototypes/Corvax/Maps/astra.yml +++ b/Resources/Prototypes/Corvax/Maps/astra.yml @@ -74,21 +74,4 @@ #BKBPLAMED: [0, 3] # backmen-BPLAMED-Silicons - type: StationGoal goals: - - Singularity - - SolarPanels - - Artifacts - - Bank - - MiningOutpost - - Tesla - - SecurityTraining - - ShuttleMed - - ShuttleSec - - ShuttleRnd - - ShuttleSrv - - ShuttleEmergency - - Theatre - - CellAI - - Botany - - Bunker - - VirusologyAmbusol - - AstraRepair + - AstraRepair \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Maps/frame.yml b/Resources/Prototypes/Corvax/Maps/frame.yml index 24559023205..dfa6ae1847e 100644 --- a/Resources/Prototypes/Corvax/Maps/frame.yml +++ b/Resources/Prototypes/Corvax/Maps/frame.yml @@ -30,21 +30,6 @@ mining: !type:GridSpawnGroup paths: - /Maps/Shuttles/corvax_mining.yml - # Spawn last - ruins: !type:GridSpawnGroup - hide: true - nameGrid: true - minCount: 10 - maxCount: 10 - stationGrid: false - paths: - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml - type: StationJobs availableJobs: # cargo diff --git a/Resources/Prototypes/Corvax/Maps/split.yml b/Resources/Prototypes/Corvax/Maps/split.yml index cf52cbb8728..8956f3f507e 100644 --- a/Resources/Prototypes/Corvax/Maps/split.yml +++ b/Resources/Prototypes/Corvax/Maps/split.yml @@ -160,21 +160,6 @@ mining: !type:GridSpawnGroup paths: - /Maps/Shuttles/corvax_mining.yml - # Spawn last - ruins: !type:GridSpawnGroup - hide: true - nameGrid: true - minCount: 3 - maxCount: 3 - stationGrid: false - paths: - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml - type: StationCargoShuttle path: /Maps/Shuttles/cargo.yml - type: StationEmergencyShuttle diff --git a/Resources/Prototypes/Datasets/Names/last.yml b/Resources/Prototypes/Datasets/Names/last.yml index 154f7a005d1..f27506b4262 100644 --- a/Resources/Prototypes/Datasets/Names/last.yml +++ b/Resources/Prototypes/Datasets/Names/last.yml @@ -187,7 +187,6 @@ - Гувер - Хаузер - Хьюстон - - Howard - Говард - Хоу - Хьюи diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 27ea012c2ea..23390ec72cd 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -193,6 +193,9 @@ name: power-cell-slot-component-slot-name-default startingItem: PowerCellSmall disableEject: true + whitelist: + tags: + - PowerCell - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index 59fa1b0d1a6..8784ed77cec 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -222,3 +222,16 @@ state: metal_foam-north - map: [ "enum.EdgeLayer.West" ] state: metal_foam-west + +- type: entity + id: ReactionFlash + categories: [ HideSpawnMenu ] + components: + - type: PointLight + enabled: true + radius: 2 + energy: 8 + - type: LightFade + duration: 0.5 + - type: TimedDespawn + lifetime: 0.5 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index c5cf7b792c9..7dcb3b03ee2 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -12,6 +12,7 @@ - CanPilot - BypassInteractionRangeChecks - BypassDropChecks + - NoConsoleSound - type: Input context: "aghost" - type: Ghost diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index fd964344689..b016eb1107f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -71,6 +71,27 @@ title: comms-console-announcement-title-station-ai color: "#2ed2fd" +- type: entity + id: AiHeldIntellicard + description: Components added / removed from an entity that gets inserted into an Intellicard. + categories: [ HideSpawnMenu ] + components: + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + - Common + - type: ActionGrant + actions: + - ActionAIViewLaws + - type: UserInterface + interfaces: + enum.SiliconLawsUiKey.Key: + type: SiliconLawBoundUserInterface + # Ai - type: entity id: AiHolder @@ -81,7 +102,8 @@ - type: StationAiHolder slot: name: station-ai-mind-slot - locked: true + locked: false + disableEject: true whitelist: tags: - StationAi @@ -255,13 +277,16 @@ # Items - type: entity id: Intellicard - name: Intellicard + name: intellicard description: A storage device for AIs. parent: - BaseItem - AiHolder suffix: Empty components: + - type: ContainerComp + proto: AiHeldIntellicard + container: station_ai_mind_slot - type: Sprite sprite: Objects/Devices/ai_card.rsi layers: @@ -360,7 +385,6 @@ enum.SiliconLawsUiKey.Key: type: SiliconLawBoundUserInterface - type: ComplexInteraction - - type: DoorRemote - type: Actions - type: Access groups: @@ -373,6 +397,7 @@ tags: - HideContextMenu - StationAi + - NoConsoleSound - type: LanguageSpeaker #backmen: languages currentLanguage: TauCetiBasic - type: LanguageKnowledge diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml index 40cb141af78..ffccf07ab64 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml @@ -21,6 +21,10 @@ visible: false - type: MixableSolution solution: food + - type: Drink + solution: food + useSound: + path: /Audio/Items/drink.ogg - type: DamageOnLand damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 000f21db3f4..612f7da0472 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -525,6 +525,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: snake - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 0f74b4afaf9..3f2ac403ac9 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -386,6 +386,66 @@ - Syringe - Trash +- type: entity + name: mini syringe + parent: Syringe + description: A regular syringe, reshaped to fit inside of a gun. + id: MiniSyringe + components: + - type: Sprite + sprite: Objects/Specific/Chemistry/syringe.rsi + layers: + - state: minisyringe1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - state: syringeproj + - type: SolutionContainerVisuals + maxFillLevels: 3 + fillBaseName: minisyringe + inHandsMaxFillLevels: 3 + inHandsFillBaseName: -fill- + - type: EmbeddableProjectile + offset: "-0.1,0" + minimumSpeed: 3 + removalTime: 0.25 + embedOnThrow: false + - type: SolutionInjectWhileEmbedded + transferAmount: 1 + solution: injector + updateInterval: 2 + - type: SolutionInjectOnEmbed + transferAmount: 2 + solution: injector + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.3,0.1,0.3" + hard: false + mask: + - Impassable + - BulletImpassable + - type: Projectile + deleteOnCollide: false + onlyCollideWhenShot: true + damage: + types: + Piercing: 5 + - type: Tag + tags: + - Syringe + - Trash + - SyringeGunAmmo + - type: entity parent: BaseSyringe id: PrefilledSyringe diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml index 28157ef3450..8fe03f3c6e1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml index 43e6d385d62..cf32f2644db 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: mag10 - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -62,7 +62,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance 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 d5fb4360a82..bcd56c1d64a 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 @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance 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 018d812e3f5..6ccf0a1e2a2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -19,7 +19,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance 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 fbd20446906..e081d574d7a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 3 zeroVisible: false - type: Appearance 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 7a5f5d27ca6..98e063e297f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -19,7 +19,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -40,7 +40,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index 1d18c2b0500..63a7acd2576 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -103,6 +103,43 @@ containers: storagebase: !type:Container ents: [] + +- type: entity + name: syringe gun + parent: BaseStorageItem + id: LauncherSyringe + description: Load full of poisoned syringes for optimal fun. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Cannons/syringe_gun.rsi + layers: + - state: syringe_gun + - type: Storage + maxItemSize: Normal + grid: + - 0,0,2,0 + whitelist: + tags: + - SyringeGunAmmo + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/syringe_gun.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/empty.ogg + clumsyProof: true + - type: ContainerAmmoProvider + container: storagebase + - type: Item + size: Normal + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] # shoots bullets instead of throwing them, no other changes - type: entity diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 7bd3de66f0a..df2cad9f16d 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -61,15 +61,21 @@ maxCount: 2 stationGrid: false paths: - - /Maps/Ruins/chunked_tcomms.yml - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/empty_flagship.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml + - /Maps/Ruins/corvax_accident.yml + - /Maps/Ruins/corvax_adventurer.yml + - /Maps/Ruins/corvax_aplink.yml + - /Maps/Ruins/corvax_battleship.yml + - /Maps/Ruins/corvax_gas_station.yml + - /Maps/Ruins/corvax_bss_unluck.yml + - /Maps/Ruins/corvax_hotel_trivago.yml + - /Maps/Ruins/corvax_kamikaze.yml + - /Maps/Ruins/corvax_ore.yml + - /Maps/Ruins/corvax_research_station.yml + - /Maps/Ruins/corvax_rnd_debris.yml + - /Maps/Ruins/corvax_sanctus.yml + - /Maps/Ruins/corvax_syndi_base.yml + - /Maps/Ruins/corvax_ussp_debris.yml + - /Maps/Ruins/corvax_ussp_asteroid.yml vgroid: !type:DungeonSpawnGroup minimumDistance: 300 maximumDistance: 350 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index bbff3cb43ec..a4cb78e67b7 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -115,6 +115,7 @@ color: Red enabled: false castShadows: false + - type: NavMapDoor - type: entity id: Firelock diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index e961cf94d3c..d79348bfa61 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -62,6 +62,9 @@ volume: -1 variation: 0.10 pitch: 1.10 # low pitch keyboard sounds feel kinda weird + blacklist: + tags: + - NoConsoleSound - type: ContainerContainer containers: board: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index 08447f7db53..daf20fad3c6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -34,6 +34,7 @@ interfaces: enum.FaxUiKey.Key: type: FaxBoundUi + - type: StationAiWhitelist - type: ApcPowerReceiver powerLoad: 250 - type: Faxecute diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml index 71e171fc50d..5562715fdb2 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml @@ -113,6 +113,14 @@ - type: GasMiner spawnGas: Tritium +- type: entity + name: frezon gas miner + parent: GasMinerBase + id: GasMinerFrezon + components: + - type: GasMiner + spawnGas: Frezon + - type: entity name: water vapor gas miner parent: GasMinerBase diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 4b811636bae..e4a72468d4b 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -35,6 +35,7 @@ - id: RevenantSpawn - id: SleeperAgents - id: ZombieOutbreak + - id: LoneOpsSpawn - type: entity id: BaseStationEvent @@ -470,7 +471,7 @@ duration: 1 - type: RuleGrids - type: LoadMapRule - preloadedGrid: ShuttleStriker + mapPath: /Maps/Shuttles/ShuttleEvent/striker.yml - type: NukeopsRule roundEndBehavior: Nothing - type: AntagSelection diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index afbd552af3f..f3391333b53 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -20,7 +20,6 @@ - id: UnknownShuttleMeatZone - id: UnknownShuttleMicroshuttle - id: UnknownShuttleSpacebus - - id: UnknownShuttleInstigator - type: entityTable id: UnknownShuttlesFreelanceTable @@ -32,9 +31,9 @@ id: UnknownShuttlesHostileTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: - - id: LoneOpsSpawn + - id: UnknownShuttleInstigator -# Shuttle Game Rules +# Shuttle Game Rules - type: entity abstract: true diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index 8e73eb13955..3f2daa98c9d 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -321,6 +321,9 @@ - !type:GenericStatusEffect key: Muted component: Muted + type: Add + time: 10 + refresh: false - type: reagent id: NorepinephricAcid diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 56bb84c5c53..5d7af3f155b 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -81,7 +81,7 @@ amount: 1 Sulfur: amount: 1 - Oxygen: + Oxygen: amount: 2 products: SulfuricAcid: 3 @@ -205,6 +205,20 @@ energyConsumption: 12500 duration: 15 +- type: reaction + id: Flash + impact: High + priority: 20 + reactants: + Aluminium: + amount: 1 + Potassium: + amount: 1 + Sulfur: + amount: 1 + effects: + - !type:FlashReactionEffect + - type: reaction id: TableSalt minTemp: 370 @@ -501,3 +515,4 @@ amount: 1 products: Tazinide: 1 + diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 9bbd07848a8..2353099df56 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -768,6 +768,20 @@ products: NuclearCola: 5 +- type: reaction + id: NuclearColaBreakdown + source: true + requiredMixerCategories: + - Centrifuge + reactants: + NuclearCola: + amount: 10 # assuming we loose all o2 released as gas in the centrifugal process + products: + Ipecac: 2 + Water: 2 + Sugar: 2 + Uranium: 1 + - type: reaction id: Patron requiredMixerCategories: diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index a5269a73dae..1703e0c6980 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -1,8 +1,3 @@ -- type: preloadedGrid - id: ShuttleStriker - path: /Maps/Shuttles/ShuttleEvent/striker.yml - copies: 2 - - type: preloadedGrid id: ShuttleCargoLost path: /Maps/Shuttles/ShuttleEvent/lost_cargo.yml diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 24ee128712e..18f0a87ad68 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -993,6 +993,9 @@ - type: Tag id: NoBlockAnchoring +- type: Tag + id: NoConsoleSound + - type: Tag id: NozzleBackTank @@ -1303,6 +1306,9 @@ - type: Tag id: Syringe +- type: Tag + id: SyringeGunAmmo + - type: Tag id: Spellbook diff --git a/Resources/ServerInfo/Guidebook/Command.xml b/Resources/ServerInfo/Guidebook/Command.xml index 11696e42757..99b8e0656dc 100644 --- a/Resources/ServerInfo/Guidebook/Command.xml +++ b/Resources/ServerInfo/Guidebook/Command.xml @@ -1,55 +1,55 @@ -# Command -The heads of each department come together to form the [color=#1b67a5]Command[/color] department, a force to be reckoned with and the handlers of the station. They usually have access to special equipment and their own rooms. They are often wanted dead. +# Командование +Главы всех отделов объединяются в отдел [color=#1b67a5]Командования[/color] - сила, с которой нужно считаться, и руководители станции. Обычно они имеют доступ к специальной экипировке и своим собственным комнатам. Часто антагонистам требуется их убить. ## Personnel -[color=#1b67a5]Command[/color] is made up of the heads of each department, being the [color=#9fed58]Head of Personnel[/color], the [color=#cb0000]Head of Security[/color], the [color=#5b97bc]Chief Medical Officer[/color], the [color=#f39f27]Chief Engineer[/color], the [color=#c96dbf]Research Director[/color], the [color=#b18644]Quartermaster[/color] and above all else, the [color=#1b67a5]Captain[/color]. +[color=#1b67a5]Командование[/color] состоит из глав каждого отдела, то есть [color=#9fed58]Главы Персонала[/color], [color=#cb0000]Главы Службы Безопасности[/color], [color=#5b97bc]Главного Врача[/color], [color=#f39f27]Старшего Инженера[/color], [color=#c96dbf]Научного Руководителя[/color], [color=#b18644]Квартирмейстера[/color] и самого важного среди них, [color=#1b67a5]Капитана[/color]. - + - - - + + + - - - + + + -## Taking Charge -Congratulations on your promotion! Besides all the extra paperwork, your new [color=#a4885c]responsibilities[/color] include running your department, making changes and choosing priorities, keeping personnel and equipment safe as well as slacking off while your cronies do all the work. +## Ответственность +Поздравляем с вашим повышением! Помимо бумажной работы, ваши новые [color=#a4885c]обязанности[/color] включают в себя обеспечение работы отдела, проведение изменений и смены приоритетов, обеспечение безопасности персонала отдела и его экипировки, а также лежать на спинке кресла, пока ваши сотрудники работают. -Don't forget, you still have a job! Your fancy tools don't earn you a day off, you still have to fill in for any staffing shortages, helping out struggling workers and teaching the newbies. +Но не забывайте, у вас всё ещё есть работа! Ваши крутые инстументы не зарабатывают вам зарплату, вам всё ещё стоит восполнять нехватку кадров, помогать страдающим работникам и обучать новичков. -You might get away with just sitting around and letting people resent you, but it's wiser to get active and work alongside them. -Remember to move your workers around to have them do what they like doing or what they do best. +Возможно у вас получится просто отсиживаться и давать людям работать за вас, но всё же лучше быть активным и работать вместе с ними. +Помните менять обязанности ваших работников так, чтобы они делали то, что им нравится, либо у них хорошо получается. -## Your Locker +## Ваш шкафчик -To deal with your new soul-crushing tasks, every head is given special items to lead your subordinates. Most of your new shiny tools can be found in your [color=#a4885c]locker[/color]. +Чтобы справляться с вашими дробящими душу новыми задачами, у каждой главы есть специальные предметы, чтобы руководить своими подчиненными. Большинство блестящих инструментов вы сможете найти в своём [color=#a4885c]шкафчике[/color]. -Your [color=#a4885c]remote[/color] is very simple but profoundly underestimated. A small but mighty force, your remote can open and close [color=#a4885c]airlocks[/color], spin the [color=#a4885c]bolts[/color] to lock them, or toggle [color=#a4885c]emergency access[/color]. It can do this from a distance. +Ваш [color=#a4885c]пульт управления[/color] очень прост, хоть и обычно недооценён. Небольшая, но великая сила открывать и закрывать [color=#a4885c]шлюзы[/color], крутить [color=#a4885c]болты[/color] чтобы их закрыть, или переключить [color=#a4885c]аварийный доступ[/color]. Всё это можно делать с дистанции. -The remote influences where people move around. Heads can lock personnel out of dangerous areas or let people in to grab something really quickly. +Пульт управления влияет на то, где и как могут передвигаться люди. Главы могут закрыть персонал от опасных мест или быстро пустить кого-нибудь в отдел. -You also have access to your very own [color=#1b67a5]Command[/color] channel, like every other department. However, yours is particularly special as the people who can hear you have [color=#a4885c]entire departments[/color] at their fingertips. -Use this to communicate with other heads and be a representative of what your workers want or need. +Также у вас есть доступ к вашему собственному [color=#1b67a5]Командному[/color] каналу связи, как и любому другому. Однако ваш уникален тем, что все кого вы слышите в эту рацию контролируют [color=#a4885c]целые отделы[/color]. +Используйте это для общения с другими главами и представляйте желания и нужды своих работников. -The [color=#1b67a5]Captain[/color] and the [color=#9fed58]Head of Personnel[/color] get access to the lucrative [color=#a4885c]master encryption key[/color], letting them tune into every radio channel on the station. This is extremly valuable, as you can coordinate between departments yourself. -[color=#a4885c]Don't waste this vital advantage![/color] +[color=#1b67a5]Капитан[/color] и [color=#9fed58]Глава Персонала[/color] имеют доступ к особенному [color=#a4885c]универсальному ключу шифрования[/color], который даёт им доступ ко всем рациям на станции. Это позволяет вам координировать отделы между собой самостоятельно. +[color=#a4885c]Не упускайте это важное преимущество![/color] -To make the swamp of paperwork (that will definitely overwhelm you) even harder to deal with, you have generously been given a [color=#a4885c]stamp[/color] in your locker. Use this to sign paperwork. After you stamp it, it can't be edited. Look it over first. +Чтобы сделать болото бумажной работы (которое явно вас превзойдёт) ещё более тяжким для преодоления, у вас есть своя собственная [color=#a4885c]печать[/color] в шкафчике. Используйте её для подписания бумаг. После того как вы поставите печать, текст на бумаге уже нельзя изменить. Сначала читайте текст. diff --git a/Resources/ServerInfo/Guidebook/Glossary.xml b/Resources/ServerInfo/Guidebook/Glossary.xml index 835f9647408..687927bceba 100644 --- a/Resources/ServerInfo/Guidebook/Glossary.xml +++ b/Resources/ServerInfo/Guidebook/Glossary.xml @@ -1,191 +1,155 @@ -# Glossary +# Словарь -This page contains most slang terms you might encounter on the station and throughout the community ! +Эта страница содержит большинство сленговых терминов которые вы можете встретить на станции и в сообществе! -# In-Character Slang +# Сленг в роли персонажа (In Character - IC) -These are terms you might encounter in-game. +Эти термины вы можете встретить на станции во время игры. -## AOS -Arrest on sight. +## Аварийный доступ +Шлюз, который может быть открыт кем угодно, не требуя доступа или даже ID карты. Шлюзы с аварийным доступом имеют мигающий желтый свет внизу. -## AA -All Access, or an ID which has every access on the station. The captain is the only person who will have this kind of access under normal circumstances. +## Атмос +Сокращение для Атмосферного отсека или же атмосферного техника в зависимости от контекста. -## 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. +## Бог(и) +IC термин для описания администратора. В том же значении может быть использован и ЦентКом. -## Bolted -An airlock that will never change states. It will stay permanently open or permanently closed until it is unbolted. Closed and bolted airlocks have solid red lights. +## Борг +Сокращение для киборгов - роботов, которые контролируются игроками. -## Borg -Short for cyborgs, player-controlled robots. +## Безмозглый/Без души/Катоник +Относится к игроку, который либо покинул тело персонажа и более не может вернуться, либо отключился от игры. Обычно тело такого игрока при осмотре говорит "Кататонический ступор" или "Душа покинула тело и пропала". -## 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 independence. Against the rules. +## ГП +Сокращение для Главы Персонала, главы сервисного отдела. Также может относиться к самому офису ГП, где можно сменить свою должность. -## CE -Short for Chief Engineer, the head of the Engineering Department. +## ГСБ +Сокращение для Главы Службы Безопасности. -## CentComm/Central Command -An administrative agency which oversees the Nanotrasen space station you inhabit. +## Емаг +Отсылает к криптографическому секвенсеру синдиката. "Емагнутый" обычно относится к шлюзам или шкафам которые заболтированы в открытом положении, но также может относится и к другим устройствам, взломанные при помощи Емага. -## 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. +## Изоли +Сокращение для изолированных перчаток. Это жёлтые перчатки, которые носят большинство инженеров. Они имеют полную защиту от электрического тока. Всегда безопасны в отличии от их дешёвого аналога. -## Emag - Refers to the Syndicate cryptographic sequencer. "Emagged" usually refers to airlocks or lockers that are bolted open, but also any other device hacked into by an Emag. +## Кеп +Сокращение для капитана. -## Emergency Access/EA - An airlock that can be opened by anyone, even without access or an ID at all. Airlocks that are set to emergency access have blinking yellow lights. +## Каргония +Отсылается на отдел снабжения, объявляющий независимость. Нарушает правила. -## ERT -An Emergency Response Team. These may be dispatched by Central Command for a number of purposes. +## КМ +Сокращение для Квартирмейстера, главы отдела снабжения. -## 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". +## Крит +Относит к состоянию здоровья, когда вы падаете без сознания и не можете дышать или двигаться. В критическом состоянии ваше здоровье постепенно падает пока вы не умрёте, однако это можно предотвратить с внешней помощью. -## God(s) -An IC term representing a Server Administrator. CentComm is also sometimes used in this manner. +## Ксеноархеология +Изучение артефактов учёными в научном отделе. -## 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. +## Нюкер +Сленговое сокращение для Ядерного Оперативника. Аналогично могут использоваться сокращения опер, нюк, опс. -## HoP -Short for Head of Personnel, head of the Service Department. Can also refer to the HoP's office, where IDs are given or changed. +## Нанотрейзен/НТ +Нанотрейзен - это компания, которая владеет станцией на которой вы работаете. -## HoS -Short for Head of Security, head of the Security Department. +## НР +Сокращение для Научного Руководителя, главы научного отдела. -## 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. +## ОБР +Отряд Быстрого Реагирования. Они могут быть вызваны Центральным Командованием по определённым причинам. -## Jani -Short for Janitor. +## Робаст +Слово для описания кого-либо кто хорош в борьбе. Прилагательное "Робастный" также может означать синоним слову "крутой". -## KOS -Kill on sight. Someone has commited such a serious crime that they are deemed not even worth arresting. +## РнД / НИО +Альтернативный термин для описания Научного отдела. -## Mats -Materials. Usually steel, plastic, plasteel, glass, silver and gold. +## Разгерметизация +Событие которое вызвало низкое давление или его отсутсвие в некоторой области. -## Nanotrasen/NT -Nanotrasen is the company which owns the space station you inhabit. +## СБ +Сокращение для Службы Безопасности. -## Newkie -A portmanteau of "New" and "Nukie" used to refer to an inexperienced player in the role of a Nuclear Operative. +## СИ +Сокращение для Старшего Инженера, главы инженерного отдела. -## Nukie -A slang/shorthand term of a Nuclear Operative. May sometimes also appear as "Nuke Op". +## Смена +IC путь чтобы описать раунды. + +## Синга +Сокращение для Сингулярности. Синга может создавать бесконечное питание для станции, однако при её побеге из зоны содержания она вызовет массовые разрушения. -## 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, separate area of security for the permanent brig. +## ССД / КРС +Космическое расстройство сна. Это ролевой путь для описания игрока, который покинул игру и больше не отвечает. -## QM -Short for Quartermaster, the head of the Cargo department. +## Синди/Синдикат +Термин для описания всех кто работает на Синдикат. Это варьируется от (подозреваемых) Агентов Синдиката до Ядерных Оперативников. -## RD -Short for Research Director, the head of the Science Department. +## ТК +Телекристалл - валюта, которая используется Синдикатом для покупки контрабанды и нелегального снаряжения на чёрном рынке. -## Robust -A word used to describe someone who is particularly adept in combat, or endured through a tough fight. +## Утиль +Сокращение для утилизатора. -## Salv -Short for Salvage tech. +## Хрюкер +Комбинация звука "Хрю" и слова "Нюкер" которая используется для описания Ядерных Оперативников, которые постоянно проваливают свою задачу. Также могут называться "Ядерными Срочниками" -## Sci -Short for Science. +## Перма +Сокращение для Перманентного брига. Заключенные в такой камере осуждены за крайне серьёзное преступление и никогда не выйдут на свободу. Большинство станций имеет отдельную область для перманентного брига. -## Sec -Short for Security. +## ЦентКом/Центральное Командование +Административное агенство, которое следит за космической станцией Нанотрейзен на которой вы работаете. -## Secoff -Short for Security Officer. +# Сленг НЕ в роли персонажа (Out Of Character - OOC) -## Shift -In-Character way to refer to rounds. +Эти термины используются только в OOC/LOOC чате или вне игры. -## 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. +## Антаг +Сокращение для Антагонистов - отобранных игроков, которые должны наводить хаос на станции. -## Spacing -An event which causes an area to lose air pressure, i.e. a hull breach. +## Апстрим +Базовая версия игры, все изменения с которой отправляются на остальные сборки игры. Обычно для этого требуется некоторое время. -## Spess -An intentional mis-spelling of "Space", sometimes used as a portmanteau of "space" and "mess". May also appear in words such as "Spessmen". - -## 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. - -## 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. - -## Xenoarchaeology -Study of artifacts, usually performed by science. - -# 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. - -## Ick Ock -A phrase usually shouted in OOC when somebody reveals IC current round information, or "in-character, out-of-character". +Звук, который производится во время получения сообщения от администратора. Молитесь чтобы это не было баном. ## LOOC/OOC -Local out-of-character and (global) out-of-character respectively. They are text channels that allow players to talk to other players outside of roleplay. LOOC is enabled during rounds, while OOC is typically only on after the round ends. - -## 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. +Локальный и глобальный чат-вне-отыгрыша соответственно. Это текстовые каналы, в которых игроки могут общаться между собой вне своей роли. В то время как LOOC включён во время раундов, OOC обычно доступен только в лобби. -## 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. +## LRP (Low RolePlay) +Низкий уровень ролевого отыгрыша. Сервера с таким тегом обычно имеют более щадящие правила касательно отыгрыша. -## 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. +## MRP (Medium RolePlay) +Средний уровень ролевого отыгрыша. Сервера с таким тегом обычно имеют правила для отыгрыша, которые заставляют игроков дейстовать так, как бы реалистично поступил их персонаж в данной ситуации. Предоставляется меньше свободы действий в качестве, например, требования соблюдать таблицу навыков. -## 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. +## HRP (Hard RolePlay) +Высокий уровень ролевого отыгрыша. Сервера с таким тегом обычно имеют расширенные правила отыгрыша насчёт того, как стоит и не стоит отыгрывать персонажа. Вы должны действовать как бы действовал ваш персонаж, а также иметь для него предысторию. -## Validhunter -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/Jobs.xml b/Resources/ServerInfo/Guidebook/Jobs.xml index dfd3d62992d..58dda5eabdd 100644 --- a/Resources/ServerInfo/Guidebook/Jobs.xml +++ b/Resources/ServerInfo/Guidebook/Jobs.xml @@ -24,7 +24,7 @@ As a result of this, and the need to walk a fine line, security sometimes is ove Medical is one of the more well-equipped departments, with the ability to locate injured crew using the crew monitor, a nigh infinite supply of chems should chemistry be on-par, and the ability to rapidly diagnose and vaccinate contagious diseases. ## Научный отдел -Science consists of research assistants, scientists, and the research director. As a department it is responsible for researching technologies and artifacts, upgrading machines, and printing new and useful devices. +В научный отдел входят научные ассистенты, учёные и научный руководитель (НР). Этот отдел отвечает за изучение технологий и артефактов, улучшение машин, а также производство полезных для станции устройств. Scientists should seek out new artifacts to study, as well as solicit departments to help upgrade their machines. diff --git a/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml b/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml index 39ee8ae3ff4..529b1e4713c 100644 --- a/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml +++ b/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Radio.xml @@ -1,64 +1,64 @@ -# Speech and Text Channels -Talking is a key part of Space Station 14. You can press [keybind="FocusChatInputWindow"/] to jump to the text box. +# Общение и текстовые каналы +Общение это ключевая часть Космической Станции 14. Вы можете нажать [keybind="FocusChatInputWindow"/] чтобы активировать поле ввода для чата. -The word next to the text box is the [color=#a4885c]text channel[/color] you're about to send the message to, or rather how you're about to say what you've typed. +Слово перед полем ввода отображает текущий [color=#a4885c]текстовый канал[/color], или же как вы скажете то, что написали. -Local is normal speech at normal volume. +"Рядом" это обычный разговор на нормальной громкости. -Whisper can only be heard when nearby somebody. You automatically whisper into your radio to send messages over it. +"Шёпот" могут слышать только люди, которые находятся близко к вам. Вы можете шептать в свою гарнитуру и автоматически отправлять по ней сообщения. -Emotes are gestures that you make. Can be recieved by anyone who is not blinded. You will often see mimes do many emotes. +"Эмоции" это жесты которые вы показываете. Их могут видеть все, у кого есть зрение. Вы часто увидите, как мимы исполняют множество эмоций. -Whisper messages can be sent by starting your message with [color=#a4885c][keybind="FocusWhisperChatWindow"/][/color] and Emotes can be sent by starting your message with ([color=#a4885c]@[/color]). -You can also cycle through all of these text channels by pressing [keybind="CycleChatChannelForward"/]. +Сообщения шёпотом могут быть отправлены при написании ([color=#a4885c][keybind="FocusWhisperChatWindow"/][/color]) перед текстом, а Эмоции могут быть отправлены если вы начнёте своё сообщение с символа ([color=#a4885c]%[/color]). +Вы также можете переключаться между каналами общения нажимая [keybind="CycleChatChannelForward"/]. -People may not be able to make out all of what you're saying if you're standing too far away from them. This is especially important if you're whispering. +Люди вокруг вас могут не услышать то что вы говорите, если вы слишком далеко от них. Это особенно важно если вы говорите шёпотом. -## Radio +## Радиосвязь -Your radio allows you to communicate across the entire station and to your specific [color=#a4885c]department[/color]. +Ваша гарнитура позволяет вам общаться со всей станцией и с вашим конкретным [color=#a4885c]отделом[/color]. -To send a [color=#a4885c]station-wide[/color] message over the radio preface, use the [color=#32cd32]Common[/color] channel by beginning your text with [color=#32cd32]semi-colon (;)[/color]. -People standing right next to you might catch bits of your radio message, even if they don't have the access to the relevant radio channel. Watch for eavesdroppers. +Чтобы отправить сообщение [color=#a4885c]на всю станцию[/color] через радио, используйте [color=#32cd32]Общий[/color] канал начиная своё сообщение с [color=#32cd32]точки с запятой (;)[/color]. +Люди рядом с вами могут услышать части вашего радиосообщения, даже если у них нет доступа к данному радио каналу. Следите за прослушкой. -## Departmental Radio +## Радиосвязь отделов -You are able to send messages over your departmental radio channels using [color=#32cd32]colon (:)[/color] followed by the department letter as long as you're wearing a headset with your department's encryption key. +Вы также можете отправить сообщение по каналу своего отдела написав [color=#32cd32]двоеточие (:)[/color] вместе с буквой вашего отдела, пока на вас есть гарнитура с ключом шифрования нужного отдела. -Examine your headset to see the department channels available to you. +Осмотрите свою гарнитуру чтобы понять, какие каналы ей доступны. -Examining an unmodified engineering headset would show you the prefixes for the [color=#32cd32]Common[/color] and [color=#f37746]Engineering[/color] channels. +Осмотр неизменённой гарнитуры инженерного отдела покажет наличие доступа к [color=#32cd32]Общему[/color] и [color=#f37746]Инженерному[/color] каналу. -It is also possible to use [color=#a4885c]:h[/color]. This hotkey will automatically default to your department radio channel. -For example, if you're a Station Engineer then [color=#a4885c]:h[/color] will default to [color=#f37746]:e[/color]. +Вы также можете использовать [color=#a4885c]:р[/color]. Эта горячая клавиша автоматически отправит сообщение в стандартный канал вашей гарнитуры. +Например, если вы инженер [color=#a4885c]:р[/color] перед сообщением отправится в инженерный канал, как [color=#f37746]:и[/color]. -## Encryption Keys -[color=#a4885c]Encryption keys[/color] give you access to their respective channel. +## Ключи шифрования +[color=#a4885c]Ключи шифрования[/color] дают вам доступ к определённым каналам. -Examining our engineering headset from earlier shows us [color=#32cd32]Common[/color] and [color=#f37746]Engineering[/color] because an engineer's headset starts with those [color=#a4885c]encryption keys[/color]. +Осмотр ранее известной нам инженерной гарнитуры покажет нам наличие [color=#32cd32]Общего[/color] и [color=#f37746]Инженерного[/color] канала, потому что гарнитура инженера с самого начала имеет эти [color=#a4885c]ключи шифрования[/color]. -You can take out encryption keys by using a [color=#a4885c]screwdriver[/color] on a headset. New encryption keys are put into headsets by clicking on one with an encryption key in your hand. +Вы можете извлечь ключи шифрования используя [color=#a4885c]отвёртку[/color] на гарнитуре. Новые ключи шифрования вставляются в гарнитуры, если нажать на одну из них с ключом шифрования в руке. -All command members have extras of their relevant encryption key, but you can also request one at the HoP's office when you're getting your job changed. +Все члены командования имеют ключи шифрования своего отдела в шкафчике, но вы также можете попросить их в офисе ГП когда вы меняете свою работу. -## OOC Channels -OOC (out-of-character) channels exist outside of the game world. They are LOOC, OOC and Dead chat. +## OOC каналы +OOC (чаты вне-персонажа (от англ. out of character)) существуют за пределами игрового мира. Это LOOC, OOC и чат Мёртвых. -LOOC is on during the rounds, OOC is typically off until the round ends and you can only see and talk in Dead chat when you are, well, dead. +LOOC включён во время раундов, OOC обычно отключен до завершения раунда, а доступ к чату мёртвых открывается пока вы мертвы. -Do not discuss the current round in the Discord or in OOC if it's on during the round. +Не обсуждайте действующий раунд в Дискорде или в OOC, если он включен во время раунда. diff --git a/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml b/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml index 18c3d9f7dab..0f67c84886c 100644 --- a/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml +++ b/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml @@ -34,8 +34,8 @@ Space Station 14 это многопользовательская игра о Присоединяйтесь к десяткам других игроков на искусно спроектированной и смоделированной космической станции, погружаясь в ролевую игру и справляясь с угрозами на своем пути. -SS14 - это [italic]игра с открытым исходным кодом[/italic], разработанная такими же людьми,[bold]как и вы![/bold]. -Она получает [color=lime]ежедневные обновления[/color] и временами может быть [color=#EB2D3A][bold]нестабильной.[/bold][/color]. +SS14 - это [italic]игра с открытым исходным кодом[/italic], разработанная такими же людьми, [bold]как и вы![/bold] +Она получает [color=lime]ежедневные обновления[/color] и временами может быть [color=#EB2D3A][bold]нестабильной.[/bold][/color] [italic]Если вы хотите сообщать об ошибках или помогать в разработке, присоединяйтесь к discord и узнайте, с чего начать.[/italic] diff --git a/Resources/ServerInfo/Guidebook/References.xml b/Resources/ServerInfo/Guidebook/References.xml index 1994b463b34..28b68f2e743 100644 --- a/Resources/ServerInfo/Guidebook/References.xml +++ b/Resources/ServerInfo/Guidebook/References.xml @@ -1,4 +1,4 @@ - # Reference Tables - This entry is made to contain information that you might have to come back to over and over again. Use as necessary. + # Таблицы и референсы + Этот раздел содержит информацию, которая пригодится вам многократно. Используйте по необходимости. diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png index e2415d48d46..e022d266f31 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png index ed64010e818..135f2f90cc2 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png index 1bb0b35282b..8d6c8b3d706 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png index a0a36dc72a0..b7a21c5b72a 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json index 187e5b7e684..c461ca03667 100644 --- a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by DieselMohawk for use in ss14", + "copyright": "Sprites made by @prazat911", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png index fec358aa493..7613d09e48f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-reptilian.png new file mode 100644 index 00000000000..c487c8b9019 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png index 59fdc6a720d..a8d24ba9970 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png index 6da72364d9b..eea6e0f5b67 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png index 4899fb66e38..ebc27a1b7a6 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png index 7a4841f09b6..ed6e317ba17 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json index ffbdd2c8dfb..3546268483e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by DieselMohawk for use in ss14", + "copyright": "Sprites made by @prazat911", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-reptilian", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/base.png b/Resources/Textures/Objects/Devices/ai_card.rsi/base.png index 244183c078c..535f5a48e99 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/base.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/base.png differ diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png b/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png index 7e61f368de2..a62b9263d52 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png differ diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/full.png b/Resources/Textures/Objects/Devices/ai_card.rsi/full.png index 59131c8c0aa..69a1825d91d 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/full.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/full.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 1495eccd7a6..0c29f3e3fb1 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json @@ -57,6 +57,15 @@ { "name": "syringe2" }, + { + "name": "minisyringe1" + }, + { + "name": "minisyringe2" + }, + { + "name": "minisyringe3" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png new file mode 100644 index 00000000000..66c49a744cd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png new file mode 100644 index 00000000000..6f5d5663546 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png new file mode 100644 index 00000000000..71d3bad044a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png index 7819a48c661..5faf746ae3a 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png index 877a76785e8..e80c4fa942b 100644 Binary files a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png new file mode 100644 index 00000000000..19d43a58d25 Binary files /dev/null and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png new file mode 100644 index 00000000000..99d7bc37309 Binary files /dev/null and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json index 07cec4822e9..3a6e8e9d8e9 100644 --- a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json @@ -1,18 +1,26 @@ { - "copyright" : "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/device.dmi state export_scanner at commit 7544e865d0771d9bd917461e9da16d301fe40fc3.", + "copyright" : "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/device.dmi state export_scanner at commit 7544e865d0771d9bd917461e9da16d301fe40fc3. In-hand sprites made by obscenelytinyshark for use in SS14.", "license" : "CC-BY-SA-3.0", "size" : { "x" : 32, "y" : 32 }, - "states" : [ - { - "name" : "icon" - }, - { - "name": "equipped-BELT", - "directions": 4 - } - ], + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ], "version" : 1 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png index 1784e7f6236..6a141b7efb1 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png new file mode 100644 index 00000000000..2414fe500b9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png new file mode 100644 index 00000000000..1784e7f6236 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png index 3ff1180051b..d68f85845e5 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png new file mode 100644 index 00000000000..50ea7c47ff3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png new file mode 100644 index 00000000000..94a2272c800 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json index a72e24594e3..b2728ab02bb 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.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/983ad377d25729357b7ff8025f8014bd2f6ae9f7/icons/obj/ammo.dmi , base and mag-1 by Alekshhh", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/983ad377d25729357b7ff8025f8014bd2f6ae9f7/icons/obj/ammo.dmi, base and mag-1 by Alekshhh", "size": { "x": 32, "y": 32 @@ -16,8 +16,20 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" + }, + { + "name": "magb-2" + }, + { + "name": "magb-3" } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png index edcbdbd3851..c9f029f32a3 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png new file mode 100644 index 00000000000..84725cfd321 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png new file mode 100644 index 00000000000..532baa546b3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png index da73a5f853b..8b49392b77d 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png new file mode 100644 index 00000000000..80e504f560e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png new file mode 100644 index 00000000000..0c582b01d57 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png index 6a77161ab26..39e05c72114 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png new file mode 100644 index 00000000000..8fd938dce0b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png new file mode 100644 index 00000000000..6a77161ab26 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json index 878138f73fa..958aeb6f48e 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json @@ -19,12 +19,30 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "mag10-1" }, + { + "name": "mag10-2" + }, + { + "name": "mag10-3" + }, { "name": "practice" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png index a6feb95c36c..36c872a4268 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png new file mode 100644 index 00000000000..025bec650e0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png new file mode 100644 index 00000000000..31c1c6b5c76 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png index 7fbc8f50acf..39e05c72114 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png new file mode 100644 index 00000000000..8fd938dce0b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png new file mode 100644 index 00000000000..6a77161ab26 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json index 22eef0aaf3a..ff9704e4fc7 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json @@ -16,9 +16,21 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "incendiary" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png index a36a9226170..8b7d23dc6c4 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png new file mode 100644 index 00000000000..6d2b4034e1f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png new file mode 100644 index 00000000000..7d2bcd29ec2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json index 67af0dcd27b..bb09b47a524 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json @@ -16,6 +16,12 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "cap" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png index f32f6862662..43d1f0f5f71 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png new file mode 100644 index 00000000000..5d6d61f5dbf Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json index 6237fcbe6fe..dd1e88cffcb 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, { "name": "incendiarydisplay" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png index 0c642312083..4d7eb62cbf2 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png new file mode 100644 index 00000000000..24cf3a37fb9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png new file mode 100644 index 00000000000..68bb5da7bed Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png index a3d15b76e69..39e05c72114 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png new file mode 100644 index 00000000000..8fd938dce0b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png new file mode 100644 index 00000000000..6a77161ab26 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json index 18e89881dd9..5c5b4eaef38 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json @@ -16,9 +16,21 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "incendiary" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png new file mode 100644 index 00000000000..b59a4d52682 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png new file mode 100644 index 00000000000..6a8268d27e3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json new file mode 100644 index 00000000000..dae584eb812 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13 at f91dfe2e0dba1b7a8b9a0fa18251340920979a62, held sprite by ScarKy0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "syringe_gun" + }, + { + "name": "inhand-left", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png new file mode 100644 index 00000000000..972714d1c71 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png differ